/* CSS Variables & Theme */
:root {
    /* Colors */
    --color-white: #ffffff;
    /* Colors - Light Theme */
    --color-bg: #ffffff;
    /* White */
    --color-bg-alt: #f1f5f9;
    /* Slate 100 */
    --color-primary: #3a72b8;
    /* Brand Blue */
    --color-primary-dark: #015882;
    /* Deep Brand Blue */
    --color-secondary: #fed21a;
    /* Brand Yellow */
    --color-accent: #fcd34d;
    /* Light Yellow */

    --color-text: #1e293b;
    /* Slate 800 */
    --color-text-muted: #64748b;
    /* Slate 500 */

    --color-border: #e2e8f0;
    /* Slate 200 */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --header-height: 80px;

    /* Effects */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.5);
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 700;
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Utility */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.row-eq-height{
    margin-right: 15px !important;
    margin-left: 15px !important;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    box-shadow: 0 4px 12px rgba(58, 114, 184, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
}

.btn-secondary:hover {
    color: var(--color-primary);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    background: rgba(59, 130, 246, 0.1);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Header */
.header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.logo .highlight {
    color: var(--color-secondary);
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--color-text-muted);
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

.header {
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid var(--color-border);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: none;
}

/* Hero Section */
.hero {
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 4rem;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(15, 23, 42, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 1.5rem;
    position: absolute;
    width: 200px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.glass-card h3 {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.glass-card p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    margin-top: 0.5rem;
    color: #4ade80;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 8px #4ade80;
}

/* Animations */
.float-animation {
    animation: float 6s ease-in-out infinite;
}

.delay-1 {
    animation-delay: 2s;
    right: 20px;
    top: 20%;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        margin: 0 auto 2rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .nav {
        display: none;
        /* Todo: Mobile Menu */
    }

    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 25px;
        height: 2px;
        background-color: var(--color-text);
        margin: 5px 0;
    }

    .header-actions {
        display: none;
    }

    .domain-search-wrapper {
        width: 100%;
    }

    /* Mobile Header Nav */
    .nav {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: white;
        padding: 1rem;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        border-bottom: 1px solid var(--color-border);
    }

    .nav.mobile-open {
        display: flex;
    }

    .nav-list {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Sections Common */
.section {
    padding: 0rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 4rem auto 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
}

.highlight-card {
    background: linear-gradient(145deg, rgba(30, 41, 59, 1), rgba(15, 23, 42, 1));
    border-color: var(--color-primary);
    color: white;
}

.highlight-card .product-desc,
.highlight-card .product-price {
    color: rgba(255, 255, 255, 0.8);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 99px;
}

.product-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.product-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.product-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    min-height: 3rem;
}

.product-features {
    margin-bottom: 1.5rem;
    border-top: 1px solid var(--color-border);
    padding-top: 1rem;
}

.product-features li {
    margin-bottom: 0.5rem;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-features li::before {
    content: "✓";
    color: var(--color-primary);
    font-weight: bold;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    width: 100%;
}

/* Features Section */
.features {
    background: linear-gradient(to bottom, var(--color-bg), var(--color-bg-alt));
}

.features-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-primary);
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--color-text-muted);
}

.features-visual {
    background: #000;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--color-border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.code-block {
    font-family: 'Fira Code', monospace;
    color: #a5b3ce;
    font-size: 0.9rem;
}

.code-success {
    color: #4ade80;
    display: block;
    margin-top: 1rem;
}

.code-info {
    color: #60a5fa;
    display: block;
}

@media (max-width: 992px) {
    .features-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    padding: 2rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--color-text);
}

.author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
}

.author-info h5 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Footer */
.footer {
    background: #0b1120;
    background: #0f172a;
    /* Keep dark footer */
    color: #f8fafc;
    /* Force white text in footer */
    padding: 4rem 0 0;
    border-top: 1px solid var(--color-border);
    margin-top: 4rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
}

.footer-desc {
    color: #94a3b8;
    margin-top: 1rem;
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: #94a3b8;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding: 2rem 0;
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Mobile Updates */
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-desc {
        margin: 1rem auto 0;
    }
}

/* Full Background Hero */
.hero.hero-full-bg {
    background-image: url('../images/hardware_detail.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    /* padding: 120px 0; REMOVED padding to let container handle it or explicit styles */
    min-height: 600px;
    display: flex;
    align-items: center;
    width: 100%;
    /* Ensure full width */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

/* Ensure text readability on dark bg */
.hero.hero-full-bg .hero-title,
.hero.hero-full-bg .hero-subtitle,
.hero.hero-full-bg .hero-stats .stat-label {
    color: #ffffff;
}

.hero.hero-full-bg .text-yellow {
    color: #FFD700 !important;
}

.hero.hero-full-bg .btn-outline {
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero.hero-full-bg .btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    border-color: var(--color-white);
}

/* Sidebar Layout - Fixed */
/* REMOVED: Sidebar styles */


/* Sidebar Header (Logo) */
.sidebar-header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
    overflow: hidden;
}

.sidebar-header .logo {
    font-size: 1.25rem;
    color: white;
    text-decoration: none;
}

.sidebar-fixed.collapsed .sidebar-header {
    padding: 0;
    justify-content: center;
}

.sidebar-fixed.collapsed .logo span {
    display: none;
}

.sidebar-fixed.collapsed .logo {
    font-size: 1.5rem;
    /* Icon only visual */
}

/* Sidebar Menu */
.sidebar-menu {
    flex: 1;
    padding: 1.5rem 1rem;
    overflow-y: auto;
}

.sidebar-menu ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    color: #94a3b8;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
    white-space: nowrap;
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
    background: var(--color-primary);
    color: white;
}

.sidebar-menu .menu-icon {
    font-size: 1.25rem;
    min-width: 1.5rem;
    text-align: center;
}

.sidebar-toggle-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.sidebar-fixed.collapsed .sidebar-toggle-btn {
    right: 50%;
    transform: translateX(50%) rotate(180deg);
}

/* Main Wrapper */
.main-wrapper {
    margin-left: var(--sidebar-width);
    transition: margin-left 0.3s ease;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-wrapper.expanded {
    margin-left: var(--sidebar-collapsed-width);
}

/* Adjust Global Header */
.header {
    position: sticky;
    /* Make sticky inside wrapper */
    top: 0;
    width: 100%;
    left: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    padding: 0 2rem;
    height: var(--header-height);
}

.header-container {
    max-width: none;
    /* Full width */
    width: 100%;
    padding: 0;
}

/* Ensure footer aligns */
.footer {
    margin-top: auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .sidebar-fixed {
        transform: translateX(-100%);
        width: var(--sidebar-width);
        /* Always full width on mobile when open */
    }

    .sidebar-fixed.mobile-open {
        transform: translateX(0);
    }

    .main-wrapper {
        margin-left: 0 !important;
    }

    .header .logo {
        display: block;
        /* Show logo on mobile header */
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header-actions {
        display: none;
    }
}

/* Utility for collapsed text hiding */
.sidebar-fixed.collapsed .menu-text {
    opacity: 0;
    pointer-events: none;
    display: none;
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
    background: var(--color-primary);
    color: white;
}

.sidebar-title {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text);
}

@media (max-width: 992px) {
    .layout-sidebar-container {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
        margin-bottom: 2rem;
    }
}

/* Text Pattern */
.text-flag-pattern {
    background-image: url('../images/africa_flags_texture.png');
    background-size: cover;
    background-position: center;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
    display: inline-block;
    /* Helps with some browser rendering */
}

/* Promo Grid */
.promo-grid {
    grid-template-columns: repeat(4, 1fr) !important;
}

.promo-card {
    position: relative;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 160px;
    background: #016699;
    /* Fallback */
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-card:hover {
    box-shadow: 0 10px 25px rgba(1, 102, 153, 0.4);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.promo-grid .promo-card:nth-child(1) {
    background: linear-gradient(135deg, #016699 0%, #002a42 100%);
}

/* Darker Depth */
.promo-grid .promo-card:nth-child(2) {
    background: linear-gradient(135deg, #016699 0%, #003755 100%);
}

.promo-grid .promo-card:nth-child(3) {
    background: linear-gradient(135deg, #016699 0%, #004468 100%);
}

.promo-grid .promo-card:nth-child(4) {
    background: linear-gradient(135deg, #016699 0%, #00517b 100%);
}

.promo-grid .promo-card:nth-child(5) {
    background: linear-gradient(135deg, #016699 0%, #005e8e 100%);
}

.promo-grid .promo-card:nth-child(6) {
    background: linear-gradient(135deg, #016699 0%, #006ba1 100%);
}

.promo-grid .promo-card:nth-child(7) {
    background: linear-gradient(135deg, #016699 0%, #0078b4 100%);
}

.promo-grid .promo-card:nth-child(8) {
    background: linear-gradient(135deg, #016699 0%, #0085c7 100%);
}

.promo-grid .promo-card:nth-child(9) {
    background: linear-gradient(135deg, #016699 0%, #0092da 100%);
}

.promo-grid .promo-card:nth-child(10) {
    background: linear-gradient(135deg, #016699 0%, #1aa0e6 100%);
}

.promo-grid .promo-card:nth-child(11) {
    background: linear-gradient(135deg, #016699 0%, #3fb0f2 100%);
}

/* Brighter Blue */
.promo-grid .promo-card:nth-child(12) {
    background: linear-gradient(135deg, #016699 0%, #5bc0ff 100%);
}

.promo-grid .promo-card:nth-child(13) {
    background: linear-gradient(135deg, #016699 0%, #008f8f 100%);
}

/* Teal/Cyan Shift */
.promo-grid .promo-card:nth-child(14) {
    background: linear-gradient(135deg, #016699 0%, #00a1a1 100%);
}

.promo-grid .promo-card:nth-child(15) {
    background: linear-gradient(135deg, #016699 0%, #00b3b3 100%);
}

.promo-grid .promo-card:nth-child(16) {
    background: linear-gradient(135deg, #016699 0%, #00c5c5 100%);
}

.promo-badge {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    font-weight: 600;
    display: block;
}

.promo-card .product-title {
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
    color: #ffffff;
}

.promo-card .product-price {
    font-size: 1.1rem;
    color: #ffd700;
    /* Gold for price to pop on blue */
    margin: 0;
    font-weight: 700;
}

.promo-card .currency {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: normal;
}



.promo-icon {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    font-size: 2.5rem;
    opacity: 0.1;
    transition: opacity 0.3s ease;
}

.promo-card:hover .promo-icon {
    opacity: 1;
}

@media (max-width: 992px) {
    .promo-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 576px) {
    .promo-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Trust Bar */
.trust-bar-section {
    background: linear-gradient(90deg, #e0f2fe 0%, #016699 100%);
    margin-bottom: 4rem;
}

.trust-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.trust-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text);
    text-transform: uppercase;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .trust-bar {
        justify-content: center;
    }

    .trust-item {
        min-width: 45%;
        flex: 0 0 45%;
    }
}

@media (max-width: 480px) {
    .trust-item {
        min-width: 100%;
        flex: 0 0 100%;
    }
}