/* ==========================================================================
   Divide Landing Page Stylesheet
   ========================================================================== */

/* 1. Design Tokens & CSS Variables */
:root {
    /* Color Palette */
    --primary-color: #032c25;       /* Deep Forest Green */
    --primary-hover: #07463b;       /* Dark Green Hover */
    --accent-color: #00d28e;        /* Mint Green Accent */
    --accent-hover: #00b87c;        /* Mint Green Hover */
    --bg-light: #f4f7f6;            /* Off-white / Light gray */
    --bg-card: #ffffff;             /* Pure White */
    --text-main: #032c25;           /* Main headings & text */
    --text-muted: #5c7672;          /* Secondary/paragraph text */
    --text-white: #ffffff;
    --border-color: #e2e8e6;        /* Subtle divider borders */
    
    /* Fonts */
    --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Box Shadows */
    --shadow-soft: 0 4px 20px rgba(3, 44, 38, 0.04);
    --shadow-medium: 0 10px 30px rgba(3, 44, 38, 0.06);
    --shadow-hover: 0 20px 40px rgba(3, 44, 38, 0.12);
    
    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Grid/Layout */
    --container-width: 1200px;
    --section-spacing-desktop: 120px; /* Generous spacing as requested by user */
    --section-spacing-mobile: 70px;
}

/* 2. Reset & Global Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-muted);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-weight: 700;
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

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

ul {
    list-style: none;
}

/* Common Layout Components */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(3, 44, 38, 0.2);
}

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

.btn-outline:hover {
    border-color: var(--primary-color);
    background-color: rgba(3, 44, 38, 0.02);
}

.btn-white {
    background-color: var(--text-white);
    color: var(--primary-color);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-arrow span {
    margin-right: 8px;
}

.btn-arrow svg {
    width: 18px;
    height: 18px;
    transition: var(--transition-fast);
}

.btn-arrow:hover svg {
    transform: translateX(4px);
}

/* Badges */
.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--bg-light);
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 100px;
    margin-bottom: 24px;
}

.badge-center {
    display: table;
    margin: 0 auto 24px auto;
}

.badge-light {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--text-white);
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.text-center {
    text-align: center;
}

/* ==========================================================================
   3. Section Specific Styles
   ========================================================================== */

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-fast);
}

.navbar-container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-img {
    height: 32px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-main);
    opacity: 0.85;
}

.nav-link:hover {
    opacity: 1;
    color: var(--accent-color);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-fast);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 120px; /* Account for navbar + space */
    padding-bottom: 0; /* Let visual flush to the bottom */
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-light) 100%);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-actions {
    margin-bottom: 32px;
}

.hero-security {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.icon-security {
    width: 20px;
    height: 20px;
    color: var(--accent-color);
}

/* Floating Blobs inside Hero Visual to scale and move perfectly */
.floating-blob {
    position: absolute;
    pointer-events: none;
    opacity: 0.9;
}

.blob-1 {
    right: -20%;
    bottom: -15%;
    width: 95%;
    max-width: 520px;
    z-index: 4; /* On top of phone (z-index 3) and woman (z-index 2) */
}

.blob-2 {
    left: -15%;
    bottom: -15%;
    width: 60%;
    max-width: 320px;
    z-index: 1; /* Behind woman (z-index 2) */
}

.blob-3 {
    right: 25%;
    top: 5%;
    width: 22%;
    max-width: 110px;
    z-index: 4; /* On top of phone/woman */
}

/* Hero Visual Composite */
.hero-visual {
    position: relative;
    height: 620px; /* Taller premium visual */
    width: 100%;
    overflow: visible;
    align-self: end; /* Flush with bottom of container */
}

.woman-img {
    position: absolute;
    left: -15%; /* Push woman to the left */
    bottom: -10px;
    width: 85%; /* Proportional size to avoid covering the phone */
    height: 100%;
    object-fit: contain;
    object-position: left bottom;
    z-index: 2;
}

.phone-img {
    position: absolute;
    right: -25%; /* Push giant phone to the right */
    bottom: -50px; /* Lower the phone! */
    width: 85%; /* Decrease its size from 95% to 85% */
    height: 100%;
    object-fit: contain;
    object-position: right bottom;
    z-index: 3;
}

/* iPhone HTML/CSS Mockup */
.iphone-mockup {
    background: #000;
    border-radius: 40px;
    padding: 10px;
    box-shadow: 0 25px 60px rgba(3, 44, 38, 0.25);
    border: 3px solid #1a1a1a;
    display: flex;
    flex-direction: column;
}

.iphone-bezel {
    background: #000;
    border-radius: 32px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.iphone-screen {
    background-color: var(--primary-color);
    width: 100%;
    height: 100%;
    border-radius: 28px;
    color: var(--text-white);
    display: flex;
    flex-direction: column;
    padding: 14px;
    position: relative;
    font-size: 12px;
}

/* Dynamic Island */
.dynamic-island {
    width: 80px;
    height: 22px;
    background: #000;
    border-radius: 100px;
    margin: 0 auto 10px auto;
    z-index: 10;
}

/* Mockup Header */
.app-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 0.75rem;
    padding: 0 6px;
    margin-bottom: 12px;
    opacity: 0.8;
}

.app-status-icons {
    display: flex;
    gap: 4px;
}

.app-icon {
    width: 12px;
    height: 12px;
}

.app-profile {
    padding: 0 4px;
    margin-bottom: 16px;
}

.app-greeting {
    display: flex;
    flex-direction: column;
}

.app-hello {
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.9;
}

.app-limit-label {
    font-size: 0.75rem;
    opacity: 0.6;
    margin-top: 4px;
}

.app-limit-value {
    font-size: 1.4rem;
    font-weight: 800;
    margin-top: 2px;
    letter-spacing: -0.01em;
}

.app-badge-installment {
    display: inline-block;
    align-self: flex-start;
    padding: 3px 10px;
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.65rem;
    font-weight: 600;
    border-radius: 100px;
    margin-top: 6px;
}

/* Mockup Quick Grid */
.app-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.app-grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 0.55rem;
    font-weight: 500;
}

.app-grid-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    color: var(--accent-color);
}

.app-grid-icon svg {
    width: 16px;
    height: 16px;
}

/* Mockup Purchases */
.app-purchases {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 10px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.app-purchases-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 0.8;
    margin-bottom: 8px;
}

.purchase-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.purchase-item:last-of-type {
    border-bottom: none;
}

.purchase-info {
    display: flex;
    flex-direction: column;
}

.purchase-brand {
    font-weight: 700;
    font-size: 0.7rem;
}

.purchase-sub {
    font-size: 0.58rem;
    opacity: 0.5;
}

.purchase-value {
    font-weight: 600;
    font-size: 0.7rem;
}

.app-view-all {
    text-align: center;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-top: auto;
    padding-top: 6px;
}

/* Mockup Nav Bar */
.app-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.app-nav-item {
    opacity: 0.4;
    cursor: pointer;
}

.app-nav-item.active {
    opacity: 1;
    color: var(--accent-color);
}

.app-nav-item svg {
    width: 18px;
    height: 18px;
}


/* Features / Advantages Section */
.features-section {
    padding: var(--section-spacing-desktop) 0;
    background-color: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 36px 28px;
    border-radius: 16px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-soft);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--bg-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper {
    background-color: var(--primary-color);
    color: var(--accent-color);
}

.feature-badge-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
}

.feature-icon {
    width: 22px;
    height: 22px;
}

.feature-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-description {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.5;
}


/* How It Works Section */
.how-it-works-section {
    position: relative;
    padding: var(--section-spacing-desktop) 0;
    background-color: var(--bg-light);
    overflow: hidden;
}

.how-blob {
    position: absolute;
    pointer-events: none;
    opacity: 0.4;
    width: 20%;
}

.blob-left {
    left: -8%;
    bottom: -5%;
}

.blob-right {
    right: -10%;
    top: -5%;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 10;
}

.step-icon-outer {
    position: relative;
    margin-bottom: 24px;
}

.step-icon-inner {
    width: 72px;
    height: 72px;
    background-color: var(--primary-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(3, 44, 38, 0.15);
    transition: var(--transition-smooth);
}

.step-card:hover .step-icon-inner {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(3, 44, 38, 0.25);
    color: var(--accent-color);
}

.step-icon-inner svg {
    width: 28px;
    height: 28px;
}

.step-number {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 24px;
    height: 24px;
    background-color: var(--bg-light);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 2px solid #ffffff;
}

.step-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    max-width: 240px;
}

.step-connector {
    width: 100px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
}

.connector-svg {
    width: 100%;
}


/* App Showcase Section */
.app-showcase-section {
    padding: var(--section-spacing-desktop) 0;
    background-color: #ffffff;
}

.app-showcase-banner {
    background-color: var(--primary-color);
    border-radius: 24px;
    padding: 60px;
    color: var(--text-white);
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr; /* Increased center column width */
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.app-showcase-left {
    z-index: 10;
}

.app-showcase-title {
    color: var(--text-white);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.app-showcase-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 32px;
    line-height: 1.6;
}

.store-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: nowrap; /* Ensure buttons stay in a single row */
    justify-content: center; /* Center align horizontally */
}

.store-btn {
    display: inline-flex;
    align-items: center;
    background-color: #000000;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 12px; /* reduced padding for tighter fit */
    border-radius: 8px;
    transition: var(--transition-fast);
    flex: 1 1 0; /* allow buttons to stretch equally */
    max-width: 48%; /* keep them under half the container */
    box-sizing: border-box;
}

/* Ensure buttons stay on one line even on very small screens */
@media (max-width: 480px) {
    .store-buttons {
        gap: 8px;
    }
    .store-btn {
        padding: 6px 10px;
        font-size: 0.85rem;
    }
}

.store-btn:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.store-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.store-text {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
}

.store-sub {
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.6;
}

.store-title {
    font-size: 0.85rem;
    font-weight: 700;
}

.app-showcase-center {
    display: flex;
    justify-content: center;
    z-index: 10;
}

.app-showcase-img {
    width: 580px; /* Significantly larger phone size */
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 25px 60px rgba(3, 44, 38, 0.35));
}

.app-showcase-right {
    z-index: 10;
}

.app-feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.app-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.check-icon-wrapper {
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent-color);
}

.icon-check {
    width: 16px;
    height: 16px;
}

.feature-text-block {
    display: flex;
    flex-direction: column;
}

.app-feat-title {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.app-feat-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}


/* Testimonials Section */
.testimonials-section {
    padding: var(--section-spacing-desktop) 0;
    background-color: var(--bg-light);
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

.btn-text-link {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--accent-hover);
    font-size: 0.95rem;
}

.btn-text-link svg {
    width: 16px;
    height: 16px;
    margin-left: 8px;
    transition: var(--transition-fast);
}

.btn-text-link:hover svg {
    transform: translateX(4px);
}

.testimonials-container {
    display: grid;
    grid-template-columns: 2.1fr 0.9fr;
    gap: 40px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    background-color: var(--bg-card);
    border-radius: 16px;
    padding: 32px 24px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars-row {
    display: flex;
    gap: 4px;
    color: #ffd700;
    margin-bottom: 20px;
}

.star {
    width: 16px;
    height: 16px;
}

.testimonial-text {
    font-size: 0.9rem;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
    opacity: 0.95;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-color);
}

.user-details {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-main);
}

.user-location {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* Trust Sidebar */
.trust-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: var(--shadow-soft);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.trust-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.trust-item:first-child {
    padding-top: 0;
}

.trust-icon-wrapper {
    width: 40px;
    height: 40px;
    background-color: var(--bg-light);
    color: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-icon-wrapper svg {
    width: 20px;
    height: 20px;
}

.trust-text {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.trust-text strong {
    color: var(--text-main);
}


/* Call To Action Banner */
.cta-section {
    padding-bottom: var(--section-spacing-desktop);
    background-color: var(--bg-light);
}

.cta-banner {
    background-color: var(--primary-color);
    border-radius: 24px;
    padding: 80px 40px;
    text-align: center;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-blob {
    position: absolute;
    right: -5%;
    bottom: -15%;
    width: 25%;
    pointer-events: none;
    opacity: 0.6;
}

.cta-title {
    color: var(--text-white);
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 12px;
    max-width: 600px;
    z-index: 10;
}

.cta-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    margin-bottom: 36px;
    max-width: 500px;
    z-index: 10;
}

.cta-banner .btn {
    z-index: 10;
}


/* Footer Section */
.footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-brand-desc {
    font-size: 0.88rem;
    line-height: 1.6;
    max-width: 220px;
}

.footer-title {
    color: var(--text-white);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.88rem;
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: var(--transition-fast);
}

.social-btn:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.social-btn svg {
    width: 16px;
    height: 16px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
}


/* ==========================================================================
   4. Media Queries & Responsiveness
   ========================================================================== */

/* Medium Devices (Tablets, 1024px and down) */
@media (max-width: 1024px) {
    :root {
        --section-spacing-desktop: 90px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-security {
        justify-content: center;
    }
    
    .hero-visual {
        height: 480px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .woman-img {
        width: 80%;
        left: -5%;
        bottom: -20px;
        object-position: left bottom;
    }
    
    .phone-img {
        width: 85%;
        right: -15%;
        bottom: -20px;
        object-position: right bottom;
    }
    
    .blob-1 {
        right: -10%;
        bottom: -8%;
        width: 75%;
        max-width: 320px;
    }
    
    .blob-2 {
        left: -8%;
        bottom: -10%;
        width: 45%;
        max-width: 200px;
    }
    
    .blob-3 {
        right: 15%;
        top: 2%;
        width: 18%;
        max-width: 80px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .step-connector {
        transform: rotate(90deg);
        margin: 10px 0;
    }
    
    .app-showcase-banner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 24px;
        text-align: center;
    }
    
    .store-buttons {
        justify-content: center;
    }
    
    .app-showcase-right {
        max-width: 480px;
        margin: 0 auto;
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

/* Small Devices (Mobile landscape, 768px and down) */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: #ffffff;
        flex-direction: column;
        align-items: center;
        padding: 40px 24px;
        transition: var(--transition-smooth);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-cta {
        display: none; /* Hide or move to inside navMenu for mobile */
    }
    
    /* Toggle active animation */
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Extra Small Devices (Mobile portrait, 480px and down) */
@media (max-width: 480px) {
    :root {
        --section-spacing-desktop: 70px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-visual {
        height: 380px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .app-showcase-title {
        font-size: 1.6rem;
    }
}
