/* BaCare Website Styles - Elegant Healthcare Design */
/* ================================================== */
/* Warm, Professional Design Inspired by Home Instead & Honor Care */

/* Import fonts - Inter for body, Playfair Display for headings */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* ========================================== */
/* SUBTLE ANIMATIONS - ELEGANT & PROFESSIONAL */
/* ========================================== */

/* Smooth fade for scroll animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================== */
/* CSS VARIABLES - WARM HEALTHCARE PALETTE    */
/* ========================================== */
:root {
    /* Primary Brand Colors - Warm Teal */
    --primary-color: #2A7C7B;
    --primary-dark: #1D5B5A;
    --primary-light: #3D9190;
    --primary-lighter: #E8F4F4;
    --primary-muted: #A8CFCE;

    /* Accent Colors - Soft Coral & Warm Tones */
    --accent-coral: #E07B6B;
    --accent-coral-light: #FDF4F2;
    --accent-coral-muted: #F2C4BD;
    --accent-warm: #D4A574;
    --accent-warm-light: #FBF7F3;

    /* Success/Status Colors */
    --success-green: #5AAF8C;
    --success-light: #E8F5EF;

    /* Neutrals - Warm Grays */
    --text-dark: #2D3748;
    --text-medium: #4A5568;
    --text-light: #718096;
    --text-muted: #A0AEC0;

    /* Warm Backgrounds */
    --bg-white: #FFFFFF;
    --bg-cream: #FDFCFA;
    --bg-warm: #FAF8F5;
    --bg-light: #F7F5F2;
    --bg-subtle: #F0EDE8;
    --bg-dark: #2D3748;

    /* Borders */
    --border-light: #E8E4DE;
    --border-medium: #D4CFC6;

    /* Elegant Gradients - Subtle */
    --gradient-primary: linear-gradient(135deg, #2A7C7B 0%, #3D9190 100%);
    --gradient-warm: linear-gradient(135deg, #E07B6B 0%, #D4A574 100%);
    --gradient-hero: linear-gradient(165deg, #FDFCFA 0%, #F0EFEB 40%, #E8F4F4 100%);
    --gradient-hero-overlay: linear-gradient(135deg, rgba(42, 124, 123, 0.03) 0%, rgba(224, 123, 107, 0.02) 100%);
    --gradient-card: linear-gradient(180deg, #FFFFFF 0%, #FDFCFA 100%);

    /* Shadows - Softer, Warmer */
    --shadow-sm: 0 1px 3px rgba(45, 55, 72, 0.04);
    --shadow-md: 0 4px 12px rgba(45, 55, 72, 0.06);
    --shadow-lg: 0 8px 24px rgba(45, 55, 72, 0.08);
    --shadow-xl: 0 16px 40px rgba(45, 55, 72, 0.1);
    --shadow-card: 0 2px 8px rgba(45, 55, 72, 0.04), 0 8px 24px rgba(45, 55, 72, 0.06);
    --shadow-card-hover: 0 4px 12px rgba(45, 55, 72, 0.06), 0 12px 32px rgba(45, 55, 72, 0.1);

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --radius-2xl: 28px;
    --radius-full: 9999px;

    /* Transitions - Smooth, Not Bouncy */
    --transition-fast: 150ms ease-out;
    --transition-base: 200ms ease-out;
    --transition-slow: 300ms ease-out;

    /* Typography */
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ========================================== */
/* RESET & BASE STYLES                        */
/* ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    line-height: 1.65;
    color: var(--text-dark);
    background: var(--bg-cream);
    font-weight: 400;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========================================== */
/* TYPOGRAPHY - ELEGANT SERIF + SANS          */
/* ========================================== */
h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.25;
    color: var(--text-dark);
}

h4, h5, h6 {
    font-family: var(--font-sans);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

h2 {
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    font-weight: 600;
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 500;
}

p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================== */
/* SCROLL ANIMATIONS - SUBTLE REVEALS         */
/* ========================================== */
.fade-in {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-16px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(16px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

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

/* Stagger delays for card animations */
.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.1s; }
.stagger-3 { transition-delay: 0.15s; }
.stagger-4 { transition-delay: 0.2s; }

/* ========================================== */
/* HEADER & NAVIGATION                        */
/* ========================================== */
.navbar {
    background: rgba(253, 252, 250, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow var(--transition-base), border-color var(--transition-base);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--border-light);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1px;
}

.logo {
    height: 56px;
    transition: opacity var(--transition-fast);
}

.logo:hover {
    opacity: 0.85;
}

/* Premium badge glow animation */
@keyframes badgeGlow {
    0%, 100% {
        box-shadow: 0 0 4px rgba(245, 158, 11, 0.4),
                    0 0 8px rgba(245, 158, 11, 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 8px rgba(245, 158, 11, 0.6),
                    0 0 16px rgba(245, 158, 11, 0.3),
                    0 0 24px rgba(245, 158, 11, 0.1);
        transform: scale(1.03);
    }
}

/* Shimmer sweep effect */
@keyframes shimmer {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.logo-badge {
    display: inline-block;
    position: relative;
    background: linear-gradient(
        110deg,
        #F59E0B 0%,
        #F59E0B 40%,
        #FBBF24 50%,
        #F59E0B 60%,
        #F59E0B 100%
    );
    background-size: 200% 100%;
    color: white;
    font-size: 9px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
    text-decoration: none;
    animation:
        badgeGlow 2.5s ease-in-out infinite,
        shimmer 3s ease-in-out infinite;
    box-shadow: 0 0 4px rgba(245, 158, 11, 0.4);
}

.nav-brand a {
    text-decoration: none;
}

/* Service Selector - "How can we help" */
.hero-service-selector {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 24px 28px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
    margin-bottom: 32px;
}

.selector-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.service-selector-form .selector-row {
    display: flex;
    gap: 12px;
    align-items: stretch;
}

.select-wrapper {
    position: relative;
    flex: 1;
}

.select-wrapper select {
    width: 100%;
    padding: 14px 44px 14px 18px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-family: inherit;
    color: var(--text-dark);
    background: var(--bg-white);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: all var(--transition-fast);
}

.select-wrapper select:hover {
    border-color: var(--border-medium);
}

.select-wrapper select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-lighter);
}

.select-wrapper .select-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 12px;
    pointer-events: none;
}

.service-selector-form .btn {
    white-space: nowrap;
    padding: 14px 24px;
}

/* Hero Stats Section - Right Side Grid */
.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.hero-stat-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 20px 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
}

.hero-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.hero-stat-card .stat-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 12px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.hero-stat-card:nth-child(1) .stat-icon {
    background: var(--primary-lighter);
    color: var(--primary-color);
}

.hero-stat-card:nth-child(2) .stat-icon {
    background: var(--accent-warm-light);
    color: var(--accent-warm);
}

.hero-stat-card:nth-child(3) .stat-icon {
    background: var(--accent-coral-light);
    color: var(--accent-coral);
}

.hero-stat-card .stat-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-stat-card .stat-number {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
}

.hero-stat-card .stat-label {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Human Touch Element */
.hero-human-touch {
    background: linear-gradient(135deg, var(--primary-lighter) 0%, #EDF5F5 100%);
    border-radius: var(--radius-xl);
    padding: 24px;
    border: 1px solid rgba(42, 124, 123, 0.1);
}

.care-message {
    display: flex;
    align-items: center;
    gap: 16px;
}

.message-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(42, 124, 123, 0.25);
}

.message-avatar i {
    color: white;
    font-size: 24px;
}

.message-content {
    flex: 1;
}

.message-quote {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 4px;
    font-style: italic;
    line-height: 1.4;
}

.message-author {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 600;
}

/* CTA Buttons in Hero Stats Area */
.hero-cta-buttons {
    display: flex;
    gap: 12px;
}

.hero-cta-buttons .btn {
    flex: 1;
    text-align: center;
    justify-content: center;

}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color var(--transition-fast);
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--primary-color);
    transition: width var(--transition-base);
}

.nav-links a:hover {
    color: var(--primary-color);
}

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

.nav-cta {
    background: var(--primary-color);
    color: white !important;
    padding: 10px 22px !important;
    border-radius: var(--radius-full);
    font-weight: 600 !important;
    transition: background var(--transition-fast), transform var(--transition-fast);
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition-base);
    border-radius: 1px;
}

/* ========================================== */
/* HERO SECTION - ELEGANT HEALTHCARE DESIGN   */
/* ========================================== */
.hero {
    background: var(--gradient-hero);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

/* Subtle background texture overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-hero-overlay);
    pointer-events: none;
}

/* Soft decorative circle - top right */
.hero::after {
    content: '';
    position: absolute;
    top: -15%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(42, 124, 123, 0.04) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

/* Decorative shapes - static, subtle */
.hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

/* Top decorative dot */
.shape-1 {
    top: 18%;
    right: 12%;
    width: 12px;
    height: 12px;
    background: var(--primary-muted);
}

/* Small accent dot */
.shape-2 {
    top: 55%;
    right: 8%;
    width: 8px;
    height: 8px;
    background: var(--accent-coral-muted);
}

/* Left decorative element */
.shape-3 {
    top: 35%;
    left: 6%;
    width: 10px;
    height: 10px;
    background: var(--accent-warm);
    opacity: 0.4;
}

/* Bottom accent */
.shape-4 {
    bottom: 25%;
    left: 12%;
    width: 6px;
    height: 6px;
    background: var(--primary-muted);
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    max-width: 560px;
}

/* Badge - Clean, no animation */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-white);
    color: var(--primary-color);
    padding: 10px 18px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 28px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    letter-spacing: 0.01em;
}

.hero-badge i {
    color: var(--accent-coral);
    font-size: 14px;
}

/* Hero heading - Serif, elegant */
.hero h1 {
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.15;
}

/* Highlighted text - Simple color, no animation */
.hero h1 .highlight {
    color: var(--primary-color);
    display: inline;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 36px;
    max-width: 480px;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Stats Row - Elegant metrics display */
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid var(--border-light);
}

.hero-stat {
    text-align: left;
}

.hero-stat-value {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 4px;
}

.hero-stat-label {
    font-size: 0.8125rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Trust indicators - Clean, minimal */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-medium);
    font-size: 14px;
    font-weight: 500;
}

.trust-item i {
    color: var(--primary-color);
    font-size: 16px;
    opacity: 0.85;
}

/* Service Selector - "How can we help" */
.hero-service-selector {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 24px 28px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
    margin-bottom: 32px;
}

.selector-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.service-selector-form .selector-row {
    display: flex;
    gap: 12px;
    align-items: stretch;
}

.select-wrapper {
    position: relative;
    flex: 1;
}

.select-wrapper select {
    width: 100%;
    padding: 14px 44px 14px 18px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-family: inherit;
    color: var(--text-dark);
    background: var(--bg-white);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: all var(--transition-fast);
}

.select-wrapper select:hover {
    border-color: var(--border-medium);
}

.select-wrapper select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-lighter);
}

.select-wrapper .select-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 12px;
    pointer-events: none;
}

.service-selector-form .btn {
    white-space: nowrap;
    padding: 14px 24px;
}

/* Hero Stats Section - Right Side Grid */
.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.hero-stat-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 20px 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
}

.hero-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.hero-stat-card .stat-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 12px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.hero-stat-card:nth-child(1) .stat-icon {
    background: var(--primary-lighter);
    color: var(--primary-color);
}

.hero-stat-card:nth-child(2) .stat-icon {
    background: var(--accent-warm-light);
    color: var(--accent-warm);
}

.hero-stat-card:nth-child(3) .stat-icon {
    background: var(--accent-coral-light);
    color: var(--accent-coral);
}

.hero-stat-card .stat-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-stat-card .stat-number {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
}

.hero-stat-card .stat-label {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Human Touch Element */
.hero-human-touch {
    background: linear-gradient(135deg, var(--primary-lighter) 0%, #EDF5F5 100%);
    border-radius: var(--radius-xl);
    padding: 24px;
    border: 1px solid rgba(42, 124, 123, 0.1);
}

.care-message {
    display: flex;
    align-items: center;
    gap: 16px;
}

.message-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(42, 124, 123, 0.25);
}

.message-avatar i {
    color: white;
    font-size: 24px;
}

.message-content {
    flex: 1;
}

.message-quote {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 4px;
    font-style: italic;
    line-height: 1.4;
}

.message-author {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 600;
}

/* CTA Buttons in Hero Stats Area */
.hero-cta-buttons {
    display: flex;
    gap: 12px;
}

.hero-cta-buttons .btn {
    flex: 1;
    text-align: center;
    justify-content: center;

}

/* Hero visual/illustration side */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
}

/* Floating cards - Subtle, professional */
.floating-card {
    position: absolute;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid var(--border-light);
    transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.floating-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.floating-card-1 {
    top: 8%;
    left: -8%;
}

.floating-card-2 {
    bottom: 22%;
    right: -4%;
}

.floating-card-3 {
    bottom: 4%;
    left: 8%;
}

.floating-card .card-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.floating-card .card-icon.teal {
    background: var(--primary-lighter);
    color: var(--primary-color);
}

.floating-card .card-icon.coral {
    background: var(--accent-coral-light);
    color: var(--accent-coral);
}

.floating-card .card-icon.green {
    background: var(--success-light);
    color: var(--success-green);
}

.floating-card .card-text {
    font-size: 13px;
}

.floating-card .card-text strong {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 2px;
}

.floating-card .card-text span {
    color: var(--text-light);
    font-size: 12px;
}

/* Main hero illustration - Clean card style */
.hero-illustration {
    width: 100%;
    height: 380px;
    background: var(--bg-white);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

/* Subtle gradient overlay */
.hero-illustration::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        145deg,
        rgba(42, 124, 123, 0.03) 0%,
        transparent 40%,
        rgba(224, 123, 107, 0.02) 100%
    );
    pointer-events: none;
}

.hero-illustration i {
    font-size: 72px;
    color: var(--primary-color);
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.hero-illustration span {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* ========================================== */
/* BUTTONS - ELEGANT & PROFESSIONAL           */
/* ========================================== */
.btn {
    padding: 14px 28px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    border: none;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 2px 8px rgba(42, 124, 123, 0.2);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(42, 124, 123, 0.25);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(42, 124, 123, 0.2);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--text-dark);
    border: 1.5px solid var(--border-medium);
}

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

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

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

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

.btn-icon {
    font-size: 16px;
    transition: transform var(--transition-fast);
}

.btn:hover .btn-icon {
    transform: translateX(3px);
}

/* ========================================== */
/* SERVICES SECTION                           */
/* ========================================== */
.services {
    padding: 100px 0;
    background: var(--bg-white);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 540px;
    margin: 0 auto 56px;
}

.section-label {
    display: inline-block;
    background: var(--primary-lighter);
    color: var(--primary-color);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.section-header h2 {
    margin-bottom: 14px;
}

.section-header p {
    font-size: 1.0625rem;
    color: var(--text-medium);
    line-height: 1.7;
}

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

/* Service Cards - Clean, Professional */
.service-card {
    background: var(--bg-white);
    padding: 36px 24px;
    border-radius: var(--radius-xl);
    text-align: center;
    transition: transform var(--transition-slow), box-shadow var(--transition-slow);
    position: relative;
    border: 1px solid var(--border-light);
}

/* Top accent bar */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card.available {
    border-color: var(--primary-muted);
}

.service-card.available::before {
    opacity: 1;
}

.service-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    transition: transform var(--transition-base);
}

.service-card:nth-child(1) .service-icon {
    background: var(--primary-lighter);
    color: var(--primary-color);
}

.service-card:nth-child(2) .service-icon {
    background: var(--accent-coral-light);
    color: var(--accent-coral);
}

.service-card:nth-child(3) .service-icon {
    background: var(--accent-warm-light);
    color: var(--accent-warm);
}

.service-card:nth-child(4) .service-icon {
    background: var(--success-light);
    color: var(--success-green);
}

.service-card:hover .service-icon {
    transform: scale(1.08);
}

.service-card h3 {
    margin-bottom: 10px;
    color: var(--text-dark);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1.125rem;
}

.service-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.65;
}

/* Status Badges */
.badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.badge-available {
    background: var(--success-light);
    color: var(--success-green);
}

.badge-coming-soon {
    background: var(--bg-subtle);
    color: var(--text-muted);
    transition: background var(--transition-base), color var(--transition-base);
}

.service-card:hover .badge-coming-soon {
    background: var(--primary-lighter);
    color: var(--primary-color);
}

/* ========================================== */
/* HOW IT WORKS - CLEAN VISUAL FLOW           */
/* ========================================== */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-light);
    position: relative;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    margin-top: 56px;
}

/* Connection line between steps */
.steps-container::before {
    content: '';
    position: absolute;
    top: 52px;
    left: 18%;
    right: 18%;
    height: 2px;
    background: var(--border-light);
    z-index: 0;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number-wrapper {
    width: 104px;
    height: 104px;
    margin: 0 auto 28px;
    position: relative;
}

.step-number {
    width: 100%;
    height: 100%;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.step:nth-child(1) .step-number {
    color: var(--primary-color);
    border: 2px solid var(--primary-lighter);
}

.step:nth-child(2) .step-number {
    color: var(--accent-coral);
    border: 2px solid var(--accent-coral-light);
}

.step:nth-child(3) .step-number {
    color: var(--success-green);
    border: 2px solid var(--success-light);
}

.step:hover .step-number {
    transform: scale(1.06);
    box-shadow: var(--shadow-lg);
}

.step:hover .step-icon {
    transform: scale(1.1);
}

/* Decorative ring - static, subtle */
.step-number-wrapper::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px dashed var(--border-light);
}

.step-icon {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    z-index: 3;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base);
}

.step:nth-child(1) .step-icon {
    background: var(--primary-color);
    color: white;
}

.step:nth-child(2) .step-icon {
    background: var(--accent-coral);
    color: white;
}

.step:nth-child(3) .step-icon {
    background: var(--success-green);
    color: white;
}

.step h3 {
    margin-bottom: 10px;
    font-family: var(--font-sans);
    font-weight: 600;
}

.step p {
    font-size: 14px;
    color: var(--text-light);
    max-width: 260px;
    margin: 0 auto;
    line-height: 1.65;
}

/* ========================================== */
/* WHY CHOOSE SECTION - BALANCED LAYOUT       */
/* ========================================== */
.why-choose {
    padding: 100px 0;
    background: var(--bg-cream);
}

.why-choose .container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: center;
}

.why-choose-content {
    max-width: 480px;
}

.why-choose-content h2 {
    margin-bottom: 20px;
}

.why-choose-content > p {
    font-size: 1.0625rem;
    margin-bottom: 36px;
    line-height: 1.7;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    gap: 18px;
    padding: 20px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    border: 1px solid var(--border-light);
}

.feature-item:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
}

.feature-item:hover .feature-icon {
    transform: scale(1.05);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.feature-item:nth-child(1) .feature-icon {
    background: var(--primary-lighter);
    color: var(--primary-color);
}

.feature-item:nth-child(2) .feature-icon {
    background: var(--accent-warm-light);
    color: var(--accent-warm);
}

.feature-item:nth-child(3) .feature-icon {
    background: var(--success-light);
    color: var(--success-green);
}

.feature-item:nth-child(4) .feature-icon {
    background: var(--accent-coral-light);
    color: var(--accent-coral);
}

.feature-text h3 {
    margin-bottom: 4px;
    font-size: 1rem;
    font-family: var(--font-sans);
    font-weight: 600;
}

.feature-text p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Stats grid on the right */
.why-choose-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 28px 24px;
    text-align: center;
    transition: transform var(--transition-slow), box-shadow var(--transition-slow);
    position: relative;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-card:nth-child(1) { border-top: 3px solid var(--primary-color); }
.stat-card:nth-child(2) { border-top: 3px solid var(--accent-coral); }
.stat-card:nth-child(3) { border-top: 3px solid var(--accent-warm); }
.stat-card:nth-child(4) { border-top: 3px solid var(--success-green); }

/* Elegant stat number */
.stat-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.1;
}

.stat-card:nth-child(1) .stat-number { color: var(--primary-color); }
.stat-card:nth-child(2) .stat-number { color: var(--accent-coral); }
.stat-card:nth-child(3) .stat-number { color: var(--accent-warm); }
.stat-card:nth-child(4) .stat-number { color: var(--success-green); }

.stat-label {
    color: var(--text-light);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* ========================================== */
/* TESTIMONIALS SECTION                       */
/* ========================================== */
.testimonials {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 28px;
    position: relative;
    border: 1px solid var(--border-light);
    transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

/* Top accent line */
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-quote {
    font-size: 48px;
    color: var(--primary-muted);
    opacity: 0.5;
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-content {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

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

.author-info strong {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
}

.author-info span {
    font-size: 12px;
    color: var(--text-light);
}

.testimonial-rating {
    margin-top: 14px;
    color: var(--accent-warm);
    display: flex;
    gap: 2px;
    font-size: 13px;
}

/* ========================================== */
/* PARTNER SECTION                            */
/* ========================================== */
.partner-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin: 56px 0;
}

.partner-card {
    background: var(--bg-white);
    padding: 36px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    transition: transform var(--transition-slow), box-shadow var(--transition-slow);
    position: relative;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.partner-card:nth-child(1)::before {
    background: var(--primary-color);
}

.partner-card:nth-child(2)::before {
    background: var(--accent-coral);
}

.partner-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.partner-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    transition: transform var(--transition-base);
}

.partner-card:hover .partner-icon {
    transform: scale(1.05);
}

.partner-card:nth-child(1) .partner-icon {
    background: var(--primary-lighter);
    color: var(--primary-color);
}

.partner-card:nth-child(2) .partner-icon {
    background: var(--accent-coral-light);
    color: var(--accent-coral);
}

.partner-card h3 {
    font-size: 1.375rem;
    margin-bottom: 12px;
    font-family: var(--font-sans);
    font-weight: 600;
}

.partner-card > p {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.65;
    font-size: 14px;
}

.partner-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.partner-benefits li {
    padding: 10px 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border-light);
    font-size: 14px;
    transition: padding-left var(--transition-fast);
}

.partner-benefits li:hover {
    padding-left: 6px;
}

.partner-benefits li:last-child {
    border-bottom: none;
}

.partner-benefits li i {
    color: var(--success-green);
    font-size: 13px;
}

.partner-cta {
    text-align: center;
    padding: 52px;
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
}

.partner-cta h3 {
    font-size: 1.625rem;
    margin-bottom: 12px;
}

.partner-cta p {
    color: var(--text-medium);
    margin-bottom: 28px;
    font-size: 15px;
}

/* ========================================== */
/* CTA SECTION                                */
/* ========================================== */
.cta {
    padding: 80px 0;
    background: var(--primary-color);
    text-align: center;
    color: white;
    position: relative;
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 14px;
    color: white;
}

.cta > .container > p {
    font-size: 1.0625rem;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.early-access-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 460px;
    margin: 0 auto;
}

.early-access-form input {
    flex: 1;
    padding: 14px 22px;
    border: none;
    border-radius: var(--radius-full);
    font-size: 15px;
    background: white;
    box-shadow: var(--shadow-md);
    transition: box-shadow var(--transition-base);
}

.early-access-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.4), var(--shadow-md);
}

.early-access-form button {
    background: white;
    color: var(--primary-color);
    border: none;
    cursor: pointer;
    font-weight: 600;
    padding: 14px 24px;
}

.early-access-form button:hover {
    background: var(--bg-cream);
}

/* ========================================== */
/* CONTACT SECTION                            */
/* ========================================== */
.contact-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.contact-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info {
    max-width: 420px;
}

.contact-info h2 {
    margin-bottom: 14px;
}

.contact-info > p {
    font-size: 1.0625rem;
    margin-bottom: 36px;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 18px;
}

.contact-method-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--primary-lighter);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-method-text strong {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 2px;
    font-size: 14px;
}

.contact-method-text span {
    color: var(--text-light);
    font-size: 13px;
}

.contact-form-wrapper {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-weight: 600;
    font-size: 13px;
    color: var(--text-dark);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-family: inherit;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    background: var(--bg-white);
}

.contact-form input:hover,
.contact-form textarea:hover {
    border-color: var(--border-medium);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-lighter);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    width: 100%;
    padding: 16px;
    margin-top: 6px;
}

/* ========================================== */
/* FOOTER                                     */
/* ========================================== */
footer {
    background: var(--bg-dark);
    color: white;
    padding: 72px 0 28px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 56px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.7;
    max-width: 280px;
}

.footer-logo {
    height: 36px;
    filter: brightness(0) invert(1);
}

.footer-column h4 {
    color: white;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 20px;
}

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: white;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    transition: background var(--transition-fast);
}

.social-links a:hover {
    background: var(--primary-color);
}

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

.footer-bottom p {
    color: var(--text-muted);
    font-size: 13px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: white;
}

/* ========================================== */
/* RESPONSIVE DESIGN                          */
/* ========================================== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .hero-visual {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-choose .container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .why-choose-content {
        max-width: 100%;
        text-align: center;
    }

    .features-list {
        max-width: 600px;
        margin: 0 auto;
    }

    .why-choose-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-section .container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-info {
        max-width: 100%;
        text-align: center;
    }

    .contact-methods {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar .container {
        padding: 12px 20px;
    }

    .nav-links {
        display: none;
    }

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

    .hero {
        padding: 60px 0 80px;
        min-height: auto;
    }

    .hero-badge {
        font-size: 12px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .hero-trust {
        flex-direction: column;
        gap: 12px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .steps-container::before {
        display: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 64px auto 0;
    }

    .partner-grid {
        grid-template-columns: 1fr;
    }

    .partner-card {
        padding: 32px;
    }

    .partner-cta {
        padding: 48px 24px;
    }

    .early-access-form {
        flex-direction: column;
    }

    .early-access-form input,
    .early-access-form button {
        width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 32px 24px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

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

    .services,
    .how-it-works,
    .why-choose,
    .testimonials,
    .partner-section,
    .contact-section {
        padding: 80px 0;
    }

    .step-number-wrapper {
        width: 100px;
        height: 100px;
    }

    .step-number {
        font-size: 28px;
    }

    .stat-card {
        padding: 24px;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* ========================================== */
/* UTILITY CLASSES                            */
/* ========================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.hidden { display: none; }
.visible { display: block; }

/* ========================================== */
/* ACCESSIBILITY & INTERACTIONS               */
/* ========================================== */

/* Global focus states for accessibility */
*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/* Text selection color */
::selection {
    background: var(--primary-lighter);
    color: var(--primary-dark);
}

/* Scrollbar styling - subtle */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--border-medium);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* Smooth page load */
body.loaded {
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Hover lift utility - subtle */
.hover-lift {
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.hover-lift:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ========================================== */
/* NEW HERO SECTION COMPONENTS               */
/* ========================================== */

/* Service Selector - "How can we help" */
.hero-service-selector {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 24px 28px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
    margin-bottom: 32px;
}

.selector-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.service-selector-form .selector-row {
    display: flex;
    gap: 12px;
    align-items: stretch;
}

.select-wrapper {
    position: relative;
    flex: 1;
}

.select-wrapper select {
    width: 100%;
    padding: 14px 44px 14px 18px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-family: inherit;
    color: var(--text-dark);
    background: var(--bg-white);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: all var(--transition-fast);
}

.select-wrapper select:hover {
    border-color: var(--border-medium);
}

.select-wrapper select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-lighter);
}

.select-wrapper .select-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 12px;
    pointer-events: none;
    transition: transform var(--transition-fast);
}

.select-wrapper select:focus + .select-icon {
    transform: translateY(-50%) rotate(180deg);
}

.service-selector-form .btn {
    white-space: nowrap;
    padding: 14px 24px;
}

/* Hero Stats Section - Right Side Grid */
.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.hero-stat-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 20px 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
}

.hero-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-muted);
}

.hero-stat-card .stat-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 12px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.hero-stat-card:nth-child(1) .stat-icon {
    background: var(--primary-lighter);
    color: var(--primary-color);
}

.hero-stat-card:nth-child(2) .stat-icon {
    background: var(--accent-warm-light);
    color: var(--accent-warm);
}

.hero-stat-card:nth-child(3) .stat-icon {
    background: var(--accent-coral-light);
    color: var(--accent-coral);
}

.hero-stat-card .stat-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-stat-card .stat-number {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
}

.hero-stat-card .stat-label {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Human Touch Element */
.hero-human-touch {
    background: linear-gradient(135deg, var(--primary-lighter) 0%, #EDF5F5 100%);
    border-radius: var(--radius-xl);
    padding: 24px;
    border: 1px solid rgba(42, 124, 123, 0.1);
}

.care-message {
    display: flex;
    align-items: center;
    gap: 16px;
}

.message-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(42, 124, 123, 0.25);
}

.message-avatar i {
    color: white;
    font-size: 24px;
}

.message-content {
    flex: 1;
}

.message-quote {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 4px;
    font-style: italic;
    line-height: 1.4;
}

.message-author {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 600;
}

/* CTA Buttons in Hero Stats Area */
.hero-cta-buttons {
    display: flex;
    gap: 12px;
}

.hero-cta-buttons .btn {
    flex: 1;
    text-align: center;
    justify-content: center;
}

/* ========================================== */
/* HERO RESPONSIVE UPDATES                    */
/* ========================================== */
@media (max-width: 1024px) {
    .hero-stats {
        max-width: 500px;
        margin: 40px auto 0;
    }
    
    .hero-service-selector {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .hero-stat-card {
        display: flex;
        align-items: center;
        gap: 16px;
        text-align: left;
        padding: 16px 20px;
    }
    
    .hero-stat-card .stat-icon {
        margin: 0;
    }
    
    .hero-stat-card .stat-content {
        align-items: flex-start;
    }
    
    .service-selector-form .selector-row {
        flex-direction: column;
    }
    
    .service-selector-form .btn {
        width: 100%;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
    }
    
    .hero-cta-buttons .btn {
        width: 100%;
    }
    
    .care-message {
        flex-direction: column;
        text-align: center;
    }
    
    .message-content {
        text-align: center;
    }
}

/* ========================================== */
/* APP DOWNLOAD SECTION                       */
/* ========================================== */
.app-download {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

.app-download-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.app-store-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.app-store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-dark);
    color: white;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

.app-store-btn:hover {
    background: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.app-store-btn i {
    font-size: 28px;
    color: white;
}

.app-store-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.app-store-text .small-text {
    font-size: 10px;
    font-weight: 400;
    opacity: 0.85;
}

.app-store-text .store-name {
    font-size: 16px;
    font-weight: 600;
}

/* App Download Responsive */
@media (max-width: 768px) {
    .app-store-buttons {
        justify-content: center;
    }

    .app-store-btn {
        flex: 1;
        min-width: 160px;
        max-width: 200px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .app-store-buttons {
        flex-direction: column;
        align-items: center;
    }

    .app-store-btn {
        width: 100%;
        max-width: 220px;
    }
}
