/* ============================================================
   Slotly — Landing Page Styles
   ============================================================ */

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

:root {
    --purple: #6C5CE7;
    --purple-light: #a29bfe;
    --purple-dark: #4a3cbf;
    --green: #00b894;
    --text: #1a1a2e;
    --text-sec: #636e72;
    --bg: #f8f9fc;
    --white: #ffffff;
    --shadow: 0 4px 24px rgba(108, 92, 231, 0.12);
    --shadow-lg: 0 8px 40px rgba(108, 92, 231, 0.18);
    --radius: 16px;
    --radius-sm: 10px;
}

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ---- NAV ---- */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(108, 92, 231, 0.08);
    padding: 0 24px;
}
.nav-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
.nav-logo {
    display: flex; align-items: center; gap: 10px;
    font-size: 22px; font-weight: 800;
    color: var(--purple);
    text-decoration: none;
}
.nav-logo .logo-icon {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 16px;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
    color: var(--text-sec);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color .2s;
}
.nav-links a:hover { color: var(--purple); }
.nav-cta {
    background: var(--purple) !important;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600 !important;
    transition: background .2s, transform .15s !important;
}
.nav-cta:hover { background: var(--purple-dark) !important; transform: translateY(-1px); }

/* ---- SECTIONS COMMON ---- */
section { padding: 80px 24px; }
.section-inner { max-width: 1080px; margin: 0 auto; }
.section-title {
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
    color: var(--text);
}
.section-subtitle {
    text-align: center;
    color: var(--text-sec);
    font-size: 16px;
    margin-bottom: 48px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* ---- HERO ---- */
.hero {
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 24px 80px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(108,92,231,0.3) 0%, transparent 70%);
    top: -100px; right: -100px;
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0,184,148,0.2) 0%, transparent 70%);
    bottom: -50px; left: -50px;
    pointer-events: none;
}
.hero-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(108,92,231,0.2);
    border: 1px solid rgba(162,155,254,0.3);
    color: var(--purple-light);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}
.hero h1 {
    font-size: clamp(24px, 3vw, 42px);
    font-weight: 900;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 20px;
}
.hero-content {
    max-width: 540px;
}
.hero h1 span { color: var(--purple-light); }
.hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
    line-height: 1.7;
}
.hero-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 36px;
}
.hero-cat {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.75);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    color: #fff;
    padding: 16px 32px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(108,92,231,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(108,92,231,0.5); }
.btn-secondary-outline {
    background: transparent;
    color: rgba(255,255,255,0.8);
    padding: 16px 28px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.25);
    cursor: pointer;
    transition: background .2s, border-color .2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-secondary-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }
.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.hero-stat { text-align: left; }
.hero-stat .num { font-size: 28px; font-weight: 800; color: #fff; }
.hero-stat .lbl { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-mockup {
    width: 100%;
    max-width: 380px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 24px;
    backdrop-filter: blur(10px);
}
.mockup-header {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 20px;
}
.mockup-avatar {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--purple), var(--green));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 18px;
}
.mockup-title { color: #fff; font-weight: 700; font-size: 15px; }
.mockup-sub { color: rgba(255,255,255,0.5); font-size: 12px; }
.mockup-stat-row {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 10px; margin-bottom: 16px;
}
.mockup-stat {
    background: rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 14px;
}
.mockup-stat .val { font-size: 20px; font-weight: 800; color: #fff; }
.mockup-stat .key { font-size: 11px; color: rgba(255,255,255,0.45); margin-top: 3px; }
.mockup-bookings { }
.mockup-booking-item {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 12px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    margin-bottom: 8px;
}
.booking-dot {
    width: 8px; height: 8px; border-radius: 50%;
    flex-shrink: 0;
}
.dot-green { background: #00b894; }
.dot-blue { background: #74b9ff; }
.dot-purple { background: var(--purple-light); }
.booking-name { color: rgba(255,255,255,0.85); font-size: 13px; flex: 1; }
.booking-time { color: rgba(255,255,255,0.4); font-size: 12px; }

/* ---- FOR WHOM ---- */
.for-whom { background: var(--white); }
.whom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
}
.whom-card {
    background: var(--bg);
    border-radius: var(--radius-sm);
    padding: 24px 16px;
    text-align: center;
    border: 1px solid #e8ecf0;
    transition: transform .2s, box-shadow .2s, border-color .2s;
    cursor: default;
}
.whom-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--purple-light);
}
.whom-icon {
    font-size: 32px;
    margin-bottom: 12px;
}
.whom-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

/* ---- HOW IT WORKS ---- */
.how-it-works { background: var(--bg); }
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}
.steps::before {
    content: '';
    position: absolute;
    top: 36px; left: 16%;
    width: 68%;
    height: 2px;
    background: linear-gradient(90deg, var(--purple), var(--purple-light));
    z-index: 0;
}
.step {
    text-align: center;
    position: relative;
    z-index: 1;
}
.step-num {
    width: 72px; height: 72px;
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    color: #fff;
    font-weight: 900;
    margin: 0 auto 20px;
    box-shadow: 0 4px 20px rgba(108,92,231,0.35);
}
.step h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--text-sec); }

/* ---- FEATURES ---- */
.features { background: var(--white); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}
.feature-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid #e8ecf0;
    transition: transform .2s, box-shadow .2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-card-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 22px;
    margin-bottom: 16px;
}
.feature-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text-sec); line-height: 1.6; }

/* ---- PRICING ---- */
.pricing { background: var(--bg); }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
    align-items: start;
}
.pricing-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px;
    border: 2px solid #e8ecf0;
    position: relative;
    transition: transform .2s, box-shadow .2s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pricing-card.popular {
    border-color: var(--purple);
    box-shadow: var(--shadow-lg);
    transform: scale(1.02);
}
.pricing-card.popular:hover { transform: scale(1.02) translateY(-4px); }
.popular-badge {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
}
.plan-name { font-size: 18px; font-weight: 800; margin-bottom: 4px; }
.plan-tagline { font-size: 13px; color: var(--text-sec); margin-bottom: 20px; }
.plan-price {
    margin-bottom: 20px;
}
.plan-price .amount {
    font-size: 36px;
    font-weight: 900;
    color: var(--text);
}
.plan-price .period {
    font-size: 13px;
    color: var(--text-sec);
    margin-left: 4px;
}
.plan-trial {
    display: inline-block;
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 20px;
}
.plan-features { list-style: none; margin-bottom: 24px; }
.plan-features li {
    display: flex; align-items: flex-start; gap: 8px;
    font-size: 14px;
    color: var(--text-sec);
    padding: 5px 0;
    border-bottom: 1px solid #f0f0f0;
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li i { color: var(--green); margin-top: 3px; flex-shrink: 0; }
.plan-cta {
    display: block;
    text-align: center;
    padding: 13px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, transform .15s;
}
.plan-cta-primary {
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    color: #fff;
    box-shadow: 0 4px 16px rgba(108,92,231,0.3);
}
.plan-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(108,92,231,0.4); }
.plan-cta-outline {
    background: transparent;
    color: var(--purple);
    border: 2px solid var(--purple);
}
.plan-cta-outline:hover { background: var(--purple); color: #fff; }

/* ---- TESTIMONIALS ---- */
.testimonials { background: var(--white); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}
.testimonial-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid #e8ecf0;
    position: relative;
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px; right: 20px;
    font-size: 72px;
    color: var(--purple-light);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}
.testimonial-stars { color: #feca57; font-size: 14px; margin-bottom: 14px; }
.testimonial-text {
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 18px;
    font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}
.av-purple { background: linear-gradient(135deg, var(--purple), var(--purple-light)); }
.av-green { background: linear-gradient(135deg, var(--green), #55efc4); }
.av-pink { background: linear-gradient(135deg, #fd79a8, #e84393); }
.author-name { font-size: 14px; font-weight: 700; }
.author-role { font-size: 12px; color: var(--text-sec); }

/* ---- GUARANTEES ---- */
.guarantees { background: var(--bg); }
.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.guarantee-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 24px;
    border: 1px solid #e8ecf0;
    text-align: center;
    transition: transform .2s, box-shadow .2s;
    position: relative;
    overflow: hidden;
}
.guarantee-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.guarantee-card::after {
    content: '';
    position: absolute;
    top: var(--glow-y, 50%);
    left: var(--glow-x, 50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.12) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}
.guarantee-card:hover::after { opacity: 1; }
.guarantee-icon { font-size: 36px; margin-bottom: 14px; }
.guarantee-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.guarantee-card p { font-size: 14px; color: var(--text-sec); line-height: 1.6; }

/* ---- FINAL CTA ---- */
.final-cta {
    background: linear-gradient(135deg, var(--purple-dark), var(--purple), var(--purple-light));
    padding: 80px 24px;
    text-align: center;
    color: #fff;
}
.final-cta h2 { font-size: clamp(24px, 4vw, 40px); font-weight: 900; margin-bottom: 16px; }
.final-cta p { font-size: 16px; opacity: 0.85; margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.btn-white {
    background: #fff;
    color: var(--purple);
    padding: 16px 32px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }

/* ---- FOOTER ---- */
footer {
    background: #0f0c29;
    color: rgba(255,255,255,0.6);
    padding: 40px 24px 32px;
}
.footer-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 32px;
}
.footer-brand .logo-text {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 12px;
}
.footer-brand p { font-size: 13px; line-height: 1.7; margin-bottom: 8px; }
.footer-req { font-size: 12px; opacity: 0.5; line-height: 1.7; margin-top: 12px; }
.footer-col h4 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 12px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 13px;
    transition: color .2s;
}
.footer-col a:hover { color: var(--purple-light); }
.footer-bottom {
    max-width: 1080px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { color: rgba(255,255,255,0.35); text-decoration: none; font-size: 12px; }
.footer-bottom-links a:hover { color: var(--purple-light); }

/* ---- COOKIE BANNER ---- */
.cookie-banner {
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 680px;
    background: #1a1a2e;
    color: rgba(255,255,255,0.85);
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    z-index: 9999;
    font-size: 13px;
    border: 1px solid rgba(255,255,255,0.08);
    animation: slideUp .4s ease;
}
@keyframes slideUp {
    from { transform: translateX(-50%) translateY(20px); opacity: 0; }
    to   { transform: translateX(-50%) translateY(0);    opacity: 1; }
}
.cookie-banner p { flex: 1; line-height: 1.5; }
.cookie-banner a { color: var(--purple-light); text-decoration: underline; }
.cookie-accept {
    background: var(--purple);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background .2s;
}
.cookie-accept:hover { background: var(--purple-dark); }
.cookie-decline {
    background: transparent;
    color: rgba(255,255,255,0.45);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
    cursor: pointer;
    white-space: nowrap;
    transition: color .2s;
}
.cookie-decline:hover { color: rgba(255,255,255,0.7); }

/* ---- AI FEATURE SECTION ---- */
.ai-feature-section { background: linear-gradient(135deg, #f0eeff 0%, #e8f4ff 100%); }

.ai-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.ai-chat-demo {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.ai-chat-demo-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #6C5CE7, #a29bfe);
    color: #fff;
}
.ai-bot-avatar { font-size: 30px; line-height: 1; }
.ai-bot-name { font-size: 15px; font-weight: 700; }
.ai-bot-online { font-size: 12px; color: #a8f5a0; margin-top: 2px; }
.ai-chat-demo-messages {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ai-demo-msg {
    padding: 11px 15px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.6;
    max-width: 90%;
}
.ai-demo-msg.user {
    align-self: flex-end;
    background: var(--purple);
    color: #fff;
    border-bottom-right-radius: 4px;
}
.ai-demo-msg.bot {
    align-self: flex-start;
    background: #f4f2ff;
    color: var(--text);
    border-bottom-left-radius: 4px;
}

.ai-caps { display: flex; flex-direction: column; gap: 24px; }
.ai-cap-item { display: flex; align-items: flex-start; gap: 16px; }
.ai-cap-icon { font-size: 28px; line-height: 1; flex-shrink: 0; margin-top: 2px; }
.ai-cap-title { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.ai-cap-desc { font-size: 14px; color: var(--text-sec); line-height: 1.5; }

/* ---- SCROLL ANIMATIONS ---- */
.anim-fade {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.anim-fade.anim-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- NAV SHRINK ---- */
.nav-scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.nav-scrolled .nav-inner { height: 52px; }

/* ---- AI CHAT INPUT BAR ---- */
.ai-chat-demo-input {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 12px 20px;
    border-top: 1px solid #eee;
    color: #b0b0b0;
    font-size: 14px;
}
.ai-input-cursor {
    width: 2px;
    height: 16px;
    background: var(--purple);
    animation: cursorBlink 1s infinite;
}
@keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* ---- AI TYPING DOTS ---- */
.ai-typing-dots {
    display: flex !important;
    gap: 4px;
    padding: 14px 18px !important;
}
.ai-typing-dots span {
    width: 8px;
    height: 8px;
    background: #b0b0c8;
    border-radius: 50%;
    animation: typingBounce 1.2s infinite;
}
.ai-typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.ai-typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-6px); opacity: 1; }
}

/* ---- AI DEMO CHAT scroll ---- */
.ai-chat-demo-messages {
    min-height: 260px;
    max-height: 320px;
    overflow-y: auto;
    scroll-behavior: smooth;
}

/* ---- AI STATS SECTION ---- */
.ai-stats-section {
    background: linear-gradient(135deg, var(--purple-dark), var(--purple));
    padding: 60px 24px;
}
.ai-stats-grid {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.ai-stat-card {
    text-align: center;
    padding: 24px 16px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.12);
}
.ai-stat-num {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    display: inline;
}
.ai-stat-suffix {
    font-size: 20px;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    display: inline;
    margin-left: 2px;
}
.ai-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-top: 8px;
    line-height: 1.5;
}

/* ---- HERO GRADIENT ANIMATION ---- */
.hero {
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    background-size: 200% 200%;
    animation: heroGradient 8s ease infinite;
    position: relative;
}
@keyframes heroGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ---- HERO PARTICLES ---- */
.hero-particles {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* ---- HERO MARQUEE ---- */
.hero-marquee-wrap {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    margin-bottom: 36px;
}
.hero-marquee {
    display: flex;
    gap: 8px;
    width: max-content;
    animation: marqueeScroll 25s linear infinite;
}
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.hero-marquee:hover { animation-play-state: paused; }

/* ---- 3D TILT MOCKUP ---- */
.hero-mockup {
    transition: transform 0.4s ease;
    will-change: transform;
}

/* ---- GLOW EFFECT ON CARDS ---- */
.feature-card,
.pricing-card,
.ai-cap-item {
    position: relative;
    overflow: hidden;
}
.feature-card::after,
.pricing-card::after,
.ai-cap-item::after {
    content: '';
    position: absolute;
    top: var(--glow-y, 50%);
    left: var(--glow-x, 50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.12) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}
.feature-card:hover::after,
.pricing-card:hover::after,
.ai-cap-item:hover::after {
    opacity: 1;
}

/* ---- GRADIENT TEXT in hero ---- */
.hero h1 span {
    display: inline;
    background: linear-gradient(135deg, #a29bfe, #74b9ff, #a29bfe);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientText 3s linear infinite;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}
@keyframes gradientText {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* ---- PULSE on CTA buttons ---- */
.btn-primary {
    position: relative;
    overflow: hidden;
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}
.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

/* ---- FLOATING BADGE animation ---- */
.hero-badge {
    animation: floatBadge 3s ease-in-out infinite;
}
@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ---- Mockup booking items slide in ---- */
.mockup-booking-item {
    animation: slideInRight 0.5s ease forwards;
    opacity: 0;
}
.mockup-booking-item:nth-child(1) { animation-delay: 0.8s; }
.mockup-booking-item:nth-child(2) { animation-delay: 1.2s; }
.mockup-booking-item:nth-child(3) { animation-delay: 1.6s; }
@keyframes slideInRight {
    from { transform: translateX(20px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ---- Mockup stat counter pulse ---- */
.mockup-stat .val {
    animation: pulseStat 2s ease-in-out infinite;
}
@keyframes pulseStat {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { display: none; }
    .steps { grid-template-columns: 1fr; }
    .steps::before { display: none; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .ai-showcase { grid-template-columns: 1fr; gap: 32px; }
    .guarantees-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    section { padding: 56px 16px; }
    .nav { padding: 0 16px; }
    .nav-links .hide-mobile { display: none; }
    .footer-inner { grid-template-columns: 1fr; gap: 24px; }
    .pricing-card.popular { transform: none; }
    .hero { padding: 80px 16px 60px; }
    .ai-stats-grid { grid-template-columns: 1fr 1fr; }
    .ai-stat-num { font-size: 36px; }
    .guarantees-grid { grid-template-columns: 1fr; }
}
