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

:root {
    --color-brand: #5AB4E5;
    --color-brand-dark: #3D9DD9;
    --color-brand-light: #7FC8F0;
    --color-cyan: #6BC5F5;
    --color-bg-dark: #1E1E1E;
    --color-bg-darker: #0A0A0A;
    --color-bg-light: #F5F5F5;
    --color-text-primary: #1E1E1E;
    --color-text-secondary: #666666;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(180deg,
        #0a3d5c 0%,
        #0d4a6e 15%,
        #1a5f7a 30%,
        #2b7a9f 50%,
        #3d8fb8 70%,
        #4ea5c8 85%,
        #5ab4e5 100%
    );
    background-attachment: fixed;
    color: #ffffff;
    line-height: 1.4;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(90, 180, 229, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Countdown Section */
.countdown-standalone-section {
    padding: 200px 0 0;
    position: relative;
    margin-bottom: 32px;
}

.countdown-standalone-content {
    text-align: center;
}

.countdown-section {
    margin-bottom: 32px;
    text-align: center;
}

.countdown-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.time-group {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.time-value {
    font-family: 'Courier New', 'Monaco', monospace;
    font-size: 72px;
    font-weight: 700;
    color: #5AB4E5;
    text-shadow: 0 0 30px rgba(90, 180, 229, 0.6), 0 0 60px rgba(90, 180, 229, 0.4);
    line-height: 1;
}

.time-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

.time-separator {
    font-size: 48px;
    color: rgba(90, 180, 229, 0.4);
    font-weight: 300;
    margin: 0 8px;
}

#seconds {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        text-shadow: 0 0 30px rgba(90, 180, 229, 0.6), 0 0 60px rgba(90, 180, 229, 0.4);
    }
    50% {
        text-shadow: 0 0 40px rgba(90, 180, 229, 0.9), 0 0 80px rgba(90, 180, 229, 0.6);
    }
}

.countdown-live {
    display: none;
}

.live-message {
    font-size: 64px;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: #5AB4E5;
    text-shadow: 0 0 40px rgba(90, 180, 229, 0.9), 0 0 80px rgba(90, 180, 229, 0.6);
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo span {
    font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: -0.02em;
    text-transform: none;
}

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

.nav-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    letter-spacing: -0.01em;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-cta {
    padding: 12px 28px;
    background: #ffffff;
    border: none;
    border-radius: 24px;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1002;
    position: relative;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 61, 92, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1001;
    padding: 100px 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.mobile-menu-close svg {
    width: 20px;
    height: 20px;
    stroke: #ffffff;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-menu-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
}

.mobile-menu-links a:hover,
.mobile-menu-links a:active {
    color: #5AB4E5;
    padding-left: 8px;
}

.mobile-menu-cta {
    margin-top: 16px;
}

.mobile-menu-cta .cta-button {
    width: 100%;
    text-align: center;
    display: block;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 200px 0 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    overflow: hidden;
}


@keyframes particleFloat {
    0%, 100% { opacity: 0.5; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-20px); }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.animate-on-scroll {
    opacity: 0;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(60px);
}

.animate-on-scroll.animated {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.step-card {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.step-card:nth-child(1).animated {
    transition-delay: 0.15s;
}

.step-card:nth-child(2).animated {
    transition-delay: 0.3s;
}

.step-card:nth-child(3).animated {
    transition-delay: 0.45s;
}

.difference-item {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.difference-item.animated {
    opacity: 1;
    transform: translateY(0);
}

.difference-item:nth-child(1).animated {
    transition-delay: 0.15s;
}

.difference-item:nth-child(2).animated {
    transition-delay: 0.3s;
}

.difference-item:nth-child(3).animated {
    transition-delay: 0.45s;
}

.difference-item:nth-child(4).animated {
    transition-delay: 0.6s;
}

/* Section Header Animations */
.section-header {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-header.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Benefit Item Animations */
.benefit-item {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.benefit-item.animated {
    opacity: 1;
    transform: translateY(0);
}

.benefit-item:nth-child(1).animated {
    transition-delay: 0.1s;
}

.benefit-item:nth-child(2).animated {
    transition-delay: 0.2s;
}

.benefit-item:nth-child(3).animated {
    transition-delay: 0.3s;
}

.benefit-item:nth-child(4).animated {
    transition-delay: 0.4s;
}

/* FAQ Item Animations */
.faq-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.animated {
    opacity: 1;
    transform: translateY(0);
}

.faq-item:nth-child(1).animated {
    transition-delay: 0.1s;
}

.faq-item:nth-child(2).animated {
    transition-delay: 0.15s;
}

.faq-item:nth-child(3).animated {
    transition-delay: 0.2s;
}

.faq-item:nth-child(4).animated {
    transition-delay: 0.25s;
}

.faq-item:nth-child(5).animated {
    transition-delay: 0.3s;
}

.faq-item:nth-child(6).animated {
    transition-delay: 0.35s;
}

/* Waitlist Content Animations */
.waitlist-content {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.waitlist-content.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Title and Subtitle Animations */
.section-title,
.why-title,
.trust-content-centered h2 {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-title.animated,
.why-title.animated,
.trust-content-centered h2.animated {
    opacity: 1;
    transform: translateY(0);
}

.section-subtitle,
.why-subtitle,
.trust-intro,
.hero-subtitle {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.2s;
}

.section-subtitle.animated,
.why-subtitle.animated,
.trust-intro.animated,
.hero-subtitle.animated {
    opacity: 1;
    transform: translateY(0);
}

/* About Page Animations */
.about-hero-title,
.about-hero-text {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-hero-title.animated,
.about-hero-text.animated {
    opacity: 1;
    transform: translateY(0);
}

.about-hero-text.animated {
    transition-delay: 0.2s;
}

.about-card {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.about-stat-item {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-stat-item.animated {
    opacity: 1;
    transform: translateY(0);
}

.about-stat-item:nth-child(1).animated {
    transition-delay: 0.1s;
}

.about-stat-item:nth-child(2).animated {
    transition-delay: 0.2s;
}

.about-stat-item:nth-child(3).animated {
    transition-delay: 0.3s;
}

.about-stat-item:nth-child(4).animated {
    transition-delay: 0.4s;
}

.about-value-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-value-item.animated {
    opacity: 1;
    transform: translateY(0);
}

.about-value-item:nth-child(1).animated {
    transition-delay: 0.1s;
}

.about-value-item:nth-child(3).animated {
    transition-delay: 0.2s;
}

.about-value-item:nth-child(5).animated {
    transition-delay: 0.3s;
}

.about-value-item:nth-child(7).animated {
    transition-delay: 0.4s;
}

.about-cta-content {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-cta-content.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Contact Page Animations */
.contact-hero-title {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-hero-title.animated {
    opacity: 1;
    transform: translateY(0);
}

.contact-card {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.contact-section-group {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-section-group.animated {
    opacity: 1;
    transform: translateY(0);
}

.contact-section-group:nth-child(1).animated {
    transition-delay: 0.1s;
}

.contact-section-group:nth-child(3).animated {
    transition-delay: 0.2s;
}

.contact-section-group:nth-child(5).animated {
    transition-delay: 0.3s;
}

.trust-card {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.trust-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.trust-card:nth-child(1).animated {
    transition-delay: 0.15s;
}

.trust-card:nth-child(2).animated {
    transition-delay: 0.3s;
}

.trust-card:nth-child(3).animated {
    transition-delay: 0.45s;
}

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

.hero-content {
    text-align: left;
    max-width: 1000px;
    margin: 0;
}

.trust-badge {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 64px;
    backdrop-filter: blur(10px);
    font-weight: 500;
    letter-spacing: -0.01em;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.hero-title {
    font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 96px;
    font-weight: 450;
    line-height: 1.05;
    margin-bottom: 40px;
    color: #ffffff;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    max-width: 900px;
}

.hero-subtitle {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 56px;
    line-height: 1.4;
    max-width: 700px;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.hero-disclaimer {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 24px;
    font-weight: 400;
    line-height: 1.4;
    max-width: 500px;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 28px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    letter-spacing: -0.01em;
}

.cta-button.primary {
    background: #ffffff;
    color: #3D9DD9;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.cta-button.primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.98);
}

.cta-button.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

/* How It Works Section */
.how-it-works {
    padding: 60px 0;
    background: transparent;
    position: relative;
}

.how-it-works .container-wide {
    background: #ffffff;
    border-radius: 32px;
    padding: 60px 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 72px;
    font-weight: 450;
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
    color: #1a1a1a;
    text-align: center;
}

.section-subtitle {
    font-size: 20px;
    color: rgba(26, 26, 26, 0.7);
    font-weight: 400;
    letter-spacing: -0.01em;
}

.why-different .section-title,
.hero .section-title {
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.why-different .section-subtitle,
.hero .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

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

.step-visual {
    width: 120px;
    height: 120px;
    margin: 0 auto 32px;
    background: linear-gradient(135deg, #3D9DD9 0%, #5AB4E5 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(90, 180, 229, 0.3);
    transition: all 0.4s ease;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.step-card:nth-child(1) .step-visual {
    animation-delay: 0.2s;
}

.step-card:nth-child(2) .step-visual {
    animation-delay: 0.4s;
}

.step-card:nth-child(3) .step-visual {
    animation-delay: 0.6s;
}

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

.step-visual svg {
    width: 64px;
    height: 64px;
}

.step-card:hover .step-visual {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px rgba(90, 180, 229, 0.4);
}

.step-card h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
    letter-spacing: -0.01em;
}

.step-card p {
    color: rgba(26, 26, 26, 0.75);
    line-height: 1.4;
    font-size: 17px;
    font-weight: 400;
}

.section-disclaimer {
    text-align: center;
    margin-top: 60px;
}

.section-disclaimer p {
    font-size: 15px;
    color: rgba(26, 26, 26, 0.5);
    font-weight: 400;
    font-style: italic;
}

/* Why Different Section */
.why-different {
    padding: 60px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

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

.why-title {
    font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 72px;
    font-weight: 450;
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
    color: #ffffff;
    text-align: left;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.why-title em {
    font-style: italic;
    font-weight: 800;
    background: linear-gradient(135deg, #5AB4E5 0%, #7FC8F0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    text-align: center;
    margin-bottom: 100px;
    letter-spacing: -0.01em;
}

/* Interactive Benefits Accordion */
.interactive-benefits {
    max-width: 900px;
    margin: 0 auto;
}

.benefit-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.benefit-item {
    border-left: 3px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.benefit-item:hover {
    border-left-color: rgba(255, 255, 255, 0.4);
}

.benefit-item.active {
    border-left-color: #5AB4E5;
}

.benefit-item.active::before {
    content: '';
    position: absolute;
    left: -3px;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #5AB4E5 0%, #7FC8F0 100%);
    box-shadow: 0 0 20px rgba(90, 180, 229, 0.5);
}

.benefit-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 40px 32px 40px;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-header {
    padding-left: 48px;
}

.benefit-item.active .benefit-header {
    padding-left: 48px;
}

.benefit-header h3 {
    font-size: 28px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.3;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
    margin: 0;
    flex: 1;
}

.benefit-item:hover .benefit-header h3,
.benefit-item.active .benefit-header h3 {
    color: #ffffff;
}

.benefit-header h3 strong {
    font-weight: 500;
}

.benefit-header h3 em {
    font-style: italic;
    font-weight: 400;
    color: #7FC8F0;
}

.benefit-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 24px;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.4);
}

.benefit-item:hover .benefit-icon {
    color: rgba(255, 255, 255, 0.6);
}

.benefit-item.active .benefit-icon {
    color: #5AB4E5;
    transform: rotate(180deg);
}

.benefit-description {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
    padding: 0 40px 0 48px;
}

.benefit-item.active .benefit-description {
    max-height: 500px;
    opacity: 1;
    padding: 0 40px 32px 48px;
}

.benefit-description p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
    font-weight: 300;
    letter-spacing: -0.01em;
    margin: 0;
}

/* Trust & Privacy Section */
.trust-privacy {
    padding: 60px 0;
    background: transparent;
    position: relative;
}

.trust-privacy .container-wide {
    background: #ffffff;
    border-radius: 32px;
    padding: 60px 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.trust-content-centered {
    text-align: left;
    max-width: 1100px;
    margin: 0 auto;
}

.trust-content-centered h2 {
    font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 72px;
    font-weight: 450;
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
    color: #1a1a1a;
    text-align: left;
}

.trust-intro {
    font-size: 20px;
    color: rgba(26, 26, 26, 0.7);
    line-height: 1.4;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: 0;
    margin-right: auto;
    font-weight: 400;
    letter-spacing: -0.01em;
    text-align: left;
}

.trust-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.trust-card {
    padding: 48px 40px;
    background: #f8f9fa;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(90, 180, 229, 0.1);
}

.trust-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: rgba(90, 180, 229, 0.2);
    background: #ffffff;
}

.trust-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 28px;
    background: linear-gradient(135deg, rgba(61, 157, 217, 0.15) 0%, rgba(90, 180, 229, 0.15) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3D9DD9;
}

.trust-card h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
    letter-spacing: -0.01em;
}

.trust-card p {
    color: rgba(26, 26, 26, 0.7);
    line-height: 1.4;
    font-size: 16px;
    font-weight: 400;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: transparent;
    position: relative;
}

.faq-container {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border-radius: 32px;
    padding: 60px 60px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.faq-container .section-title {
    text-align: left;
    margin-bottom: 48px;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    transition: color 0.3s ease;
    gap: 24px;
}

.faq-question:hover {
    color: #7FC8F0;
}

.faq-question span:first-child {
    flex: 1;
}

.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 24px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
    font-size: 17px;
    font-weight: 400;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background: transparent;
    position: relative;
}

.contact-container {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border-radius: 32px;
    padding: 60px 60px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-container .section-title {
    margin-bottom: 16px;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.contact-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 48px;
    font-weight: 400;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 500px;
    margin: 0 auto 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-item svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
    flex-shrink: 0;
}

.contact-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-link:hover {
    color: #7FC8F0;
    border-bottom-color: #7FC8F0;
}

.contact-note {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin-top: 24px;
}

/* Contact Page - Minimalist Oura Style */
.contact-hero {
    padding: 0 0 100px;
    position: relative;
}

.contact-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.contact-hero-title {
    font-size: 84px;
    font-weight: 450;
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.02em;
}

.contact-section {
    padding: 0 0 120px;
    background: transparent;
    position: relative;
}

.contact-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 32px;
    padding: 80px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.contact-card-title {
    font-size: 32px;
    font-weight: 600;
    color: #1E1E1E;
    margin-bottom: 80px;
    text-align: center;
    letter-spacing: -0.01em;
}

.contact-section-group {
    margin-bottom: 0;
}

.contact-section-heading {
    font-size: 20px;
    font-weight: 600;
    color: #1E1E1E;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.contact-section-text {
    font-size: 18px;
    color: #666666;
    line-height: 1.4;
    margin-bottom: 24px;
    font-weight: 400;
}

.contact-email {
    font-size: 28px;
    font-weight: 500;
    color: #5AB4E5;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
}

.contact-email:hover {
    color: #3D9DD9;
    transform: translateY(-2px);
}

.contact-waitlist-link {
    font-size: 18px;
    font-weight: 500;
    color: #5AB4E5;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: rgba(90, 180, 229, 0.1);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.contact-waitlist-link:hover {
    background: rgba(90, 180, 229, 0.2);
    transform: translateY(-2px);
}

.contact-section-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin: 60px 0;
}

/* About Page - Minimalist Oura Style */
.about-hero {
    padding: 0 0 100px;
    position: relative;
}

.about-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-hero-title {
    font-size: 72px;
    font-weight: 450;
    line-height: 1.15;
    color: #ffffff;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.02em;
    margin-bottom: 60px;
    text-align: left;
}

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

.about-hero-text p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    margin-bottom: 28px;
    font-weight: 400;
}

.about-hero-text p:last-child {
    margin-bottom: 0;
}

.about-stats-section {
    padding: 0 0 60px;
    background: transparent;
    position: relative;
}

.about-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 32px;
    padding: 80px;
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-card-title {
    font-size: 32px;
    font-weight: 450;
    color: #1E1E1E;
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: -0.01em;
}

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

.about-stat-item {
    text-align: center;
}

.about-stat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(90, 180, 229, 0.1);
    border-radius: 50%;
    color: #5AB4E5;
}

.about-stat-item h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1E1E1E;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.about-stat-item p {
    font-size: 17px;
    color: #666666;
    line-height: 1.4;
}

.about-values-section {
    padding: 60px 0 80px;
    background: transparent;
    position: relative;
}

.about-values-list {
    max-width: 800px;
    margin: 0 auto;
}

.about-value-item {
    padding: 20px 0;
}

.about-value-item h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1E1E1E;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.about-value-item p {
    font-size: 18px;
    color: #666666;
    line-height: 1.4;
}

.about-value-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin: 40px 0;
}

.about-cta-section {
    padding: 0 0 120px;
    background: transparent;
    position: relative;
}

.about-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.about-cta-content h2 {
    font-size: 48px;
    font-weight: 450;
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
}

.about-cta-content .cta-button {
    display: inline-block;
}

/* Waitlist Section */
.waitlist {
    padding: 60px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.waitlist-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.waitlist-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.waitlist-content h2 {
    font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 96px;
    font-weight: 450;
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.waitlist-content > p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 48px;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.waitlist-form {
    margin-bottom: 24px;
}

.form-row {
    display: flex;
    gap: 16px;
    align-items: stretch;
}

.form-group {
    flex: 1;
}

.form-group input {
    width: 100%;
    height: 64px;
    padding: 0 28px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid transparent;
    border-radius: 32px;
    color: #3D9DD9;
    font-size: 17px;
    font-family: inherit;
    transition: all 0.3s ease;
    font-weight: 400;
}

.form-group input:focus {
    outline: none;
    background: #ffffff;
    border-color: #5AB4E5;
    box-shadow: 0 4px 24px rgba(90, 180, 229, 0.3), 0 0 0 4px rgba(90, 180, 229, 0.1);
}

.form-group input::placeholder {
    color: rgba(61, 157, 217, 0.5);
}

.form-row .cta-button {
    height: 64px;
    white-space: nowrap;
    flex-shrink: 0;
    padding-left: 48px;
    padding-right: 48px;
}

.waitlist-note {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
}

.form-message {
    margin-top: 16px;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.success-message {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-size: 18px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 24px rgba(255, 255, 255, 0.25), 0 0 40px rgba(255, 255, 255, 0.15);
}

.error-message {
    background: rgba(244, 67, 54, 0.1);
    color: #c62828;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

/* Footer */
.footer {
    padding: 50px 0 40px;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-brand .logo span {
    font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    display: block;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    font-weight: 400;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 16px;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-microcopy {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    font-weight: 400;
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 10000;
}

.chat-toggle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3D9DD9 0%, #5AB4E5 100%);
    border: none;
    box-shadow: 0 8px 24px rgba(90, 180, 229, 0.35);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.chat-toggle:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 32px rgba(90, 180, 229, 0.5);
}

.chat-toggle .close-icon {
    display: none;
}

.chat-toggle.active .chat-icon {
    display: none;
}

.chat-toggle.active .close-icon {
    display: block;
}

.chat-window {
    position: absolute;
    bottom: 88px;
    right: 0;
    width: 400px;
    height: 620px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 48px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
}

.chat-window.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chat-header {
    background: linear-gradient(135deg, #3D9DD9 0%, #5AB4E5 100%);
    color: white;
    padding: 24px;
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    gap: 16px;
}

.chat-avatar {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5AB4E5;
    flex-shrink: 0;
}

.chat-header-text h4 {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.chat-header-text span {
    font-size: 13px;
    opacity: 0.85;
    font-weight: 400;
}

.chat-messages {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chat-message {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    animation: messageSlideIn 0.3s ease;
}

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

.chat-message.user {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 10px;
    font-weight: 600;
}

.message-avatar.elara {
    background: linear-gradient(135deg, #3D9DD9 0%, #5AB4E5 100%);
    color: white;
}

.message-avatar.user {
    background: #e9ecef;
    color: #495057;
}

.message-content {
    max-width: 70%;
}

.message-bubble {
    padding: 14px 18px;
    border-radius: 18px;
    font-size: 15px;
    line-height: 1.4;
    color: #000;
}

.chat-message.elara .message-bubble {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 18px 18px 18px 4px;
}

.chat-message.user .message-bubble {
    background: linear-gradient(135deg, #3D9DD9 0%, #5AB4E5 100%);
    color: white;
    border-radius: 18px 18px 4px 18px;
}

.message-time {
    font-size: 11px;
    color: #6c757d;
    margin-top: 6px;
    padding: 0 4px;
    font-weight: 400;
}

.chat-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
}

.chat-option {
    padding: 12px 18px;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 14px;
    font-size: 15px;
    color: #3D9DD9;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    font-weight: 400;
}

.chat-option:hover {
    background: #f8f9fa;
    border-color: #5AB4E5;
    transform: translateX(4px);
}

.typing-indicator {
    display: flex;
    gap: 5px;
    padding: 14px 18px;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 18px 18px 18px 4px;
    width: fit-content;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: #3D9DD9;
    border-radius: 50%;
    animation: typingBounce 1.4s infinite;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingBounce {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-8px);
    }
}

.chat-input-area {
    display: flex;
    gap: 10px;
    padding: 20px;
    background: white;
    border-top: 1px solid #e9ecef;
}

.chat-input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid #e9ecef;
    border-radius: 24px;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s ease;
}

.chat-input:focus {
    border-color: #5AB4E5;
}

.chat-send {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3D9DD9 0%, #5AB4E5 100%);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.chat-send:hover {
    transform: scale(1.08);
}

.chat-send:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.chat-cta {
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(61, 157, 217, 0.08) 0%, rgba(90, 180, 229, 0.08) 100%);
    border-radius: 0 0 20px 20px;
    text-align: center;
}

.chat-cta p {
    font-size: 13px;
    color: #495057;
    margin-bottom: 14px;
    font-weight: 400;
}

.chat-cta-button {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, #3D9DD9 0%, #5AB4E5 100%);
    color: white;
    text-decoration: none;
    border-radius: 24px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
}

.chat-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(90, 180, 229, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 32px;
    }

    .container-wide {
        padding: 0 32px;
    }
}

@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

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

    .hero {
        padding: 160px 0 60px;
    }

    .hero-title {
        font-size: 56px;
    }

    .hero-subtitle {
        font-size: 19px;
    }

    .time-value {
        font-size: 56px;
    }

    .time-separator {
        font-size: 36px;
    }

    .time-label {
        font-size: 10px;
    }

    .live-message {
        font-size: 48px;
    }

    .section-title {
        font-size: 56px;
        font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
        font-weight: 450;
        letter-spacing: -0.01em;
        text-align: left;
    }

    .why-title {
        font-size: 56px;
        font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
        font-weight: 450;
        letter-spacing: -0.01em;
        text-align: left;
        white-space: normal;
    }

    .benefit-header {
        padding: 24px 32px 24px 32px;
    }

    .benefit-item:hover .benefit-header,
    .benefit-item.active .benefit-header {
        padding-left: 40px;
    }

    .benefit-header h3 {
        font-size: 24px;
    }

    .benefit-item.active .benefit-description {
        padding: 0 32px 24px 40px;
    }

    .benefit-description p {
        font-size: 18px;
    }

    .waitlist-content h2 {
        font-size: 56px;
        font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
        font-weight: 450;
        letter-spacing: -0.01em;
        text-align: center;
    }

    .trust-content-centered h2 {
        font-size: 56px;
        font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
        font-weight: 450;
        letter-spacing: -0.01em;
        text-align: left;
    }

    .faq-container .section-title {
        text-align: left;
    }

    .section-header {
        text-align: left;
    }

    .how-it-works,
    .why-different,
    .trust-privacy,
    .faq-section,
    .contact-section,
    .waitlist {
        padding: 50px 0;
    }

    .how-it-works .container-wide,
    .trust-privacy .container-wide,
    .faq-container,
    .contact-container,
    .waitlist .container {
        padding: 40px 32px;
    }

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

    .step-visual {
        width: 80px;
        height: 80px;
        border-radius: 16px;
    }

    .step-visual svg {
        width: 44px;
        height: 44px;
    }

    .difference-item {
        gap: 24px;
    }

    .difference-item h3 {
        font-size: 26px;
    }

    .trust-features-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .countdown-standalone-section {
        padding: 160px 0 0;
        margin-bottom: 32px;
    }

    .contact-hero {
        padding: 0 0 70px;
    }

    .contact-hero-title {
        font-size: 64px;
    }

    .contact-section {
        padding: 0 0 80px;
    }

    .contact-card {
        padding: 60px 40px;
    }

    .contact-card-title {
        font-size: 28px;
        margin-bottom: 60px;
    }

    .contact-section-heading {
        font-size: 19px;
    }

    .contact-section-text {
        font-size: 17px;
    }

    .contact-email {
        font-size: 24px;
    }

    .contact-waitlist-link {
        font-size: 17px;
    }

    .contact-section-divider {
        margin: 50px 0;
    }

    .about-hero {
        padding: 0 0 70px;
    }

    .about-hero-title {
        font-size: 56px;
    }

    .about-hero-text p {
        font-size: 18px;
        margin-bottom: 24px;
    }

    .about-card {
        padding: 60px 40px;
    }

    .about-card-title {
        font-size: 28px;
        margin-bottom: 50px;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-stat-item h3 {
        font-size: 21px;
    }

    .about-stat-item p {
        font-size: 16px;
    }

    .about-values-section {
        padding: 50px 0 70px;
    }

    .about-value-item h3 {
        font-size: 22px;
    }

    .about-value-item p {
        font-size: 17px;
    }

    .about-value-divider {
        margin: 35px 0;
    }

    .about-cta-section {
        padding: 0 0 80px;
    }

    .about-cta-content h2 {
        font-size: 40px;
    }
}

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

    .container-wide {
        padding: 0 24px;
    }

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

    .hero-title {
        font-size: 56px;
    }

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

    .countdown-timer {
        gap: 12px;
    }

    .time-value {
        font-size: 42px;
    }

    .time-separator {
        font-size: 28px;
        margin: 0 4px;
    }

    .time-label {
        font-size: 9px;
    }

    .countdown-label {
        font-size: 11px;
    }

    .live-message {
        font-size: 36px;
    }

    .section-title {
        font-size: 56px;
        font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
        font-weight: 450;
        letter-spacing: -0.01em;
        text-align: left;
    }

    .why-title {
        font-size: 56px;
        font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
        font-weight: 450;
        letter-spacing: -0.01em;
        text-align: left;
        white-space: normal;
    }

    .waitlist-content h2 {
        font-size: 56px;
        font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
        font-weight: 450;
        letter-spacing: -0.01em;
        text-align: center;
    }

    .trust-content-centered h2 {
        font-size: 56px;
        font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
        font-weight: 450;
        letter-spacing: -0.01em;
        text-align: left;
    }

    .faq-container .section-title {
        text-align: left;
    }

    .section-header {
        text-align: left;
    }

    .step-visual {
        width: 70px;
        height: 70px;
        border-radius: 14px;
    }

    .step-visual svg {
        width: 38px;
        height: 38px;
    }

    .how-it-works,
    .why-different,
    .trust-privacy,
    .faq-section,
    .contact-section,
    .waitlist {
        padding: 35px 0;
    }

    .how-it-works .container-wide,
    .trust-privacy .container,
    .faq-container,
    .contact-container,
    .waitlist .container {
        padding: 32px 24px;
        border-radius: 24px;
    }

    .contact-subtitle {
        font-size: 18px;
    }

    .contact-item {
        font-size: 16px;
    }

    .contact-details {
        gap: 20px;
    }

    .countdown-standalone-section {
        padding: 140px 0 0;
        margin-bottom: 32px;
    }

    .contact-hero {
        padding: 0 0 60px;
    }

    .contact-hero-title {
        font-size: 48px;
    }

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

    .contact-card {
        padding: 40px 28px;
        border-radius: 24px;
    }

    .contact-card-title {
        font-size: 26px;
        margin-bottom: 50px;
    }

    .contact-section-heading {
        font-size: 18px;
    }

    .contact-section-text {
        font-size: 16px;
    }

    .contact-email {
        font-size: 22px;
    }

    .contact-waitlist-link {
        font-size: 16px;
        padding: 12px 28px;
    }

    .contact-section-divider {
        margin: 45px 0;
    }

    .about-hero {
        padding: 0 0 50px;
    }

    .about-hero-title {
        font-size: 44px;
        margin-bottom: 50px;
    }

    .about-hero-text p {
        font-size: 17px;
        margin-bottom: 22px;
    }

    .about-card {
        padding: 40px 28px;
        border-radius: 24px;
    }

    .about-card-title {
        font-size: 26px;
        margin-bottom: 40px;
    }

    .about-stats-grid {
        gap: 40px;
    }

    .about-stat-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 20px;
    }

    .about-stat-icon svg {
        width: 28px;
        height: 28px;
    }

    .about-stat-item h3 {
        font-size: 19px;
    }

    .about-stat-item p {
        font-size: 15px;
    }

    .about-values-section {
        padding: 40px 0 50px;
    }

    .about-value-item {
        padding: 15px 0;
    }

    .about-value-item h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .about-value-item p {
        font-size: 16px;
    }

    .about-value-divider {
        margin: 30px 0;
    }

    .about-cta-section {
        padding: 0 0 60px;
    }

    .about-cta-content h2 {
        font-size: 32px;
        margin-bottom: 32px;
    }

    .faq-question {
        font-size: 18px;
        padding: 20px 0;
    }

    .faq-answer p {
        font-size: 16px;
    }

    .difference-item {
        padding-left: 24px;
        flex-direction: column;
        gap: 20px;
    }

    .difference-item:hover {
        padding-left: 28px;
    }

    .difference-icon {
        width: 56px;
        height: 56px;
    }

    .difference-icon svg {
        width: 40px;
        height: 40px;
    }

    .difference-item h3 {
        font-size: 24px;
    }

    .difference-list {
        gap: 60px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .trust-badge, .waitlist-badge {
        font-size: 13px;
        padding: 8px 18px;
    }

    .footer {
        padding: 40px 0 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .form-row {
        flex-direction: column;
    }

    .form-row .cta-button {
        width: 100%;
    }

    .chat-window {
        width: calc(100vw - 32px);
        height: calc(100vh - 120px);
        bottom: 88px;
        right: 16px;
    }

    .chat-widget {
        bottom: 24px;
        right: 24px;
    }

    /* Mobile menu adjustments for small screens */
    .mobile-menu {
        width: 85%;
        max-width: 320px;
        padding: 80px 32px 32px;
    }

    .mobile-menu-close {
        top: 20px;
        right: 20px;
    }
}
