/* ============================================
   Loomoo Website Styles - Enhanced Modern Design
   Matching app color scheme with premium effects
   ============================================ */

/* CSS Variables - App Color Scheme */
:root {
    /* Background Colors - Matching AppColors.swift */
    --bg-primary: rgb(20, 31, 51);        /* Deep indigo - backgroundPrimary */
    --bg-secondary: rgb(31, 46, 71);      /* Medium indigo - backgroundSecondary */
    --bg-tertiary: rgb(38, 56, 82);       /* Elevated cards - backgroundTertiary */
    
    /* Text Colors - Light for dark background */
    --text-primary: rgba(255, 255, 255, 0.95);      /* White */
    --text-secondary: rgba(255, 255, 255, 0.75);    /* Light gray */
    --text-tertiary: rgba(255, 255, 255, 0.55);   /* Lighter gray */
    
    /* Accent Colors - Exact match from AppColors.swift */
    --accent-primary: rgb(140, 204, 191);       /* Lavender-mint - accentPrimary (0.55, 0.80, 0.75) */
    --accent-primary-light: rgb(166, 230, 217); /* accentPrimaryLight (0.65, 0.90, 0.85) */
    --accent-primary-dark: rgb(115, 179, 166);  /* accentPrimaryDark (0.45, 0.70, 0.65) */
    --accent-secondary: rgb(242, 166, 140);     /* Warm coral - accentSecondary (0.95, 0.65, 0.55) */
    --accent-secondary-light: rgb(255, 191, 166); /* accentSecondaryLight (1.0, 0.75, 0.65) */
    --accent-tertiary: rgb(179, 191, 242);      /* Soft periwinkle - accentTertiary (0.70, 0.75, 0.95) */
    
    /* Semantic Colors from AppColors.swift */
    --success: rgb(102, 217, 166);             /* success (0.40, 0.85, 0.65) */
    --success-light: rgb(128, 242, 191);        /* successLight (0.50, 0.95, 0.75) */
    --warning: rgb(255, 204, 102);              /* warning (1.0, 0.80, 0.40) */
    --error: rgb(242, 115, 140);                /* error (0.95, 0.45, 0.55) */
    --info: rgb(128, 191, 242);                 /* info (0.50, 0.75, 0.95) */
    
    /* Glass Effects - Dark theme glass morphism */
    --glass-bg: rgba(31, 46, 71, 0.6);
    --glass-bg-hover: rgba(38, 56, 82, 0.8);
    --glass-border: rgba(140, 204, 191, 0.2);
    --glass-border-hover: rgba(140, 204, 191, 0.4);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.25);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.35);
    --shadow-glow: 0 0 40px rgba(140, 204, 191, 0.3);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Typography */
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    font-weight: 400;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at top left, rgba(140, 204, 191, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(242, 166, 140, 0.06) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
    animation: gentlePulse 20s ease-in-out infinite;
}

@keyframes gentlePulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.95;
    }
}

/* Animated particles background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(140, 204, 191, 0.15), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(242, 166, 140, 0.12), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(179, 191, 242, 0.1), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(140, 204, 191, 0.1), transparent),
        radial-gradient(2px 2px at 90% 80%, rgba(242, 166, 140, 0.12), transparent),
        radial-gradient(1px 1px at 33% 60%, rgba(179, 191, 242, 0.08), transparent);
    background-size: 200% 200%;
    background-position: 0% 0%, 100% 0%, 50% 50%, 0% 100%, 100% 100%, 50% 0%;
    z-index: -2;
    pointer-events: none;
    animation: particleFloat 30s ease-in-out infinite;
    opacity: 0.4;
}

@keyframes particleFloat {
    0%, 100% {
        background-position: 0% 0%, 100% 0%, 50% 50%, 0% 100%, 100% 100%, 50% 0%;
    }
    50% {
        background-position: 100% 100%, 0% 100%, 50% 50%, 100% 0%, 0% 0%, 50% 100%;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Navigation */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--spacing-md) 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(20, 31, 51, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--spacing-lg);
}

.logo {
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
    text-transform: none;
    font-variant: normal;
    font-feature-settings: "kern" 1, "liga" 1;
    font-kerning: normal;
    margin: 0;
    padding: 0;
    align-self: flex-start;
}

.logo:hover {
    transform: scale(1.05);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    grid-column: 2;
    justify-self: flex-end;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
    flex: 1;
    max-width: 50%;
    margin-left: auto;
    padding-right: 0;
}

.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.875rem;
    padding: 0.875rem 0.875rem !important;
    background: linear-gradient(135deg, rgb(150, 214, 201) 0%, rgb(176, 240, 227) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(150, 214, 201, 0.4);
    border-radius: 16px;
    text-decoration: none;
    color: #000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-weight: var(--font-weight-semibold);
    font-size: 0.95rem;
    white-space: nowrap;
    width: auto;
    min-width: auto;
    max-width: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), 0 0 20px rgba(150, 214, 201, 0.3);
}

.nav-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s ease;
}

.nav-cta-btn:hover::before {
    left: 100%;
}

.nav-cta-btn:hover {
    transform: translateY(-6px) scale(1.03);
    background: linear-gradient(135deg, rgb(176, 240, 227) 0%, rgb(150, 214, 201) 100%);
    border-color: rgba(150, 214, 201, 0.6);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 50px rgba(150, 214, 201, 0.4);
    color: #000;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: var(--font-weight-medium);
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a.nav-cta-btn {
    color: #000 !important;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--accent-primary);
    transform: translateY(-2px);
}

.nav-links a:hover::before {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: var(--spacing-xl) var(--spacing-md) var(--spacing-lg);
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
    padding: 0;
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(20, 31, 51, 0.4) 0%,
        rgba(20, 31, 51, 0.6) 50%,
        rgba(20, 31, 51, 0.8) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
    /* Background image is handled by body::before */
}

.gradient-orb {
    display: none; /* Hidden - using static background image */
}

.mesh-gradient {
    display: none; /* Hidden - using static background image */
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0;
    padding: 0;
}

.hero-screenshot {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s backwards;
    padding-right: var(--spacing-md);
}

/* Subtle ambient glow behind phone */
.hero-screenshot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    background: radial-gradient(ellipse at center, rgba(140, 204, 191, 0.15) 0%, rgba(140, 204, 191, 0.06) 35%, transparent 65%);
    border-radius: 50%;
    z-index: 1;
    filter: blur(50px);
    pointer-events: none;
    animation: gentleGlow 4s ease-in-out infinite;
}

@keyframes gentleGlow {
    0%, 100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.85;
        transform: translate(-50%, -50%) scale(1.08);
    }
}

.hero-phone-frame {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 9/19.5;
    border-radius: 58px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(140, 204, 191, 0.2),
        0 40px 100px rgba(0, 0, 0, 0.3);
    background: #000;
    position: relative;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1.5px;
    border: 0.5px solid rgba(0, 0, 0, 0.9);
}

/* Home Indicator (iPhone 17 Pro style) */
.hero-phone-frame::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 134px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 3px;
    z-index: 10;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-phone-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 56.5px;
    position: relative;
    z-index: 1;
}

.hero-phone-frame:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(140, 204, 191, 0.3),
        inset 0 0 0 2px rgba(140, 204, 191, 0.2);
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    right: -10%;
    bottom: -20%;
    background: radial-gradient(ellipse at center 50%, rgba(140, 204, 191, 0.15) 0%, transparent 60%);
    filter: blur(60px);
    z-index: -1;
    pointer-events: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(2.25rem, 5.5vw, 3.75rem);
    font-weight: 600;
    line-height: 1.08;
    margin-bottom: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.title-line {
    display: block;
    color: var(--text-primary);
    animation: fadeInUp 0.8s ease-out backwards;
    opacity: 0.95;
}

.title-line:nth-child(1) {
    animation-delay: 0.1s;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.title-line:nth-child(3) {
    animation-delay: 0.3s;
    opacity: 1;
    color: var(--accent-primary);
    font-weight: 600;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    margin-top: var(--spacing-lg);
    line-height: 1.6;
    font-weight: var(--font-weight-medium);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
    opacity: 0.9;
}

.hero-badges {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    margin-top: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.8s ease-out 0.5s backwards;
}

.micro-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: rgba(140, 204, 191, 0.1);
    border: 1px solid rgba(140, 204, 191, 0.2);
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: var(--font-weight-medium);
    color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(10px);
    animation: badgeFadeIn 0.6s ease-out forwards;
}

.micro-badge:nth-child(1) {
    animation-delay: 0.5s;
}

.micro-badge:nth-child(2) {
    animation-delay: 0.65s;
}

/* Subtle shimmer effect */
.micro-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.6s ease;
    animation: badgeShimmer 3s ease-in-out infinite;
}

.micro-badge svg {
    color: var(--accent-primary);
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.micro-badge:hover {
    background: rgba(140, 204, 191, 0.15);
    border-color: rgba(140, 204, 191, 0.3);
    transform: translateY(-2px);
}

.micro-badge:hover::before {
    left: 100%;
}

.micro-badge:hover svg {
    transform: scale(1.1) rotate(5deg);
}

@keyframes badgeFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes badgeShimmer {
    0%, 100% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
}

.hero-buttons {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
    margin-top: var(--spacing-md);
}



.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    animation: scrollFloat 3s ease-in-out infinite;
}

@keyframes scrollFloat {
    0%, 100% { 
        transform: translateX(-50%) translateY(0);
        opacity: 0.6;
    }
    50% { 
        transform: translateX(-50%) translateY(-12px);
        opacity: 1;
    }
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--accent-primary);
    border-bottom: 2px solid var(--accent-primary);
    transform: rotate(45deg);
    filter: drop-shadow(0 0 8px rgba(140, 204, 191, 0.8));
    animation: gentleFloat 4s ease-in-out infinite;
}

@keyframes gentleFloat {
    0%, 100% {
        opacity: 0.7;
        transform: rotate(45deg) translateY(0);
    }
    50% {
        opacity: 1;
        transform: rotate(45deg) translateY(-8px);
    }
}

/* Section Styles */
section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.section-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: var(--font-weight-bold);
    text-align: center;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    line-height: 1.2;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: var(--spacing-lg);
    font-weight: var(--font-weight-normal);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Benefits Section */
.benefits-section {
    background: transparent; /* Background image shows through */
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    display: none; /* Removed gradient overlay */
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.benefit-card {
    background: var(--glass-bg);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: var(--spacing-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.benefit-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary), var(--accent-primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 28px 28px 0 0;
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(140, 204, 191, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.benefit-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 40px rgba(140, 204, 191, 0.2);
    background: rgba(38, 56, 82, 0.9);
    border-color: rgba(140, 204, 191, 0.4);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover::after {
    opacity: 1;
}

.benefit-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    filter: drop-shadow(0 4px 12px rgba(140, 204, 191, 0.3));
    transition: transform 0.3s ease;
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-card h3 {
    font-size: 1.75rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    line-height: 1.3;
}

.benefit-card p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
    font-size: 1rem;
}

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    color: var(--text-secondary);
    padding: 0.625rem 0;
    padding-left: 1.75rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.6;
    transition: color 0.3s ease, transform 0.3s ease;
    font-weight: var(--font-weight-normal);
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-list li {
    color: var(--text-secondary);
    transform: translateX(4px);
}

.benefit-card:hover .benefit-list li::before {
    transform: scale(1.2);
}

/* Features Section */
.features-section {
    background: transparent; /* Background image shows through */
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.feature-item {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.feature-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(140, 204, 191, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.feature-item:hover::before {
    width: 300px;
    height: 300px;
}

.feature-item:hover {
    transform: translateY(-8px);
    background: rgba(38, 56, 82, 0.9);
    border-color: rgba(140, 204, 191, 0.4);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5), 0 0 30px rgba(140, 204, 191, 0.15);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    filter: drop-shadow(0 4px 12px rgba(140, 204, 191, 0.2));
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-item:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
}

.feature-item h3 {
    font-size: 1.4rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Screenshots Section */
.screenshots-section {
    background: transparent; /* Background image shows through */
    position: relative;
}

.screenshots-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: var(--spacing-md);
    padding: var(--spacing-md) 0;
    margin-top: var(--spacing-lg);
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(140, 204, 191, 0.3) transparent;
}

.screenshots-grid::-webkit-scrollbar {
    height: 8px;
}

.screenshots-grid::-webkit-scrollbar-track {
    background: transparent;
}

.screenshots-grid::-webkit-scrollbar-thumb {
    background: rgba(140, 204, 191, 0.3);
    border-radius: 4px;
}

.screenshots-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(140, 204, 191, 0.5);
}

@media (min-width: 1024px) {
    .screenshots-grid {
        gap: var(--spacing-lg);
    }
    
    .screenshot-placeholder {
        flex: 0 0 400px; /* Restored to original larger size */
    }
}

.screenshot-placeholder {
    aspect-ratio: 9/19.5; /* iPhone 17 Pro aspect ratio */
    flex: 0 0 280px;
    background: #000;
    border-radius: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
    opacity: 0;
    transform: scale(0.9);
    padding: 1.5px;
    border: 0.5px solid rgba(0, 0, 0, 0.9);
    scroll-snap-align: center;
    scroll-snap-stop: always;
}

/* Home Indicator (iPhone 17 Pro style) */
.screenshot-placeholder::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 134px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 3px;
    z-index: 10;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.screenshot-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 56.5px;
    display: block;
    position: relative;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.screenshot-placeholder.visible {
    opacity: 1;
    transform: scale(1);
}

.screenshot-placeholder:hover {
    transform: scale(1.02) translateY(-10px);
}

.screenshot-placeholder:hover img {
    transform: scale(1.02);
}


/* Download Section */
.download-section {
    background: transparent; /* Background image handled by body */
    text-align: center;
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.download-section::before {
    display: none; /* Removed gradient overlay */
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1.875rem;
    background: linear-gradient(135deg, rgb(150, 214, 201) 0%, rgb(176, 240, 227) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(150, 214, 201, 0.4);
    border-radius: 16px;
    text-decoration: none;
    color: var(--bg-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 180px;
    justify-content: center;
    position: relative;
    overflow: hidden;
    font-weight: var(--font-weight-semibold);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), 0 0 20px rgba(150, 214, 201, 0.3);
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s ease;
}

.download-btn:hover::before {
    left: 100%;
}

.download-btn:hover {
    transform: translateY(-6px) scale(1.03);
    background: linear-gradient(135deg, rgb(176, 240, 227) 0%, rgb(150, 214, 201) 100%);
    border-color: rgba(150, 214, 201, 0.6);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 50px rgba(150, 214, 201, 0.4);
}

.download-icon {
    width: 1.875rem;
    height: 1.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: currentColor;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.download-icon svg {
    width: 100%;
    height: 100%;
}

.download-btn:hover .download-icon {
    transform: scale(1.15) rotate(5deg);
}

.download-text {
    text-align: left;
    position: relative;
    z-index: 1;
}

.download-label {
    font-size: 0.625rem;
    color: rgba(20, 31, 51, 0.7);
    line-height: 1;
    font-weight: var(--font-weight-normal);
}

.download-platform {
    font-size: 1.125rem;
    font-weight: var(--font-weight-bold);
    color: var(--bg-primary);
    line-height: 1.2;
}

.download-note {
    color: var(--text-tertiary);
    font-size: 0.9rem;
    margin-top: var(--spacing-md);
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    background: rgba(20, 31, 51, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid rgba(140, 204, 191, 0.1);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.footer-section h4 {
    font-size: 1.15rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-sm);
    color: var(--accent-primary);
}

.footer-section p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: var(--font-weight-normal);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.625rem;
}

.footer-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: var(--font-weight-normal);
}

.footer-links a:hover {
    color: var(--accent-primary);
    transform: translateX(4px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(140, 204, 191, 0.1);
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: var(--font-weight-normal);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-screenshot {
        justify-content: center;
        padding-right: 0;
    }
    
    .hero-screenshot {
        z-index: 1 !important; /* Lower than button */
    }
    
    .hero-phone-frame {
        max-width: 280px;
        z-index: 1 !important; /* Lower than button */
    }
}

@media (max-width: 768px) {
    .navbar {
        position: relative;
        padding: var(--spacing-sm) 0;
    }
    
    .nav-container {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 var(--spacing-sm);
        padding-left: var(--spacing-sm);
        gap: var(--spacing-sm);
    }
    
    .logo {
        font-size: 1.25rem;
        margin-left: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
        order: 3; /* Place hamburger after button */
        margin-left: var(--spacing-xs);
    }
    
    /* Show CTA button in navbar on mobile, visible before hamburger */
    .nav-links {
        display: flex;
        align-items: center;
        gap: var(--spacing-xs);
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        backdrop-filter: none;
        flex-direction: row;
        padding: 0;
        box-shadow: none;
        border: none;
        margin: 0;
        margin-left: auto;
        order: 2; /* Place nav-links before hamburger */
    }
    
    /* Hide regular nav links on mobile (they go in menu) */
    .nav-links a:not(.nav-cta-btn) {
        display: none;
    }
    
    /* Show CTA button in navbar - always visible */
    .nav-links .nav-cta-btn {
        display: inline-flex !important;
        position: static !important;
        width: auto !important;
        padding: 0.625rem 1rem !important;
        font-size: 0.75rem !important;
        margin: 0 !important;
        white-space: nowrap;
    }
    
    /* When menu opens, position button absolutely to stay in navbar */
    .nav-links.active ~ .nav-container .nav-links .nav-cta-btn {
        position: absolute !important;
        right: 50px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 1002 !important;
        display: inline-flex !important;
    }
    
    /* Mobile menu - show other links when menu is open */
    .nav-links.active {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: rgba(20, 31, 51, 0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        padding: var(--spacing-lg) var(--spacing-md) var(--spacing-md);
        gap: 0;
        transition: right 0.3s ease;
        box-shadow: var(--shadow-xl);
        border-left: 1px solid var(--glass-border);
        align-items: stretch;
        margin: 0;
        justify-content: flex-start;
    }
    
    /* When menu opens, keep button visible in navbar using fixed positioning, aligned with menu items */
    .nav-links.active .nav-cta-btn {
        position: fixed !important;
        left: var(--spacing-md) !important;
        right: auto !important;
        top: 1rem !important;
        transform: none !important;
        z-index: 1002 !important;
        display: inline-flex !important;
    }
    
    /* Style menu links starting from top */
    .nav-links.active a:not(.nav-cta-btn) {
        display: block;
        font-size: 1.1rem;
        padding: var(--spacing-md) var(--spacing-sm);
        width: 100%;
        border-bottom: 1px solid var(--glass-border);
        color: var(--text-primary);
        margin: 0;
    }
    
    /* First menu item starts at top */
    .nav-links.active a:not(.nav-cta-btn):first-of-type {
        margin-top: 0;
        padding-top: var(--spacing-lg);
    }
    
    .hero {
        min-height: auto;
        padding: var(--spacing-md) var(--spacing-sm) var(--spacing-sm);
    }
    
    .hero-container {
        padding-left: var(--spacing-sm);
        gap: var(--spacing-md);
    }
    
    /* Headline with tighter spacing */
    .hero-title {
        gap: 0.25rem;
        margin-bottom: var(--spacing-sm);
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
    
    /* Subtext closer to headline */
    .hero-subtitle {
        margin-top: var(--spacing-sm);
        margin-bottom: var(--spacing-sm);
        font-size: clamp(0.9rem, 3vw, 1.1rem);
    }
    
    /* Badges closer + smaller */
    .hero-badges {
        justify-content: center;
        gap: 0.5rem;
        margin-top: var(--spacing-xs);
        margin-bottom: var(--spacing-sm);
    }
    
    .micro-badge {
        padding: 0.25rem 0.5rem;
        font-size: 0.65rem;
        gap: 0.25rem;
    }
    
    .micro-badge svg {
        width: 10px;
        height: 10px;
    }
    
    /* Prevent hero from clipping fixed button */
    .hero {
        overflow: visible !important;
    }
    
    .hero-container,
    .hero-content,
    .hero-buttons {
        overflow: visible !important;
        animation: none !important; /* Disable parent animation on mobile */
    }
    
    /* Fixed bottom overlay button - always visible when scrolling, on top of everything */
    .hero-buttons .download-btn {
        position: fixed !important;
        bottom: var(--spacing-sm) !important;
        left: 50% !important;
        transform: translateX(-50%) translateY(0) !important; /* Explicitly set Y to 0 */
        width: auto !important;
        min-width: 200px !important;
        max-width: calc(100% - 2 * var(--spacing-md)) !important;
        padding: 0.75rem 1.5rem !important;
        font-size: 0.8rem !important;
        border-radius: 16px !important;
        z-index: 999999 !important;
        background: linear-gradient(135deg, rgb(150, 214, 201) 0%, rgb(176, 240, 227) 100%) !important;
        backdrop-filter: blur(20px) saturate(180%) !important;
        -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
        border: 1px solid rgba(150, 214, 201, 0.4) !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 20px rgba(150, 214, 201, 0.3) !important;
        justify-content: center !important;
        margin: 0 !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        animation: none !important; /* Disable parent animation */
        transition: none !important; /* Disable transitions on initial load */
    }
    
    .hero-buttons .download-btn:hover {
        transform: translateX(-50%) translateY(-2px) scale(1.01) !important;
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4), 0 0 30px rgba(150, 214, 201, 0.4) !important;
    }
    
    .hero-buttons .download-icon {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    .hero-buttons .download-label {
        font-size: 0.55rem;
    }
    
    .hero-buttons .download-platform {
        font-size: 0.9rem;
    }
    
    /* Footer accounts for fixed button, no body padding needed */
    body {
        padding-bottom: 0;
    }
    
    .footer {
        margin-bottom: 0;
        padding-bottom: var(--spacing-md);
    }
    
    /* Phone mockup starts just below fold */
    .hero-screenshot {
        justify-content: center;
        padding-right: 0;
        margin-top: var(--spacing-sm);
        z-index: 1 !important; /* Lower than button */
    }
    
    .hero-phone-frame {
        max-width: 240px;
        z-index: 1 !important; /* Lower than button */
        position: relative;
    }
    
    /* Container padding - tighter on mobile */
    .container {
        padding-left: var(--spacing-sm);
        padding-right: var(--spacing-sm);
    }
    
    /* Section titles and subtitles - more compact */
    .section-title {
        font-size: clamp(1.75rem, 5vw, 2.25rem);
        margin-bottom: var(--spacing-xs);
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: clamp(0.85rem, 2.5vw, 1rem);
        margin-bottom: var(--spacing-md);
        max-width: 100%;
    }
    
    /* Section padding - tighter */
    section {
        padding: var(--spacing-lg) 0;
    }
    
    /* Benefits section - more compact */
    .benefits-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
        margin-top: var(--spacing-md);
    }
    
    .benefit-card {
        padding: var(--spacing-sm);
        border-radius: 20px;
    }
    
    .benefit-icon {
        width: 2.5rem;
        height: 2.5rem;
        margin-bottom: var(--spacing-xs);
    }
    
    .benefit-card h3 {
        font-size: clamp(1.25rem, 4vw, 1.5rem);
        margin-bottom: var(--spacing-xs);
    }
    
    .benefit-card p {
        font-size: clamp(0.85rem, 2.5vw, 0.95rem);
        margin-bottom: var(--spacing-sm);
        line-height: 1.6;
    }
    
    .benefit-list li {
        font-size: clamp(0.8rem, 2.5vw, 0.9rem);
        padding: 0.5rem 0;
        padding-left: 1.5rem;
        line-height: 1.5;
    }
    
    /* Features section - more compact */
    .feature-item {
        padding: var(--spacing-sm);
        border-radius: 20px;
    }
    
    .feature-icon {
        width: 2.5rem;
        height: 2.5rem;
        margin-bottom: var(--spacing-xs);
    }
    
    .feature-item h3 {
        font-size: clamp(1.1rem, 3.5vw, 1.35rem);
        margin-bottom: var(--spacing-xs);
    }
    
    .feature-item p {
        font-size: clamp(0.85rem, 2.5vw, 0.95rem);
        line-height: 1.6;
    }
    
    /* Screenshots section - smaller */
    .screenshots-section {
        padding: var(--spacing-lg) 0;
    }
    
    .screenshot-placeholder {
        flex: 0 0 260px;
    }
    
    /* Download section - more compact */
    .download-section {
        padding: var(--spacing-lg) 0;
    }
    
    .download-buttons {
        display: none !important; /* Hide on mobile since fixed button is always visible */
    }
    
    .download-note {
        font-size: clamp(0.8rem, 2.5vw, 0.9rem);
        margin-top: var(--spacing-sm);
    }
    
    /* Footer - smaller */
    .footer {
        padding: var(--spacing-sm) 0;
        margin-bottom: 0;
        padding-bottom: var(--spacing-sm);
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-sm);
        text-align: left;
    }
    
    .footer-section h4 {
        font-size: clamp(0.85rem, 2.5vw, 0.95rem);
        margin-bottom: var(--spacing-xs);
    }
    
    .footer-section p {
        font-size: clamp(0.75rem, 2.5vw, 0.8rem);
        line-height: 1.5;
    }
    
    .footer-links li {
        margin-bottom: 0.4rem;
    }
    
    .footer-links a {
        font-size: clamp(0.75rem, 2.5vw, 0.8rem);
    }
    
    .footer-bottom {
        margin-top: var(--spacing-sm);
        padding-top: var(--spacing-sm);
        padding-bottom: 0;
        margin-bottom: 0;
        font-size: clamp(0.7rem, 2.5vw, 0.75rem);
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding-left: var(--spacing-xs);
        gap: var(--spacing-sm);
    }
    
    .nav-container {
        padding-left: var(--spacing-xs);
    }
    
    /* Even tighter spacing on very small screens */
    .hero-title {
        gap: 0.2rem;
        margin-bottom: var(--spacing-xs);
    }
    
    .hero-subtitle {
        margin-top: var(--spacing-xs);
        margin-bottom: var(--spacing-xs);
    }
    
    .hero-badges {
        gap: 0.375rem;
        margin-top: 0.5rem;
        margin-bottom: var(--spacing-xs);
    }
    
    .micro-badge {
        padding: 0.2rem 0.45rem;
        font-size: 0.6rem;
    }
    
    .hero-buttons {
        animation: none !important; /* Disable parent animation on mobile */
    }
    
    .hero-buttons .download-btn {
        bottom: var(--spacing-xs) !important;
        left: 50% !important;
        transform: translateX(-50%) translateY(0) !important; /* Explicitly set Y to 0 */
        right: auto !important;
        width: auto !important;
        min-width: 180px !important;
        max-width: calc(100% - 2 * var(--spacing-md)) !important;
        padding: 0.7rem 1.25rem !important;
        font-size: 0.75rem !important;
        z-index: 999999 !important;
        position: fixed !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        animation: none !important; /* Disable parent animation */
        transition: none !important; /* Disable transitions on initial load */
    }
    
    .hero-buttons .download-btn:hover {
        transform: translateX(-50%) translateY(-2px) scale(1.01) !important;
    }
    
    .hero-buttons .download-icon {
        width: 1.375rem;
        height: 1.375rem;
    }
    
    .hero-buttons .download-label {
        font-size: 0.5rem;
    }
    
    .hero-buttons .download-platform {
        font-size: 0.85rem;
    }
    
    body {
        padding-bottom: 0;
    }
    
    .footer {
        margin-bottom: 0;
        padding-bottom: var(--spacing-xs);
    }
    
    .hero-phone-frame {
        max-width: 200px;
        z-index: 1 !important; /* Lower than button */
    }
    
    /* Container padding - even tighter on very small screens */
    .container {
        padding-left: var(--spacing-xs);
        padding-right: var(--spacing-xs);
    }
    
    /* Even more compact sections on very small screens */
    .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: var(--spacing-xs);
    }
    
    .section-subtitle {
        font-size: clamp(0.8rem, 2.5vw, 0.95rem);
        margin-bottom: var(--spacing-sm);
    }
    
    section {
        padding: var(--spacing-md) 0;
    }
    
    .benefits-grid,
    .features-grid {
        gap: var(--spacing-xs);
        margin-top: var(--spacing-sm);
    }
    
    .benefit-card,
    .feature-item {
        padding: var(--spacing-xs) var(--spacing-sm);
        border-radius: 18px;
    }
    
    .benefit-icon,
    .feature-icon {
        width: 2rem;
        height: 2rem;
        margin-bottom: var(--spacing-xs);
    }
    
    .benefit-card h3,
    .feature-item h3 {
        font-size: clamp(1.1rem, 4vw, 1.35rem);
        margin-bottom: var(--spacing-xs);
    }
    
    .benefit-card p,
    .feature-item p {
        font-size: clamp(0.8rem, 2.5vw, 0.9rem);
        margin-bottom: var(--spacing-xs);
    }
    
    .benefit-list li {
        font-size: clamp(0.75rem, 2.5vw, 0.85rem);
        padding: 0.4rem 0;
        padding-left: 1.25rem;
    }
    
    .screenshot-placeholder {
        flex: 0 0 240px;
    }
    
    .download-section {
        padding: var(--spacing-md) 0;
    }
    
    .download-note {
        font-size: clamp(0.75rem, 2.5vw, 0.85rem);
    }
    
    .footer {
        padding: var(--spacing-xs) 0;
        margin-bottom: 0;
        padding-bottom: var(--spacing-xs);
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-xs);
        text-align: left;
    }
    
    .footer-section h4 {
        font-size: clamp(0.8rem, 2.5vw, 0.9rem);
        margin-bottom: var(--spacing-xs);
    }
    
    .footer-section p {
        font-size: clamp(0.7rem, 2.5vw, 0.75rem);
        line-height: 1.4;
    }
    
    .footer-links li {
        margin-bottom: 0.35rem;
    }
    
    .footer-links a {
        font-size: clamp(0.7rem, 2.5vw, 0.75rem);
    }
    
    .footer-bottom {
        margin-top: var(--spacing-xs);
        padding-top: var(--spacing-xs);
        padding-bottom: 0;
        margin-bottom: 0;
        font-size: clamp(0.65rem, 2.5vw, 0.7rem);
    }
    
    .hero {
        padding: var(--spacing-md) var(--spacing-sm) var(--spacing-xs);
    }
    
    .nav-cta-btn {
        padding: 0.875rem 1.25rem !important;
        font-size: 0.95rem !important;
    }
}

/* Smooth Scroll Animation */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

