/* VayoCare - Eye-Catching Landing Page Styles */
:root {
    --teal: #0d7377;
    --orange: #ff6b35;
    --navy: #1a3a52;
    --light: #f9f9f9;
    --dark: #1a1a1a;
    --shadow: rgba(0,0,0,0.1);
}

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

html {
    scroll-behavior: smooth;
    cursor: none !important;
    overflow-y: auto; /* Allow scroll but control via JS */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    scroll-padding: 0;
}

@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

html::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: #fff;
    overflow-x: hidden;
    cursor: none !important;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body::-webkit-scrollbar {
    display: none;
}

*, *::before, *::after {
    cursor: none !important;
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out, opacity 0.2s ease;
    will-change: transform, left, top;
    mix-blend-mode: difference;
    opacity: 1;
}

.custom-cursor.hovering {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.8;
}

.custom-cursor svg {
    display: block;
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.6));
    transition: filter 0.2s ease;
}

.custom-cursor.hovering svg {
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.8));
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--orange));
    z-index: 9999;
    transition: width 0.1s ease-out;
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(13, 115, 119, 0.3);
    border: 2px solid rgba(13, 115, 119, 0.5);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    flex-shrink: 0;
}

.indicator-dot:hover {
    background: rgba(13, 115, 119, 0.6);
    transform: scale(1.2);
}

.indicator-dot.active {
    background: var(--teal);
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(13, 115, 119, 0.2);
    width: 14px;
    height: 14px;
}

.indicator-dot::before {
    content: attr(title);
    position: absolute;
    left: 2.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--navy);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.indicator-dot:hover::before {
    opacity: 1;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px var(--shadow);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--navy);
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--teal);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.badge {
    padding: 0.4rem 1rem;
    background: var(--teal);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: -1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    animation: float 20s infinite ease-in-out;
}

.shape.s1 {
    width: 400px;
    height: 400px;
    background: var(--teal);
    top: -10%;
    right: -5%;
    animation-delay: 0s;
}

.shape.s2 {
    width: 300px;
    height: 300px;
    background: var(--orange);
    bottom: -5%;
    left: -5%;
    animation-delay: 3s;
}

.shape.s3 {
    width: 250px;
    height: 250px;
    background: var(--navy);
    top: 40%;
    left: 60%;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.9); }
    75% { transform: translate(20px, 10px) scale(1.05); }
}

.hero-content {
    text-align: center;
    z-index: 1;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: rgba(13, 115, 119, 0.1);
    border: 1px solid rgba(13, 115, 119, 0.3);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--teal);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s 0.2s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--navy);
}

.hero-title .word {
    display: inline-block;
    animation: wordSlide 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.hero-title .word:nth-child(1) { animation-delay: 0.3s; }
.hero-title .word:nth-child(2) { animation-delay: 0.5s; }
.hero-title .word:nth-child(3) { animation-delay: 0.7s; }

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

.hero-title .accent {
    color: var(--teal);
    position: relative;
}

.hero-text {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #555;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    animation: fadeInUp 1s 0.9s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* Email Form */
.email-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 3rem;
    animation: fadeInUp 1s 1.1s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.email-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.email-form input:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(13, 115, 119, 0.1);
}

.email-form button {
    padding: 1rem 2rem;
    background: var(--teal);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.email-form button:hover {
    background: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 115, 119, 0.3);
}

/* Stats */
.stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s 1.3s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.stat {
    text-align: center;
}

.stat strong {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--teal);
    line-height: 1;
}

.stat span {
    font-size: 0.9rem;
    color: #666;
}

/* Scroll Hint */
.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #999;
    font-size: 0.85rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.mouse {
    width: 24px;
    height: 38px;
    border: 2px solid #ccc;
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: #ccc;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 20px; }
}

/* Section */
.section {
    min-height: 100vh;
    height: 100vh;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section.scroll-out-up {
    opacity: 0.3;
    transform: translateY(-30px) scale(0.98);
}

.section.scroll-out-down {
    opacity: 0.3;
    transform: translateY(30px) scale(0.98);
}

.section.scroll-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.section > .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    max-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section.dark {
    background: linear-gradient(135deg, var(--navy) 0%, #0f2537 100%);
    color: white;
}

.section-header {
    margin-bottom: 1.5rem;
}

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

.label {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(13, 115, 119, 0.1);
    color: var(--teal);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section.dark .label {
    background: rgba(255, 255, 255, 0.1);
    color: var(--orange);
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--navy);
}

.section.dark h2 {
    color: white;
}

.section-header h2 span {
    display: block;
}

.section-header .accent {
    color: var(--teal);
}

.section.dark .accent {
    color: var(--orange);
}

.section-header .brand {
    background: linear-gradient(90deg, var(--teal), var(--orange));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
}

/* Grid */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

/* Cards */
.card {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

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

.card-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(13, 115, 119, 0.1);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.8rem;
}

.card p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.stat-box {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(13, 115, 119, 0.1);
    color: var(--teal);
    border-radius: 10px;
    font-weight: 600;
}

/* Transition Section */
.transition {
    min-height: 100vh;
    height: 100vh;
    padding: 0;
    background: linear-gradient(135deg, rgba(13, 115, 119, 0.05) 0%, rgba(255, 107, 53, 0.05) 100%);
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.big-text {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    text-align: center;
    line-height: 1.2;
    opacity: 0;
    transform: scale(2);
    transition: none;
}

.big-text.animate {
    animation: zoomIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

.big-text span {
    display: block;
}

/* Features Tabs */
.features {
    margin-top: 3rem;
}

.tabs-nav {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
}

.tab {
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: none;
    transition: all 0.3s ease;
}

.tab:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.tab.active {
    background: var(--orange);
    border-color: var(--orange);
    color: white;
    transform: translateY(-2px);
}

.tabs-content {
    position: relative;
    min-height: 400px;
}

.tab-panel {
    display: none;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

.tab-panel.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

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

.panel-demo {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
}

.scan {
    width: 150px;
    height: 150px;
    border: 3px solid var(--orange);
    border-radius: 50%;
    position: relative;
    animation: pulse 2s infinite;
}

.scan::after {
    content: '';
    position: absolute;
    inset: -10px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    animation: pulse 2s 0.5s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

.detect {
    color: var(--orange);
    font-weight: 600;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.chat {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.msg {
    padding: 1rem 1.5rem;
    border-radius: 20px;
    max-width: 80%;
}

.msg.in {
    background: rgba(255, 255, 255, 0.1);
    align-self: flex-start;
}

.msg.out {
    background: var(--orange);
    align-self: flex-end;
}

.metric {
    font-size: 1.5rem;
    color: white;
}

.metric strong {
    font-size: 2.5rem;
    display: block;
    color: var(--orange);
}

.good {
    color: #4caf50;
}

.dash {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    font-size: 1.1rem;
}

.sos {
    width: 120px;
    height: 120px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    animation: sosAlert 1s infinite;
}

@keyframes sosAlert {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(255, 107, 53, 0); }
}

.shield {
    font-size: 4rem;
    animation: float 3s infinite ease-in-out;
}

.flow {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.flow .x {
    text-decoration: line-through;
    opacity: 0.5;
}

.panel-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.panel-text ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.panel-text li {
    color: rgba(255, 255, 255, 0.8);
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step svg {
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.step:hover svg {
    transform: scale(1.1) rotate(5deg);
}

.step .num {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 0.5rem;
}

.step h3 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.step p {
    color: #666;
}

/* Comparison */
.comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.compare {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px var(--shadow);
}

.compare.vayocare {
    border: 3px solid var(--teal);
    transform: scale(1.05);
}

.compare-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
}

.compare-header .icon {
    font-size: 2rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--teal);
    margin-bottom: 2rem;
}

.compare ul {
    list-style: none;
}

.compare li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.compare li.yes {
    color: #4caf50;
    font-weight: 600;
}

.compare li.no {
    color: #999;
    text-decoration: line-through;
}

.compare li.partial {
    color: #ff9800;
}

/* USP */
.usp {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.usp-item {
    text-align: center;
}

.usp-item span {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.5rem;
}

.usp-item h4 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 0.3rem;
}

.usp-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Mission */
.mission {
    min-height: 100vh;
    height: 100vh;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(13, 115, 119, 0.05) 0%, rgba(255, 107, 53, 0.05) 100%);
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

blockquote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.q {
    font-size: 8rem;
    font-weight: 800;
    color: rgba(13, 115, 119, 0.1);
    line-height: 1;
    margin-bottom: -2rem;
}

blockquote p {
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.5;
    margin-bottom: 2rem;
}

blockquote footer {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: #666;
}

blockquote footer strong {
    color: var(--teal);
    font-size: 1.1rem;
}

/* CTA */
.cta {
    min-height: 100vh;
    height: 100vh;
    padding: 2rem;
    background: linear-gradient(135deg, var(--navy) 0%, #0f2537 100%);
    color: white;
    text-align: center;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cta h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta h2 span {
    display: block;
}

.cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.open-form-btn {
    padding: 1.2rem 3rem;
    background: var(--teal);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.open-form-btn:hover {
    background: var(--orange);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.4);
}

.trust {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
}

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

.modal-content {
    background: white;
    border-radius: 24px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem;
    position: relative;
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: #f0f0f0;
    color: var(--navy);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-header svg {
    margin-bottom: 1rem;
}

.modal-header h3 {
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: #666;
    font-size: 0.95rem;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
}

.form-group input,
.form-group select {
    padding: 0.9rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(13, 115, 119, 0.1);
}

.submit-btn {
    padding: 1rem 2rem;
    background: var(--teal);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.submit-btn:hover {
    background: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 115, 119, 0.3);
}

/* Footer */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 2rem;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.footer .container {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand span {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

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

.footer-links h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--teal);
}

.footer-bottom {
    grid-column: 1 / -1;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    html, body {
        cursor: auto;
        scroll-snap-type: y proximity;
    }
    
    .custom-cursor {
        display: none;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .email-form button {
        cursor: pointer;
    }
    
    .tab {
        cursor: pointer;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero {
        min-height: 100vh;
        height: auto;
        padding-top: 100px;
        scroll-snap-align: start;
    }
    
    .section {
        height: auto;
        min-height: 100vh;
    }
    
    .email-form, .cta-form {
        flex-direction: column;
    }
    
    .stats {
        gap: 2rem;
    }
    
    .tab-panel.active {
        grid-template-columns: 1fr;
    }
    
    .panel-text ul {
        grid-template-columns: 1fr;
    }
    
    .footer .container {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
