/* Modern Landing Page Styles - Dark Theme */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors */
    --primary-color: #4A1B5D;
    --primary-light: #6B2D7D;
    --primary-lighter: #8B4A9D;
    --primary-dark: #3A1549;
    --primary-darker: #2A0F35;
    
    /* Secondary Colors */
    --secondary-color: #C7A647;
    --secondary-light: #D4B866;
    --secondary-lighter: #E1CA85;
    --secondary-dark: #B89638;
    --secondary-darker: #A08529;
    
    /* Dark Theme Colors */
    --bg-dark: #1a0d21;
    --bg-darker: #140a1a;
    --bg-card: #241530;
    --bg-card-hover: #2d1a3d;
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #e0d0e8;
    --text-light: #b8a5c5;
    --text-muted: #8b7a96;
    
    /* Border & Divider */
    --border-color: rgba(74, 27, 93, 0.3);
    --border-light: rgba(199, 166, 71, 0.2);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 20px rgba(199, 166, 71, 0.3);
    
    /* Typography Scale - International Standards (Major Third: 1.25) */
    --font-size-xs: 0.75rem;      /* 12px */
    --font-size-sm: 0.875rem;     /* 14px */
    --font-size-base: 1rem;       /* 16px - WCAG minimum */
    --font-size-md: 1.125rem;     /* 18px */
    --font-size-lg: 1.25rem;      /* 20px */
    --font-size-xl: 1.5rem;       /* 24px */
    --font-size-2xl: 1.875rem;    /* 30px */
    --font-size-3xl: 2.25rem;     /* 36px */
    --font-size-4xl: 3rem;        /* 48px */
    --font-size-5xl: 3.75rem;     /* 60px */
    
    /* Line Heights - International Standards */
    --line-height-tight: 1.2;     /* Headings */
    --line-height-normal: 1.5;    /* Body text */
    --line-height-relaxed: 1.6;   /* Paragraphs */
    --line-height-loose: 1.75;    /* Long form content */
    
    /* Spacing Scale - 8px base unit (International Standard) */
    --spacing-1: 0.25rem;   /* 4px */
    --spacing-2: 0.5rem;    /* 8px */
    --spacing-3: 0.75rem;   /* 12px */
    --spacing-4: 1rem;      /* 16px */
    --spacing-5: 1.25rem;   /* 20px */
    --spacing-6: 1.5rem;    /* 24px */
    --spacing-8: 2rem;      /* 32px */
    --spacing-10: 2.5rem;   /* 40px */
    --spacing-12: 3rem;     /* 48px */
    --spacing-16: 4rem;     /* 64px */
    --spacing-20: 5rem;     /* 80px */
    
    /* Touch Targets - Mobile App Standards */
    --touch-target-min: 2.75rem;  /* 44px - iOS minimum */
    --touch-target-comfort: 3rem; /* 48px - Android recommended */
}

/* Base Typography - International Standards */
html {
    font-size: 16px; /* Base font size (WCAG recommended minimum) */
    overflow-x: hidden; /* Prevent horizontal scroll */
    overflow-y: scroll; /* Always show vertical scrollbar to prevent layout shift */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

/* Global Responsive Container Fixes */
body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

.container {
    width: 100%;
    max-width: 100%;
    padding-left: var(--spacing-4);
    padding-right: var(--spacing-4);
    box-sizing: border-box;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .container {
        padding-left: var(--spacing-3);
        padding-right: var(--spacing-3);
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: var(--spacing-2);
        padding-right: var(--spacing-2);
    }
}

*, *::before, *::after {
    box-sizing: inherit;
}

/* Custom Wine Bottle Cursor - Exact Font Awesome fa-wine-bottle SVG with theme colors, tilted left and animated */
body {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 640 640"><g transform="translate(320,320)"><g><animateTransform attributeName="transform" type="rotate" values="-40;-10;-40" dur="3s" repeatCount="indefinite"/><path d="M240 32C240 14.3 254.3 0 272 0L368 0C385.7 0 400 14.3 400 32C400 43.8 393.6 54.2 384 59.7L384 205.3C440.5 230 480 286.4 480 352L480 576C480 611.3 451.3 640 416 640L224 640C188.7 640 160 611.3 160 576L160 352C160 286.4 199.5 230 256 205.3L256 59.7C246.4 54.2 240 43.8 240 32zM256 352C238.3 352 224 366.3 224 384L224 512C224 529.7 238.3 544 256 544L384 544C401.7 544 416 529.7 416 512L416 384C416 366.3 401.7 352 384 352L256 352z" fill="%23C7A647" transform="translate(-320,-320)"/></g></g></svg>') 20 20, auto;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem; /* 16px */
    line-height: 1.6; /* 1.6 for optimal readability (WCAG AA) */
    color: var(--text-primary);
    background-color: var(--bg-dark);
    overflow-x: hidden; /* Prevent horizontal scroll */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    min-height: 100vh;
}

/* Normal pointer for interactive elements */
a, button, .btn, .btn-primary, .btn-outline, .btn-consultation, 
input[type="submit"], input[type="button"], select, label, 
[role="button"], [onclick], .clickable, .nav-links a, .nav-links li,
.logo, .info-item, .mobile-menu-toggle {
    cursor: pointer !important;
}

/* Text selection cursor */
input[type="text"], input[type="email"], input[type="tel"], input[type="number"], textarea {
    cursor: text !important;
}

/* Typography - Headings with EB Garamond - International Standards */
h1, h2, h3, h4, h5, h6 {
    font-family: 'EB Garamond', serif;
    font-weight: 600;
    color: var(--text-primary);
    line-height: var(--line-height-tight);
    margin-bottom: var(--spacing-4);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(var(--font-size-3xl), 5vw, var(--font-size-5xl)); /* 36px - 60px */
    font-weight: 700;
    line-height: var(--line-height-tight);
}

h2 {
    font-size: clamp(var(--font-size-2xl), 4vw, var(--font-size-4xl)); /* 30px - 48px */
    font-weight: 600;
    line-height: var(--line-height-tight);
}

h3 {
    font-size: clamp(var(--font-size-xl), 3vw, var(--font-size-2xl)); /* 24px - 30px */
    font-weight: 600;
    line-height: var(--line-height-tight);
}

h4 {
    font-size: clamp(var(--font-size-lg), 2.5vw, var(--font-size-xl)); /* 20px - 24px */
    font-weight: 500;
    line-height: var(--line-height-tight);
}

h5 {
    font-size: var(--font-size-md); /* 18px */
    font-weight: 500;
    line-height: var(--line-height-normal);
}

h6 {
    font-size: var(--font-size-base); /* 16px */
    font-weight: 500;
    line-height: var(--line-height-normal);
}

/* Paragraphs - Inter font - International Standards */
p {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-base); /* 16px - WCAG minimum */
    line-height: var(--line-height-relaxed); /* 1.6 for optimal readability */
    margin-bottom: var(--spacing-4);
    color: var(--text-secondary);
}

/* Top Info Bar */
.top-info-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--primary-darker);
    z-index: 1001;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.4s;
    border-bottom: 1px solid rgba(199, 166, 71, 0.1);
    will-change: transform;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
}

.top-info-bar.hidden {
    transform: translate3d(0, -100%, 0);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.top-info-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info-left {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem; /* 14px */
    font-weight: 400;
    transition: color 0.3s ease;
}

.info-item:hover {
    color: var(--secondary-color);
}

.info-icon {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    flex-shrink: 0;
}

.top-info-right {
    display: flex;
    align-items: center;
}

.info-tags {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem; /* 14px */
    color: var(--text-secondary);
    font-weight: 400;
}

/* Main Navigation Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s ease, 
                background 0.3s ease;
    border-bottom: 1px solid rgba(199, 166, 71, 0.15);
    will-change: transform;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
    /* Prevent layout shifts - ensure consistent height */
    min-height: 70px;
}

.main-header.has-top-bar {
    transform: translate3d(0, 45px, 0); /* Height of top info bar */
}

.main-header.top-bar-hidden {
    transform: translate3d(0, 0, 0) !important; /* Move to top when top bar is hidden */
}

.main-header.scrolled {
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, rgba(74, 27, 93, 0.98) 0%, rgba(58, 21, 73, 0.98) 100%);
}

.navbar {
    max-width: 1360px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-fallback {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 32px;
    height: 32px;
    stroke: var(--secondary-color);
    fill: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.logo-text {
    font-family: 'EB Garamond', serif;
    font-size: var(--font-size-2xl); /* 30px - standardized */
    font-weight: 700;
    color: var(--text-primary);
    line-height: var(--line-height-tight);
    transition: color 0.3s ease;
}

.logo:hover .logo-icon {
    stroke: var(--secondary-light);
    transform: scale(1.05);
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 1rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--font-size-base); /* 16px - WCAG standard */
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    position: relative;
    line-height: 1.5;
    padding: 0.5rem 1rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

/* Remove underline effect from buttons */
.nav-links a.btn,
.nav-links a.btn-consultation {
    padding: 0.5rem 1rem; /* Reset padding for buttons */
}

.nav-links a.btn::after,
.nav-links a.btn-consultation::after {
    display: none; /* Remove underline from buttons */
}

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

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

/* Buttons should not change color on hover in nav */
.nav-links a.btn:hover,
.nav-links a.btn-consultation:hover {
    color: var(--text-primary); /* Keep button text color on hover */
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-3) var(--spacing-6); /* 12px vertical, 24px horizontal - International standard */
    border-radius: var(--spacing-2);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--font-size-base); /* 16px - WCAG standard */
    line-height: var(--line-height-normal);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    min-height: var(--touch-target-min); /* 44px - WCAG/Apple/Google standard */
    white-space: nowrap;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--primary-darker);
    border: 1px solid var(--secondary-color);
    box-shadow: var(--shadow-md);
    font-weight: 500;
}

.btn-primary:hover {
    background: var(--secondary-light);
    border-color: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    color: var(--primary-darker);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary); /* White text for consistency */
    border: 1px solid var(--secondary-color); /* Thin golden border */
    font-weight: 500;
}

.btn-outline:hover {
    background: rgba(199, 166, 71, 0.08); /* Subtle golden tint */
    border-color: var(--secondary-light);
    color: var(--text-primary); /* Keep white text */
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-consultation {
    background: transparent;
    color: var(--text-primary); /* White text */
    border: 1px solid var(--secondary-color); /* Thin golden border */
    padding: 0.75rem 1.5rem; /* 12px vertical, 24px horizontal - International standard */
    border-radius: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500; /* Slightly lighter for elegance */
    font-size: 0.9375rem; /* 15px - readable button text */
    line-height: 1.5;
    min-height: 44px; /* Minimum touch target (WCAG/Apple/Google standard) */
    transition: all 0.3s ease;
    white-space: nowrap;
    gap: 0.625rem; /* Space between text and icon */
    font-family: 'Inter', sans-serif;
}

.btn-consultation svg {
    stroke: var(--text-primary); /* White arrow */
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.btn-consultation:hover {
    background: rgba(199, 166, 71, 0.08); /* Subtle golden tint on hover */
    border-color: var(--secondary-light);
    color: var(--text-primary); /* Keep white text on hover */
    transform: translateY(-2px);
}

.btn-consultation:hover svg {
    stroke: var(--text-primary); /* Keep white arrow on hover */
    transform: translateX(3px);
}

.hero .btn-outline {
    background: transparent;
    color: var(--text-primary); /* White text */
    border: 1px solid var(--secondary-color); /* Thin golden border */
    font-weight: 500;
    font-size: var(--font-size-base); /* 16px - standardized */
    backdrop-filter: blur(10px);
    min-height: var(--touch-target-comfort); /* 48px - app-like touch target */
    padding: var(--spacing-3) var(--spacing-6);
}

.hero .btn-outline:hover {
    background: rgba(199, 166, 71, 0.08); /* Subtle golden tint */
    border-color: var(--secondary-light);
    color: var(--text-primary); /* Keep white text */
    transform: translate3d(0, -2px, 0);
}

/* Hero Section */
.hero {
    min-height: calc(100vh - 80px); /* Minimum height to fit viewport, but can grow */
    height: auto; /* Allow content to determine height */
    max-height: none; /* Remove max-height restriction */
    display: flex;
    align-items: center;
    padding: 3rem 0; /* Increased padding for better spacing */
    margin-top: 80px; /* Space for main header only - international standard */
    color: var(--text-primary);
    position: relative;
    overflow: visible; /* Changed from hidden to visible to prevent cutting */
    transition: margin-top 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                padding 0.3s ease; /* Smooth transition when header moves */
    width: 100%;
    box-sizing: border-box;
}

/* Adjust hero margin when top bar is visible */
.hero.has-top-bar {
    margin-top: 125px; /* Space for both headers when top bar is visible */
    min-height: calc(100vh - 125px);
    height: auto;
    max-height: none;
}

/* Adjust hero margin when top bar is hidden */
.hero.top-bar-hidden {
    margin-top: 80px !important; /* Only main header space */
    min-height: calc(100vh - 80px);
    height: auto;
    max-height: none;
}

@media (max-width: 768px) {
    .hero {
        margin-top: 70px; /* Only main header on mobile */
        min-height: auto; /* Allow content to determine height */
        height: auto; /* Auto height on mobile */
        max-height: none; /* Remove max-height restriction */
        padding: 2rem 0;
        overflow: visible; /* Allow content to be visible */
    }
    
    .hero.has-top-bar {
        margin-top: 70px; /* Mobile doesn't show top bar */
        min-height: auto;
        height: auto;
        max-height: none;
    }
    
    .hero.top-bar-hidden {
        margin-top: 70px !important;
        min-height: auto;
        height: auto;
        max-height: none;
    }
    
    .hero-content {
        padding: 0.5rem 0;
    }
}

/* Video Background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100%; /* Ensure it covers the full height */
    object-fit: cover;
    object-position: center;
    z-index: 0;
    opacity: 1; /* Full visibility */
    display: block;
    pointer-events: none;
}

/* Overlay for better text readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100%; /* Ensure it covers the full height */
    background: linear-gradient(135deg, rgba(26, 13, 33, 0.6) 10%, rgba(74, 27, 93, 0.5) 70%, rgba(58, 21, 73, 0.6) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 1360px !important;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden; /* Prevent horizontal overflow */
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
    min-height: auto; /* Changed from 100% to auto */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
    padding: 1rem 0; /* Add padding to prevent content from touching edges */
    margin: 0;
    overflow: hidden; /* Prevent content from overflowing container */
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
    padding-right: 1rem; /* Add padding to prevent overflow */
    overflow: hidden; /* Prevent content from overflowing */
    min-width: 0; /* Allow flex item to shrink below content size */
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #5C2E1F; /* Dark brown/maroon background */
    border: 1px solid var(--secondary-color); /* Gold border */
    padding: var(--spacing-2) var(--spacing-4);
    border-radius: var(--spacing-4);
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-sm);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--secondary-color);
    width: fit-content;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    stroke: var(--secondary-color);
    flex-shrink: 0;
}

/* Hero Heading */
.hero h1 {
    font-family: 'EB Garamond', serif;
    font-size: clamp(var(--font-size-3xl), 4.5vw, var(--font-size-5xl)); /* 36px - 60px - standardized */
    font-weight: 700;
    line-height: var(--line-height-tight);
    animation: fadeInUp 0.8s ease 0.2s both;
    color: var(--text-primary);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%; /* Prevent overflow */
    box-sizing: border-box;
    width: 100%; /* Ensure it fits container */
}

/* Hero Subtitle */
.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(var(--font-size-base), 1.3vw, var(--font-size-md)); /* 16px - 18px - standardized */
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
    animation: fadeInUp 0.8s ease 0.3s both;
    margin: 0;
    max-width: 100%;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 0.875rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
    margin-top: 0.25rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.hero .btn-primary {
    background: var(--secondary-color);
    color: var(--primary-darker);
    border: 1px solid var(--secondary-color);
    font-weight: 500;
    font-size: var(--font-size-base); /* 16px - standardized */
    box-shadow: 0 4px 15px rgba(199, 166, 71, 0.3);
    min-height: var(--touch-target-comfort); /* 48px - app-like touch target */
    padding: var(--spacing-3) var(--spacing-6);
}

.hero .btn-primary:hover {
    background: var(--secondary-light);
    border-color: var(--secondary-light);
    color: var(--primary-darker);
    transform: translate3d(0, -2px, 0);
    box-shadow: 0 6px 20px rgba(199, 166, 71, 0.4);
}

/* Hero Right Side - Process Widget */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.8s ease 0.5s both;
    box-sizing: border-box;
    min-width: 0; /* Prevents flex item from overflowing */
}

.process-widget {
    width: 100%;
    max-width: 480px;
    background: rgba(36, 21, 48, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    padding: 1.75rem 1.75rem 1.5rem;
    border: 1.5px solid rgba(199, 166, 71, 0.2);
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(199, 166, 71, 0.1); */
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    box-sizing: border-box;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
    min-width: 0; /* Prevents overflow in flex containers */
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.process-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    opacity: 0.3;
}

.process-widget:hover {
    border-color: rgba(199, 166, 71, 0.35);
    /* box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6), 0 0 30px rgba(199, 166, 71, 0.15); */
    transform: translate3d(0, -3px, 0);
}

.widget-header {
    text-align: left;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(199, 166, 71, 0.2);
    position: relative;
}

.widget-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color), transparent);
}

.widget-header h3 {
    font-family: 'EB Garamond', serif;
    font-size: var(--font-size-2xl); /* 30px - standardized */
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-2);
    letter-spacing: -0.01em;
    line-height: var(--line-height-tight);
}

.widget-header p {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-base); /* 16px - standardized */
    color: var(--text-light);
    margin: 0;
    opacity: 0.85;
    line-height: var(--line-height-normal);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

/* Animated Arrow Line - Static background line - ends exactly at center of step 4 circle */
/* TO ADJUST LINE HEIGHT: Change the last value (+ 0.125rem) in the height calculation below */
/* Increase it (e.g., + 0.25rem) to make line longer, decrease it (e.g., + 0.05rem) to make it shorter */
.process-steps::before {
    content: '';
    position: absolute;
    left: 1.25rem; /* Center of 2.5rem circle (2.5rem / 2 = 1.25rem) */
    top: 2rem;
    width: 2px;
    /* Calculate: From line start (top: 2rem) to center of step 4
       Step 1 center from top of process-steps: 0.875rem (padding-top) + 1.25rem (to center) = 2.125rem
       Distance from line start (2rem) to step 1 center: 2.125rem - 2rem = 0.125rem
       But we need full distance, so: 0.875rem + 1.25rem = 2.125rem (from top of container)
       Step 2-4: Each step adds: 1.25rem (remaining half circle) + 0.875rem (bottom padding) + 0.875rem (top padding) + 1.25rem (to center) = 4.25rem
       Total to step 4 center: 2.125rem + (4.25rem * 3) = 2.125rem + 12.75rem = 14.875rem
       But line starts at 2rem, so actual height needed: 14.875rem - 2rem = 12.875rem
       However, to ensure it reaches step 4, we add a small buffer: 13rem */
    height: calc(4rem + 1.25rem + (1.25rem + 0.875rem + 0.875rem + 1.25rem) * 3 + 0.5rem);
    background: linear-gradient(180deg, 
        rgba(199, 166, 71, 0.15) 0%,
        rgba(199, 166, 71, 0.2) 50%,
        rgba(199, 166, 71, 0.15) 100%);
    z-index: 0;
}

/* Animated Arrow that flows through steps - ends exactly at center of step 4 circle */
.process-steps::after {
    content: '';
    position: absolute;
    left: 1.25rem; /* Center of 2.5rem circle (2.5rem / 2 = 1.25rem) */
    top: 2rem;
    width: 2px;
    height: 0;
    background: linear-gradient(180deg, 
        var(--secondary-color) 0%,
        rgba(199, 166, 71, 0.7) 50%,
        rgba(199, 166, 71, 0.5) 100%);
    box-shadow: 0 0 8px rgba(199, 166, 71, 0.4),
                0 0 16px rgba(199, 166, 71, 0.2);
    z-index: 1;
    animation: flowArrow 16s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    transform-origin: top;
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


@keyframes flowArrow {
    0% {
        height: 0;
        opacity: 0;
    }
    2% {
        opacity: 1;
    }
    13% {
        /* Step 1 center: 0.875rem (top padding) + 1.25rem (to center) - Line reaches step 1 */
        height: calc(2rem + 1.25rem);
    }
    19% {
        height: calc(2rem + 1.25rem);
    }
    29% {
        /* Step 2 center: Step 1 + remaining circle (1.25rem) + bottom padding (0.875rem) + top padding (0.875rem) + to center (1.25rem) - Line reaches step 2 */
        height: calc(2rem + 1.25rem + 1.25rem + 0.875rem + 0.875rem + 1.25rem);
    }
    35% {
        height: calc(2rem + 1.25rem + 1.25rem + 0.875rem + 0.875rem + 1.25rem);
    }
    45% {
        /* Step 3 center: Step 2 + gap to step 3 - Line reaches step 3 */
        height: calc(2rem + 1.25rem + (1.25rem + 0.875rem + 0.875rem + 1.25rem) * 2);
    }
    51% {
        height: calc(2rem + 1.25rem + (1.25rem + 0.875rem + 0.875rem + 1.25rem) * 2);
    }
    61% {
        /* Step 4 center: Full distance to center of step 4 - Line reaches and touches step 4 */
        /* Added 0.5rem buffer to ensure it reaches step 4 center */
        height: calc(2rem + 1.25rem + (1.25rem + 0.875rem + 0.875rem + 1.25rem) * 3 + 0.5rem);
    }
    69% {
        height: calc(2rem + 1.25rem + (1.25rem + 0.875rem + 0.875rem + 1.25rem) * 3 + 0.5rem);
        opacity: 1;
    }
    75% {
        opacity: 0.8;
        height: calc(2rem + 1.25rem + (1.25rem + 0.875rem + 0.875rem + 1.25rem) * 3 + 0.5rem);
    }
    80% {
        opacity: 0;
        height: calc(2rem + 1.25rem + (1.25rem + 0.875rem + 0.875rem + 1.25rem) * 3 + 0.5rem);
    }
    100% {
        height: 0;
        opacity: 0;
    }
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.875rem 0;
    position: relative;
    z-index: 2;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
}

.process-step:last-child {
    padding-bottom: 0;
}

.process-step.active {
    opacity: 1;
}

.process-step.active .step-number {
    background: var(--secondary-color);
    color: var(--primary-darker);
    border-color: var(--secondary-color);
    box-shadow: 0 0 20px rgba(199, 166, 71, 0.6),
                0 0 40px rgba(199, 166, 71, 0.3),
                0 4px 15px rgba(199, 166, 71, 0.4),
                0 0 0 5px rgba(36, 21, 48, 1);
    transform: scale(1.08);
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(199, 166, 71, 0.6),
                    0 0 40px rgba(199, 166, 71, 0.3),
                    0 4px 15px rgba(199, 166, 71, 0.4);
    }
    50% {
        box-shadow: 0 0 30px rgba(199, 166, 71, 0.8),
                    0 0 60px rgba(199, 166, 71, 0.5),
                    0 4px 20px rgba(199, 166, 71, 0.6);
    }
}

.process-step.active .step-content {
    transform: translateX(5px);
}

.process-step.active .step-content h4 {
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(199, 166, 71, 0.3);
}

/* Arrow head indicator at active step - centered on circle */
.process-step::after {
    content: '';
    position: absolute;
    left: 1.25rem; /* Center of 2.5rem circle */
    top: 2rem;
    width: 0;
    height: 0;
    border-left: 6px solid var(--secondary-color);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    opacity: 0;
    filter: drop-shadow(0 0 6px rgba(199, 166, 71, 0.8));
    z-index: 5;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-100%) translateY(0);
}

.process-step.active::after {
    opacity: 1;
    animation: arrowPulse 1s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% {
        transform: translateX(-100%) translateY(0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateX(-95%) translateY(0) scale(1.1);
        opacity: 0.9;
    }
}

.step-number {
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(36, 21, 48, 1);
    color: var(--secondary-color);
    border: 2px solid rgba(199, 166, 71, 0.3);
    border-radius: 50%;
    font-family: 'EB Garamond', serif;
    font-size: 1rem;
    font-weight: 700;
    position: relative;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    box-shadow: 0 0 0 5px rgba(36, 21, 48, 1);
}

.step-content {
    flex: 1;
    padding-top: 0.25rem;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 0; /* Allow text wrapping */
    width: 100%;
    box-sizing: border-box;
}

.step-content h4 {
    font-family: 'EB Garamond', serif;
    font-size: 1.125rem; /* Increased from 0.9375rem (15px to 18px) for better visibility */
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
}

.step-content p {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem; /* Increased from 0.75rem (12px to 14px) for better accessibility */
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    opacity: 0.85;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
}

.process-step.active .step-content p {
    opacity: 1;
}

.process-widget .widget-footer {
    display: none;
}

/* Responsive Design for Hero */
/* Large screens with zoom (1600px - 1920px) */
@media (max-width: 1920px) and (min-width: 1601px) {
    .hero-content {
        gap: 6rem; /* Slightly reduced gap */
    }
}

/* Medium screens and 125% zoom scenarios (1400px - 1600px) */
@media (max-width: 1600px) and (min-width: 1401px) {
    .hero {
        padding: 2.75rem 0;
        min-height: auto; /* Allow flexibility */
    }
    
    .hero-content {
        gap: 4rem; /* Reduced gap for medium screens and 125% zoom */
        padding: 0.5rem 0;
    }
    
    .hero .container {
        padding: 0 1.75rem;
        max-width: 100%;
    }
    
    .process-widget {
        max-width: 450px;
    }
    
    .hero h1 {
        font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    }
}

/* Small resolution PCs (1024px - 1400px) - handles 125% zoom on smaller screens */
@media (max-width: 1400px) and (min-width: 1025px) {
    .hero {
        padding: 2.5rem 0; /* Slightly reduced padding */
        min-height: auto; /* Allow content to determine height */
    }
    
    .hero .container {
        padding: 0 1.5rem;
        max-width: 100%; /* Ensure no overflow */
    }
    
    .hero-content {
        gap: 2.5rem; /* Further reduced gap for better fit */
        padding: 0.75rem 0;
    }
    
    .hero h1 {
        font-size: clamp(1.875rem, 3.5vw, 3.25rem); /* Adjusted for smaller screens */
        line-height: 1.25;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        max-width: 26rem; /* Slightly reduced max-width */
        font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
        margin-bottom: 1rem;
    }
    
    .process-widget {
        max-width: 400px; /* Smaller widget to prevent overflow */
        padding: 1.5rem 1.25rem 1.25rem;
    }
    
    .hero-buttons {
        gap: 0.75rem;
        flex-wrap: wrap;
    }
    
    .hero .btn-primary,
    .hero .btn-outline {
        font-size: 0.9375rem;
        padding: 0.75rem 1.5rem;
        white-space: nowrap;
    }
}

/* Tablets and below */
@media (max-width: 1024px) {
    .hero {
        padding: 2rem 0; /* Reduced padding for tablets */
        min-height: auto; /* Allow content to determine height */
    }
    
    .hero.has-top-bar,
    .hero.top-bar-hidden {
        min-height: auto;
        height: auto;
    }
    
    .hero .container {
        padding: 0 1.5rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0.5rem 0;
    }
    
    .hero-left {
        align-items: center;
    }
    
    .hero-subtitle {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-right {
        order: 0; /* Widget after content on tablet and mobile */
    }
    
    .process-widget {
        max-width: 100%;
        padding: 2rem 1.75rem;
    }
    
    .process-steps::before,
    .process-steps::after {
        left: 1.375rem; /* Center of 2.75rem circle (2.75rem / 2 = 1.375rem) */
        /* Calculate for tablet: 4 steps with circles (2.75rem each) + padding between (1rem * 3) + center of last circle (1.375rem) */
    }
    
    .process-steps::before {
        /* Tablet: 1rem padding, 2.75rem circles, center at 1.375rem */
        /* Added 0.5rem buffer to ensure it reaches step 4 */
        height: calc(2rem + 1.375rem + (1.375rem + 1rem + 1rem + 1.375rem) * 3 + 0.5rem);
    }
    
    .process-steps::after {
        animation: flowArrow 16s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    }
    
    @keyframes flowArrow {
        0% {
            height: 0;
            opacity: 0;
        }
        2% {
            opacity: 1;
        }
        13% {
            height: calc(2.5rem + 1.375rem);
        }
        19% {
            height: calc(2.5rem + 1.375rem);
        }
        29% {
            height: calc(2.5rem + 1.375rem + 1.375rem + 1rem + 1rem + 1.375rem);
        }
        35% {
            height: calc(2.5rem + 1.375rem + 1.375rem + 1rem + 1rem + 1.375rem);
        }
        45% {
            height: calc(2.5rem + 1.375rem + (1.375rem + 1rem + 1rem + 1.375rem) * 2);
        }
        51% {
            height: calc(2.5rem + 1.375rem + (1.375rem + 1rem + 1rem + 1.375rem) * 2);
        }
        61% {
            height: calc(2.5rem + 1.375rem + (1.375rem + 1rem + 1rem + 1.375rem) * 3 + 0.5rem);
        }
        69% {
            height: calc(2.5rem + 1.375rem + (1.375rem + 1rem + 1rem + 1.375rem) * 3 + 0.5rem);
            opacity: 1;
        }
        75% {
            opacity: 0.8;
            height: calc(2.5rem + 1.375rem + (1.375rem + 1rem + 1rem + 1.375rem) * 3 + 0.5rem);
        }
        80% {
            opacity: 0;
            height: calc(2rem + 1.375rem + (1.375rem + 1rem + 1rem + 1.375rem) * 3 + 0.5rem);
        }
        100% {
            height: 0;
            opacity: 0;
        }
    }
    
    .process-step::after {
        left: 1.375rem; /* Center of 2.75rem circle */
        top: 2rem;
    }
    
    .process-step {
        padding: 1rem 0;
        gap: 1rem;
    }
    
    .step-number {
        width: 2.75rem;
        height: 2.75rem;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero .container {
        padding: 0 0rem;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden; /* Prevent horizontal scroll */
    }
    
    .hero-content {
        gap: 2rem;
        text-align: center;
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        overflow: hidden; /* Prevent content from overflowing container */
        box-sizing: border-box;
        padding: 1rem;
    }
    
    .hero-left {
        order: 1; /* Main content first on mobile */
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .hero-right {
        order: 2; /* How It Works section after main content on mobile */
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .hero-badge {
        font-size: var(--font-size-xs);
        padding: var(--spacing-1) var(--spacing-3);
        width: auto;
        max-width: 100%;
        word-wrap: break-word;
    }
    
    .hero h1 {
        font-size: clamp(1.5rem, 7vw, 2.25rem);
        line-height: 1.3;
        margin: 0.75rem 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    .hero-subtitle {
        font-size: clamp(0.875rem, 3.5vw, 1rem);
        margin: 0.5rem 0 1.5rem;
        line-height: 1.6;
        max-width: 100%;
        width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0 1rem;
        box-sizing: border-box;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        gap: 0.75rem;
        margin-top: 0.5rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 100%;
        padding: 0.875rem 1.25rem;
        font-size: 0.9375rem;
        white-space: normal;
        word-wrap: break-word;
        box-sizing: border-box;
    }
    
    .process-widget {
        padding: 1.5rem 1rem;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
        overflow: visible;
    }
    
    .widget-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
        width: 100%;
        text-align: left;
    }
    
    .widget-header h3 {
        font-size: clamp(1.375rem, 5vw, 1.625rem);
        line-height: 1.3;
        word-wrap: break-word;
        margin: 0 0 0.5rem;
        text-align: left;
    }
    
    .widget-header p {
        font-size: clamp(0.8125rem, 3vw, 0.875rem);
        line-height: 1.5;
        word-wrap: break-word;
        margin: 0;
        text-align: left;
    }
    
    .process-steps::before,
    .process-steps::after {
        left: 1.25rem; /* Center of 2.5rem circle */
        top: 2rem;
    }
    
    .process-steps::before {
        /* Mobile: 0.75rem padding, 2.5rem circles, center at 1.25rem */
        /* Added 0.5rem buffer to ensure it reaches step 4 */
        height: calc(1.75rem + 1.25rem + (1.25rem + 0.75rem + 0.75rem + 1.25rem) * 3 + 0.5rem);
    }
    
    .process-steps::after {
        animation: flowArrow 16s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    }
    
    @keyframes flowArrow {
        0% {
            height: 0;
            opacity: 0;
        }
        2% {
            opacity: 1;
        }
        13% {
            height: calc(1.75rem + 1.25rem);
        }
        19% {
            height: calc(1.75rem + 1.25rem);
        }
        29% {
            height: calc(1.75rem + 1.25rem + 1.25rem + 0.75rem + 0.75rem + 1.25rem);
        }
        35% {
            height: calc(1.75rem + 1.25rem + 1.25rem + 0.75rem + 0.75rem + 1.25rem);
        }
        45% {
            height: calc(1.75rem + 1.25rem + (1.25rem + 0.75rem + 0.75rem + 1.25rem) * 2);
        }
        51% {
            height: calc(1.75rem + 1.25rem + (1.25rem + 0.75rem + 0.75rem + 1.25rem) * 2);
        }
        61% {
            height: calc(1.75rem + 1.25rem + (1.25rem + 0.75rem + 0.75rem + 1.25rem) * 3 + 0.5rem);
        }
        69% {
            height: calc(1.75rem + 1.25rem + (1.25rem + 0.75rem + 0.75rem + 1.25rem) * 3 + 0.5rem);
            opacity: 1;
        }
        75% {
            opacity: 0.8;
            height: calc(1.75rem + 1.25rem + (1.25rem + 0.75rem + 0.75rem + 1.25rem) * 3 + 0.5rem);
        }
        80% {
            opacity: 0;
            height: calc(1.75rem + 1.25rem + (1.25rem + 0.75rem + 0.75rem + 1.25rem) * 3 + 0.5rem);
        }
        100% {
            height: 0;
            opacity: 0;
        }
    }
    
    .process-step {
        padding: 0.75rem 0;
        gap: 0.875rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .process-step::after {
        left: 1.25rem; /* Center of 2.5rem circle */
        top: 2rem;
    }
    
    .step-number {
        width: 2.5rem;
        height: 2.5rem;
        min-width: 2.5rem;
        font-size: 0.9375rem;
        flex-shrink: 0;
    }
    
    .step-content {
        flex: 1;
        min-width: 0; /* Allow text to wrap */
        width: 100%;
        padding-right: 0;
        text-align: left;
    }
    
    .step-content h4 {
        font-size: clamp(0.9375rem, 4vw, 1rem);
        margin-bottom: 0.375rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: left;
    }
    
    .step-content p {
        font-size: clamp(0.75rem, 3vw, 0.8125rem);
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
        margin: 0;
        text-align: left;
    }
}

/* Statistics Section */
.statistics-section {
    background: var(--primary-dark); /* Medium purple background */
    padding: var(--spacing-16) var(--spacing-8);
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--secondary-color) 20%, 
        var(--secondary-light) 50%, 
        var(--secondary-color) 80%, 
        transparent 100%);
    opacity: 0.4;
    box-shadow: 0 2px 10px rgba(199, 166, 71, 0.3);
}

.statistics-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(199, 166, 71, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(199, 166, 71, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1360px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(36, 21, 48, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(199, 166, 71, 0.2);
    border-radius: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 220px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover {
    transform: translate3d(0, -8px, 0);
    border-color: rgba(199, 166, 71, 0.4);
    box-shadow: 0 12px 40px rgba(199, 166, 71, 0.2),
                0 4px 20px rgba(0, 0, 0, 0.4);
    background: rgba(36, 21, 48, 0.75);
}

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

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    border-radius: 50%;
    font-size: 1.75rem;
    color: var(--primary-darker);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(199, 166, 71, 0.3),
                0 0 0 3px rgba(36, 21, 48, 0.8);
    position: relative;
    z-index: 1;
}

.stat-card:hover .stat-icon {
    transform: translate3d(0, 0, 0) scale(1.1) rotate(5deg);
    box-shadow: 0 6px 25px rgba(199, 166, 71, 0.5),
                0 0 0 3px rgba(199, 166, 71, 0.3);
}

.stat-number {
    font-family: 'EB Garamond', serif;
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--secondary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(199, 166, 71, 0.3);
    transition: all 0.4s ease;
}

.stat-card:hover .stat-number {
    transform: translate3d(0, 0, 0) scale(1.05);
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.6;
    letter-spacing: 0.02em;
    transition: color 0.4s ease;
}

.stat-card:hover .stat-label {
    color: var(--text-primary);
}

/* Responsive Design for Statistics */
@media (max-width: 1024px) {
    .statistics-section {
        padding: var(--spacing-12) var(--spacing-6);
    }
    
    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-card {
        min-height: 200px;
        padding: 1.75rem 1.25rem;
    }
    
    .stat-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .statistics-section {
        padding: var(--spacing-10) var(--spacing-4);
    }
    
    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-card {
        min-height: 180px;
        padding: 1.5rem 1rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.375rem;
        margin-bottom: 0.875rem;
    }
    
    .stat-number {
        font-size: clamp(1.75rem, 5vw, 2.25rem);
        margin-bottom: 0.5rem;
    }
    
    .stat-label {
        font-size: clamp(0.8125rem, 2.5vw, 0.875rem);
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .statistics-section {
        padding: var(--spacing-8) var(--spacing-3);
    }
    
    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .stat-card {
        min-height: 160px;
        padding: 1.25rem 0.75rem;
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .stat-number {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 0.375rem;
    }
    
    .stat-label {
        font-size: clamp(0.75rem, 3vw, 0.8125rem);
    }
}

/* Who We Are Section */
.who-we-are-section {
    background: var(--bg-darker); /* Very dark background (footer color) */
    padding: 0;
    position: relative;
    overflow: hidden;
}

.who-we-are-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--secondary-color) 0%, 
        transparent 30%, 
        transparent 70%, 
        var(--secondary-color) 100%);
    opacity: 0.5;
    box-shadow: 0 2px 15px rgba(199, 166, 71, 0.4);
}

.who-we-are-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, rgba(199, 166, 71, 0.02) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(199, 166, 71, 0.02) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(199, 166, 71, 0.02) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(199, 166, 71, 0.02) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

/* Top Navigation Bar */
.who-we-are-nav {
    background: rgba(26, 13, 33, 0.8);
    border-bottom: 1px solid rgba(199, 166, 71, 0.15);
    padding: 1rem 0;
    position: relative;
}

.nav-items {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 1rem;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-item {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
    transition: color 0.3s ease;
}

.nav-item:hover {
    color: var(--secondary-color);
}

.nav-bullet {
    width: 4px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Who We Are Content */
.who-we-are-content {
    padding: var(--spacing-16) var(--spacing-8);
    max-width: 1360px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.who-we-are-header {
    text-align: center;
    margin-bottom: var(--spacing-8);
}

.who-we-are-subtitle {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-sm);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-4);
    padding: var(--spacing-2) var(--spacing-4);
    background: #5C2E1F; /* Dark brown/maroon background */
    border: 1px solid var(--secondary-color); /* Gold border */
    border-radius: var(--spacing-4);
}

.who-we-are-title {
    font-family: 'EB Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin: 1rem 0 1.5rem;
    letter-spacing: -0.02em;
}

.who-we-are-description {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Who We Are Cards */
.who-we-are-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-4);
    margin-top: var(--spacing-8);
}

.who-we-are-card {
    background: rgba(36, 21, 48, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(199, 166, 71, 0.2);
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.who-we-are-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.who-we-are-card:hover {
    transform: translate3d(0, -8px, 0);
    border-color: rgba(199, 166, 71, 0.4);
    box-shadow: 0 12px 40px rgba(199, 166, 71, 0.2),
                0 4px 20px rgba(0, 0, 0, 0.4);
    background: rgba(36, 21, 48, 0.75);
}

.who-we-are-card:hover::before {
    opacity: 1;
}

.who-we-are-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--primary-darker);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(199, 166, 71, 0.3),
                0 0 0 3px rgba(36, 21, 48, 0.8);
    position: relative;
    z-index: 1;
}

.who-we-are-card:hover .who-we-are-card-icon {
    transform: translate3d(0, 0, 0) scale(1.1) rotate(5deg);
    box-shadow: 0 6px 25px rgba(199, 166, 71, 0.5),
                0 0 0 3px rgba(199, 166, 71, 0.3);
}

.who-we-are-card-title {
    font-family: 'EB Garamond', serif;
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.who-we-are-card-description {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.9375rem, 2vw, 1rem);
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    transition: color 0.4s ease;
}

.who-we-are-card:hover .who-we-are-card-description {
    color: var(--text-primary);
}

/* Responsive Design for Who We Are Section */
@media (max-width: 1024px) {
    .nav-items {
        gap: 0.75rem;
        padding: 0 1.5rem;
    }
    
    .nav-item {
        font-size: 0.8125rem;
    }
    
    .who-we-are-content {
        padding: var(--spacing-12) var(--spacing-6);
    }
    
    .who-we-are-header {
        margin-bottom: 3rem;
    }
    
    .who-we-are-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .who-we-are-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-items {
        gap: 0.5rem;
        padding: 0 1rem;
    }
    
    .nav-item {
        font-size: 0.75rem;
    }
    
    .nav-bullet {
        width: 3px;
        height: 3px;
    }
    
    .who-we-are-content {
        padding: var(--spacing-10) var(--spacing-4);
    }
    
    .who-we-are-header {
        margin-bottom: 2.5rem;
    }
    
    .who-we-are-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .who-we-are-card {
        padding: 2rem 1.5rem;
    }
    
    .who-we-are-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 480px) {
    .nav-items {
        gap: 0.375rem;
        padding: 0 0.75rem;
    }
    
    .nav-item {
        font-size: 0.6875rem;
    }
    
    .who-we-are-content {
        padding: var(--spacing-8) var(--spacing-3);
    }
    
    .who-we-are-card {
        padding: 1.75rem 1.25rem;
    }
    
    .who-we-are-card-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

/* Founder Section */
.founder-section {
    background: var(--bg-darker); /* Very dark background (alternating) */
    padding: var(--spacing-16) var(--spacing-8);
    position: relative;
    overflow: hidden;
}

.founder-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--secondary-color) 30%, 
        var(--secondary-light) 50%, 
        var(--secondary-color) 70%, 
        transparent 100%);
    opacity: 0.35;
    box-shadow: 0 2px 12px rgba(199, 166, 71, 0.25);
}

.founder-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(199, 166, 71, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(199, 166, 71, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.founder-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.founder-image-wrapper {
    position: relative;
}

.founder-image-container {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(199, 166, 71, 0.2);
    background: rgba(36, 21, 48, 0.6);
    padding: 0.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.founder-image-container:hover {
    transform: translate3d(0, -5px, 0);
    box-shadow: 0 25px 70px rgba(199, 166, 71, 0.3),
                0 0 0 1px rgba(199, 166, 71, 0.4);
}

.founder-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1rem;
    object-fit: cover;
    aspect-ratio: 3/4;
}

.founder-image-overlay {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, 
        rgba(199, 166, 71, 0.1) 0%, 
        transparent 50%,
        rgba(74, 27, 93, 0.2) 100%);
    pointer-events: none;
    z-index: 1;
}

.founder-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.founder-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #5C2E1F; /* Dark brown/maroon background */
    border: 1px solid var(--secondary-color); /* Gold border */
    padding: var(--spacing-2) var(--spacing-4);
    border-radius: var(--spacing-4);
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-sm);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--secondary-color);
    width: fit-content;
}

.founder-badge svg {
    width: 16px;
    height: 16px;
    stroke: var(--secondary-color);
    flex-shrink: 0;
}

.founder-title {
    font-family: 'EB Garamond', serif;
    font-size: clamp(var(--font-size-4xl), 5vw, var(--font-size-5xl)); /* 48px - 60px - standardized */
    font-weight: 700;
    color: var(--text-primary);
    line-height: var(--line-height-tight);
    margin: 0;
    letter-spacing: -0.02em;
}

.founder-description {
    font-family: 'Inter', sans-serif;
    font-size: clamp(var(--font-size-base), 2vw, var(--font-size-md)); /* 16px - 18px - standardized */
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
    margin: 0 0 var(--spacing-5) 0;
    max-width: 600px;
}

.founder-description:last-of-type {
    margin-bottom: 0;
}

.founder-stats {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(199, 166, 71, 0.2);
    border-bottom: 1px solid rgba(199, 166, 71, 0.2);
}

.founder-stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.founder-stat-number {
    font-family: 'EB Garamond', serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.founder-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.btn-founder {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--text-primary);
    border: 1px solid rgba(199, 166, 71, 0.3);
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(74, 27, 93, 0.4),
                0 0 0 1px rgba(199, 166, 71, 0.2);
    width: fit-content;
    position: relative;
    overflow: hidden;
}

.btn-founder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(199, 166, 71, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-founder:hover {
    transform: translate3d(0, -3px, 0);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-lighter) 100%);
    border-color: var(--secondary-color);
    box-shadow: 0 8px 25px rgba(199, 166, 71, 0.4),
                0 0 0 1px rgba(199, 166, 71, 0.4);
}

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

.btn-founder svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

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

/* Responsive Design for Founder Section */
@media (max-width: 1024px) {
    .founder-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .founder-image-wrapper {
        order: 1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .founder-text-wrapper {
        order: 2;
        text-align: center;
        align-items: center;
    }
    
    .founder-description {
        max-width: 100%;
    }
    
    .founder-stats {
        justify-content: center;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .founder-section {
        padding: var(--spacing-12) var(--spacing-6);
    }
    
    .founder-content {
        gap: 2.5rem;
    }
    
    .founder-image-container {
        padding: 0.375rem;
    }
    
    .founder-text-wrapper {
        gap: 1.25rem;
    }
    
    .founder-badge {
        font-size: var(--font-size-xs);
        padding: var(--spacing-1) var(--spacing-3);
    }
    
    .founder-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        text-align: center;
    }
    
    .founder-stat-item {
        width: 100%;
        max-width: 200px;
    }
    
    .btn-founder {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.75rem;
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .founder-section {
        padding: var(--spacing-10) var(--spacing-4);
    }
    
    .founder-content {
        gap: 2rem;
    }
    
    .founder-image-container {
        padding: 0.25rem;
    }
    
    .founder-text-wrapper {
        gap: 1rem;
    }
}

/* License Form Section */
.license-form-section {
    background: var(--primary-dark); /* Medium purple background (alternating) */
    padding: var(--spacing-16) var(--spacing-8);
    position: relative;
    overflow: hidden;
}

.license-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--secondary-color) 30%, 
        var(--secondary-light) 50%, 
        var(--secondary-color) 70%, 
        transparent 100%);
    opacity: 0.35;
    box-shadow: 0 2px 12px rgba(199, 166, 71, 0.25);
}

.form-header {
    text-align: center;
    margin-bottom: var(--spacing-8);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.form-main-title {
    font-family: 'EB Garamond', serif;
    font-size: clamp(var(--font-size-4xl), 5vw, var(--font-size-5xl)); /* 48px - 60px - standardized */
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-4);
    line-height: var(--line-height-tight);
}

.form-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(var(--font-size-base), 2vw, var(--font-size-md)); /* 16px - 18px - standardized */
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
}

/* Form Type Tabs */
.form-type-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: var(--spacing-8);
    position: relative;
}

.form-type-tabs input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.form-tab-label {
    flex: 1;
    max-width: 300px;
    padding: 1rem 2rem;
    background: rgba(36, 21, 48, 0.6);
    border: 2px solid rgba(199, 166, 71, 0.2);
    border-radius: 0.75rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    position: relative;
    overflow: hidden;
}

.form-tab-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(199, 166, 71, 0.1), transparent);
    transition: left 0.5s ease;
}

.form-tab-label:hover::before {
    left: 100%;
}

.form-type-tabs input[type="radio"]:checked + .form-tab-label {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-color: var(--secondary-color);
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(199, 166, 71, 0.3),
                0 0 0 1px rgba(199, 166, 71, 0.2);
    transform: translate3d(0, -2px, 0);
}

/* License Form */
.license-form {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(36, 21, 48, 0.85);
    backdrop-filter: blur(20px);
    border: 1.5px solid rgba(199, 166, 71, 0.2);
    border-radius: 1.5rem;
    padding: 2.5rem;
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.license-form.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.required {
    color: var(--secondary-color);
    margin-left: 0.25rem;
}

/* Toggle Button Groups */
.toggle-button-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.toggle-button-group-four {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.toggle-button-group input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.toggle-button {
    flex: 1;
    min-width: 140px;
    padding: 0.75rem 1.25rem;
    background: rgba(26, 13, 33, 0.6);
    border: 2px solid rgba(199, 166, 71, 0.2);
    border-radius: 0.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    overflow: hidden;
}

.toggle-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(199, 166, 71, 0.1), transparent);
    transition: left 0.5s ease;
}

.toggle-button:hover::before {
    left: 100%;
}

.toggle-button:hover {
    border-color: rgba(199, 166, 71, 0.4);
    color: var(--text-primary);
    transform: translate3d(0, -2px, 0);
}

.toggle-button-group input[type="radio"]:checked + .toggle-button {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    border-color: var(--secondary-color);
    color: var(--primary-darker);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(199, 166, 71, 0.4);
    transform: translate3d(0, -2px, 0);
}

/* Form Inputs */
.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.form-row-three {
    grid-template-columns: repeat(3, 1fr);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(26, 13, 33, 0.8);
    border: 2px solid rgba(199, 166, 71, 0.2);
    border-radius: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(26, 13, 33, 0.95);
    box-shadow: 0 0 0 3px rgba(199, 166, 71, 0.2);
}

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

.form-textarea {
    resize: vertical;
    min-height: 100px;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

/* Price Input with Prefix */
.price-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.price-prefix {
    position: absolute;
    left: 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--secondary-color);
    z-index: 1;
    pointer-events: none;
}

.price-input {
    padding-left: 2.5rem;
}

/* Input Wrapper with Icon */
.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

.input-wrapper .form-input {
    padding-right: 3rem;
}

/* Select Wrapper */
.select-wrapper {
    position: relative;
}

.select-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
    transition: transform 0.3s ease;
}

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

.form-select {
    appearance: none;
    padding-right: 3rem;
    cursor: pointer;
}

.form-select option {
    background: var(--bg-card);
    color: var(--text-primary);
}

/* Phone Input with Country Code */
.phone-input-wrapper {
    display: flex;
    gap: 0.75rem;
    align-items: stretch;
}

.country-code-selector {
    position: relative;
    flex-shrink: 0;
    min-width: 140px;
}

.country-code-select {
    width: 100%;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    background: rgba(26, 13, 33, 0.8);
    border: 2px solid rgba(199, 166, 71, 0.2);
    border-radius: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: var(--text-primary);
    appearance: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.country-code-select:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(26, 13, 33, 0.95);
    box-shadow: 0 0 0 3px rgba(199, 166, 71, 0.2);
}

.country-code-selector .select-arrow {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
    transition: transform 0.3s ease;
}

.country-code-selector:focus-within .select-arrow {
    transform: translateY(-50%) rotate(180deg);
}

.phone-number-input {
    flex: 1;
}

/* Submit Button */
.btn-form-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    border: 2px solid var(--secondary-color);
    border-radius: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-darker);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 4px 15px rgba(199, 166, 71, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: 0.5rem;
}

.btn-form-submit::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.5s ease;
}

.btn-form-submit:hover {
    transform: translate3d(0, -3px, 0);
    box-shadow: 0 8px 25px rgba(199, 166, 71, 0.5);
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary-lighter) 100%);
}

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

.btn-form-submit:active {
    transform: translate3d(0, -1px, 0);
}

.btn-form-submit svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.btn-form-submit:hover svg {
    transform: translateX(3px);
}

/* Responsive Design for Form Section */
@media (max-width: 1024px) {
    .license-form-section {
        padding: var(--spacing-12) var(--spacing-6);
    }
    
    .license-form {
        padding: 2rem;
    }
    
    .form-row,
    .form-row-three {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .toggle-button-group-four {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .license-form-section {
        padding: var(--spacing-10) var(--spacing-6);
    }
    
    .form-header {
        margin-bottom: 1.5rem;
    }
    
    .form-type-tabs {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .form-tab-label {
        max-width: 100%;
    }
    
    .license-form {
        padding: 1.75rem 1.25rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .toggle-button-group {
        flex-direction: column;
    }
    
    .toggle-button {
        min-width: 100%;
    }
    
    .toggle-button-group-four {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .license-form-section {
        padding: var(--spacing-8) var(--spacing-4);
    }
    
    .form-header {
        margin-bottom: 1.25rem;
    }
    
    .form-type-tabs {
        margin-bottom: 1.5rem;
    }
    
    .form-tab-label {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .license-form {
        padding: 1.25rem 1rem;
    }
    
    .form-group {
        margin-bottom: 0.875rem;
    }
    
    .form-label {
        font-size: 0.8125rem;
        margin-bottom: 0.375rem;
    }
    
    .toggle-button {
        padding: 0.625rem 1rem;
        font-size: 0.8125rem;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        padding: 0.625rem 0.875rem;
        font-size: 0.875rem;
    }
    
    .form-textarea {
        min-height: 80px;
    }
    
    .price-prefix {
        left: 0.875rem;
        font-size: 0.875rem;
    }
    
    .price-input {
        padding-left: 2.25rem;
    }
    
    .btn-form-submit {
        padding: 0.875rem 1.25rem;
        font-size: 0.9375rem;
    }
}

/* Why Choose Us Section */
.why-choose-us-section {
    background: var(--primary-dark); /* Medium purple background (alternating) */
    padding: var(--spacing-16) var(--spacing-8);
    position: relative;
    overflow: hidden;
}

.why-choose-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--secondary-color) 30%, 
        var(--secondary-light) 50%, 
        var(--secondary-color) 70%, 
        transparent 100%);
    opacity: 0.35;
    box-shadow: 0 2px 12px rgba(199, 166, 71, 0.25);
}

.why-choose-us-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(199, 166, 71, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(199, 166, 71, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.why-choose-us-header {
    text-align: center;
    margin-bottom: var(--spacing-10);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

/* Unified Section Badge - Used across all sections */
.section-badge {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-sm);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-4);
    padding: var(--spacing-2) var(--spacing-4);
    background: #5C2E1F; /* Dark brown/maroon background */
    border: 1px solid var(--secondary-color); /* Gold border */
    border-radius: var(--spacing-4);
    width: fit-content;
}

/* For badges with icons, use flexbox */
.section-badge:has(svg),
.hero-badge,
.founder-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.section-badge svg,
.hero-badge svg,
.founder-badge svg {
    width: 16px;
    height: 16px;
    stroke: var(--secondary-color);
    fill: none;
    flex-shrink: 0;
}

.why-choose-us-badge {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-sm);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-4);
    padding: var(--spacing-2) var(--spacing-4);
    background: #5C2E1F; /* Dark brown/maroon background */
    border: 1px solid var(--secondary-color); /* Gold border */
    border-radius: var(--spacing-4);
}

.why-choose-us-title {
    font-family: 'EB Garamond', serif;
    font-size: clamp(var(--font-size-3xl), 5vw, var(--font-size-5xl));
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-4);
    line-height: var(--line-height-tight);
    letter-spacing: -0.02em;
}

.why-choose-us-description {
    font-family: 'Inter', sans-serif;
    font-size: clamp(var(--font-size-base), 2vw, var(--font-size-md));
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
    max-width: 700px;
    margin: 0 auto;
}

/* Stats Row */
.why-choose-us-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-4);
    margin-bottom: var(--spacing-10);
    position: relative;
    z-index: 1;
}

.why-choose-us-stat-card {
    background: rgba(36, 21, 48, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(199, 166, 71, 0.2);
    border-radius: var(--spacing-4);
    padding: var(--spacing-6) var(--spacing-4);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.why-choose-us-stat-card:hover {
    transform: translate3d(0, -8px, 0);
    border-color: rgba(199, 166, 71, 0.4);
    box-shadow: 0 12px 40px rgba(199, 166, 71, 0.2),
                0 4px 20px rgba(0, 0, 0, 0.4);
    background: rgba(36, 21, 48, 0.75);
}

.stat-number-large {
    font-family: 'EB Garamond', serif;
    font-size: clamp(var(--font-size-3xl), 6vw, var(--font-size-4xl));
    font-weight: 700;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: var(--line-height-tight);
    margin-bottom: var(--spacing-2);
    text-shadow: 0 2px 10px rgba(199, 166, 71, 0.3);
}

.stat-label-large {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-base);
    color: var(--text-light);
    line-height: var(--line-height-normal);
    font-weight: 500;
}

/* Features Row */
.why-choose-us-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-4);
    position: relative;
    z-index: 1;
}

.why-choose-us-feature-card {
    background: rgba(36, 21, 48, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(199, 166, 71, 0.2);
    border-radius: var(--spacing-4);
    padding: var(--spacing-6) var(--spacing-5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3);
}

.why-choose-us-feature-card:hover {
    transform: translate3d(0, -8px, 0);
    border-color: rgba(199, 166, 71, 0.4);
    box-shadow: 0 12px 40px rgba(199, 166, 71, 0.2),
                0 4px 20px rgba(0, 0, 0, 0.4);
    background: rgba(36, 21, 48, 0.75);
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    border-radius: var(--spacing-3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-1);
    box-shadow: 0 4px 15px rgba(199, 166, 71, 0.3);
    transition: all 0.3s ease;
}

.why-choose-us-feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 25px rgba(199, 166, 71, 0.5);
}

.feature-icon-svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary-darker);
    stroke-width: 2.5;
    fill: none;
}

.feature-card-title {
    font-family: 'EB Garamond', serif;
    font-size: clamp(var(--font-size-xl), 2.5vw, var(--font-size-2xl));
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: var(--line-height-tight);
}

.feature-card-text {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-base);
    color: var(--text-light);
    line-height: var(--line-height-relaxed);
    margin: 0;
}

/* Responsive Design for Why Choose Us Section */
@media (max-width: 1024px) {
    .why-choose-us-section {
        padding: var(--spacing-12) var(--spacing-6);
    }
    
    .why-choose-us-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-3);
    }
    
    .why-choose-us-features {
        grid-template-columns: 1fr;
        gap: var(--spacing-4);
    }
}

@media (max-width: 768px) {
    .why-choose-us-section {
        padding: var(--spacing-10) var(--spacing-4);
    }
    
    .why-choose-us-header {
        margin-bottom: var(--spacing-8);
    }
    
    .why-choose-us-stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-3);
        margin-bottom: var(--spacing-8);
    }
    
    .why-choose-us-stat-card {
        padding: var(--spacing-5) var(--spacing-4);
    }
    
    .why-choose-us-features {
        gap: var(--spacing-3);
    }
    
    .why-choose-us-feature-card {
        padding: var(--spacing-5) var(--spacing-4);
    }
}

@media (max-width: 480px) {
    .why-choose-us-section {
        padding: var(--spacing-8) var(--spacing-3);
    }
    
    .why-choose-us-header {
        margin-bottom: var(--spacing-6);
    }
    
    .why-choose-us-badge,
    .section-badge,
    .hero-badge,
    .founder-badge,
    .who-we-are-subtitle {
        font-size: var(--font-size-xs);
        padding: var(--spacing-1) var(--spacing-3);
    }
    
    .section-badge svg,
    .hero-badge svg,
    .founder-badge svg {
        width: 14px;
        height: 14px;
    }
    
    .why-choose-us-stats {
        margin-bottom: var(--spacing-6);
    }
    
    .stat-number-large {
        font-size: clamp(var(--font-size-2xl), 8vw, var(--font-size-3xl));
    }
    
    .stat-label-large {
        font-size: var(--font-size-sm);
    }
    
    .feature-icon-wrapper {
        width: 48px;
        height: 48px;
    }
    
    .feature-icon-svg {
        width: 24px;
        height: 24px;
    }
}

/* Featured Licenses Section */
.featured-licenses-section {
    padding: var(--spacing-16) var(--spacing-8);
    background: var(--bg-darker); /* Very dark background (alternating) */
    position: relative;
    overflow: hidden;
}

.featured-licenses-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(199, 166, 71, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(199, 166, 71, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.featured-licenses-header {
    text-align: center;
    margin-bottom: var(--spacing-12);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.featured-licenses-title {
    font-family: 'EB Garamond', serif;
    font-size: clamp(var(--font-size-3xl), 5vw, var(--font-size-5xl));
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-4);
    line-height: var(--line-height-tight);
    letter-spacing: -0.02em;
}

.featured-licenses-description {
    font-family: 'Inter', sans-serif;
    font-size: clamp(var(--font-size-base), 2vw, var(--font-size-md));
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
    max-width: 700px;
    margin: 0 auto;
}

.featured-licenses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-6);
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-license-card {
    background: rgba(36, 21, 48, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(199, 166, 71, 0.2);
    border-radius: 1rem;
    padding: var(--spacing-6) var(--spacing-5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4);
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
    position: relative;
    overflow: hidden;
}

.featured-license-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.featured-license-card:hover {
    transform: translate3d(0, -8px, 0);
    border-color: rgba(199, 166, 71, 0.4);
    box-shadow: 0 12px 40px rgba(199, 166, 71, 0.2),
                0 4px 20px rgba(0, 0, 0, 0.4);
    background: rgba(36, 21, 48, 0.75);
}

.featured-license-card:hover::before {
    opacity: 1;
}

.license-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-1);
}

.license-location {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
}

.location-icon {
    width: 20px;
    height: 20px;
    stroke: var(--secondary-color);
    fill: var(--secondary-color);
    flex-shrink: 0;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.featured-license-card:hover .location-icon {
    opacity: 1;
    transform: scale(1.1);
}

.license-state {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-base);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.featured-license-card:hover .license-state {
    color: var(--secondary-color);
}

.license-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3);
}

.license-title {
    font-family: 'EB Garamond', serif;
    font-size: clamp(var(--font-size-lg), 2vw, var(--font-size-xl));
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 var(--spacing-2) 0;
    line-height: var(--line-height-tight);
    transition: color 0.3s ease;
}

.featured-license-card:hover .license-title {
    color: var(--text-primary);
}

.license-type {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    margin: 0;
    font-weight: 500;
    transition: color 0.3s ease;
}

.featured-license-card:hover .license-type {
    color: var(--text-light);
}

.license-price-info {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    margin: var(--spacing-2) 0 0 0;
    font-style: italic;
    transition: color 0.3s ease;
}

.featured-license-card:hover .license-price-info {
    color: var(--text-light);
}

/* Responsive Design for Featured Licenses Section */
@media (max-width: 1024px) {
    .featured-licenses-grid {
        gap: var(--spacing-4);
    }
    
    .featured-license-card {
        padding: var(--spacing-5);
    }
}

@media (max-width: 768px) {
    .featured-licenses-section {
        padding: var(--spacing-10) var(--spacing-4);
    }
    
    .featured-licenses-header {
        margin-bottom: var(--spacing-8);
    }
    
    .featured-licenses-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-4);
    }
    
    .featured-license-card {
        padding: var(--spacing-5) var(--spacing-4);
    }
}

@media (max-width: 480px) {
    .featured-licenses-section {
        padding: var(--spacing-8) var(--spacing-3);
    }
    
    .featured-licenses-header {
        margin-bottom: var(--spacing-6);
    }
    
    .license-title {
        font-size: var(--font-size-lg);
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--spacing-16) var(--spacing-8);
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(199, 166, 71, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(199, 166, 71, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.testimonials-header {
    text-align: center;
    margin-bottom: var(--spacing-12);
    position: relative;
    z-index: 1;
}

.testimonials-title {
    font-family: 'EB Garamond', serif;
    font-size: clamp(var(--font-size-3xl), 5vw, var(--font-size-5xl));
    font-weight: 700;
    color: var(--text-primary);
    line-height: var(--line-height-tight);
    letter-spacing: -0.02em;
}

.testimonials-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 1;
}

.testimonials-slider {
    display: flex;
    gap: var(--spacing-6);
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.testimonials-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.testimonial-card {
    min-width: calc(33.333% - var(--spacing-4));
    flex: 0 0 calc(33.333% - var(--spacing-4));
    scroll-snap-align: start;
    background: rgba(36, 21, 48, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(199, 166, 71, 0.2);
    border-radius: 1rem;
    padding: var(--spacing-8) var(--spacing-6);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4);
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.testimonial-stars {
    display: flex;
    gap: var(--spacing-1);
    margin-bottom: var(--spacing-2);
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.testimonial-quote {
    font-family: 'Inter', sans-serif;
    font-size: clamp(var(--font-size-base), 2vw, var(--font-size-lg));
    color: var(--text-primary);
    line-height: var(--line-height-relaxed);
    margin: 0;
    flex: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-1);
    margin-top: var(--spacing-2);
}

.testimonial-name {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--text-primary);
}

.testimonial-role {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-sm);
    color: var(--text-light);
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(36, 21, 48, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(199, 166, 71, 0.3);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    color: var(--secondary-color);
}

.testimonial-nav:hover {
    background: rgba(36, 21, 48, 0.95);
    border-color: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

.testimonial-nav-prev {
    left: var(--spacing-4);
}

.testimonial-nav-next {
    right: var(--spacing-4);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: var(--spacing-2);
    margin-top: var(--spacing-6);
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(199, 166, 71, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonial-dot.active {
    background: var(--secondary-color);
    width: 30px;
    border-radius: 5px;
}

/* FAQ Section */
.faq-section {
    padding: var(--spacing-16) var(--spacing-8);
    background: var(--bg-darker); /* Very dark background (alternating) */
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(199, 166, 71, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(199, 166, 71, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.faq-header {
    text-align: center;
    margin-bottom: var(--spacing-12);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.faq-title {
    font-family: 'EB Garamond', serif;
    font-size: clamp(var(--font-size-3xl), 5vw, var(--font-size-5xl));
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-4);
    line-height: var(--line-height-tight);
    letter-spacing: -0.02em;
}

.faq-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(var(--font-size-base), 2vw, var(--font-size-md));
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: rgba(36, 21, 48, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(199, 166, 71, 0.2);
    border-radius: var(--spacing-4);
    margin-bottom: var(--spacing-4);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(199, 166, 71, 0.3);
}

.faq-item.active {
    border-color: rgba(199, 166, 71, 0.4);
    background: rgba(36, 21, 48, 0.75);
}

.faq-question {
    width: 100%;
    padding: var(--spacing-5) var(--spacing-6);
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-4);
    font-family: 'Inter', sans-serif;
    font-size: clamp(var(--font-size-base), 2vw, var(--font-size-lg));
    font-weight: 600;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--secondary-color);
}

.faq-icon {
    width: 20px;
    height: 20px;
    stroke: var(--secondary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 var(--spacing-6);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 var(--spacing-6) var(--spacing-5) var(--spacing-6);
}

.faq-answer p {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
    margin: 0;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    padding: var(--spacing-16) 0 var(--spacing-8);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(199, 166, 71, 0.1);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    opacity: 0.3;
}

.footer .container {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 var(--spacing-8);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    gap: 10rem;
    margin-bottom: var(--spacing-10);
    align-items: start;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    margin-bottom: var(--spacing-4);
}

.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-logo .logo-fallback {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
}

.footer-logo .logo-icon {
    width: 32px;
    height: 32px;
    stroke: var(--secondary-color);
}

.footer-logo .logo-text {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--text-primary);
}

.footer-description {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-sm);
    color: var(--text-light);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--spacing-6);
}

.footer-social {
    display: flex;
    gap: var(--spacing-3);
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(199, 166, 71, 0.1);
    border: 1px solid rgba(199, 166, 71, 0.2);
    border-radius: 50%;
    color: var(--secondary-color);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: rgba(199, 166, 71, 0.2);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.footer-heading {
    font-family: 'EB Garamond', serif;
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-4);
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3);
}

.footer-list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
}

.footer-list a,
.footer-list span {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-sm);
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: var(--secondary-color);
}

.footer-list svg {
    width: 16px;
    height: 16px;
    stroke: var(--secondary-color);
    flex-shrink: 0;
    opacity: 0.7;
}

.footer-bottom {
    border-top: 1px solid rgba(199, 166, 71, 0.2);
    padding-top: var(--spacing-6);
    margin-top: var(--spacing-8);
}

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

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-4);
}

.footer-bottom-content p {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
}

.footer-legal a {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-sm);
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--secondary-color);
}

.footer-separator {
    color: var(--text-muted);
    font-size: var(--font-size-sm);
}

/* Responsive Design for Testimonials */
@media (max-width: 1024px) {
    .testimonial-card {
        min-width: calc(50% - var(--spacing-3));
        flex: 0 0 calc(50% - var(--spacing-3));
        padding: var(--spacing-6) var(--spacing-5);
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: var(--spacing-10) var(--spacing-4);
    }
    
    .testimonials-header {
        margin-bottom: var(--spacing-8);
    }
    
    .testimonial-nav {
        width: 40px;
        height: 40px;
    }
    
    .testimonial-nav-prev {
        left: var(--spacing-2);
    }
    
    .testimonial-nav-next {
        right: var(--spacing-2);
    }
    
    .testimonial-card {
        min-width: calc(100% - var(--spacing-2));
        flex: 0 0 calc(100% - var(--spacing-2));
        padding: var(--spacing-5) var(--spacing-4);
    }
    
    .faq-section {
        padding: var(--spacing-10) var(--spacing-4);
    }
    
    .faq-header {
        margin-bottom: var(--spacing-8);
    }
    
    .faq-question {
        padding: var(--spacing-4) var(--spacing-5);
        font-size: var(--font-size-base);
    }
    
    .faq-answer {
        padding: 0 var(--spacing-5);
    }
    
    .faq-item.active .faq-answer {
        padding: 0 var(--spacing-5) var(--spacing-4) var(--spacing-5);
    }
    
    .footer {
        padding: var(--spacing-12) var(--spacing-4) var(--spacing-6);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-6);
    }
    
    .footer-column {
        text-align: left;
    }
}

.footer-about {
    max-width: 100%;
}

.footer-links,
.footer-contact {
    text-align: left;
}

.footer-heading {
    text-align: left;
}

.footer-list {
    text-align: left;
}

@media (max-width: 768px) {
    .footer {
        padding: var(--spacing-12) 0 var(--spacing-6);
    }
    
    .footer .container {
        padding: 0 var(--spacing-4);
    }
    
    .footer-bottom .container {
        padding: 0 var(--spacing-4);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-6);
        margin-bottom: var(--spacing-8);
    }
    
    .footer-column {
        text-align: left;
    }
    
    .footer-heading {
        text-align: left;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-3);
    }
    
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: var(--spacing-8) var(--spacing-3);
    }
    
    .testimonial-nav {
        display: none;
    }
    
    .faq-section {
        padding: var(--spacing-8) var(--spacing-3);
    }
    
    .faq-question {
        padding: var(--spacing-3) var(--spacing-4);
        font-size: var(--font-size-sm);
    }
}

/* Sections */
.section {
    padding: var(--spacing-16) var(--spacing-8);
    position: relative;
    overflow: hidden;
}

/* Features Section - Different Background Pattern */
#features.section {
    background: var(--bg-darker); /* Very dark background (footer color) - alternating */
    position: relative;
}

#features.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--secondary-color) 30%, 
        var(--secondary-light) 50%, 
        var(--secondary-color) 70%, 
        transparent 100%);
    opacity: 0.35;
    box-shadow: 0 2px 12px rgba(199, 166, 71, 0.25);
}

#features.section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(199, 166, 71, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 90% 60%, rgba(199, 166, 71, 0.03) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

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

/* About Section - Different Background Pattern */
#about.section {
    background: var(--bg-darker); /* Very dark background (footer color) */
    position: relative;
}

#about.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--secondary-color) 0%, 
        transparent 20%, 
        transparent 80%, 
        var(--secondary-color) 100%);
    opacity: 0.4;
    box-shadow: 0 2px 10px rgba(199, 166, 71, 0.3);
}

#about.section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(199, 166, 71, 0.015) 2px, rgba(199, 166, 71, 0.015) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(199, 166, 71, 0.015) 2px, rgba(199, 166, 71, 0.015) 4px);
    pointer-events: none;
    z-index: 0;
}

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

/* Contact Section - Different Background Pattern */
#contact.section {
    background: var(--primary-dark); /* Medium purple background */
    position: relative;
}

#contact.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--secondary-light) 25%, 
        var(--secondary-color) 50%, 
        var(--secondary-light) 75%, 
        transparent 100%);
    opacity: 0.45;
    box-shadow: 0 2px 15px rgba(199, 166, 71, 0.35);
}

#contact.section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(ellipse at 50% 0%, rgba(199, 166, 71, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

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

.container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-family: 'EB Garamond', serif;
    text-align: center;
    font-size: clamp(var(--font-size-3xl), 4vw, var(--font-size-4xl)); /* 36px - 48px - standardized */
    font-weight: 600;
    margin-bottom: var(--spacing-4);
    line-height: var(--line-height-tight);
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    text-align: center;
    font-size: clamp(var(--font-size-base), 1.5vw, var(--font-size-md)); /* 16px - 18px - standardized */
    color: var(--text-light);
    margin-bottom: var(--spacing-16);
    max-width: 43.75rem; /* 700px in rem - optimal reading width */
    margin-left: auto;
    margin-right: auto;
    line-height: var(--line-height-relaxed);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.feature-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translate3d(0, -8px, 0);
    box-shadow: var(--shadow-xl);
    background: var(--bg-card-hover);
    border-color: var(--secondary-color);
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-family: 'EB Garamond', serif;
    font-size: clamp(var(--font-size-xl), 2vw, var(--font-size-2xl)); /* 24px - 30px - standardized */
    margin-bottom: var(--spacing-4);
    color: var(--text-primary);
    line-height: var(--line-height-tight);
    font-weight: 600;
}

.feature-card p {
    font-family: 'Inter', sans-serif;
    color: var(--text-light);
    line-height: var(--line-height-relaxed);
    font-size: var(--font-size-base); /* 16px - standardized */
}

/* Footer */
.footer {
    background: var(--bg-darker);
    color: var(--text-secondary);
    padding: 4rem 2rem 2rem;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    max-width: 1360px;
    margin: 0 auto;
}

.footer p {
    font-family: 'Inter', sans-serif;
    opacity: 0.8;
    font-size: 0.9375rem; /* 15px */
    line-height: 1.6;
    text-align: left;
}

/* Form Styles */
form {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

form label {
    font-family: 'Inter', sans-serif;
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9375rem; /* 15px */
    line-height: 1.5;
}

form input,
form textarea {
    width: 100%;
    padding: 0.875rem 1.25rem; /* 14px vertical, 20px horizontal */
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem; /* 16px - standard input size */
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    transition: all 0.3s ease;
    line-height: 1.5;
}

form input:focus,
form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(199, 166, 71, 0.1);
}

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

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .section {
        padding: var(--spacing-12) var(--spacing-6);
    }
}

@media (max-width: 768px) {
    /* Mobile App-Like Experience - Native Feel */
    html {
        font-size: 16px; /* Keep 16px for accessibility - WCAG standard */
        -webkit-text-size-adjust: 100%; /* Prevent iOS text size adjustment */
        /* App-like safe area support */
        padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
    }
    
    body {
        /* App-like smooth scrolling */
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-y: contain;
        /* Prevent pull-to-refresh on mobile */
        overscroll-behavior: contain;
        /* App-like tap highlight */
        -webkit-tap-highlight-color: rgba(199, 166, 71, 0.2);
    }
    
    /* App-like header on mobile */
    .main-header {
        padding-top: env(safe-area-inset-top);
    }
    
    .hero h1 {
        font-size: clamp(var(--font-size-2xl), 8vw, var(--font-size-3xl)); /* 30px - 36px - mobile optimized */
        line-height: var(--line-height-tight);
    }
    
    .hero p {
        font-size: var(--font-size-base); /* 16px - WCAG standard */
        line-height: var(--line-height-relaxed);
    }
    
    .nav-links {
        gap: var(--spacing-4);
    }
    
    .navbar {
        padding: var(--spacing-4) var(--spacing-6);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-8);
    }
    
    .section-title {
        font-size: clamp(var(--font-size-2xl), 6vw, var(--font-size-3xl)); /* 30px - 36px - standardized */
    }
    
    .section {
        padding: var(--spacing-16) var(--spacing-6);
    }
    
    .container {
        padding: 0 var(--spacing-4);
    }
    
    .logo-text {
        font-size: var(--font-size-xl); /* 24px - standardized */
    }
    
    /* App-like touch targets */
    .btn, button, a.btn {
        min-height: var(--touch-target-comfort); /* 48px */
        padding: var(--spacing-3) var(--spacing-5);
        font-size: var(--font-size-base);
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-2);
    gap: var(--spacing-1);
    z-index: 1002;
    min-width: var(--touch-target-comfort); /* 48px - app-like touch target */
    min-height: var(--touch-target-comfort);
    justify-content: center;
    align-items: center;
    -webkit-tap-highlight-color: transparent; /* Remove tap highlight */
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    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);
}

@media (max-width: 1024px) {
    .top-info-container {
        padding: 0.75rem 1.5rem;
    }
    
    .top-info-left {
        gap: 1.5rem;
    }
    
    .info-item span {
        font-size: 0.8125rem; /* 13px */
    }
    
    .info-tags {
        font-size: 0.8125rem; /* 13px */
    }
}

@media (max-width: 768px) {
    .top-info-bar {
        display: none; /* Hide top bar on mobile */
    }
    
    .main-header.has-top-bar {
        top: 0;
        transform: translate3d(0, 0, 0) !important;
    }
    
    .main-header {
        padding-top: env(safe-area-inset-top);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .navbar {
        padding: 1rem 1.5rem;
        min-height: 70px;
    }
    
    .logo {
        flex-shrink: 0;
    }
    
    .logo-text {
        font-size: 1.5rem; /* 24px on mobile */
    }
    
    .logo-icon {
        width: 28px;
        height: 28px;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-card);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: var(--spacing-6);
        box-shadow: var(--shadow-lg);
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-top: 1px solid var(--border-color);
        gap: var(--spacing-2);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch; /* Smooth iOS scrolling */
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        padding: var(--spacing-4) var(--spacing-3);
        font-size: var(--font-size-base);
        min-height: var(--touch-target-comfort); /* 48px - app-like */
        display: flex;
        align-items: center;
        border-radius: var(--spacing-2);
        transition: background-color 0.2s ease;
        -webkit-tap-highlight-color: transparent;
        width: 100%;
        box-sizing: border-box;
    }
    
    .nav-links a:active {
        background-color: rgba(199, 166, 71, 0.1); /* App-like active state */
    }
    
    .btn-consultation {
        width: 100%;
        justify-content: center;
        min-height: var(--touch-target-comfort);
        margin-top: var(--spacing-2);
    }
    
    .hero {
        padding: 6rem 1.5rem 4rem;
    }
}

@media (max-width: 480px) {
    .top-info-left {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }
    
    .top-info-right {
        display: none; /* Hide tags on very small screens */
    }
    
    .navbar {
        padding: 0.875rem 1rem;
        min-height: 60px;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    .logo-icon {
        width: 24px;
        height: 24px;
    }
    
    .nav-links {
        top: 60px;
        max-height: calc(100vh - 60px);
        padding: var(--spacing-4);
    }
    
    .nav-links a {
        padding: var(--spacing-3) var(--spacing-2);
        font-size: var(--font-size-sm);
    }
    
    .mobile-menu-toggle {
        min-width: 44px;
        min-height: 44px;
        padding: var(--spacing-1);
    }
    
    .mobile-menu-toggle span {
        width: 22px;
        height: 2px;
    }
}

/* Additional Dark Theme Enhancements */
body {
    background: var(--bg-dark);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* About Us Page Styles */
.about-hero-section {
    padding: var(--spacing-20) var(--spacing-8) var(--spacing-16);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--bg-darker) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
    margin-top: 120px;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(199, 166, 71, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(199, 166, 71, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.about-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-hero-title {
    font-family: 'EB Garamond', serif;
    font-size: clamp(var(--font-size-4xl), 6vw, var(--font-size-5xl));
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-6);
    line-height: var(--line-height-tight);
    letter-spacing: -0.02em;
}

.about-hero-description {
    font-family: 'Inter', sans-serif;
    font-size: clamp(var(--font-size-base), 2vw, var(--font-size-lg));
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
    max-width: 800px;
    margin: 0 auto;
}

/* Why Choose Us Section */
.about-why-section {
    padding: var(--spacing-16) var(--spacing-8);
    background: var(--bg-dark);
    position: relative;
}

.about-why-header {
    text-align: center;
    margin-bottom: var(--spacing-12);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-section-title {
    font-family: 'EB Garamond', serif;
    font-size: clamp(var(--font-size-3xl), 5vw, var(--font-size-4xl));
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-4);
    line-height: var(--line-height-tight);
}

.about-section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(var(--font-size-base), 2vw, var(--font-size-md));
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
}

.about-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-6);
    max-width: 1200px;
    margin: 0 auto;
}

.about-why-card {
    background: rgba(36, 21, 48, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(199, 166, 71, 0.2);
    border-radius: 1rem;
    padding: var(--spacing-8) var(--spacing-6);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.about-why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-why-card:hover {
    transform: translate3d(0, -8px, 0);
    border-color: rgba(199, 166, 71, 0.4);
    box-shadow: 0 12px 40px rgba(199, 166, 71, 0.2),
                0 4px 20px rgba(0, 0, 0, 0.4);
    background: rgba(36, 21, 48, 0.75);
}

.about-why-card:hover::before {
    opacity: 1;
}

.about-why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-5);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    border-radius: 50%;
    color: var(--primary-darker);
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(199, 166, 71, 0.3);
}

.about-why-card:hover .about-why-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 25px rgba(199, 166, 71, 0.5);
}

.about-why-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--primary-darker);
    stroke-width: 2;
}

.about-why-card-title {
    font-family: 'EB Garamond', serif;
    font-size: clamp(var(--font-size-xl), 2.5vw, var(--font-size-2xl));
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-3);
    line-height: var(--line-height-tight);
}

.about-why-card-text {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-base);
    color: var(--text-light);
    line-height: var(--line-height-relaxed);
    margin: 0;
}

/* Co-Founder Section */
.about-cofounder-section {
    padding: var(--spacing-16) var(--spacing-8);
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.about-cofounder-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(199, 166, 71, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(199, 166, 71, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.about-cofounder-section .container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-cofounder-card {
    max-width: 900px;
    width: 100%;
    background: linear-gradient(135deg, 
        rgba(74, 27, 93, 0.95) 0%, 
        rgba(107, 45, 125, 0.95) 50%,
        rgba(74, 27, 93, 0.95) 100%);
    border-radius: 1.5rem;
    padding: var(--spacing-8);
    display: flex;
    gap: var(--spacing-8);
    align-items: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(199, 166, 71, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-cofounder-card:hover {
    transform: translate3d(0, -5px, 0);
    box-shadow: 0 25px 70px rgba(199, 166, 71, 0.3),
                0 0 0 1px rgba(199, 166, 71, 0.4);
}

.about-cofounder-image-wrapper {
    flex-shrink: 0;
    width: 300px;
    height: 300px;
    position: relative;
}

.about-cofounder-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(199, 166, 71, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
}

.about-cofounder-card:hover .about-cofounder-image {
    border-color: rgba(199, 166, 71, 0.6);
    box-shadow: 0 12px 40px rgba(199, 166, 71, 0.4);
}

.about-cofounder-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4);
}

.about-cofounder-name {
    font-family: 'EB Garamond', serif;
    font-size: clamp(var(--font-size-3xl), 5vw, var(--font-size-4xl));
    font-weight: 700;
    color: var(--text-primary);
    line-height: var(--line-height-tight);
    margin: 0;
}

.about-cofounder-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: var(--spacing-2) var(--spacing-6);
    border: 1.5px solid var(--secondary-color);
    border-radius: 2rem;
    background: rgba(199, 166, 71, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.about-cofounder-badge span {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.05em;
}

.about-cofounder-card:hover .about-cofounder-badge {
    background: rgba(199, 166, 71, 0.25);
    border-color: var(--secondary-light);
    box-shadow: 0 4px 15px rgba(199, 166, 71, 0.3);
}

.about-cofounder-description {
    font-family: 'Inter', sans-serif;
    font-size: clamp(var(--font-size-base), 2vw, var(--font-size-md));
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
    margin: 0;
}

/* Expertise Section */
.about-expertise-section {
    padding: var(--spacing-16) var(--spacing-8);
    background: var(--bg-dark);
    position: relative;
}

.about-expertise-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-12);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-expertise-text {
    font-family: 'Inter', sans-serif;
    font-size: clamp(var(--font-size-base), 2vw, var(--font-size-lg));
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--spacing-6);
}

.about-license-types {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3);
}

.license-type-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-base);
    color: var(--text-light);
}

.license-type-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--secondary-color);
    flex-shrink: 0;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-4);
}

.about-stat-card {
    background: rgba(36, 21, 48, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(199, 166, 71, 0.2);
    border-radius: 1rem;
    padding: var(--spacing-6);
    text-align: center;
    transition: all 0.3s ease;
}

.about-stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(199, 166, 71, 0.4);
    box-shadow: 0 8px 30px rgba(199, 166, 71, 0.2);
}

.about-stat-number {
    font-family: 'EB Garamond', serif;
    font-size: clamp(var(--font-size-3xl), 4vw, var(--font-size-4xl));
    font-weight: 700;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-2);
}

.about-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-sm);
    color: var(--text-light);
    font-weight: 500;
}

/* Process Section */
.about-process-section {
    padding: var(--spacing-16) var(--spacing-8);
    background: var(--primary-dark);
    position: relative;
}

.about-process-header {
    text-align: center;
    margin-bottom: var(--spacing-12);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-6);
    max-width: 1200px;
    margin: 0 auto;
}

.about-process-step {
    display: flex;
    gap: var(--spacing-6);
    background: rgba(36, 21, 48, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(199, 166, 71, 0.2);
    border-radius: 1rem;
    padding: var(--spacing-6);
    transition: all 0.3s ease;
}

.about-process-step:hover {
    transform: translateX(8px);
    border-color: rgba(199, 166, 71, 0.4);
    box-shadow: 0 8px 30px rgba(199, 166, 71, 0.2);
}

.process-step-number {
    font-family: 'EB Garamond', serif;
    font-size: clamp(var(--font-size-4xl), 5vw, var(--font-size-5xl));
    font-weight: 700;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    flex-shrink: 0;
    min-width: 80px;
}

.process-step-content {
    flex: 1;
}

.process-step-title {
    font-family: 'EB Garamond', serif;
    font-size: clamp(var(--font-size-lg), 2vw, var(--font-size-xl));
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-2);
    line-height: var(--line-height-tight);
}

.process-step-text {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-base);
    color: var(--text-light);
    line-height: var(--line-height-relaxed);
    margin: 0;
}

/* Founder Section on About Page */
.about-founder-section {
    padding: var(--spacing-16) var(--spacing-8);
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.about-founder-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(199, 166, 71, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(199, 166, 71, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.about-founder-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-10);
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-founder-image-wrapper {
    position: relative;
}

.about-founder-image-container {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(199, 166, 71, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(36, 21, 48, 0.3);
    padding: 0.5rem;
}

.about-founder-image-container:hover {
    transform: translate3d(0, -5px, 0);
    box-shadow: 0 25px 70px rgba(199, 166, 71, 0.3),
                0 0 0 1px rgba(199, 166, 71, 0.4);
}

.about-founder-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1rem;
    object-fit: cover;
    aspect-ratio: 3/4;
}

.about-founder-image-overlay {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
    border: 2px solid rgba(199, 166, 71, 0.3);
    border-radius: 1rem;
    pointer-events: none;
    transition: border-color 0.4s ease;
}

.about-founder-image-container:hover .about-founder-image-overlay {
    border-color: rgba(199, 166, 71, 0.6);
}

.about-founder-right {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-5);
}

.about-founder-title {
    font-family: 'EB Garamond', serif;
    font-size: clamp(var(--font-size-3xl), 5vw, var(--font-size-4xl));
    font-weight: 700;
    color: var(--text-primary);
    line-height: var(--line-height-tight);
    margin: 0;
}

.about-founder-description {
    font-family: 'Inter', sans-serif;
    font-size: clamp(var(--font-size-base), 2vw, var(--font-size-md));
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
    margin: 0;
}

.about-founder-stats {
    display: flex;
    gap: var(--spacing-6);
    margin: var(--spacing-4) 0;
    padding: var(--spacing-5) 0;
    border-top: 1px solid rgba(199, 166, 71, 0.2);
    border-bottom: 1px solid rgba(199, 166, 71, 0.2);
}

.about-founder-stat-item {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-1);
}

.about-founder-stat-number {
    font-family: 'EB Garamond', serif;
    font-size: clamp(var(--font-size-2xl), 4vw, var(--font-size-3xl));
    font-weight: 700;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.about-founder-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-sm);
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.about-founder-section .section-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-2);
}

.about-founder-section .section-badge svg {
    width: 16px;
    height: 16px;
    stroke: var(--secondary-color);
    flex-shrink: 0;
}

/* CTA Section */
.about-cta-section {
    padding: var(--spacing-16) var(--spacing-8);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--bg-darker) 100%);
    position: relative;
    text-align: center;
}

.about-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-cta-title {
    font-family: 'EB Garamond', serif;
    font-size: clamp(var(--font-size-3xl), 5vw, var(--font-size-4xl));
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-4);
    line-height: var(--line-height-tight);
}

.about-cta-text {
    font-family: 'Inter', sans-serif;
    font-size: clamp(var(--font-size-base), 2vw, var(--font-size-lg));
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--spacing-8);
}

.about-cta-buttons {
    display: flex;
    gap: var(--spacing-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for About Page */
@media (max-width: 1024px) {
    .about-why-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-5);
    }
    
    .about-why-card {
        padding: var(--spacing-7) var(--spacing-5);
    }
    
    .about-cofounder-card {
        flex-direction: column;
        text-align: center;
        padding: var(--spacing-6);
        gap: var(--spacing-6);
    }
    
    .about-cofounder-image-wrapper {
        width: 180px;
        height: 180px;
        margin: 0 auto;
    }
    
    .about-cofounder-content {
        align-items: center;
    }
    
    .about-expertise-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-8);
    }
    
    .about-expertise-left {
        order: 2;
    }
    
    .about-expertise-right {
        order: 1;
    }
    
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-3);
    }
    
    .about-process-steps {
        grid-template-columns: 1fr;
        gap: var(--spacing-5);
    }
    
    .about-process-step {
        padding: var(--spacing-6);
    }
    
    .about-founder-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-8);
    }
    
    .about-founder-image-wrapper {
        order: 1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-founder-right {
        order: 2;
        text-align: center;
        align-items: center;
    }
    
    .about-founder-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        padding: var(--spacing-12) var(--spacing-4) var(--spacing-10);
    }
    
    .about-why-section,
    .about-team-section,
    .about-expertise-section,
    .about-process-section,
    .about-founder-section,
    .about-cta-section {
        padding: var(--spacing-10) var(--spacing-4);
    }
    
    .about-why-header {
        margin-bottom: var(--spacing-8);
    }
    
    .about-why-grid {
        gap: var(--spacing-4);
    }
    
    .about-why-card {
        padding: var(--spacing-6) var(--spacing-4);
    }
    
    .about-why-icon {
        width: 60px;
        height: 60px;
        margin-bottom: var(--spacing-4);
    }
    
    .about-why-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .about-cofounder-card {
        padding: var(--spacing-6);
        gap: var(--spacing-5);
    }
    
    .about-cofounder-image-wrapper {
        width: 160px;
        height: 160px;
    }
    
    .about-expertise-content {
        gap: var(--spacing-6);
    }
    
    .about-expertise-left {
        order: 2;
    }
    
    .about-expertise-right {
        order: 1;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-3);
    }
    
    .about-stat-card {
        padding: var(--spacing-5) var(--spacing-4);
    }
    
    .about-process-header {
        margin-bottom: var(--spacing-8);
    }
    
    .about-process-steps {
        gap: var(--spacing-4);
    }
    
    .about-process-step {
        flex-direction: column;
        gap: var(--spacing-4);
        padding: var(--spacing-5);
    }
    
    .process-step-number {
        min-width: auto;
        text-align: center;
    }
    
    .about-founder-content {
        gap: var(--spacing-6);
    }
    
    .about-founder-stats {
        flex-direction: column;
        gap: var(--spacing-4);
        align-items: center;
        text-align: center;
    }
    
    .about-founder-stat-item {
        width: 100%;
        max-width: 200px;
    }
    
    .about-cta-buttons {
        flex-direction: column;
    }
    
    .about-cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .about-hero-section {
        padding: var(--spacing-10) var(--spacing-3) var(--spacing-8);
    }
    
    .about-why-section,
    .about-cofounder-section,
    .about-expertise-section,
    .about-process-section,
    .about-founder-section,
    .about-cta-section {
        padding: var(--spacing-8) var(--spacing-3);
    }
    
    .about-why-header {
        margin-bottom: var(--spacing-6);
    }
    
    .about-cofounder-card {
        padding: var(--spacing-5);
        gap: var(--spacing-4);
    }
    
    .about-cofounder-image-wrapper {
        width: 140px;
        height: 140px;
    }
    
    .about-why-card {
        padding: var(--spacing-5) var(--spacing-3);
    }
    
    .about-why-icon {
        width: 50px;
        height: 50px;
        margin-bottom: var(--spacing-3);
    }
    
    .about-why-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .about-expertise-content {
        gap: var(--spacing-4);
    }
    
    .about-stats-grid {
        gap: var(--spacing-2);
    }
    
    .about-stat-card {
        padding: var(--spacing-4);
    }
    
    .about-process-header {
        margin-bottom: var(--spacing-6);
    }
    
    .about-process-step {
        padding: var(--spacing-4);
    }
    
    .process-step-number {
        font-size: clamp(var(--font-size-2xl), 8vw, var(--font-size-3xl));
    }
    
    .about-founder-content {
        gap: var(--spacing-4);
    }
    
    .about-founder-image-container {
        padding: 0.25rem;
    }
    
    .about-founder-stats {
        gap: var(--spacing-3);
    }
}

/* Buy/Sell/Contact Page Styles */
.buy-page-hero,
.sell-page-hero,
.contact-page-hero {
    padding: var(--spacing-16) var(--spacing-8) var(--spacing-10);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--bg-darker) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
    margin-top: 120px;
}

.buy-page-hero::before,
.sell-page-hero::before,
.contact-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(199, 166, 71, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(199, 166, 71, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.buy-page-header,
.sell-page-header,
.contact-page-header {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.buy-page-title,
.sell-page-title,
.contact-page-title {
    font-family: 'EB Garamond', serif;
    font-size: clamp(var(--font-size-4xl), 6vw, var(--font-size-5xl));
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-6);
    line-height: var(--line-height-tight);
    letter-spacing: -0.02em;
}

.buy-page-description,
.sell-page-description,
.contact-page-description {
    font-family: 'Inter', sans-serif;
    font-size: clamp(var(--font-size-base), 2vw, var(--font-size-lg));
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
    max-width: 800px;
    margin: 0 auto;
}

/* Buy/Sell page forms use the same license-form-section styling from home page */

.buy-page-info-section,
.sell-page-info-section {
    padding: var(--spacing-10) var(--spacing-8);
    background: var(--primary-dark);
    text-align: center;
    position: relative;
}

.buy-page-info-content,
.sell-page-info-content {
    max-width: 800px;
    margin: 0 auto;
}

.buy-page-info-text,
.sell-page-info-text {
    font-family: 'Inter', sans-serif;
    font-size: clamp(var(--font-size-base), 2vw, var(--font-size-lg));
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
    margin: 0;
}

/* Contact Info Section */
.contact-info-section {
    padding: var(--spacing-16) var(--spacing-8);
    background: var(--primary-dark); /* Alternating with form section (bg-darker) */
    position: relative;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-8);
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-card {
    background: rgba(36, 21, 48, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(199, 166, 71, 0.2);
    border-radius: 1rem;
    padding: var(--spacing-8);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(199, 166, 71, 0.2);
}

.contact-info-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-4);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    color: var(--secondary-color);
}

.contact-info-title {
    font-family: 'EB Garamond', serif;
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-2);
}

.contact-info-text {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
    margin: 0 0 var(--spacing-3);
}

.contact-info-link {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: var(--spacing-2);
}

.contact-info-link:hover {
    color: var(--secondary-light);
    transform: translateX(4px);
}

/* Map Section */
.contact-map-section {
    padding: var(--spacing-16) var(--spacing-8);
    background: var(--bg-darker); /* Alternating with contact info section */
    position: relative;
}

.map-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-10);
}

.map-title {
    font-family: 'EB Garamond', serif;
    font-size: clamp(var(--font-size-3xl), 5vw, var(--font-size-4xl));
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-4);
    line-height: var(--line-height-tight);
}

.map-description {
    font-family: 'Inter', sans-serif;
    font-size: clamp(var(--font-size-base), 2vw, var(--font-size-lg));
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
}

.map-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(199, 166, 71, 0.2);
}

.contact-map-iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

/* Why Contact Us Section */
.why-contact-section {
    padding: var(--spacing-16) var(--spacing-8);
    background: var(--primary-dark); /* Alternating with map section (bg-darker) */
    position: relative;
}

.why-contact-title {
    font-family: 'EB Garamond', serif;
    font-size: clamp(var(--font-size-3xl), 5vw, var(--font-size-4xl));
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: var(--spacing-10);
    line-height: var(--line-height-tight);
}

.why-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-8);
    max-width: 1200px;
    margin: 0 auto;
}

.why-contact-card {
    background: rgba(36, 21, 48, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(199, 166, 71, 0.2);
    border-radius: 1rem;
    padding: var(--spacing-8);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-contact-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(199, 166, 71, 0.25);
}

.why-contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-5);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.why-contact-card:hover .why-contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(199, 166, 71, 0.3);
}

.why-contact-card-title {
    font-family: 'EB Garamond', serif;
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-3);
}

.why-contact-card-text {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
    margin: 0;
}

/* Responsive Design for Buy/Sell Pages */
@media (max-width: 768px) {
    .buy-page-hero,
    .sell-page-hero,
    .contact-page-hero {
        padding: var(--spacing-12) var(--spacing-4) var(--spacing-8);
    }
    
    .buy-page-info-section,
    .sell-page-info-section {
        padding: var(--spacing-8) var(--spacing-4);
    }
    
    .contact-info-section {
        padding: var(--spacing-12) var(--spacing-4);
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-6);
    }
    
    .why-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-map-section {
        padding: var(--spacing-12) var(--spacing-4);
    }
    
    .contact-map-iframe {
        height: 350px;
    }
    
    .phone-input-wrapper {
        flex-direction: column;
    }
    
    .country-code-selector {
        width: 100%;
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .buy-page-hero,
    .sell-page-hero,
    .contact-page-hero {
        padding: var(--spacing-10) var(--spacing-3) var(--spacing-6);
    }
    
    .contact-info-section {
        padding: var(--spacing-10) var(--spacing-3);
    }
    
    .why-contact-section {
        padding: var(--spacing-12) var(--spacing-3);
    }
    
    .contact-map-iframe {
        height: 300px;
    }
}

/* Terms and Conditions Page Styles */
.terms-page-hero {
    padding: var(--spacing-16) var(--spacing-8) var(--spacing-10);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--bg-darker) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
    margin-top: 120px;
}

.terms-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(199, 166, 71, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(199, 166, 71, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.terms-page-header {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.terms-page-title {
    font-family: 'EB Garamond', serif;
    font-size: clamp(var(--font-size-4xl), 6vw, var(--font-size-5xl));
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-6);
    line-height: var(--line-height-tight);
    letter-spacing: -0.02em;
}

.terms-page-description {
    font-family: 'Inter', sans-serif;
    font-size: clamp(var(--font-size-base), 2vw, var(--font-size-lg));
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
    max-width: 800px;
    margin: 0 auto;
}

.terms-content-section {
    padding: var(--spacing-16) var(--spacing-8);
    background: var(--bg-dark);
    position: relative;
    /* Ensure no overflow that breaks sticky */
    overflow: visible;
}

.terms-content-section .container {
    position: relative;
    /* Ensure no overflow that breaks sticky */
    overflow: visible;
}

.terms-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: var(--spacing-10);
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
    /* Ensure no overflow that breaks sticky */
    overflow: visible;
    position: relative;
}

/* Sticky Sidebar - Sticks after hero banner scrolls past */
.terms-sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 5rem; /* Header height (70px) + spacing = ~80px = 5rem - sticks after hero scrolls past */
    width: 100%;
    height: fit-content;
    z-index: 100;
    align-self: start;
    /* Smooth transition when becoming sticky */
    transition: top 0.3s ease;
}

.sidebar-content {
    background: rgba(36, 21, 48, 0.95);
    backdrop-filter: blur(20px);
    border: 1.5px solid rgba(199, 166, 71, 0.2);
    border-radius: 1rem;
    padding: var(--spacing-6);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.sidebar-title {
    font-family: 'EB Garamond', serif;
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-5);
    padding-bottom: var(--spacing-4);
    border-bottom: 2px solid rgba(199, 166, 71, 0.2);
}

.terms-nav {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2);
    margin-bottom: var(--spacing-6);
}

.terms-nav-link {
    display: block;
    padding: var(--spacing-3) var(--spacing-4);
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding-left: var(--spacing-6);
}

.terms-nav-link::before {
    content: '→';
    position: absolute;
    left: var(--spacing-3);
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.3s ease;
    color: var(--secondary-color);
}

.terms-nav-link:hover,
.terms-nav-link.active {
    color: var(--secondary-color);
    background: rgba(199, 166, 71, 0.1);
    padding-left: var(--spacing-6);
}

.terms-nav-link:hover::before,
.terms-nav-link.active::before {
    opacity: 1;
    transform: translateX(0);
}

/* Locations Grid Styles */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--spacing-4);
    margin-top: var(--spacing-6);
}

.location-item {
    padding: var(--spacing-3) var(--spacing-4);
    background: rgba(36, 21, 48, 0.6);
    border: 1px solid rgba(199, 166, 71, 0.2);
    border-radius: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-base);
    color: var(--text-primary);
    text-align: center;
    transition: all 0.3s ease;
}

.location-item:hover {
    background: rgba(36, 21, 48, 0.8);
    border-color: rgba(199, 166, 71, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(199, 166, 71, 0.2);
}

@media (max-width: 768px) {
    .locations-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: var(--spacing-3);
    }
    
    .location-item {
        padding: var(--spacing-2) var(--spacing-3);
        font-size: var(--font-size-sm);
    }
}

@media (max-width: 480px) {
    .locations-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: var(--spacing-2);
    }
    
    .location-item {
        padding: var(--spacing-2);
        font-size: var(--font-size-xs);
    }
}

.sidebar-help {
    padding-top: var(--spacing-6);
    border-top: 2px solid rgba(199, 166, 71, 0.2);
}

.help-title {
    font-family: 'EB Garamond', serif;
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-2);
}

.help-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-4);
    line-height: var(--line-height-relaxed);
}

.help-link {
    display: inline-block;
    padding: var(--spacing-3) var(--spacing-5);
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    color: var(--primary-darker);
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.help-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(199, 166, 71, 0.3);
}

/* Main Content */
.terms-main-content {
    background: rgba(36, 21, 48, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(199, 166, 71, 0.2);
    border-radius: 1rem;
    padding: var(--spacing-10);
    width: 100%;
    position: relative;
    /* Ensure main content scrolls normally */
    overflow: visible;
}

.terms-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.terms-section {
    margin-bottom: var(--spacing-12);
    scroll-margin-top: calc(var(--header-height, 100px) + var(--spacing-4));
}

.terms-section-title {
    font-family: 'EB Garamond', serif;
    font-size: clamp(var(--font-size-2xl), 4vw, var(--font-size-3xl));
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-6);
    line-height: var(--line-height-tight);
    padding-bottom: var(--spacing-4);
    border-bottom: 2px solid rgba(199, 166, 71, 0.2);
}

.terms-section p {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--spacing-4);
}

.terms-notice-box {
    background: rgba(199, 166, 71, 0.1);
    border-left: 4px solid var(--secondary-color);
    border-radius: 0.5rem;
    padding: var(--spacing-5);
    margin-bottom: var(--spacing-6);
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-base);
    color: var(--text-primary);
    line-height: var(--line-height-relaxed);
}

.terms-notice-box strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.terms-list {
    list-style: none;
    padding-left: 0;
    margin: var(--spacing-4) 0;
}

.terms-list li {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
    padding: var(--spacing-2) 0;
    padding-left: var(--spacing-6);
    position: relative;
}

.terms-list li::before {
    content: '•';
    position: absolute;
    left: var(--spacing-2);
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2em;
}

.terms-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.terms-link:hover {
    color: var(--secondary-light);
    border-bottom-color: var(--secondary-light);
}

.terms-footer-note {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    font-style: italic;
    margin-top: var(--spacing-6);
    padding-top: var(--spacing-6);
    border-top: 1px solid rgba(199, 166, 71, 0.2);
    text-align: center;
}

/* Responsive Design for Terms Page */
@media (max-width: 1024px) {
    .terms-layout {
        grid-template-columns: 240px 1fr;
        gap: var(--spacing-8);
    }
}

@media (max-width: 768px) {
    .terms-page-hero {
        padding: var(--spacing-12) var(--spacing-4) var(--spacing-8);
    }
    
    .terms-content-section {
        padding: var(--spacing-12) var(--spacing-4);
    }
    
    .terms-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-8);
    }
    
    .terms-sidebar {
        position: relative;
        top: 0;
        width: 100%;
        max-height: none;
        z-index: 1;
    }
    
    .terms-main-content {
        padding: var(--spacing-6);
    }
    
    .terms-section {
        margin-bottom: var(--spacing-8);
    }
}

@media (max-width: 480px) {
    .terms-page-hero {
        padding: var(--spacing-10) var(--spacing-3) var(--spacing-6);
    }
    
    .terms-content-section {
        padding: var(--spacing-10) var(--spacing-3);
    }
    
    .terms-main-content {
        padding: var(--spacing-5);
    }
    
    .sidebar-content {
        padding: var(--spacing-5);
    }
}

/* Selection */
::selection {
    background: var(--secondary-color);
    color: var(--primary-darker);
}

/* Success Popup Modal - Liquor License Theme */
.success-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 10, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: var(--spacing-4);
}

.success-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.success-popup-container {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--primary-dark) 100%);
    border: 3px solid var(--secondary-color);
    border-radius: 1.5rem;
    padding: 3rem 2.5rem;
    max-width: 550px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8),
                0 0 40px rgba(199, 166, 71, 0.3),
                inset 0 0 20px rgba(199, 166, 71, 0.1),
                0 0 0 1px rgba(199, 166, 71, 0.1) inset;
    transform: scale(0.8) translateY(50px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
                opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
}

/* Certificate-style corner decorations */
.success-popup-container::after {
    content: '';
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    border: 1px solid rgba(199, 166, 71, 0.15);
    border-radius: 1rem;
    pointer-events: none;
}

.success-popup-overlay.active .success-popup-container {
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* Animated background glow */
.success-popup-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(199, 166, 71, 0.1) 0%, transparent 70%);
    animation: rotateGlow 8s linear infinite;
    pointer-events: none;
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Wine bottle icon container */
.success-icon-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto var(--spacing-6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid var(--secondary-color);
    animation: pulseRing 2s ease-out infinite;
}

.success-icon-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--secondary-light);
    animation: pulseRing 2s ease-out infinite 0.3s;
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.success-icon {
    position: relative;
    z-index: 2;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(199, 166, 71, 0.5),
                inset 0 2px 10px rgba(255, 255, 255, 0.2);
    animation: iconBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.3s both;
}

@keyframes iconBounce {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-icon svg {
    width: 45px;
    height: 45px;
    stroke: var(--primary-darker);
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: checkmarkDraw 0.6s ease-out 0.5s both;
}

/* Professional Stamp Effect */
.stamp-effect {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%) rotate(-12deg);
    font-family: 'EB Garamond', serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    background: rgba(199, 166, 71, 0.1);
    border: 2px dashed var(--secondary-color);
    border-radius: 4px;
    opacity: 0;
    animation: stampAppear 0.5s ease-out 0.8s both;
    z-index: 3;
}

@keyframes stampAppear {
    0% {
        opacity: 0;
        transform: translateX(-50%) rotate(-12deg) scale(0.5);
    }
    50% {
        transform: translateX(-50%) rotate(-12deg) scale(1.1);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) rotate(-12deg) scale(1);
    }
}

@keyframes checkmarkDraw {
    0% {
        stroke-dasharray: 0 100;
        opacity: 0;
    }
    100% {
        stroke-dasharray: 100 0;
        opacity: 1;
    }
}

/* License Seal Badge */
.license-seal-badge {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(199, 166, 71, 0.4),
                inset 0 2px 10px rgba(255, 255, 255, 0.2);
    z-index: 10;
    animation: sealRotate 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.4s both;
    border: 3px solid var(--primary-dark);
}

.license-seal-badge .seal-icon {
    width: 60px;
    height: 60px;
    color: var(--primary-darker);
    stroke: var(--primary-darker);
}

@keyframes sealRotate {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

/* Decorative license elements */
.license-decoration {
    position: absolute;
    width: 50px;
    height: 50px;
    opacity: 0.12;
    pointer-events: none;
    color: var(--secondary-color);
}

.license-decoration.top-left {
    top: -15px;
    left: -15px;
    animation: float 4s ease-in-out infinite;
}

.license-decoration.top-right {
    top: -15px;
    right: -15px;
    animation: float 4s ease-in-out infinite 0.7s;
}

.license-decoration.bottom-left {
    bottom: -15px;
    left: -15px;
    animation: float 4s ease-in-out infinite 1.4s;
}

.license-decoration.bottom-right {
    bottom: -15px;
    right: -15px;
    animation: float 4s ease-in-out infinite 2.1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

.success-popup-title {
    font-family: 'EB Garamond', serif;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-4);
    line-height: var(--line-height-tight);
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.success-popup-message {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--spacing-6);
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

.success-popup-message strong {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Success Popup Features */
.success-popup-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3);
    margin-bottom: var(--spacing-6);
    padding: var(--spacing-4);
    background: rgba(36, 21, 48, 0.5);
    border-radius: 0.75rem;
    border: 1px solid rgba(199, 166, 71, 0.2);
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-3);
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    text-align: left;
}

.feature-item svg {
    flex-shrink: 0;
    color: var(--secondary-color);
    stroke: var(--secondary-color);
    animation: checkmarkDraw 0.4s ease-out both;
}

.feature-item:nth-child(1) svg {
    animation-delay: 0.7s;
}

.feature-item:nth-child(2) svg {
    animation-delay: 0.8s;
}

.feature-item:nth-child(3) svg {
    animation-delay: 0.9s;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-popup-button {
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    border: 2px solid var(--secondary-color);
    border-radius: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--primary-darker);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(199, 166, 71, 0.3);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out 0.6s both;
    display: inline-block;
}

.success-popup-button::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.5s ease;
}

.success-popup-button:hover::before {
    left: 100%;
}

.success-popup-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(199, 166, 71, 0.5);
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary-lighter) 100%);
}

.success-popup-button:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .success-popup-container {
        padding: 2rem 1.5rem;
        max-width: 90%;
    }
    
    .success-icon-wrapper {
        width: 100px;
        height: 100px;
    }
    
    .success-icon {
        width: 70px;
        height: 70px;
    }
    
    .success-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .license-decoration {
        width: 40px;
        height: 40px;
    }
    
    .license-seal-badge {
        width: 60px;
        height: 60px;
        top: -20px;
        right: -20px;
    }
    
    .license-seal-badge .seal-icon {
        width: 45px;
        height: 45px;
    }
    
    .stamp-effect {
        font-size: 0.65rem;
        padding: 0.2rem 0.5rem;
        bottom: -20px;
    }
    
    .success-popup-features {
        padding: var(--spacing-3);
        gap: var(--spacing-2);
    }
    
    .feature-item {
        font-size: 0.8125rem;
    }
}
