:root {
    --primary: #F51B1B;
    --secondary: #F75D25;
    --accent: #3DB349;
    --dark: #1A1F29;
    --light: #F5F7FA;
    --gray: #6B7280;
}

html,
body {
    font-family: 'IBM Plex Sans', sans-serif;
    color: var(--dark);
    background: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 20px; 
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: darken(var(--primary), 10%);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-accent {
    background: var(--accent);
    color: white;
}

.btn-accent:hover {
    background: darken(var(--accent), 10%);
}

/* Header */
/* Make header fixed/sticky */
header {
    position: fixed;                /* Stays at top even when scrolling */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;                  /* Stays above other content */
    background: white;              /* Solid background so content doesn't show through */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* Subtle shadow for depth */
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Optional: slight transparency or color change when scrolled (modern effect) */
header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);    /* Glassmorphism feel */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* Mobile menu adjustments (if it opens, make sure it doesn't get stuck) */
.nav-links.active,
.header-cta.active {
    top: 100%;                      
    background: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;                /* Reduced padding for slimmer look when fixed */
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 70px;
    margin-right: 10px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
}

.logo-text span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary);
}

/* .header-cta {
    display: flex;
    gap: 15px;
} */

.header-cta {
  display: none;
}

.header-cta.active {
  display: flex;
}


.mobile-menu-btn {
    display: none;
}

/* Mobile toggle input – hidden */
/* .mobile-toggle-input {
    display: none;
} */

/* Hamburger button */
.mobile-menu-btn {
    display: none; /* hidden on desktop */
    cursor: pointer;
    font-size: 28px;
    background: none;
    border: none;
    color: var(--dark);
    padding: 10px;
}

/* Close icon hidden by default */
.mobile-menu-btn .fa-times {
    display: none;
}

/* When checkbox is checked: show close icon, hide bars */
.mobile-toggle-input:checked + .mobile-menu-btn .fa-bars {
    display: none;
}

.mobile-toggle-input:checked + .mobile-menu-btn .fa-times {
    display: inline-block;
}

/* Nav menu on mobile */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu {
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}
.mobile-toggle-input:checked ~ .nav-menu {
    opacity: 1;
}


/* Desktop: show nav normally */
@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
    
    .nav-links,
    .header-cta {
        display: flex !important;
    }
    
    .nav-menu {
        flex: 1;
        justify-content: flex-end;
        gap: 30px;
    }
}

/* Mobile: hide nav by default */
@media (max-width: 767px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links,
    .header-cta {
        display: none; /* hidden by default on mobile */
    }

    .nav-links.active,
    .header-cta.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 70px;                     /* below header height - adjust if needed */
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        z-index: 999;
        text-align: center;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .nav-links a {
        font-size: 1.3rem;
        padding: 10px;
        display: block;
    }

    .header-cta {
        margin-top: 30px;
    }

    .header-cta .btn {
        width: 80%;
        margin: 10px auto;
        font-size: 1.1rem;
    }
}

/* Hero */
.hero {
    padding: 100px 0;
    background: linear-gradient(to right, var(--light), rgba(var(--accent), 0.1));
}

.hero-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.badge {
  background-color: var(--primary);
  color: var(--light);
  font-weight: bold;
  padding: 8px 10px;
  border-radius: 10px;
  display: inline-block; /* Ensures the background width is based on the content */
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 30px;
}

.hero-text .trust-badges {
    font-size: 12px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.hero-image-container img {
    max-width: 100%;
    height: auto;
    display: block;
}


.stat-badge {
  position: absolute;
  /* background-color: white; */
  padding: 12px 16px;
  border-radius: 16px;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); */
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 160px;
  backdrop-filter: blur(4px);
}

.stat-primary {
  top: -50px;
  right: -90px;
  color: var(--primary);
}

.stat-accent {
  bottom: -50px;
  left: -40px;
  color: var(--accent);
}

.stat-icon img{
  /* font-size: 36px; */
  width: 120px;
  height: 110px;
}

.stat-number {
  font-size: 36px;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  opacity: 0.9;
}

/* Hero content stacking + centering on small screens */
@media (max-width: 992px) {
    .hero {
        padding: 60px 0 40px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-image-container {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-cta {
        flex-direction: column;
        gap: 16px;
        width: 100%;
        max-width: 320px;
        margin: 0 auto 24px;
    }

    .hero-cta .btn {
        width: 100%;
        padding: 12px 16px; /* bigger tap targets */
        font-size: 1.1rem;
    }

    .trust-badges p {
        font-size: 1rem;
        justify-content: center;
    }
}

/* Very small phones (iPhone SE, etc.) */
@media (max-width: 480px) {
    .stat-badge {
        padding: 10px 14px;
        gap: 10px;
        font-size: 0.9rem;           /* slightly smaller text */
    }

    .stat-icon img {
        width: 95px;                 /* tiny but still visible */
    }

    .hero-text h1 {
        font-size: 2.1rem;           /* headline fits better */
    }

    .badge {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
}

/* Sections */
.section {
    padding: 80px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: 0.6s;
}

.section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.section-title h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
}

.section-title p {
    text-align: center;
    color: var(--gray);
    margin-bottom: 50px;
}

/* Features Section – Compact Cards */
.features {
    padding: 80px 0 60px; /* Slightly reduced padding */
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 0.8rem;
}

.section-title p {
    font-size: clamp(1rem, 3vw, 1.15rem);
    color: var(--gray);
    max-width: 720px;
    margin: 0 auto;
}

/* Compact grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Tighter min width */
    gap: 24px; /* Smaller gap */
}

.feature-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    transition: all 0.35s ease;
    border: 1px solid rgba(61,179,73,0.06);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(245,27,27,0.1);
    border-color: var(--primary);
}

.feature-img-wrapper {
    height: 180px; /* Smaller image height */
    overflow: hidden;
    position: relative;
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.feature-card:hover .feature-img {
    transform: scale(1.06);
}

.feature-content {
    padding: 20px 18px 24px; /* Tighter padding */
    text-align: center;
}

.feature-content h3 {
    font-size: 1.28rem; /* Smaller heading */
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.3;
}

.feature-content p {
    font-size: 0.95rem; /* Smaller description */
    color: var(--gray);
    line-height: 1.5;
    margin: 0;
}

/* Mobile – even more compact */
@media (max-width: 768px) {
    .features {
        padding: 60px 0 40px;
    }

    .features-grid {
        gap: 20px;
    }

    .feature-img-wrapper {
        height: 140px;
    }

    .feature-content {
        padding: 18px 16px 20px;
    }

    .feature-content h3 {
        font-size: 1.2rem;
    }

    .feature-content p {
        font-size: 0.92rem;
    }
}

@media (max-width: 480px) {
    .features-grid {
        gap: 18px;
    }

    .feature-img-wrapper {
        height: 130px;
    }
}

/* Ecosystem */
/* Ecosystem Section */
.ecosystem {
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
    color: white;
}

.section-title p {
    font-size: clamp(1.15rem, 3.5vw, 1.35rem);
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* Ecosystem Video Demo */
.ecosystem-overview {
    text-align: center;
    margin: 0 auto 80px;
    max-width: 1000px;
    position: relative;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 380px;               /* Matches typical mobile portrait width — adjust to your crop */
    margin: 0 auto 24px;
    border-radius: 38px;            /* iPhone-like rounded corners */
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    background: #000;               /* fallback if video loads slowly */
}

.demo-video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;              /* Ensures crop fills frame without distortion */
}

/* Optional: subtle phone bezel effect (remove if you want plain video) */
.video-wrapper::before {
    content: '';
    position: absolute;
    inset: -2px;
    border: 12px solid #111;
    border-radius: 48px;
    pointer-events: none;
    z-index: 1;
}

/* Responsive scaling */
@media (max-width: 992px) {
    .video-wrapper {
        max-width: 340px;
    }
}

@media (max-width: 480px) {
    .video-wrapper {
        max-width: 320px;
        border-radius: 32px;
    }
    
    .video-wrapper::before {
        border-width: 10px;
        border-radius: 42px;
    }
}

/* Ensure no overflow on small screens */
.ecosystem-overview,
.video-wrapper {
    overflow: hidden;
}

/* Central Flow Diagram */
.ecosystem-flow {
    text-align: center;
    margin-bottom: 80px;
}

.flow-img {
    width: 100%;
    max-width: 1000px;
    border-radius: 24px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.5);
    margin-bottom: 24px;
}

.flow-caption {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Step-by-Step Flow – Small rectangular boxes on desktop */
.ecosystem-steps {
    display: grid;
    grid-template-columns: repeat(6, 1fr) auto;  /* 5 steps + 4 arrows */
    align-items: start;
    gap: 16px 24px;
    margin-bottom: 60px;
    width: 100%;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

/* Desktop: small fixed-height rectangles, full width */
@media (min-width: 1100px) {
    .ecosystem-steps {
        grid-template-columns: repeat(14, 1fr);  /* 5 cards + 4 arrows + spacing */
    }
    
    .ecosystem-step {
        grid-column: span 2;
        height: 200px;                  /* fixed short height */
        padding: 40px 10px;
        font-size: 0.92rem;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        overflow: hidden;
    }
    
    .ecosystem-step h3 {
        font-size: 0.9rem;
        margin-bottom: 8px;
        line-height: 1.25;
    }
    
    .ecosystem-step p {
        font-size: 0.65rem;
        line-height: 1.4;
        margin-top: auto;
    }
    
    .step-icon-wrapper {
        width: 56px;
        height: 56px;
        margin: 0 auto 12px;
        font-size: 1.6rem;
    }
    
    .step-arrow {
        grid-column: span 1;
        font-size: 2.5rem;
        align-self: center;
        text-align: center;
        opacity: 0.75;
        color: var(--accent);
    }
}

/* Tablet: horizontal scrollable small cards */
@media (min-width: 768px) and (max-width: 1099px) {
    .ecosystem-steps {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 16px;
        gap: 20px;
    }
    
    .ecosystem-step {
        flex: 0 0 260px;
        min-width: 260px;
        height: 180px;
        padding: 20px 16px;
        font-size: 0.9rem;
    }
    
    .ecosystem-step h3 { font-size: 1.05rem; margin-bottom: 8px; }
    .ecosystem-step p { font-size: 0.85rem; line-height: 1.4; }
    
    .step-icon-wrapper { width: 60px; height: 60px; margin-bottom: 12px; font-size: 1.8rem; }
    
    .step-arrow { font-size: 2.4rem; padding: 0 12px; align-self: center; }
}

/* Mobile: vertical stack, normal size */
@media (max-width: 767px) {
    .ecosystem-steps {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 36px;
    }
    
    .ecosystem-step {
        width: 100%;
        max-width: 380px;
        min-height: 220px;           /* a bit taller for readability */
        padding: 28px 24px;
    }
    
    .step-arrow {
        width: 100%;
        text-align: center;
        font-size: 3rem;
        margin: 12px 0;
        transform: rotate(90deg);
    }
}

/* Hover effect (works on desktop) */
.ecosystem-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
    border-color: var(--accent);
}

.ecosystem-conclusion {
    text-align: center;
    align-items: center;
    justify-content: center;
}

/* Industries Section */
.industries {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: clamp(2.4rem, 5.5vw, 3.6rem);
    margin-bottom: 1rem;
    color: (var(--dark));
}

.section-title p {
    font-size: clamp(1.1rem, 3vw, 1.25rem);
    color: var(--gray);
    max-width: 720px;
    margin: 0 auto;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.industry-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border: 1px solid rgba(61,179,73,0.08);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
    padding: 32px 24px;
    height: 290px;
}

.industry-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 48px rgba(245,27,27,0.12);
    border-color: var(--primary);
}

.industry-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(61,179,73,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.2rem;
    color: var(--accent);
    transition: all 0.4s;
}

.industry-card:hover .industry-icon-wrapper {
    background: rgba(61,179,73,0.25);
    transform: scale(1.1);
}

.industry-card h3 {
    font-size: 1rem;
    margin-bottom: 14px;
    color: var(--dark);
}

.industry-card p {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.55;
}

.industry-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.98rem;
    color: var(--gray);
}

.industry-benefits li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 24px;
}

.industry-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* Mobile */
@media (max-width: 992px) {
    .industries {
        padding: 80px 0;
    }

    .industries-grid {
        gap: 28px;
    }

    .industry-card {
        padding: 28px 20px;
    }

    .industry-icon-wrapper {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .section-title h2 {
        font-size: 2.2rem;
    }

    .industry-card h3 {
        font-size: 1.35rem;
    }

    .industry-card p {
        font-size: 1rem;
    }
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 32px;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border: 1px solid rgba(61,179,73,0.08);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.35s;
    position: relative;
}

.pricing-card.popular .popular-badge {
    background: var(--accent);
    color: white;
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(61,179,73,0.2);
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 48px rgba(245,27,27,0.12);
    border-color: var(--primary);
}

.pricing-card h3 {
    font-size: 1.65rem;
    margin-bottom: 14px;
    color: var(--dark);
}

.pricing-card p {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 20px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    font-size: 0.9rem;
    color: var(--gray);
    text-align: left;
}

.plan-features li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 24px;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.pricing-card .btn {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
}

/* App Download CTA */
.app-download {
    margin-top: 80px;
    text-align: center;
    background: rgba(61,179,73,0.05);
    border-radius: 20px;
    padding: 40px;
}

.app-download h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--dark);
}

.app-download p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 24px;
}

.download-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.download-buttons .btn {
    min-width: 180px;
}

/* Mobile Adjustments */
@media (max-width: 992px) {
    .pricing {
        padding: 80px 0;
    }

    .pricing-grid {
        gap: 28px;
    }

    .app-download {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .section-title h2 {
        font-size: 2.2rem;
    }

    .pricing-card h3 {
        font-size: 1.5rem;
    }

    .plan-features {
        font-size: 0.9rem;
    }

    .download-buttons {
        flex-direction: column;
    }
}

/*  */
.final-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    text-align: center;
    padding: 100px 0 80px;
}

.final-cta h2 {
    font-size: clamp(2.5rem, 6vw, 3.8rem);
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    /* gap: 20px; */
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 30px;
    background: none;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.2rem;
    min-width: 240px;
}

.small-text {
    font-size: 0.5rem;
    opacity: 0.85;
}



.cta-buttons img {
  height: 90px;
  object-fit: contain;
  min-width: 240px;
}

/*  */

.faq {
    padding: 80px 0;
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(61,179,73,0.03);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-item summary {
    padding: 20px 24px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none; /* hide default marker */
    position: relative;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 24px;
    font-size: 1.6rem;
    transition: transform 0.3s;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 24px 20px;
    margin: 0;
    font-size: 1rem;
    color: var(--gray);
}

/* Footer */
/* Base Footer Styling */
.site-footer {
  background: #0d1b2a; /* deep navy for modern feel */
  color: #e0e1dd;
  padding: 3rem 1.5rem;
  font-family: "Inter", "Segoe UI", sans-serif;
}

.site-footer a {
  color: #e0e1dd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: #00aaff; /* accent hover */
}

/* Footer Container */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Top Section */
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

/* Brand Section */
.footer-brand {
  flex: 1 1 300px;
}

.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--light);
}

.footer-brand .logo img {
  width: 80px;
  height: auto;
  border-radius: 6px;
}

.footer-brand .logo-text {
  font-size: 2rem;
  font-weight: 700;
}

.footer-brand .logo-text span {
  color: var(--primary);
}

.footer-brand p {
  margin-top: 1rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Links Grid */
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  flex: 2 1 600px;
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: #f5f5f5;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  font-size: 0.9rem;
}

/* Store Badges */
.store-badges {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.store-badges img {
  height: 40px;
  object-fit: contain;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-icons a {
  background: #1b263b;
  padding: 0.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icons a:hover {
  background: #00aaff;
  color: #fff;
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid #1b263b;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-bottom .footer-legal {
  display: flex;
  gap: 1rem;
}

.footer-bottom .tagline {
  flex-basis: 100%;
  margin-top: 0.75rem;
  font-style: italic;
  color: #a9a9a9;
  text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom .footer-legal {
    justify-content: center;
    flex-wrap: wrap;
  }
}