:root {
    /* Brand Colors */
    --primary-main: #005FAD;
    --primary-dark: #004884;
    --primary-light: #E6F0F9;
    --secondary-main: #4F5F78;
    --tertiary-light: #009BD5;

    /* Text Colors */
    --text-primary: rgba(0, 0, 0, 0.87);
    --text-secondary: rgba(0, 0, 0, 0.87);
    --text-light: #94A3B8;
    --text-muted: #CBD5E1;

    /* Backgrounds */
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-subtle: #F1F5F9;
    --bg-gradient: linear-gradient(135deg, #F0F7FF 0%, #FFFFFF 100%);

    /* UI Elements */
    --border-color: #E2E8F0;
    --border-subtle: rgba(0, 0, 0, 0.04);

    /* Modern Shadow System - 2025 SaaS style */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 4px 8px -2px rgba(0, 0, 0, 0.06), 0 2px 4px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 12px 24px -4px rgba(0, 0, 0, 0.08), 0 4px 8px -2px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 40px -8px rgba(0, 0, 0, 0.1), 0 8px 16px -4px rgba(0, 0, 0, 0.06);
    --shadow-2xl: 0 32px 64px -12px rgba(0, 0, 0, 0.14), 0 12px 24px -4px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 0 0 1px rgba(0, 95, 173, 0.08), 0 4px 16px rgba(0, 95, 173, 0.12);
    --shadow-card-hover: 0 20px 40px -12px rgba(0, 0, 0, 0.12), 0 8px 16px -8px rgba(0, 0, 0, 0.08);

    /* Refined Border Radius - softer, more modern */
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-3xl: 32px;

    /* Spacing Scale */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    --space-16: 64px;
    --space-20: 80px;

    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

/* Language Dropdown in Navbar */
.lang-dropdown {
    position: relative;
    margin-left: 12px;
}

.lang-current {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    overflow: hidden;
}

.lang-current:hover {
    border-color: var(--text-secondary);
}

.flag-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
}

.flag-icon.flag-en {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'%3E%3CclipPath id='s'%3E%3Cpath d='M0,0 v30 h60 v-30 z'/%3E%3C/clipPath%3E%3CclipPath id='t'%3E%3Cpath d='M30,15 h30 v15 z v15 h-30 z h-30 v-15 z v-15 h30 z'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23s)'%3E%3Cpath d='M0,0 v30 h60 v-30 z' fill='%23012169'/%3E%3Cpath d='M0,0 L60,30 M60,0 L0,30' stroke='%23fff' stroke-width='6'/%3E%3Cpath d='M0,0 L60,30 M60,0 L0,30' clip-path='url(%23t)' stroke='%23C8102E' stroke-width='4'/%3E%3Cpath d='M30,0 v30 M0,15 h60' stroke='%23fff' stroke-width='10'/%3E%3Cpath d='M30,0 v30 M0,15 h60' stroke='%23C8102E' stroke-width='6'/%3E%3C/g%3E%3C/svg%3E");
}

.flag-icon.flag-de {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 5 3'%3E%3Crect width='5' height='3' fill='%23FFCE00'/%3E%3Crect width='5' height='2' fill='%23DD0000'/%3E%3Crect width='5' height='1' fill='%23000'/%3E%3C/svg%3E");
}

.lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 6px;
    min-width: 140px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    z-index: 1000;
}

.lang-dropdown.open .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 8px 12px;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-secondary);
    transition: all 0.15s ease;
}

.lang-option:hover {
    background: var(--bg-light);
    color: var(--text-primary);
}

.lang-option.active {
    color: var(--text-primary);
    font-weight: 500;
}

.lang-option .flag-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Announcement Bar */
.announcement-bar {
    background-color: rgba(0, 155, 213, 0.15);
    padding: 10px 0;
    text-align: center;
}

.announcement-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: gap 0.2s ease;
}

.announcement-link:hover {
    gap: 12px;
}

.announcement-link strong {
    color: var(--primary-main);
}

.announcement-link svg {
    color: var(--primary-main);
    transition: transform 0.2s ease;
}

.announcement-link:hover svg {
    transform: translateX(3px);
}

html, body {
    overflow-x: hidden;
}

body {
    font-family: var(--font-family);
    color: var(--text-primary);
    line-height: 1.6;
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}

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

/* Typography - Modern 2025 SaaS Style */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 100%;
    color: #000000;
    letter-spacing: -0.015em;
    text-wrap: balance;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 44px);
    font-weight: 600;
    letter-spacing: -0.015em;
    margin-bottom: var(--space-6);
    color: #000000;
}

h2 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 44px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.87);
    margin-bottom: var(--space-4);
    letter-spacing: -0.015em;
}

h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.87);
    margin-bottom: var(--space-3);
    letter-spacing: -0.015em;
}

h4 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.87);
    margin-bottom: var(--space-2);
    letter-spacing: -0.015em;
}

p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    margin-bottom: var(--space-4);
    color: rgba(0, 0, 0, 0.6);
    font-size: 18px;
    line-height: 1.7;
}

/* Section Headers - Refined spacing and hierarchy */
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto var(--space-16);
}

.section-header h2 {
    margin-bottom: var(--space-5);
}

.section-header .subtitle {
    margin-bottom: 0;
}

/* Overline/Eyebrow text - Modern trend */
.overline,
.section-overline {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary-main);
    margin-bottom: var(--space-4);
}

.overline::before,
.section-overline::before {
    content: '';
    width: 24px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    opacity: 0.5;
}

.subtitle {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: var(--space-8);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
}

/* Large subtitle variant */
.subtitle-lg {
    font-size: 20px;
    max-width: 700px;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: var(--primary-main);
    transition: all 0.2s ease;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 100px; /* Pill shape for modern look */
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: #005FAD;
    color: #fff;
    border: none;
    box-shadow: none;
}

.btn-primary:hover {
    background: #004a8a;
}

.btn-primary:active {
    background: #003d73;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-main);
    border: 2px solid rgba(0, 95, 173, 0.2);
}

.btn-outline:hover {
    background-color: rgba(0, 95, 173, 0.05);
    border-color: var(--primary-main);
    transform: translateY(-2px);
}

.btn-secondary {
    color: #005FAD;
    font-weight: 500;
    padding: 12px 24px;
    border: 1px solid #005FAD;
    border-radius: 100px;
    background: transparent;
}

.btn-secondary:hover {
    color: #005FAD;
    background-color: rgba(0, 95, 173, 0.08);
}

.full-width {
    width: 100%;
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: padding 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                border-bottom-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 12px 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    border-bottom-color: transparent;
}

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

.logo {
    display: flex;
    align-items: center;
    position: relative;
}

.logo img {
    display: block;
    height: 36px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 8px rgba(0, 95, 173, 0.15));
}

.logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(0, 95, 173, 0.25));
}

.navbar.scrolled .logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    background: rgba(255,255,255,0.5);
    padding: 8px 24px;
    border-radius: 100px;
    border: 1px solid rgba(0,0,0,0.03);
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

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

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

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

/* Dropdown Menu */
.dropdown {
    position: relative;
}

/* Specific selector to override .nav-links a styles */
.nav-links .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links .dropdown-toggle::after {
    content: '';
    position: static; /* Override absolute positioning from nav links */
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-bottom: 2px;
    transition: transform 0.2s ease;
    opacity: 0.6;
    background-color: transparent; /* Override underline background */
    border-radius: 0;
}

/* Override hover effect from nav links */
.nav-links .dropdown-toggle:hover::after {
    width: 6px;
    transform: rotate(-135deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(10px);
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
    padding: 8px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    list-style: none;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    border-radius: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: #F8FAFC;
    color: var(--primary-main);
}

.dropdown-menu a::after {
    display: none; /* Remove underline effect from main nav */
}

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

/* Mobile CTA inside nav-wrapper - hidden on desktop */
.nav-cta-mobile {
    display: none;
}

/* Nav wrapper - keeps nav links and CTA in one line on desktop */
.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: center;
}

/* Hero Section */
.hero {
    padding: 120px 0 140px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F6F7FE 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 95, 173, 0.08) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
    pointer-events: none;
}

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

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

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background-color: rgba(0, 95, 173, 0.08);
    color: var(--primary-main);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 95, 173, 0.1);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

.badge-dot.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.1), 0 0 0 2px rgba(16, 185, 129, 0.3);
    }
}

.hero-content h1 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 56px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    color: rgba(0, 0, 0, 0.87);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-main) 0%, var(--tertiary-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content .subtitle {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    margin-left: 0;
    font-size: 18px;
    margin-bottom: 1.5rem;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.7;
    max-width: 540px;
}

/* Enhanced CTA */
.btn-lg {
    padding: 18px 36px;
    font-size: 1.0625rem;
    gap: 10px;
}

.btn-primary svg,
.btn-outline svg {
    transition: transform 0.2s ease;
}

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

/* Enhanced Social Proof */
.hero-social-proof {
    display: inline-flex;
    align-items: center;
    gap: var(--space-8);
    padding: var(--space-5) var(--space-8);
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-subtle) 100%);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    margin-top: var(--space-8);
    box-shadow: var(--shadow-sm);
}

.proof-stats {
    display: flex;
    gap: 32px;
}

.proof-stat {
    text-align: center;
    position: relative;
}

.proof-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 32px;
    background: #E2E8F0;
}

.proof-stat .stat-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-main);
    line-height: 1.2;
}

.proof-stat .stat-text {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    justify-content: flex-start;
}

.hero-content .cta-group {
    justify-content: flex-start;
}

/* Hero Visual - Dashboard Mock */
.hero-visual {
    position: relative;
    perspective: 2000px;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

/* Modern SaaS Hero */
.hero-modern {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 50%);
    overflow: visible;
    position: relative;
}

/* Floating Badge Elements */
.floating-element {
    position: absolute;
    z-index: 10;
    pointer-events: none;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.12));
}

.floating-element-1 {
    top: 0%;
    right: -60px;
    animation: float-element-1 6s ease-in-out infinite;
}

.floating-element-2 {
    bottom: 5%;
    left: -60px;
    animation: float-element-2 6s ease-in-out infinite;
}

@keyframes float-element-1 {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

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

@media (max-width: 968px) {
    .floating-element {
        width: 168px;
        height: auto;
        animation: none;
    }

    .floating-element-1 {
        top: -3%;
        right: -10px;
    }

    .floating-element-2 {
        bottom: 2%;
        left: -10px;
    }
}

@media (max-width: 600px) {
    .floating-element {
        width: 132px;
    }

    .floating-element-1 {
        top: -2%;
        right: 0px;
    }

    .floating-element-2 {
        bottom: 3%;
        left: 0px;
    }
}

@media (max-width: 480px) {
    .floating-element {
        width: 102px;
    }

    .floating-element-1 {
        top: 0%;
        right: 5px;
    }

    .floating-element-2 {
        bottom: 5%;
        left: 5px;
    }
}

.hero-content-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.hero-content-centered h1 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 56px;
    font-weight: 600;
    line-height: 1.1;
    color: rgba(0, 0, 0, 0.87);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-content-centered .subtitle {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 32px;
}

.hero-content-centered .cta-group {
    justify-content: center;
}

.hero-screenshot-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    perspective: 1500px;
}

.hero-screenshot-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(0, 95, 173, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}

.hero-screenshot-frame {
    position: relative;
    z-index: 1;
    background: #1a1a2e;
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 50px 100px -20px rgba(0, 0, 0, 0.25),
        0 30px 60px -30px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: rotateX(2deg);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-screenshot-frame:hover {
    transform: rotateX(0deg) translateY(-8px);
    box-shadow:
        0 60px 120px -20px rgba(0, 0, 0, 0.3),
        0 40px 80px -30px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.15);
}

.browser-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: linear-gradient(180deg, #2d2d44 0%, #252538 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #3c3c54;
}

.browser-dots span:first-child {
    background: #ff5f57;
}

.browser-dots span:nth-child(2) {
    background: #ffbd2e;
}

.browser-dots span:last-child {
    background: #28c840;
}

.browser-url {
    flex: 1;
    text-align: center;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 16px;
    border-radius: 6px;
    margin-right: 80px;
}

.hero-dashboard-img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 968px) {
    .hero-modern {
        padding: 120px 0 60px;
    }

    .hero-content-centered h1 {
        font-size: 40px;
    }

    .hero-content-centered .subtitle {
        font-size: 18px;
    }

    .hero-screenshot-frame {
        transform: none;
    }

    .hero-screenshot-frame:hover {
        transform: translateY(-4px);
    }
}

@media (max-width: 640px) {
    .hero-content-centered h1 {
        font-size: 32px;
    }

    .hero-content-centered .subtitle {
        font-size: 16px;
    }

    .browser-url {
        display: none;
    }

    .browser-bar {
        justify-content: center;
    }
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 155, 213, 0.15) 0%, rgba(255,255,255,0) 70%);
    z-index: -1;
}

.glass-dashboard {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-xl);
    box-shadow:
        0 24px 48px -12px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    padding: var(--space-6);
    display: flex;
    gap: var(--space-5);
    transform: rotateY(-8deg) rotateX(4deg);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease;
    position: relative;
}

.glass-dashboard:hover {
    transform: rotateY(0) rotateX(0);
    box-shadow:
        0 32px 64px -16px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.dash-sidebar {
    width: 60px;
    border-right: 1px solid #F1F5F9;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-right: 10px;
}

.dash-line {
    height: 8px;
    background-color: #F1F5F9;
    border-radius: 4px;
}

.dash-main {
    flex: 1;
}

.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.dash-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.87);
}

.dash-user {
    width: 24px;
    height: 24px;
    background-color: #E2E8F0;
    border-radius: 50%;
}

.dash-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}

.dash-card {
    background-color: var(--bg-subtle);
    border-radius: var(--radius-md);
    padding: var(--space-4);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.25s ease;
}

.dash-card:hover {
    background-color: var(--bg-light);
    border-color: var(--border-color);
}

.dash-card.big {
    grid-column: 1 / -1;
    height: 120px;
    display: flex;
    align-items: center;
    gap: var(--space-5);
}

.chart-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 8px solid #E2E8F0;
    border-top-color: var(--primary-main);
    border-right-color: var(--tertiary-light);
}

.chart-legend {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legend-item {
    height: 8px;
    width: 80%;
    background-color: #E2E8F0;
    border-radius: 4px;
}

.dash-card.small {
    text-align: center;
}

.stat-val {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.87);
}

.stat-val.warning {
    color: #F59E0B;
}

.stat-label {
    font-size: 0.75rem;
    color: #64748B;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: var(--bg-white);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-weight: 600;
    font-size: 0.8125rem;
    color: var(--text-primary);
    animation: float 6s ease-in-out infinite;
    z-index: 10;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.badge-1 {
    top: 20px;
    right: -30px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 40px;
    left: -20px;
    animation-delay: 3s;
}

.icon-check {
    width: 20px;
    height: 20px;
    background-color: #22C55E;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

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

/* Powered By Stats Section */
.powered-by-stats {
    padding: 64px 0;
    background: linear-gradient(90deg, rgba(0, 155, 213, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.stats-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.stats-brand {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 0 0 auto;
    max-width: 450px;
}

.oms-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.stats-brand p {
    color: rgba(0, 0, 0, 0.87);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.stats-numbers {
    display: flex;
    align-items: center;
    gap: 56px;
}

.stats-numbers .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.stats-numbers .stat-number {
    font-size: 2.5rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.87);
    line-height: 1;
}

.stats-numbers .stat-label {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.87);
    text-transform: lowercase;
}

/* Mobile responsiveness for stats bar */
@media (max-width: 968px) {
    .stats-bar {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

    .stats-brand {
        flex-direction: column;
        max-width: 100%;
        text-align: center;
    }

    .stats-numbers {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .powered-by-stats {
        padding: 24px 0;
    }

    .stats-numbers {
        gap: 24px;
    }

    .stats-numbers .stat-number {
        font-size: 1.5rem;
    }

    .stats-numbers .stat-label {
        font-size: 0.7rem;
    }

    .oms-logo {
        height: 40px;
    }

    .stats-brand p {
        font-size: 0.875rem;
    }
}

/* Responsive Adjustments */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-content .subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-group {
        justify-content: center;
    }
    
    .hero-social-proof {
        justify-content: center;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .trust-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content .subtitle {
        font-size: 16px;
    }

    .trust-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .logo-strip {
        justify-content: center;
    }
}

/* ==========================================
   WHY CHOOSE SECTION - Modern 2025 SaaS Style
   ========================================== */
.why-choose {
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px;
}

/* Background Effects */
.why-choose-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.why-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.why-gradient-orb.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 95, 173, 0.12) 0%, transparent 70%);
    top: -200px;
    left: -100px;
    animation: orbFloat 20s ease-in-out infinite;
}

.why-gradient-orb.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 155, 213, 0.1) 0%, transparent 70%);
    bottom: -150px;
    right: -100px;
    animation: orbFloat 25s ease-in-out infinite reverse;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.why-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 95, 173, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 95, 173, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

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

/* Section Header */
.why-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto var(--space-16);
}

.why-header h2 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 44px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.87);
    line-height: 1.15;
    margin-bottom: var(--space-5);
}

.why-header .subtitle {
    margin-bottom: 0;
}

/* Flat Card Grid - Simple Informational Cards */
.why-grid-flat {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.why-card-flat {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    text-align: center;
}

.why-card-flat-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(0, 95, 173, 0.08) 0%, rgba(0, 155, 213, 0.08) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-main);
    margin: 0 auto var(--space-5);
}

.why-card-flat-icon svg {
    width: 28px;
    height: 28px;
}

.why-card-flat h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.375rem;
    font-weight: 650;
    color: rgba(0, 0, 0, 0.87);
    margin-bottom: var(--space-3);
}

.why-card-flat p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.6;
    margin: 0;
}

/* Responsive - Flat Grid */
@media (max-width: 1024px) {
    .why-grid-flat {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .why-grid-flat {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .why-card-flat {
        padding: var(--space-6);
    }
}

/* Modern Bento Grid */
.why-bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: var(--space-5);
}

/* Base Card Styles */
.why-card {
    background: var(--bg-white);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 95, 173, 0.02) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(0, 95, 173, 0.15);
}

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

/* Static Bento Grid - No Animations */
.why-bento-static .why-card {
    transition: none;
}

.why-bento-static .why-card:hover {
    transform: none;
    box-shadow: var(--shadow-md);
}

.why-bento-static .why-card:hover::before {
    opacity: 0;
}

.why-bento-static .why-card-hero:hover .compliance-item:nth-child(1),
.why-bento-static .why-card-hero:hover .compliance-item:nth-child(2),
.why-bento-static .why-card-hero:hover .compliance-item:nth-child(3) {
    transform: none;
    box-shadow: var(--shadow-md);
}

.why-bento-static .why-card:hover .data-bar {
    opacity: 0.8;
    transform: none;
}

/* Hero Card - Large */
.why-card-hero {
    grid-column: span 8;
    padding: 0;
}

.why-card-hero .why-card-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
}

.why-card-hero .why-card-content {
    padding: var(--space-10);
    display: flex;
    flex-direction: column;
}

.why-card-hero .why-card-visual {
    background: linear-gradient(135deg, var(--bg-subtle) 0%, var(--bg-light) 100%);
    padding: var(--space-8);
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid var(--border-color);
}

/* Card Icon */
.why-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(0, 95, 173, 0.08) 0%, rgba(0, 155, 213, 0.08) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-main);
    margin-bottom: var(--space-5);
    position: relative;
    flex-shrink: 0;
}

.why-card-icon::before {
    content: '';
    position: absolute;
    inset: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%);
    border-radius: calc(var(--radius-lg) - 1px);
    z-index: 0;
}

.why-card-icon svg {
    position: relative;
    z-index: 1;
}

/* Card Content */
.why-card h3 {
    font-size: 1.375rem;
    font-weight: 650;
    color: var(--text-primary);
    margin-bottom: var(--space-3);
}

.why-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: var(--space-5);
}

/* Card Link */
.why-card-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--primary-main);
    font-weight: 600;
    font-size: 0.9375rem;
    margin-top: auto;
    transition: gap 0.3s ease;
}

.why-card-link:hover {
    gap: var(--space-3);
}

.why-card-link svg {
    transition: transform 0.3s ease;
}

.why-card-link:hover svg {
    transform: translateX(4px);
}

/* Compliance Stack Visual */
.compliance-stack {
    width: 100%;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    perspective: 1000px;
}

.compliance-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    background: var(--bg-white);
    padding: var(--space-4);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateZ(0);
}

.compliance-item:nth-child(1) {
    transform: translateY(0) scale(1);
    z-index: 3;
}

.compliance-item:nth-child(2) {
    transform: translateY(4px) scale(0.98);
    z-index: 2;
}

.compliance-item:nth-child(3) {
    transform: translateY(8px) scale(0.96);
    z-index: 1;
}

.why-card-hero:hover .compliance-item:nth-child(1) {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.why-card-hero:hover .compliance-item:nth-child(2) {
    transform: translateY(-4px) scale(1);
    box-shadow: var(--shadow-lg);
}

.why-card-hero:hover .compliance-item:nth-child(3) {
    transform: translateY(0) scale(0.98);
    box-shadow: var(--shadow-md);
}

.compliance-item.active {
    border-color: rgba(16, 185, 129, 0.3);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.04) 0%, var(--bg-white) 100%);
}

.compliance-check {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.compliance-check.pending {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.compliance-info {
    flex: 1;
    min-width: 0;
}

.compliance-name {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-primary);
}

.compliance-status {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
}

.compliance-badge {
    padding: var(--space-1) var(--space-3);
    border-radius: 100px;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.compliance-badge.success {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.compliance-badge.pending {
    background: rgba(245, 158, 11, 0.1);
    color: #D97706;
}

/* Feature Cards */
.why-card-feature {
    grid-column: span 4;
    grid-row: span 2;
    padding: var(--space-8);
    display: flex;
    flex-direction: column;
}

.why-card-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 95, 173, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.why-card-decoration {
    margin-top: auto;
    padding-top: var(--space-6);
}

/* Phone Mockup */
.phone-mockup {
    width: 100px;
    height: 200px;
    background: linear-gradient(180deg, #1E293B 0%, #0F172A 100%);
    border-radius: 20px;
    padding: 10px;
    margin: 0 auto;
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    position: relative;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: #0F172A;
    border-radius: 4px;
}

.phone-screen {
    background: var(--bg-white);
    border-radius: 12px;
    height: 100%;
    padding: 20px 10px 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.phone-header {
    height: 10px;
    background: var(--bg-subtle);
    border-radius: 4px;
}

.phone-card {
    flex: 1;
    background: linear-gradient(135deg, var(--bg-subtle) 0%, var(--bg-light) 100%);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

/* Mobile App Preview */
.mobile-app-preview {
    position: relative;
    max-width: 240px;
    margin: 16px auto 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 20px 40px -10px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover .mobile-app-preview {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 25px 50px -10px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(0, 0, 0, 0.05);
}

.mobile-preview-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.why-card-feature .why-card-decoration {
    margin-top: 8px;
}

/* Data Visual */
.data-visual {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
    height: 100px;
    padding-top: var(--space-4);
}

.data-bar {
    width: 24px;
    height: var(--height);
    background: linear-gradient(180deg, var(--primary-main) 0%, var(--tertiary-light) 100%);
    border-radius: 6px 6px 2px 2px;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.why-card:hover .data-bar {
    opacity: 1;
    transform: scaleY(1.05);
}

/* Wide Card */
.why-card-wide {
    grid-column: span 12;
    padding: 0;
}

.why-card-wide .why-card-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    height: 100%;
}

.why-card-wide .why-card-content {
    padding: var(--space-10);
}

.why-card-wide .why-card-visual {
    background: linear-gradient(135deg, var(--bg-subtle) 0%, var(--bg-light) 100%);
    padding: var(--space-8);
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid var(--border-color);
}

/* Collaboration Visual */
.collab-demo {
    width: 100%;
    max-width: 400px;
}

.collab-avatars-modern {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-5);
}

.collab-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.8125rem;
    border: 3px solid var(--bg-white);
    margin-left: calc(var(--i) * -12px);
    position: relative;
    z-index: calc(3 - var(--i));
    box-shadow: var(--shadow-md);
}

.collab-avatar-add {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 2px dashed var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    margin-left: var(--space-2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.collab-avatar-add:hover {
    border-color: var(--primary-main);
    color: var(--primary-main);
    background: rgba(0, 95, 173, 0.04);
}

.collab-activity {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.activity-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    background: var(--bg-white);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.activity-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.activity-dot.success {
    background: #10B981;
}

.activity-dot.info {
    background: #3B82F6;
}

.activity-time {
    margin-left: auto;
    color: var(--text-light);
    font-size: 0.75rem;
}

/* Bottom Row - Puzzle Layout */
.why-card-bottom-left {
    grid-column: span 4;
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
}

.why-card-bottom-left .why-card-content {
    flex: 1;
}

.why-card-bottom-left .why-card-decoration {
    margin-top: auto;
    padding-top: var(--space-4);
}

.why-card-bottom-left .data-visual {
    height: 100px;
}

.why-card-bottom-right {
    grid-column: span 4;
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
}

.why-card-bottom-right .why-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.why-card-bottom-right .why-card-content {
    margin-bottom: var(--space-4);
}

.why-card-bottom-right .why-card-content p {
    margin-bottom: 0;
    font-size: 0.9375rem;
}

.why-card-bottom-right .why-card-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-card-bottom-right .collab-demo {
    width: 100%;
}

.why-card-bottom-right .collab-avatars-modern {
    justify-content: center;
    margin-bottom: var(--space-4);
}

.why-card-bottom-right .collab-activity {
    gap: var(--space-2);
}

.why-card-bottom-right .activity-item {
    padding: var(--space-2) var(--space-3);
    font-size: 0.8125rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .why-card-hero {
        grid-column: span 12;
    }

    .why-card-feature {
        grid-column: span 12;
        grid-row: span 1;
    }

    .why-card-bottom-left {
        grid-column: span 7;
    }

    .why-card-bottom-right {
        grid-column: span 5;
    }

    .why-card-wide .why-card-inner {
        grid-template-columns: 1fr;
    }

    .why-card-wide .why-card-visual {
        border-left: none;
        border-top: 1px solid var(--border-color);
        padding: var(--space-8);
    }
}

@media (max-width: 768px) {
    .why-bento {
        gap: var(--space-4);
    }

    .why-card-hero .why-card-inner {
        grid-template-columns: 1fr;
    }

    .why-card-hero .why-card-visual {
        border-left: none;
        border-top: 1px solid var(--border-color);
        padding: var(--space-6);
    }

    .why-card-feature {
        grid-column: span 12;
        grid-row: span 1;
    }

    .why-card-bottom-left {
        grid-column: span 12;
        flex-direction: column;
        text-align: center;
    }

    .why-card-bottom-left .why-card-content {
        order: 1;
    }

    .why-card-bottom-left .why-card-decoration {
        order: 2;
        margin-top: var(--space-4);
    }

    .why-card-bottom-right {
        grid-column: span 12;
    }
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: var(--space-6);
    margin-top: var(--space-16);
}

.bento-card {
    background: var(--bg-white);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
}

/* Subtle gradient overlay on hover */
.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 95, 173, 0.02) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    border-radius: inherit;
}

.bento-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(0, 95, 173, 0.12);
}

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

.bento-card.large {
    grid-column: span 2;
    grid-row: span 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-10);
    padding: var(--space-12);
}

.bento-card.wide {
    grid-column: span 3;
    padding: var(--space-10) var(--space-12);
}

.bento-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.bento-content h3 {
    font-size: 1.375rem;
    margin-bottom: var(--space-3);
    color: var(--text-primary);
    font-weight: 650;
}

.bento-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 0;
}

.icon-box-modern {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(0, 95, 173, 0.08) 0%, rgba(0, 155, 213, 0.08) 100%);
    color: var(--primary-main);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-5);
    position: relative;
    transition: transform 0.3s ease, background 0.3s ease;
}

/* Inner glow effect */
.icon-box-modern::before {
    content: '';
    position: absolute;
    inset: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%);
    border-radius: calc(var(--radius-lg) - 1px);
    z-index: -1;
}

.bento-card:hover .icon-box-modern {
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(0, 95, 173, 0.12) 0%, rgba(0, 155, 213, 0.12) 100%);
}

/* Bento Visuals */
.bento-visual {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-subtle);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    position: relative;
    overflow: hidden;
}

/* Subtle mesh gradient background */
.bento-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(0, 95, 173, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(0, 155, 213, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.visual-card {
    background: var(--bg-white);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 280px;
    position: relative;
    border: 1px solid var(--border-color);
}

.check-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 500;
    color: #334155;
}

.check-row:last-child { margin-bottom: 0; }

.check-circle {
    width: 24px;
    height: 24px;
    background-color: #DCFCE7;
    color: #16A34A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.bento-content-row {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.text-side { flex: 1; }
.visual-side { flex: 1; display: flex; justify-content: center; }

.collab-avatars {
    display: flex;
    align-items: center;
    background: white;
    padding: 12px 24px;
    border-radius: 100px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #F1F5F9;
}

.c-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -8px;
}
.c-avatar:first-child { margin-left: 0; }
.a1 { background-color: #FF5F57; }
.a2 { background-color: #FFBD2E; }
.a3 { background-color: #28C840; }

.c-line {
    width: 1px;
    height: 24px;
    background-color: #E2E8F0;
    margin: 0 16px;
}

.c-badge {
    font-size: 0.75rem;
    font-weight: 600;
    color: #16A34A;
    background-color: #DCFCE7;
    padding: 4px 12px;
    border-radius: 100px;
}

/* Features Showcase - Tab-based with Device Frame */
.features-showcase-section {
    background: #ffffff;
    padding: 100px 0 120px;
    position: relative;
}

.features-showcase-section .section-header {
    text-align: center;
    margin-bottom: 48px;
}

.features-showcase-section .section-header h2 {
    color: #0f172a;
}

.features-showcase-section .section-header .subtitle {
    color: #64748b;
}

/* Features Showcase Container */
.features-showcase {
    max-width: 1100px;
    margin: 0 auto;
}

/* Feature Tabs */
.features-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.feature-tab {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid #e2e8f0;
    border-radius: 100px;
    color: #64748b;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
}

.feature-tab:hover {
    background: transparent;
    color: #005fad;
    border-color: #005fad;
}

.feature-tab.active {
    background: transparent;
    color: #005fad;
    border-color: #005fad;
    font-weight: 600;
}

/* Features Display */
.features-display {
    position: relative;
}

/* Feature Panel */
.feature-panel {
    display: none;
    align-items: center;
    gap: 60px;
    opacity: 0;
}

.feature-panel.active {
    display: flex;
    animation: panelFadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes panelFadeIn {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Feature Info */
.feature-info {
    flex: 1;
    min-width: 280px;
}

.feature-info h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.feature-info p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.0625rem;
    font-weight: 400;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #005fad;
    font-weight: 500;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.feature-link:hover {
    color: #0284c7;
    gap: 12px;
}

.feature-link svg {
    transition: transform 0.2s ease;
}

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

/* Device Frame - iPad Style */
.feature-device {
    flex: 1.2;
    display: flex;
    justify-content: center;
}

.device-frame {
    position: relative;
    background: #1a1a1a;
    border-radius: 24px;
    padding: 16px;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.05),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.device-frame::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    width: 4px;
    height: 40px;
    background: #2a2a2a;
    border-radius: 2px;
}

.device-frame img {
    display: block;
    width: 100%;
    max-width: 380px;
    height: auto;
    border-radius: 12px;
    background: #ffffff;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.device-frame img:hover {
    transform: scale(1.02);
}

/* Responsive - Features Showcase */
@media (max-width: 900px) {
    .feature-panel {
        flex-direction: column-reverse;
        gap: 40px;
        text-align: center;
    }

    .feature-info {
        min-width: auto;
    }

    .feature-info h3 {
        font-size: 1.5rem;
    }

    .feature-info p {
        font-size: 1rem;
    }

    .device-frame {
        padding: 12px;
        border-radius: 20px;
    }

    .device-frame img {
        max-width: 320px;
        border-radius: 10px;
    }
}

@media (max-width: 768px) {
    .features-showcase-section {
        padding: 80px 0 100px;
    }

    .features-tabs {
        gap: 6px;
        margin-bottom: 32px;
    }

    .feature-tab {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .feature-tab {
        padding: 8px 12px;
        font-size: 0.75rem;
    }

    .device-frame {
        padding: 10px;
        border-radius: 16px;
    }

    .device-frame img {
        max-width: 260px;
        border-radius: 8px;
    }

    .device-frame::before {
        display: none;
    }
}

/* Legacy support */
.key-features {
    display: none;
}

.feature-screen {
    background: transparent;
    border-radius: var(--radius-xl);
    box-shadow: none;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: visible;
    animation: fadeIn 0.5s ease;
    border: none;
    position: relative;
    align-items: center;
    justify-content: center;
    padding: 0;
}

/* Phone device frame */
.feature-phone-frame {
    position: relative;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 12px;
    box-shadow:
        0 50px 100px -20px rgba(0, 0, 0, 0.25),
        0 30px 60px -30px rgba(0, 0, 0, 0.3),
        inset 0 0 0 2px rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateY(-3deg) rotateX(2deg);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.feature-phone-frame:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-8px);
    box-shadow:
        0 60px 120px -20px rgba(0, 0, 0, 0.3),
        0 40px 80px -30px rgba(0, 0, 0, 0.35),
        inset 0 0 0 2px rgba(255, 255, 255, 0.15);
}

/* Phone notch */
.feature-phone-frame::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 24px;
    background: #1a1a1a;
    border-radius: 0 0 16px 16px;
    z-index: 10;
}

.feature-phone-img {
    max-width: 100%;
    height: auto;
    border-radius: 28px;
    display: block;
}

.feature-placeholder {
    padding: 60px 40px;
    color: #94A3B8;
    font-size: 1.125rem;
    text-align: center;
}

.screen-header {
    padding: 16px 24px;
    border-bottom: 1px solid #F1F5F9;
    display: flex;
    align-items: center;
    gap: 20px;
}

.dots {
    display: flex;
    gap: 6px;
}

.dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #E2E8F0;
}

.screen-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748B;
}

.screen-body {
    padding: 24px;
    flex: 1;
    background-color: #FAFAFA;
}

.d-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.d-card {
    background: white;
    border-radius: 8px;
    height: 120px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.w-30 { width: 30%; }
.w-70 { width: 70%; }
.w-100 { width: 100%; }
.h-lg { height: 200px; }

.list-item {
    height: 60px;
    background: white;
    border-radius: 8px;
    margin-bottom: 12px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

.fade-in-quick {
    animation: fadeIn 0.3s ease forwards;
}

/* Responsive */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: 1fr 1fr;
    }
    .bento-card.large {
        grid-column: span 2;
        grid-row: auto;
        flex-direction: column;
        text-align: center;
    }
    .bento-card.wide {
        grid-column: span 2;
    }
    .feature-showcase {
        grid-template-columns: 1fr;
    }
    .feature-nav {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    .feature-btn {
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-card.large, .bento-card.wide {
        grid-column: span 1;
    }
    .bento-content-row {
        flex-direction: column;
        text-align: center;
    }
}

/* Security Section */
.security-section {
    background-color: #F6F7FE;
    color: var(--text-primary);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.security-wrapper {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.security-content h2 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 44px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.87);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.security-content p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 40px;
    line-height: 1.7;
}

.badge-pill.white {
    background-color: var(--primary-light);
    color: var(--primary-main);
    border: 1px solid var(--primary-main);
}

.security-badges {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.s-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
}

.s-badge:hover {
    transform: translateX(10px);
}

.sb-icon {
    font-size: 1.25rem;
    background: var(--primary-light);
    color: var(--primary-main);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    flex-shrink: 0;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.s-badge:hover .sb-icon {
    background: var(--primary-main);
    color: white;
    border-color: var(--primary-main);
}

.sb-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.sb-text strong {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
}

.sb-text span {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.security-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.security-image {
    max-width: 280px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.security-3d-scene {
    position: relative;
    width: 300px;
    height: 360px;
    transform-style: preserve-3d;
    animation: float-3d 6s ease-in-out infinite;
}

.security-shield-3d {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Shield Shape Path */
.shield-layer-back,
.shield-layer-middle,
.shield-layer-front {
    position: absolute;
    inset: 0;
    clip-path: path("M150 0 L300 70 V160 C300 260 150 360 150 360 C150 360 0 260 0 160 V70 L150 0 Z");
    border-radius: 20px; /* Fallback */
}

.shield-layer-back {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0F172A 100%);
    transform: translateZ(-40px);
    opacity: 0.8;
}

.shield-layer-middle {
    background: linear-gradient(135deg, var(--primary-main) 0%, var(--primary-dark) 100%);
    transform: translateZ(-20px);
    opacity: 0.6;
    filter: blur(2px);
}

.shield-layer-front {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 20px 50px rgba(0, 95, 173, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    transform: translateZ(0);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.shield-content {
    color: white;
    filter: drop-shadow(0 4px 12px rgba(0, 95, 173, 0.5));
    transform: translateZ(20px);
}

.shield-gloss {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    animation: gloss-sweep 4s ease-in-out infinite;
    pointer-events: none;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 12px;
    border-radius: 16px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-main);
    transform-style: preserve-3d;
}

.floating-badge.lock {
    top: 10%;
    right: -20px;
    transform: translateZ(40px);
    animation: float-badge 5s ease-in-out infinite 0s;
}

.floating-badge.check {
    bottom: 20%;
    left: -20px;
    transform: translateZ(60px);
    color: #10B981;
    animation: float-badge 5s ease-in-out infinite 1.5s;
}

.floating-badge.server {
    top: 40%;
    left: -40px;
    transform: translateZ(20px);
    color: var(--secondary-main);
    animation: float-badge 5s ease-in-out infinite 2.5s;
}

.shield-shadow-3d {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%) rotateX(90deg);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, transparent 70%);
    filter: blur(20px);
    animation: shadow-pulse 6s ease-in-out infinite;
}

/* Animations */
@keyframes float-3d {
    0%, 100% { transform: translateY(0) rotateY(0deg); }
    50% { transform: translateY(-20px) rotateY(5deg); }
}

@keyframes float-badge {
    0%, 100% { transform: translateZ(40px) translateY(0); }
    50% { transform: translateZ(40px) translateY(-10px); }
}

@keyframes gloss-sweep {
    0% { left: -100%; opacity: 0; }
    20% { opacity: 1; }
    40% { left: 200%; opacity: 0; }
    100% { left: 200%; opacity: 0; }
}

@keyframes shadow-pulse {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) rotateX(90deg) scale(1); }
    50% { opacity: 0.3; transform: translateX(-50%) rotateX(90deg) scale(0.8); }
}

/* Interactive Hover Effect */
.security-3d-scene:hover .security-shield-3d {
    transform: rotateY(-10deg) rotateX(5deg);
}

.security-3d-scene:hover .shield-layer-front {
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 30px 60px rgba(0, 95, 173, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

/* How It Works - Ultra Modern Timeline */
.how-it-works {
    padding: 120px 0;
    background-color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

/* Background animated particles */
.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(0, 155, 213, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(0, 95, 173, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.process-flow {
    margin-top: 80px;
    position: relative;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Animated gradient track */
.process-track {
    position: absolute;
    left: 34px;
    top: 0;
    bottom: 0;
    width: 4px;
    z-index: 1;
}

.track-line {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(0, 155, 213, 0.1) 0%,
        rgba(0, 95, 173, 0.1) 100%);
    border-radius: 4px;
    overflow: hidden;
}

/* Animated flowing line */
.track-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(0, 155, 213, 0.4) 50%,
        transparent 100%);
    animation: trackFlow 3s ease-in-out infinite;
}

@keyframes trackFlow {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

.track-progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(180deg, var(--primary-main) 0%, var(--tertiary-light) 100%);
    border-radius: 4px;
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px rgba(0, 155, 213, 0.5);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 48px;
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: blur(4px);
}

.process-step.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* Step Node - Enhanced with multiple rings */
.step-node {
    position: relative;
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Outer glow ring - removed for minimal design */

.node-ring {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 2px solid rgba(0, 155, 213, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.process-step.active .node-ring {
    border-color: transparent;
    background: linear-gradient(135deg, var(--primary-main) 0%, var(--tertiary-light) 100%);
    box-shadow: 0 4px 16px rgba(0, 95, 173, 0.2);
}

.node-core {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.node-core span {
    font-size: 1.35rem;
    font-weight: 600;
    color: rgba(0, 155, 213, 0.5);
    transition: all 0.5s ease;
}

.process-step.active .node-core span {
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Node pulse and particle animations - disabled for minimal design */
.node-pulse,
.node-pulse-2,
.node-particles,
.node-particle,
.node-outer-ring {
    display: none;
}

/* Step Card - Modern Glass Effect */
.step-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 155, 213, 0.1);
    border-radius: 20px;
    padding: 32px 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:hover .step-card {
    transform: translateX(4px);
}

.process-step.active .step-card {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(0, 155, 213, 0.2);
    box-shadow: 0 4px 24px rgba(0, 95, 173, 0.08);
    transform: translateX(8px);
}

/* Card glow, shimmer, and decoration - disabled for minimal design */
.card-glow,
.card-shimmer,
.card-decoration {
    display: none;
}

.card-content {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    position: relative;
    z-index: 1;
}

/* Icon with gradient border */
.card-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, rgba(0, 155, 213, 0.05) 0%, rgba(0, 95, 173, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 155, 213, 0.5);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(0, 155, 213, 0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.process-step.active .card-icon {
    background: linear-gradient(135deg, rgba(0, 95, 173, 0.12) 0%, rgba(0, 155, 213, 0.08) 100%);
    color: var(--primary-main);
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 8px 24px -8px rgba(0, 155, 213, 0.3);
}

.process-step.active .card-icon::before {
    opacity: 1;
}

.card-text {
    flex: 1;
}

.card-text h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.87);
    margin-bottom: 10px;
    transition: all 0.4s ease;
    position: relative;
}

.process-step.active .card-text h3 {
    color: rgba(0, 0, 0, 0.95);
}

.card-text p {
    color: rgba(0, 0, 0, 0.55);
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0;
    transition: all 0.4s ease;
}

.process-step.active .card-text p {
    color: rgba(0, 0, 0, 0.75);
}

/* Step number badge on card */
.card-step-badge {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(0, 155, 213, 0.3);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.process-step.active .card-step-badge {
    color: rgba(0, 155, 213, 0.6);
}

/* Connector arrow between node and card */
.step-connector {
    position: absolute;
    left: 72px;
    top: 50%;
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-main), transparent);
    opacity: 0;
    transform: translateY(-50%) scaleX(0);
    transform-origin: left;
    transition: all 0.5s ease 0.2s;
}

.process-step.active .step-connector {
    opacity: 1;
    transform: translateY(-50%) scaleX(1);
}

/* Animation delays removed - each step now animates immediately on scroll for better responsiveness */

/* Mobile Process Flow */
@media (max-width: 768px) {
    .how-it-works {
        padding: 80px 0;
    }

    .process-flow {
        margin-top: 48px;
    }

    .process-track {
        left: 26px;
    }

    .process-steps {
        gap: 24px;
    }

    .process-step {
        gap: 28px;
    }

    .step-node {
        width: 56px;
        height: 56px;
    }

    .node-ring {
        width: 48px;
        height: 48px;
    }

    .node-core span {
        font-size: 1.1rem;
    }

    .step-card {
        padding: 24px;
        border-radius: 16px;
    }

    .process-step.active .step-card {
        transform: translateX(0);
    }

    .card-content {
        flex-direction: column;
        gap: 16px;
    }

    .card-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: 12px;
    }

    .card-text h3 {
        font-size: 1.15rem;
    }

    .card-text p {
        font-size: 0.95rem;
    }

    .card-step-badge {
        display: none;
    }

    .node-particles,
    .node-outer-ring,
    .card-shimmer {
        display: none;
    }
}

/* Plans & Pricing - Modern */
.plans-pricing {
    padding: 100px 0 100px;
    background-color: #F8FAFC;
    position: relative;
    z-index: 5;
}

.plans-pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.05), transparent);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-3xl);
    padding: var(--space-10) var(--space-8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Subtle inner glow */
.pricing-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(ellipse at top, rgba(0, 95, 173, 0.02) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: rgba(0, 95, 173, 0.15);
}

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

.pricing-card.featured {
    border: 2px solid var(--primary-main);
    box-shadow: var(--shadow-glow), var(--shadow-xl);
    transform: scale(1.02);
    z-index: 2;
    background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-light) 100%);
}

.pricing-card.featured::before {
    opacity: 1;
    background: radial-gradient(ellipse at top, rgba(0, 95, 173, 0.04) 0%, transparent 60%);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-6px);
    box-shadow: var(--shadow-glow), var(--shadow-2xl);
}

.popular-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-main) 0%, var(--tertiary-light) 100%);
    color: white;
    padding: var(--space-2) var(--space-5);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    box-shadow: 0 4px 12px rgba(0, 95, 173, 0.25);
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
    margin: var(--space-8) 0;
}

.features-list-small {
    flex-grow: 1;
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list-small li {
    margin-bottom: var(--space-4);
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: var(--text-secondary);
}

.features-list-small li.disabled {
    color: var(--text-muted);
    text-decoration: line-through;
}

.features-list-small li.disabled::before {
    color: var(--text-muted);
}

.pricing-footer {
    text-align: center;
    max-width: 700px;
    margin: 60px auto 0;
}

/* Closing CTA - Full Width */
.closing-cta {
    padding: 100px 0;
    background: rgba(0, 155, 213, 0.05);
}

.cta-box {
    background: transparent;
    border-radius: 0;
    padding: 0;
    text-align: center;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
    border: none;
    max-width: 700px;
    margin: 0 auto;
}

.cta-box h2 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 44px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.87);
    margin-bottom: var(--space-6);
    position: relative;
    z-index: 1;
}

.cta-box .subtitle {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: var(--space-12);
    position: relative;
    z-index: 1;
    max-width: 560px;
}

.cta-box .cta-group {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-box .btn.btn-white {
    background: #005FAD;
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 100px;
    box-shadow: none;
}

.cta-box .btn.btn-white:hover {
    background: #004a8a;
}

.btn-white {
    background: white;
    color: #005FAD;
    border: none;
    padding: 16px 40px;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 100px;
    box-shadow: none;
}

.btn-white:hover {
    background: #F8FAFC;
    color: #004a8a;
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 16px 40px;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 100px;
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    color: white;
    border-color: white;
    transform: translateY(-2px);
}

/* Footer - Expanded */
footer {
    background-color: rgba(0, 0, 0, 0.87);
    color: #94A3B8;
    padding: 80px 0 40px;
    border-top: none;
    position: relative;
    z-index: 10;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 16px;
    display: block;
}

.footer-brand p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: -0.015em;
    color: white;
    max-width: 300px;
    margin-bottom: 24px;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.nav-col h4 {
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.nav-col a {
    display: block;
    color: #94A3B8;
    margin-bottom: 12px;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-col a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin-bottom: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: -0.015em;
    color: #94A3B8;
}

/* Responsive Adjustments */
@media (max-width: 968px) {
    .security-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .security-visual {
        order: -1;
    }

    .security-image {
        max-width: 200px;
    }

    .security-badges {
        align-items: center;
    }

    .s-badge {
        width: 100%;
        max-width: 320px;
        justify-content: flex-start;
        text-align: left;
    }

    .sb-text {
        align-items: flex-start;
    }

    .timeline-steps {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .timeline-line {
        display: none;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-nav {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .footer-brand .logo {
        display: inline-block;
    }

    .footer-brand p {
        margin-left: auto;
        margin-right: auto;
    }

    .nav-col h4,
    .nav-col a {
        text-align: center;
    }

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

    .cta-box {
        padding: 0;
        text-align: center;
    }

    .cta-box h2 {
        font-size: 2rem;
    }

    .cta-group {
        justify-content: center;
    }
}

/* ==========================================
   COMPREHENSIVE MOBILE & RESPONSIVE STYLES
   Ultimate mobile-first responsive design
   ========================================== */

/* Body lock when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Mobile Menu Toggle Button */
.mobile-nav-logo {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    border-radius: var(--radius-md);
    transition: background 0.2s ease;
}

.mobile-menu-toggle:hover {
    background: var(--bg-subtle);
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.hamburger-line:nth-child(1) {
    margin-bottom: 6px;
}

.hamburger-line:nth-child(3) {
    margin-top: 6px;
}

/* Hamburger animation */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ==========================================
   TABLET BREAKPOINT (max-width: 968px)
   ========================================== */
@media (max-width: 968px) {
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-overlay {
        display: block;
    }

    /* Navigation wrapper becomes slide-out menu */
    .nav-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh;
        background: #FFFFFF;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        padding: 80px 24px 24px;
        overflow-y: auto;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.12);
        border-left: 1px solid #E2E8F0;
    }

    .nav-wrapper.active {
        right: 0;
    }

    .mobile-nav-logo {
        display: block;
        padding-left: 14px;
        margin-bottom: 16px;
    }

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

    /* Staggered animation for menu items */
    .nav-wrapper .nav-links > li,
    .nav-wrapper .nav-cta-mobile {
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-wrapper.active .nav-links > li,
    .nav-wrapper.active .nav-cta-mobile {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-wrapper.active .nav-links > li:nth-child(1) { transition-delay: 0.1s; }
    .nav-wrapper.active .nav-links > li:nth-child(2) { transition-delay: 0.15s; }
    .nav-wrapper.active .nav-links > li:nth-child(3) { transition-delay: 0.2s; }
    .nav-wrapper.active .nav-links > li:nth-child(4) { transition-delay: 0.25s; }
    .nav-wrapper.active .nav-links > li:nth-child(5) { transition-delay: 0.3s; }
    .nav-wrapper.active .nav-cta-mobile { transition-delay: 0.35s; }

    /* Nav links vertical layout */
    .nav-links {
        flex-direction: column;
        background: none;
        padding: 0;
        border: none;
        border-radius: 0;
        gap: 4px;
        margin-top: 24px;
        text-align: left;
        width: 100%;
    }

    .nav-links > li {
        border-bottom: none;
        text-align: left;
        width: 100%;
    }

    .nav-links > li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 14px 14px;
        font-size: 1rem;
        font-weight: 500;
        color: #1E293B;
        border-radius: 8px;
        transition: all 0.2s ease;
        text-align: left;
    }

    .nav-links a:hover {
        background: #F1F5F9;
        color: var(--primary-main);
    }

    .nav-links a.active {
        background: #EFF6FF;
        color: var(--primary-main);
    }

    .nav-links a::after {
        display: none;
    }

    /* Mobile dropdown */
    .dropdown {
        text-align: left;
        width: 100%;
    }

    .nav-links .dropdown-toggle {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        background: transparent;
        border: none;
        padding: 14px 14px !important;
        position: relative;
        width: 100%;
        text-align: left;
    }

    .nav-links .dropdown-toggle::after {
        content: '';
        display: block;
        width: 12px;
        height: 12px;
        border-right: 2.5px solid var(--text-secondary);
        border-bottom: 2.5px solid var(--text-secondary);
        transform: rotate(45deg);
        transition: transform 0.3s ease;
        flex-shrink: 0;
        margin-left: auto;
        margin-bottom: 2px;
        opacity: 0.7;
    }

    /* Fix for desktop hover leaking into mobile */
    .nav-links .dropdown-toggle:hover::after {
        width: 12px;
    }

    .dropdown.open .nav-links .dropdown-toggle::after {
        transform: rotate(-135deg);
        margin-top: 4px;
        border-color: var(--primary-main);
        opacity: 1;
    }

    .dropdown.open .nav-links .dropdown-toggle {
        background: transparent;
        border-color: transparent;
        color: var(--primary-main);
    }

    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        max-height: 0;
        overflow: hidden;
        background: transparent;
        border-radius: 0;
        margin: 0;
        padding: 0;
        box-shadow: none;
        border-left: 2px solid var(--border-color);
        margin-left: 14px;
        transition: max-height 0.35s ease, padding 0.35s ease, margin 0.35s ease, opacity 0.35s ease;
        text-align: left;
    }

    .dropdown.open .dropdown-menu {
        max-height: 500px;
        padding: 4px 0 4px 12px;
        margin: 0 0 8px 14px;
    }

    .dropdown-menu li {
        display: block;
        text-align: left;
    }

    .dropdown-menu li a {
        display: block;
        padding: 10px 12px;
        font-size: 0.9375rem;
        font-weight: 450;
        color: #64748B;
        border-radius: 8px;
        text-align: left;
    }

    .dropdown-menu li a:hover {
        background: #fff;
        color: var(--primary-main);
    }

    /* CTA buttons - hide desktop version on mobile */
    .nav-cta {
        display: none;
    }

    /* Show mobile CTA inside nav-wrapper */
    .nav-cta-mobile {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 24px;
        padding-top: 20px;
        border-top: 1px solid #E2E8F0;
    }

    .nav-cta-mobile .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 10px;
    }

    .nav-cta-mobile .btn-secondary {
        background: #F1F5F9;
        color: #1E293B;
        border: none;
    }

    .nav-cta-mobile .btn-secondary:hover {
        background: #E2E8F0;
    }

    .nav-cta-mobile .btn-primary {
        background: var(--primary-main);
        box-shadow: 0 4px 12px rgba(0, 95, 173, 0.25);
    }

    /* Mobile Language Selector */
    .lang-selector-mobile {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid #E2E8F0;
    }

    .lang-selector-mobile .lang-option {
        width: auto;
        padding: 8px 16px;
        background: #F8FAFC;
        border: 1px solid #E2E8F0;
        justify-content: center;
    }

    .lang-selector-mobile .lang-option.active {
        background: #EFF6FF;
        border-color: #BFDBFE;
        color: var(--primary-main);
    }

    /* Hero adjustments */
    .hero {
        padding: 100px 0 80px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }

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

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content .subtitle {
        margin-left: auto;
        margin-right: auto;
        font-size: 16px;
    }

    .cta-group {
        justify-content: center;
        flex-wrap: wrap;
    }

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

    .glass-dashboard {
        transform: scale(0.9);
    }

    /* Trust section */
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .trust-stats {
        grid-template-columns: repeat(3, 1fr);
        justify-content: center;
    }

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

    /* Why Choose section */
    .why-choose {
        padding: 100px 0 60px;
        margin-top: -60px;
    }

    .why-bento {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .why-card-hero,
    .why-card-feature,
    .why-card-bottom-left,
    .why-card-bottom-right {
        grid-column: span 1;
    }

    .why-card-hero .why-card-inner {
        flex-direction: column;
    }

    .why-card-hero .why-card-content,
    .why-card-hero .why-card-visual {
        flex: none;
        width: 100%;
    }

    /* Feature showcase */
    .feature-showcase {
        flex-direction: column;
        gap: 24px;
    }

    .feature-nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }

    .feature-btn {
        flex: 0 0 auto;
        min-width: 140px;
        padding: 12px 16px;
    }

    .feature-btn .f-desc {
        display: none;
    }

    .feature-display {
        min-height: 300px;
    }

    /* Security section */
    .security-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }

    .security-visual {
        order: -1;
        display: flex;
        justify-content: center;
    }

    .security-badges {
        align-items: center;
    }

    .s-badge {
        width: 100%;
        max-width: 320px;
        justify-content: flex-start;
        text-align: left;
    }

    .sb-text {
        align-items: flex-start;
    }

    /* Timeline */
    .timeline-steps {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .timeline-line {
        display: none;
    }

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

    .t-number {
        margin: 0 auto 16px;
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .pricing-card.featured {
        transform: none;
    }

    /* CTA box */
    .cta-box {
        padding: 0;
    }

    .cta-box h2 {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }

    .cta-box .cta-group {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .cta-box .btn {
        width: 100%;
        max-width: 300px;
    }

    .cta-box .subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    /* Footer */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
    }

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

/* ==========================================
   MOBILE BREAKPOINT (max-width: 768px)
   ========================================== */
@media (max-width: 768px) {
    /* Container padding */
    .container {
        padding: 0 20px;
    }

    /* Typography scaling */
    h1 {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }

    h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    h3 {
        font-size: clamp(1.125rem, 4vw, 1.375rem);
    }

    .subtitle {
        font-size: 1rem;
    }

    /* Navbar */
    .navbar {
        padding: 16px 0;
    }

    .navbar.scrolled {
        padding: 12px 0;
    }

    .logo img {
        height: 32px !important;
    }

    /* Hero */
    .hero {
        padding: 80px 0 60px;
    }

    .badge-pill {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

    .cta-group {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .cta-group .btn {
        width: 100%;
    }

    .hero-visual {
        max-width: 100%;
        margin-top: 32px;
    }

    /* Trust stats */
    .trust-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    /* Logo strip */
    .logo-strip {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .logo-item {
        font-size: 0.75rem;
    }

    /* Why cards */
    .why-card {
        padding: var(--space-5);
    }

    .why-card h3 {
        font-size: 1.25rem;
    }

    /* Feature showcase */
    .feature-nav {
        justify-content: flex-start;
    }

    .feature-btn {
        min-width: 120px;
        padding: 10px 14px;
    }

    .feature-btn .f-title {
        font-size: 0.875rem;
    }

    /* Security badges */
    .security-badges {
        flex-direction: column;
        gap: 12px;
    }

    .s-badge {
        max-width: none;
    }

    /* Pricing */
    .pricing-card {
        padding: 32px 24px;
    }

    .price {
        font-size: 2.5rem;
    }

    /* Footer */
    .footer-nav {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    /* Typography - Tablet */
    h2 {
        font-size: 36px;
    }

    h3 {
        font-size: 24px;
    }

    p, .subtitle {
        font-size: 16px;
    }
}

/* ==========================================
   SMALL MOBILE BREAKPOINT (max-width: 480px)
   ========================================== */
@media (max-width: 480px) {
    /* Container */
    .container {
        padding: 0 16px;
    }

    /* Nav wrapper full width on very small screens */
    .nav-wrapper {
        max-width: 100%;
    }

    /* Smaller logo on small screens */
    .logo img {
        height: 28px !important;
    }

    /* Typography */
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 22px;
    }

    p, .subtitle {
        font-size: 16px;
    }

    .hero-content .subtitle {
        font-size: 16px;
    }

    /* Buttons */
    .btn {
        padding: 12px 24px;
        font-size: 0.9375rem;
    }

    .btn-lg {
        padding: 14px 28px;
    }

    /* Hero */
    .hero {
        padding: 70px 0 50px;
    }

    /* Trust section */
    .powered-by-dark {
        padding: 60px 0;
    }

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

    /* Why section */
    .why-choose {
        padding: 80px 0 50px;
    }

    .why-header {
        margin-bottom: var(--space-10);
    }

    /* Key features */
    .key-features {
        padding: 60px 0;
    }

    .feature-btn {
        min-width: 100px;
        padding: 8px 12px;
    }

    .feature-btn .f-icon {
        display: none;
    }

    /* Security */
    .security-section {
        padding: 50px 0;
    }

    .security-wrapper {
        gap: 40px;
    }

    .security-content h2 {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .security-content p {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .security-badges {
        gap: 16px;
    }

    .s-badge {
        justify-content: flex-start;
        text-align: left;
    }

    .sb-icon {
        width: 40px;
        height: 40px;
    }

    .sb-icon svg {
        width: 18px;
        height: 18px;
    }

    .sb-text {
        align-items: flex-start;
    }

    .sb-text strong {
        font-size: 0.9rem;
    }

    .sb-text span {
        font-size: 0.8rem;
    }

    .security-image {
        max-width: 160px;
    }

    /* Timeline */
    .how-it-works {
        padding: 60px 0;
    }

    .t-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    /* Pricing */
    .plans-pricing {
        padding: 60px 0;
    }

    .pricing-card {
        padding: 28px 20px;
    }

    /* CTA */
    .closing-cta {
        padding: 60px 0;
    }

    .cta-box {
        padding: 0;
        border-radius: 0;
    }

    /* Footer */
    footer {
        padding: 48px 0 24px;
    }

    .footer-nav {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .footer-brand {
        margin-bottom: 24px;
    }
}

/* ==========================================
   ULTRA-WIDE SCREENS (min-width: 1600px)
   ========================================== */
@media (min-width: 1600px) {
    .container {
        max-width: 1400px;
    }

    h1 {
        font-size: 56px;
    }

    .hero {
        padding: 180px 0 140px;
    }

    .hero-content .subtitle {
        font-size: 18px;
    }

    .glass-dashboard {
        transform: scale(1.1);
    }
}

/* ==========================================
   LANDSCAPE PHONE FIX
   ========================================== */
@media (max-height: 500px) and (orientation: landscape) {
    .nav-wrapper {
        padding-top: 60px;
    }

    .nav-links a {
        padding: 10px 0;
    }

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

    .hero-visual {
        max-width: 100%;
    }
}

/* ==========================================
   REDUCED MOTION
   ========================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .mobile-menu-overlay {
        backdrop-filter: none;
    }
}

/* ==========================================
   HIGH CONTRAST MODE
   ========================================== */
@media (prefers-contrast: high) {
    .navbar {
        background: var(--bg-white);
        border-bottom: 2px solid var(--text-primary);
    }

    .btn {
        border: 2px solid currentColor;
    }

    .nav-links a {
        text-decoration: underline;
    }
}

/* ==========================================
   TOUCH DEVICE OPTIMIZATIONS
   ========================================== */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    .btn {
        min-height: 48px;
    }

    .nav-links a {
        min-height: 48px;
        display: flex;
        align-items: center;
    }

    /* Remove hover-only effects */
    .dropdown:hover .dropdown-menu {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .dropdown.open .dropdown-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

/* ==========================================
   FEATURE MICROPAGE STYLES
   ========================================== */

/* Feature Hero Section */
.feature-hero {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #EFF6FF 0%, #F8FAFC 100%);
}

.feature-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(0, 95, 173, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.feature-hero-grid,
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-hero-content,
.hero-content {
    position: relative;
    z-index: 1;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid #DBEAFE;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #005FAD;
    margin-bottom: 24px;
    box-shadow: 0 4px 24px -1px rgba(0, 0, 0, 0.08);
}

.feature-hero h1 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 56px;
    font-weight: 600;
    line-height: 1.1;
    color: rgba(0, 0, 0, 0.87);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.feature-hero h1 .gradient-text {
    background: linear-gradient(135deg, #005FAD 0%, #0EA5E9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-hero .subtitle {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary-lg {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #005FAD;
    color: white;
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease;
    box-shadow: none;
}

.btn-primary-lg:hover {
    background: #004a8a;
}

.btn-secondary-lg {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: #0F172A;
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
}

.btn-secondary-lg:hover {
    border-color: var(--primary-main);
    box-shadow: 0 4px 24px -1px rgba(0, 0, 0, 0.08);
}

/* Feature Hero Visual - Screenshot Display */
.feature-hero-visual,
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.screenshot-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 25px 80px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot-frame:hover {
    transform: translateY(-4px);
    box-shadow:
        0 32px 100px -12px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(0, 0, 0, 0.05);
}

.screenshot-frame img {
    display: block;
    width: 100%;
    max-width: 560px;
    height: auto;
    border-radius: 16px;
}

/* Feature Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: white;
}

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

.benefit-card {
    background: #F8FAFC;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 155, 213, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-main);
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
}

.benefit-card h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.375rem;
    font-weight: 650;
    color: rgba(0, 0, 0, 0.87);
    margin-bottom: 12px;
}

.benefit-card p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.6;
    margin: 0;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #64748B;
    margin-bottom: 24px;
}

.breadcrumb a {
    color: #64748B;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--primary-main);
}

.breadcrumb svg {
    width: 16px;
    height: 16px;
}

/* Feature Micropage Mobile Styles */
@media (max-width: 1024px) {
    .feature-hero {
        padding: 100px 0 60px;
    }

    .feature-hero-grid,
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .feature-hero h1 {
        font-size: 44px;
    }

    .screenshot-frame img {
        max-width: 480px;
    }
}

@media (max-width: 768px) {
    .feature-hero {
        padding: 80px 0 50px;
    }

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

    .feature-badge {
        display: inline-flex;
        margin: 0 auto 20px;
    }

    .feature-hero h1 {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }

    .feature-hero .subtitle {
        font-size: 16px;
        margin-bottom: 24px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .btn-primary-lg,
    .btn-secondary-lg {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

    .screenshot-frame img {
        max-width: 100%;
    }

    .benefits-section {
        padding: 60px 0;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .benefit-card {
        padding: 24px;
        text-align: center;
    }

    .benefit-icon {
        width: 48px;
        height: 48px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .benefit-card h3 {
        font-size: 1.125rem;
    }

    .benefit-card p {
        font-size: 0.9375rem;
    }

    /* Footer mobile center alignment */
    .footer-brand {
        text-align: center;
    }

    .footer-brand .logo {
        display: inline-block;
    }

    .footer-brand p {
        margin-left: auto;
        margin-right: auto;
    }

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

    .nav-col h4 {
        text-align: center;
    }

    .nav-col a {
        text-align: center;
    }

    .footer-bottom {
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .feature-hero {
        padding: 70px 0 40px;
    }

    .feature-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .feature-hero h1 {
        font-size: 28px;
    }

    .btn-primary-lg,
    .btn-secondary-lg {
        padding: 12px 20px;
        font-size: 0.9375rem;
    }

    .benefit-card {
        padding: 20px;
    }

    .benefit-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 16px;
    }

    .benefit-card h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .benefit-card p {
        font-size: 0.875rem;
    }
}

/* ==========================================
   PRINT STYLES
   ========================================== */
@media print {
    .navbar,
    .hero-visual,
    .mobile-menu-toggle,
    .mobile-menu-overlay,
    .cta-group,
    .closing-cta,
    footer {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    h1, h2, h3 {
        page-break-after: avoid;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }
}

/* ==========================================
   REQUEST ACCESS MODAL
   ========================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.modal-container {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    width: 100%;
    max-width: 520px;
    max-height: calc(100vh - 32px);
    max-height: calc(100dvh - 32px);
    overflow-y: auto;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s ease;
    -webkit-overflow-scrolling: touch;
}

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

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--bg-subtle);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.2s ease;
    z-index: 10;
}

.modal-close:hover {
    background: var(--border-color);
    color: var(--text-primary);
}

/* Hide scrollbar but keep scrolling */
.modal-container {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.modal-container::-webkit-scrollbar {
    display: none;
}

.modal-content {
    padding: 32px;
}

.modal-form .btn-full {
    margin-top: 20px;
    padding: 16px 24px;
}

.modal-header {
    margin-bottom: 24px;
    padding-right: 40px;
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.modal-header p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.modal-form .form-group {
    margin-bottom: 20px;
}

.modal-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.modal-form input[type="text"],
.modal-form input[type="email"],
.modal-form input[type="tel"] {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.95rem;
    border: 1.5px solid var(--border-color);
    border-radius: 10px;
    background: var(--bg-white);
    color: var(--text-primary);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    font-family: inherit;
}

.modal-form input[type="text"]:focus,
.modal-form input[type="email"]:focus,
.modal-form input[type="tel"]:focus {
    outline: none;
    border-color: #005FAD;
    box-shadow: 0 0 0 3px rgba(0, 95, 173, 0.08);
}

.modal-form label .optional {
    font-weight: 400;
    color: var(--text-light);
}

.modal-form input::placeholder {
    color: var(--text-light);
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 12px 16px;
    border: 1.5px solid var(--border-color);
    border-radius: 10px;
    transition: all 0.15s ease;
    background: var(--bg-white);
}

.radio-option:hover {
    border-color: #005FAD;
    background: rgba(0, 95, 173, 0.04);
}

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

.radio-custom {
    display: none;
}

.radio-option:has(input[type="radio"]:checked) {
    border-color: #005FAD;
    background: rgba(0, 95, 173, 0.06);
}

.radio-option:has(input[type="radio"]:checked) .radio-label {
    color: #005FAD;
    font-weight: 500;
}

.radio-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
    transition: all 0.15s ease;
}

.btn-full {
    width: 100%;
    margin-top: 12px;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
}

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success svg {
    color: #10B981;
    margin-bottom: 16px;
}

.form-success h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-success p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Mobile Optimizations for Modal */
@media (max-width: 600px) {
    .modal-overlay {
        padding: 0;
        align-items: stretch;
    }

    .modal-container {
        width: 100%;
        max-width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
        transform: translateY(0);
        display: flex;
        flex-direction: column;
    }

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

    .modal-overlay.active .modal-container {
        transform: translateY(0);
    }

    .modal-close {
        position: fixed;
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
        background: #fff;
        border-radius: 50%;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        z-index: 100;
    }

    .modal-close svg {
        width: 18px;
        height: 18px;
    }

    .modal-content {
        flex: 1;
        padding: 50px 16px 20px;
        padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .modal-header {
        margin-bottom: 16px;
        text-align: center;
        padding-right: 0;
    }

    .modal-header h2 {
        font-size: 1.25rem;
        margin-bottom: 4px;
    }

    .modal-header p {
        font-size: 0.8125rem;
        color: #6B7280;
        line-height: 1.4;
    }

    .modal-form .form-group {
        margin-bottom: 12px;
    }

    .modal-form label {
        font-size: 0.8125rem;
        font-weight: 500;
        margin-bottom: 4px;
        color: #374151;
        display: block;
    }

    .modal-form label .optional {
        font-size: 0.6875rem;
        color: #9CA3AF;
        font-weight: 400;
    }

    .modal-form input[type="text"],
    .modal-form input[type="email"],
    .modal-form input[type="tel"] {
        width: 100%;
        padding: 10px 12px;
        font-size: 16px;
        border-radius: 8px;
        border: 1.5px solid #E5E7EB;
        background: #fff;
        box-sizing: border-box;
        -webkit-appearance: none;
        appearance: none;
    }

    .modal-form input[type="text"]:focus,
    .modal-form input[type="email"]:focus,
    .modal-form input[type="tel"]:focus {
        outline: none;
        border-color: #005FAD;
    }

    .radio-group {
        display: flex;
        flex-direction: column;
        gap: 6px;
        margin-top: 4px;
    }

    .radio-option {
        display: flex;
        align-items: center;
        padding: 10px 12px;
        border-radius: 8px;
        background: #F9FAFB;
        border: 1.5px solid #E5E7EB;
        cursor: pointer;
    }

    .radio-option:has(input:checked) {
        background: #EFF6FF;
        border-color: #005FAD;
    }

    .radio-label {
        font-size: 0.8125rem;
        line-height: 1.3;
        color: #374151;
    }

    .modal-form .btn-full {
        display: block;
        width: 100%;
        margin-top: 16px;
        padding: 14px 20px;
        font-size: 0.9375rem;
        font-weight: 600;
        border-radius: 10px;
        background: #005FAD;
        color: #fff;
        border: none;
        cursor: pointer;
    }

    .form-consent {
        font-size: 10px !important;
        line-height: 1.4 !important;
        color: #9CA3AF !important;
        margin-top: 10px !important;
        text-align: center;
    }

    .form-success {
        padding: 40px 16px;
        text-align: center;
    }
}
