/* ============================================
   AUGMENTED ENTREPRISE
   Premium Landing Page — Apple × Tech Mauve
   ============================================ */

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

:root {
    /* Mauve Tech Palette */
    --p50: #faf5ff;  --p100: #f3e8ff; --p200: #e9d5ff;
    --p300: #d8b4fe; --p400: #c084fc; --p500: #a855f7;
    --p600: #9333ea; --p700: #7c3aed; --p800: #6b21a8;
    --p900: #581c87;

    --bg: #050507;
    --bg-alt: #0a0a10;
    --surface: rgba(255,255,255,0.03);
    --surface-hover: rgba(255,255,255,0.06);
    --border: rgba(255,255,255,0.05);
    --border-hover: rgba(168,85,247,0.2);
    --text-1: #f5f5f7;
    --text-2: #a1a1aa;
    --text-3: #71717a;

    --r-sm: 8px; --r-md: 12px; --r-lg: 16px;
    --r-xl: 20px; --r-2xl: 24px; --r-full: 9999px;

    --ease: cubic-bezier(.25,.46,.45,.94);
    --ease-back: cubic-bezier(.34,1.56,.64,1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    background: var(--bg);
    color: var(--text-1);
    line-height: 1.65;
    overflow-x: hidden;
    letter-spacing: -0.01em;
}

::selection { background: var(--p700); color: #fff; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

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

/* Utility */
.hide-mobile { display: inline; }
@media (max-width: 768px) { .hide-mobile { display: none; } }

/* ============================================
   NOISE OVERLAY — subtle film grain
   ============================================ */
.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.025;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 256px;
}

/* ============================================
   CURSOR GLOW
   ============================================ */
.cursor-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168,85,247,0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    will-change: left, top;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 18px 0;
    transition: all 0.4s var(--ease);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(5,5,7,0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--border);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: -0.02em;
}

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

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-2);
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover,
.nav-link.active { color: var(--text-1); }

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--p500);
    transition: width 0.3s var(--ease);
}

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

/* ============================================
   SERPENTINE BUTTON — The signature animation
   ============================================ */
.btn-serpentine-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 26px;
    border-radius: var(--r-full);
    cursor: pointer;
    overflow: hidden;
    isolation: isolate;
    background: transparent;
    border: none;
    font-family: inherit;
}

.btn-text {
    position: relative;
    z-index: 3;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-1);
    white-space: nowrap;
}

.serpentine-border {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    overflow: hidden;
    z-index: 1;
}

/* Spinning conic gradient = serpentine effect */
.serpentine-border::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 300%; height: 300%;
    transform: translate(-50%, -50%);
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        var(--p600) 40deg,
        var(--p400) 80deg,
        var(--p300) 100deg,
        transparent 140deg,
        transparent 200deg,
        var(--p700) 230deg,
        var(--p500) 260deg,
        transparent 300deg,
        transparent 360deg
    );
    animation: serpentine-spin 4s linear infinite;
}

/* Inner fill — the dark center that makes only border visible */
.serpentine-border::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: inherit;
    background: var(--bg);
    z-index: 1;
}

@keyframes serpentine-spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.btn-serpentine-wrap:hover {
    box-shadow: 0 0 40px rgba(168,85,247,0.2), 0 0 80px rgba(168,85,247,0.08);
}

.btn-serpentine-wrap:hover .serpentine-border::before {
    animation-duration: 2.5s;
}

/* Hero variant — larger */
.btn-hero {
    padding: 14px 36px;
}

.btn-hero .btn-text {
    font-size: 1rem;
    font-weight: 600;
}

/* Nav CTA variant */
.nav-cta .serpentine-border::after {
    background: var(--bg);
}

.navbar.scrolled .nav-cta .serpentine-border::after {
    background: rgba(5,5,7,0.95);
}

/* ============================================
   GHOST BUTTON
   ============================================ */
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-2);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--r-full);
    transition: all 0.4s var(--ease);
}

.btn-ghost:hover {
    color: var(--text-1);
    border-color: rgba(168,85,247,0.3);
    background: rgba(168,85,247,0.06);
    box-shadow: 0 0 24px rgba(168,85,247,0.08);
}

/* ============================================
   MOBILE MENU
   ============================================ */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 101;
}

.nav-toggle span {
    display: block;
    width: 22px; height: 2px;
    background: var(--text-1);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(5,5,7,0.96);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease);
}

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

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.mobile-link {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-2);
    transition: color 0.3s;
    letter-spacing: -0.02em;
}

.mobile-link:hover { color: var(--p400); }

.mobile-cta {
    margin-top: 16px;
    padding: 14px 36px;
}

.mobile-cta .serpentine-border::after {
    background: rgba(5,5,7,0.96);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.glow-1 {
    width: 700px; height: 700px;
    top: -25%; left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(168,85,247,0.12), transparent 70%);
}

.glow-2 {
    width: 400px; height: 400px;
    bottom: 10%; right: -5%;
    background: radial-gradient(circle, rgba(124,58,237,0.08), transparent 70%);
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(168,85,247,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168,85,247,0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, black, transparent);
}

.hero-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 120px;
    padding-bottom: 60px;
    position: relative;
    z-index: 2;
}

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

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 18px 7px 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--r-full);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-2);
    letter-spacing: 0.01em;
    margin-bottom: 32px;
}

.badge-pulse {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--p500);
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(168,85,247,0.4); }
    50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(168,85,247,0); }
}

/* Title */
.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.035em;
    margin-bottom: 24px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--p300), var(--p500), var(--p400));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.text-highlight {
    background: linear-gradient(transparent 60%, rgba(168, 85, 247, 0.25) 60%);
    padding: 0 4px;
}

.hero-desc {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: var(--text-2);
    max-width: 540px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}



/* ============================================
   MARQUEE
   ============================================ */
.marquee {
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-right: 32px;
    animation: marquee-scroll 25s linear infinite;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-3);
    white-space: nowrap;
    flex-shrink: 0;
}

.marquee-content .sep {
    color: var(--p700);
    font-size: 0.6rem;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    padding: 80px 0;
}

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

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

.stat-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--p400), var(--p300));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-suffix {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--p400);
}

.stat-label {
    display: block;
    font-size: 0.82rem;
    color: var(--text-3);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, transparent, rgba(168,85,247,0.15), transparent);
}

/* ============================================
   SECTION HEADER — reused
   ============================================ */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 72px;
}

.tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-2);
    margin-bottom: 18px;
    padding: 5px 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--r-full);
}

.section-header h2,
.potential-left h2,
.booking-left h2 {
    font-size: clamp(2rem, 4.5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.1;
    margin-bottom: 18px;
}

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

/* ============================================
   FEATURES
   ============================================ */
.section-features {
    padding: 120px 0;
}

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

.feature-card {
    position: relative;
    padding: 36px 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    transition: all 0.5s var(--ease);
    overflow: hidden;
}

.feature-card:hover {
    background: var(--surface-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.2), 0 0 0 1px rgba(168,85,247,0.08);
}

.fc-glow {
    position: absolute;
    top: 0; left: 50%;
    width: 120px; height: 120px;
    transform: translate(-50%, -60%);
    background: radial-gradient(circle, rgba(168,85,247,0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.feature-card:hover .fc-glow { opacity: 1; }

.fc-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px; height: 48px;
    background: rgba(168,85,247,0.08);
    border: 1px solid rgba(168,85,247,0.12);
    border-radius: var(--r-md);
    margin-bottom: 20px;
    color: var(--p400);
    transition: all 0.3s;
}

.feature-card:hover .fc-icon {
    background: rgba(168,85,247,0.15);
    border-color: rgba(168,85,247,0.25);
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.feature-card p {
    font-size: 0.88rem;
    color: var(--text-2);
    line-height: 1.6;
}

.fc-line {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--p500), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover .fc-line { opacity: 1; }

/* ============================================
   USE CASES
   ============================================ */
.section-usecases {
    padding: 120px 0;
}

.usecases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.uc-card {
    position: relative;
    padding: 32px 28px 28px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: var(--r-lg);
    transition: all 0.4s var(--ease);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.uc-card::before {
    content: '';
    position: absolute;
    top: 0; left: 24px; right: 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
}

.uc-card:hover {
    background: rgba(255,255,255,0.035);
    border-color: rgba(255,255,255,0.07);
}

.uc-card .fc-icon {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--r-sm);
    margin-bottom: 24px;
    color: var(--text-2);
}

.uc-card:hover .fc-icon {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.1);
    color: var(--text-1);
}

.uc-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
    color: var(--text-1);
}

.uc-card p {
    font-size: 0.84rem;
    color: var(--text-3);
    line-height: 1.65;
    margin-bottom: 20px;
}

.uc-result {
    display: block;
    margin-top: auto;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-2);
    line-height: 1.5;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.04);
    letter-spacing: 0.01em;
}

.usecases-cta {
    text-align: center;
    margin-top: 56px;
}

/* ============================================
   STEPS
   ============================================ */
.section-steps {
    padding: 80px 0 120px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
}

.step-card {
    padding: 40px 32px;
    position: relative;
    text-align: center;
    transition: transform 0.4s var(--ease);
}

.step-card:hover {
    transform: translateY(-3px);
}

.step-number {
    font-size: 3.2rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, var(--p600), var(--p800));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1;
}

.step-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.step-content p {
    font-size: 0.88rem;
    color: var(--text-2);
    line-height: 1.6;
}

.step-line {
    position: absolute;
    right: 0; top: 25%;
    height: 50%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--border), transparent);
}

/* ============================================
   POTENTIAL / ABOUT
   ============================================ */
.section-potential {
    padding: 120px 0;
    background: var(--bg-alt);
    position: relative;
    overflow: hidden;
}

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

.potential-left .tag { display: block; }

.potential-left h2 { text-align: left; }

.potential-desc {
    font-size: 1.02rem;
    color: var(--text-2);
    line-height: 1.7;
    margin-bottom: 32px;
}

.potential-desc strong {
    color: var(--p400);
    font-weight: 600;
}

.potential-link {
    color: var(--p400);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.potential-link:hover {
    color: var(--p300);
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--text-2);
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px; height: 26px;
    background: rgba(168,85,247,0.1);
    border-radius: 50%;
    flex-shrink: 0;
    color: var(--p400);
}

/* Workflow SVG Diagram */
.potential-right {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
}

.workflow-svg {
    width: 100%;
    max-width: 480px;
    height: auto;
    animation: svg-float 6s ease-in-out infinite;
}

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

.hub-ring {
    animation: hub-breathe 4s ease-in-out infinite;
    transform-origin: 200px 200px;
}

@keyframes hub-breathe {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.12); opacity: 1; }
}

.flow-line {
    animation: dash-crawl 20s linear infinite;
}

@keyframes dash-crawl {
    to { stroke-dashoffset: -100; }
}

/* ============================================
   SERVICES
   ============================================ */
.section-services {
    padding: 120px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.service-card {
    position: relative;
    padding: 40px 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-2xl);
    transition: all 0.5s var(--ease);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2), 0 0 0 1px rgba(168,85,247,0.06);
}

.service-card.sc-featured {
    background: linear-gradient(160deg, rgba(168,85,247,0.08), rgba(124,58,237,0.03));
    border-color: rgba(168,85,247,0.25);
}

.sc-popular {
    position: absolute;
    top: -11px; left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: white;
    background: linear-gradient(135deg, var(--p500), var(--p700));
    border-radius: var(--r-full);
}

.sc-badge {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--p400);
    margin-bottom: 14px;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.sc-price {
    font-size: 0.85rem;
    color: var(--text-3);
    margin-bottom: 16px;
}

.sc-desc {
    font-size: 0.88rem;
    color: var(--text-2);
    line-height: 1.6;
    margin-bottom: 24px;
}

.sc-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
    flex: 1;
}

.sc-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.84rem;
    color: var(--text-2);
}

.sc-features .dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--p600);
    flex-shrink: 0;
}

.sc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-2);
    border: 1px solid var(--border);
    border-radius: var(--r-full);
    transition: all 0.3s var(--ease);
    margin-top: auto;
}

.sc-btn:hover {
    color: white;
    border-color: var(--p500);
    background: rgba(168,85,247,0.1);
}

.sc-btn-primary {
    color: white;
    background: linear-gradient(135deg, var(--p600), var(--p700));
    border-color: transparent;
}

.sc-btn-primary:hover {
    background: linear-gradient(135deg, var(--p500), var(--p600));
    box-shadow: 0 8px 32px rgba(168,85,247,0.3);
}

/* ============================================
   BOOKING
   ============================================ */
.section-booking {
    padding: 120px 0;
    background: var(--bg-alt);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.booking-left .tag { display: block; }
.booking-left h2 { text-align: left; }

.booking-desc {
    font-size: 1rem;
    color: var(--text-2);
    line-height: 1.7;
    margin-bottom: 32px;
}

.booking-perks {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.perk {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--text-2);
}

.perk-icon {
    color: var(--p400);
    flex-shrink: 0;
    display: flex;
}

.calendar-embed {
    background: transparent;
    border-radius: var(--r-2xl);
    overflow: hidden;
    height: 550px;
}

.calendar-embed iframe {
    border-radius: var(--r-2xl);
}

/* ============================================
   CONTACT
   ============================================ */
.section-contact {
    padding: 80px 0;
    border-top: 1px solid var(--border);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

.contact-left h3 {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    line-height: 1.3;
}

.contact-left p {
    font-size: 0.92rem;
    color: var(--text-2);
    line-height: 1.6;
}

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

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 0.88rem;
    font-family: inherit;
    color: var(--text-1);
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    outline: none;
    transition: all 0.3s var(--ease);
    resize: vertical;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--p500);
    box-shadow: 0 0 0 3px rgba(168,85,247,0.1);
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    font-size: 0.88rem;
    font-weight: 600;
    font-family: inherit;
    color: white;
    background: linear-gradient(135deg, var(--p600), var(--p700));
    border: none;
    border-radius: var(--r-full);
    cursor: pointer;
    transition: all 0.3s var(--ease);
    align-self: flex-start;
}

.btn-submit:hover {
    background: linear-gradient(135deg, var(--p500), var(--p600));
    box-shadow: 0 8px 32px rgba(168,85,247,0.3);
    transform: translateY(-2px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 72px 0 0;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 48px;
    padding-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 14px;
}

.footer-brand p {
    font-size: 0.82rem;
    color: var(--text-3);
    line-height: 1.6;
    max-width: 260px;
}

.footer-col h4 {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-2);
    margin-bottom: 18px;
}

.footer-col a {
    display: block;
    font-size: 0.82rem;
    color: var(--text-3);
    padding: 3px 0;
    transition: color 0.2s;
}

.footer-col a:hover { color: var(--p400); }

.social-links {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px; height: 34px;
    padding: 6px;
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    color: var(--text-3);
    transition: all 0.2s;
}

.social-btn svg {
    display: block;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
}

.social-btn:hover {
    border-color: var(--p600);
    color: var(--p400);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    font-size: 0.75rem;
    color: var(--text-3);
}

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

.footer-legal a {
    color: var(--text-3);
    transition: color 0.2s;
}

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

/* ============================================
   ANIMATIONS — Scroll Reveal
   ============================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   RESPONSIVE — Tablet
   ============================================ */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .usecases-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
    .potential-grid { grid-template-columns: 1fr; gap: 60px; }
    .booking-wrapper { grid-template-columns: 1fr; }
    .contact-wrapper { grid-template-columns: 1fr; gap: 32px; }
    .steps-grid { grid-template-columns: 1fr; gap: 0; }
    .step-line { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .stats-grid { gap: 32px; }
    .cursor-glow { display: none; }
}

/* ============================================
   RESPONSIVE — Mobile
   ============================================ */
@media (max-width: 768px) {
    .nav-links,
    .nav-cta { display: none; }
    .nav-toggle { display: flex; }

    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        padding-bottom: 40px;
    }

    .hero-container {
        padding-top: 120px;
        padding-bottom: 40px;
    }

    .hero-title {
        font-size: clamp(2.4rem, 9vw, 3.2rem);
    }

    .hero-title br { display: none; }

    .hero-desc {
        font-size: 1rem;
        line-height: 1.7;
    }

    .hero-badge {
        font-size: 0.72rem;
        margin-bottom: 28px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
    }

    .btn-serpentine-wrap.btn-hero {
        padding: 14px 32px;
        width: auto;
        align-self: center;
    }

    .btn-serpentine-wrap.btn-hero .btn-text {
        font-size: 0.92rem;
    }

    .btn-ghost {
        padding: 12px 24px;
        font-size: 0.88rem;
        width: auto;
        align-self: center;
    }




    .features-grid { grid-template-columns: 1fr; }
    .usecases-grid { grid-template-columns: 1fr; }

    .section-features,
    .section-usecases,
    .section-potential,
    .section-services,
    .section-booking {
        padding: 80px 0;
    }

    .stats-grid {
        flex-wrap: wrap;
        gap: 24px;
    }

    .stat-item {
        flex: 1 1 40%;
    }

    .stat-divider { display: none; }

    .section-header h2,
    .potential-left h2,
    .booking-left h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .section-header h2 br,
    .potential-left h2 br,
    .contact-left h3 br {
        display: none;
    }

    .potential-desc {
        font-size: 0.95rem;
    }

    .check-list li {
        font-size: 0.88rem;
    }

    .feature-card h3 {
        font-size: 1.05rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .uc-card h3 {
        font-size: 1rem;
    }

    .uc-card p {
        font-size: 0.88rem;
    }

    .step-content h3 {
        font-size: 1.05rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }

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

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .calendar-embed { height: 550px; }

    .workflow-svg { max-width: 360px; }
}

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

    .hero-container {
        padding-top: 130px;
    }

    .hero-badge {
        font-size: 0.68rem;
        padding: 6px 14px 6px 10px;
    }

    .hero-title { font-size: 2.3rem; }

    .section-header h2,
    .potential-left h2,
    .booking-left h2 {
        font-size: 1.65rem;
    }

    .feature-card { padding: 24px 20px; }
    .uc-card { padding: 24px 20px; }
    .service-card { padding: 28px 22px; }
    .workflow-svg { max-width: 320px; }
}
