/* ═══════════════════════════════════════════
   DecideAI — Homepage Estática (SEO)
   Manter em sync com: client/src/pages/landing-v2.tsx + landing-v2.css
   ═══════════════════════════════════════════ */

/* ── Tokens ── */
:root {
    --primary: #10B981;
    --primary-dark: #059669;
    --primary-light: #34D399;
    --secondary: #8B18D9;
    --secondary-light: hsl(277, 80%, 60%);
    --bg: #000000;
    --bg-card: #171717;
    --border: #262626;
    --border-light: #333333;
    --text: #FFFFFF;
    --text-secondary: #A3A3A3;
    --text-muted: #737373;
    --gray: #64748B;
    --gray-light: #94A3B8;
    --orange: #FAA901;
    --danger: #EF4444;
    --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
    --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; position: relative; }
.section { padding: 5rem 0; position: relative; z-index: 10; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ── Reveal ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ── BG Layer ── */
.hp-bg { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.hp-bg__gradient {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(16,185,129,.07) 0%, transparent 60%),
                radial-gradient(ellipse 60% 50% at 80% 100%, rgba(139,92,246,.05) 0%, transparent 60%);
}
.hp-bg__grid {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(16,185,129,.054) 1px, transparent 1px),
                       linear-gradient(90deg, rgba(16,185,129,.054) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 25s linear infinite;
}
@keyframes gridMove { from { transform: translate(0,0); } to { transform: translate(50px,50px); } }
.hp-glow {
    position: absolute; border-radius: 50%; filter: blur(120px);
    pointer-events: none; animation: glowFloat 14s ease-in-out infinite;
}
.hp-glow--green { width: 600px; height: 600px; background: radial-gradient(circle, rgba(16,185,129,.25) 0%, transparent 70%); top: -10%; left: -20%; opacity: .5; }
.hp-glow--purple { width: 500px; height: 500px; background: radial-gradient(circle, rgba(139,92,246,.2) 0%, transparent 70%); bottom: 0; right: -15%; animation-direction: reverse; animation-duration: 18s; }
@keyframes glowFloat { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-30px) scale(1.05); } }

/* ── Header ── */
.hp-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 1rem 0; background: rgba(0,0,0,.5); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
    border-bottom: 1px solid transparent; transition: background .4s, border-color .4s;
}
.hp-header.scrolled { background: rgba(0,0,0,.85); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom-color: rgba(255,255,255,.06); }
.hp-header__inner { display: flex; justify-content: space-between; align-items: center; }
.hp-header__nav { display: flex; gap: .75rem; align-items: center; }
.hp-header__link { color: var(--gray-light); text-decoration: none; font-size: .85rem; font-weight: 500; padding: .4rem .75rem; border-radius: 8px; transition: color .3s; }
.hp-header__link:hover { color: var(--text); }
.hp-header__cta {
    padding: .55rem 1.4rem; border-radius: 50px; font-size: .85rem; font-weight: 600;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--text); text-decoration: none;
    box-shadow: 0 4px 20px rgba(16,185,129,.25); transition: transform .2s, box-shadow .2s;
}
.hp-header__cta:hover { transform: translateY(-1px); box-shadow: 0 6px 30px rgba(16,185,129,.4); }
.hp-nav-mobile-actions { display: none; }

@media (max-width: 768px) {
    .hp-nav-desktop { display: none !important; }
    .hp-nav-mobile-actions { display: flex; align-items: center; gap: .5rem; }
    .hp-nav-mobile-login { font-size: .85rem; color: var(--gray-light); padding: .4rem .75rem; }
    .hp-nav-mobile-btn { background: none; border: none; color: #fff; cursor: pointer; padding: 8px; font-size: 1.3rem; }
    .hp-nav-mobile { background: rgba(0,0,0,.98); border-top: 1px solid rgba(16,185,129,.1); padding: 16px 24px 24px; }
    .hp-nav-mobile a { display: block; padding: 12px 0; font-size: 16px; font-weight: 500; color: rgba(255,255,255,.8); border-bottom: 1px solid rgba(255,255,255,.05); }
    .hp-nav-mobile__btns { margin-top: 12px; display: flex; gap: 12px; }
    .hp-nav-mobile__btns a { flex: 1; text-align: center; padding: 10px 20px; font-size: 14px; border-radius: 9999px; display: block; border-bottom: none; }
    .hp-nav-mobile__btns .btn-login { color: #fff; border: 1px solid rgba(255,255,255,.2); }
    .hp-nav-mobile__btns .btn-trial { font-weight: 600; color: #000; background: var(--primary); }
}

/* ── HERO ── */
.hp-hero { padding-top: 0; position: relative; overflow: hidden; }
.hp-hero__banner-img { width: 100%; max-width: 1600px; height: auto; display: block; margin: 0 auto; }
.hp-hero__bottom { text-align: center; padding: 30px 1.5rem 2rem; }
.hp-hero__bottom .hp-hero__trust { justify-content: center; }
.hp-hero__cta {
    display: inline-flex; align-items: center; gap: .6rem; padding: 1rem 2.5rem;
    border-radius: 50px; font-weight: 700; font-size: 1.1rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--text); text-decoration: none; border: none; cursor: pointer;
    transition: transform .2s;
}
.hp-hero__cta:hover { transform: translateY(-2px) scale(1.02); }
.hp-hero__trust { font-size: 0.82rem; color: rgba(255,255,255,.5); margin-top: 0.75rem; }

/* ── Hero Mobile (imagem) ── */
.hp-hero-mobile { display: none; position: relative; z-index: 10; }
.hp-hero-mobile__img { width: 100%; height: auto; display: block; }
.hp-hero-mobile__cta-wrap {
    text-align: center; padding: 1.5rem 1.5rem 2rem;
    background: linear-gradient(to bottom, rgba(0,0,0,.9) 0%, var(--bg) 100%);
}
.hp-hero-mobile__cta-wrap .hp-hero__trust { justify-content: center; }

@media (max-width: 768px) {
    .hp-hero--desktop { display: none !important; }
    .hp-hero-mobile { display: block; margin-top: 0; padding-top: 0; }
    .hp-glow--green { width: 200px !important; height: 200px !important; left: -50px !important; }
    .hp-glow--purple { width: 200px !important; height: 200px !important; right: -50px !important; }
}

/* ── Gallery / Funcionalidades ── */
.hp-gallery__header { text-align: center; margin-bottom: 1.5rem; }
.hp-gallery__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 4.5vw, 3.2rem); }
.hp-gallery__subtitle { font-size: 1.15rem; color: var(--gray-light); margin: 8px auto 0; max-width: 600px; }
.hp-gallery__tabs {
    display: flex; gap: 0.75rem; overflow-x: auto; padding-bottom: 1rem;
    scrollbar-width: none; -webkit-overflow-scrolling: touch; justify-content: flex-start;
}
.hp-gallery__tabs::-webkit-scrollbar { display: none; }
.hp-gallery__tab {
    display: flex; align-items: center; gap: 0.6rem;
    padding: 0.75rem 1.25rem; border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.03);
    color: var(--gray-light); white-space: nowrap; font-weight: 500; font-size: .9rem;
    transition: all 0.3s ease; cursor: pointer;
}
.hp-gallery__tab.active {
    border-color: var(--primary); background: rgba(16,185,129,0.1);
    color: var(--text); box-shadow: 0 0 20px rgba(16,185,129,0.15);
}
.hp-gallery__tab svg { flex-shrink: 0; }
.hp-gallery__video-wrap {
    margin-top: 2rem; width: 100%; aspect-ratio: 16/9; border-radius: 24px;
    background: #050505; border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 40px 100px rgba(0,0,0,0.5); position: relative; overflow: hidden;
}
.hp-gallery__video-wrap video { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; display: block; }

/* ── Guided Demo ── */
.hp-demo { padding: 6rem 0; background: linear-gradient(180deg, #0A0A0A 0%, #0d081a 50%, #0A0A0A 100%); }
.hp-demo__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 4.5vw, 3.2rem); text-align: center; margin-bottom: 1rem; }
.hp-demo__sub { text-align: center; font-size: 1.05rem; font-weight: 300; color: var(--gray-light); max-width: 560px; margin: -0.5rem auto 2.5rem; }
.hp-gd { max-width: 480px; margin: 0 auto; position: relative; }
.hp-gd__dots { display: flex; justify-content: center; gap: 8px; margin-bottom: 1rem; }
.hp-gd__dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.1); transition: all 0.3s; }
.hp-gd__dot.active { background: var(--primary); box-shadow: 0 0 8px rgba(16,185,129,0.4); }
.hp-gd__dot.visited { background: rgba(16,185,129,0.4); }
.hp-gd__tooltip { text-align: center; margin-bottom: 0.75rem; min-height: 1.5rem; }
.hp-gd__tooltip span {
    font-size: 0.78rem; font-weight: 500; color: var(--primary);
    background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.15);
    padding: 0.3rem 0.75rem; border-radius: 99px; display: inline-block;
}
.hp-gd__wrap {
    border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 24px 48px rgba(0,0,0,0.5), 0 0 80px rgba(16,185,129,0.04);
    background: #111; position: relative; min-height: 420px;
}
.hp-gd__screen { display: none; flex-direction: column; min-height: 420px; animation: gdFade 0.35s ease; }
.hp-gd__screen.active { display: flex; }
@keyframes gdFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.hp-gd__bar { display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 1.25rem; background: #1A1A1A; border-bottom: 1px solid rgba(255,255,255,0.08); }
.hp-gd__logo { font-family: var(--font-display); font-weight: 800; font-size: 0.9rem; color: var(--primary); }
.hp-gd__user { font-size: 0.72rem; color: var(--gray); }
.hp-gd__body { flex: 1; padding: 1.25rem; display: flex; flex-direction: column; }
.hp-gd__body--center { justify-content: center; align-items: center; }
.hp-gd__avatar { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, #8B18D9, #10B981); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: #fff; }
.hp-gd__hello { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; margin-top: .75rem; }
.hp-gd__sub { font-size: 0.9rem; color: var(--gray-light); font-weight: 300; margin-top: .5rem; }
.hp-gd-btn {
    position: relative; display: inline-flex; align-items: center; justify-content: center;
    gap: 0.4rem; font-weight: 600; font-size: 0.82rem; padding: 0.6rem 1.25rem;
    border-radius: 8px; border: none; cursor: pointer; transition: all 0.2s;
}
.hp-gd-btn--green { background: var(--primary); color: #000; }
.hp-gd-btn--orange { background: rgba(250,169,1,0.15); color: var(--orange); border: 1px solid rgba(250,169,1,0.25); }
.hp-gd-btn--outline { background: transparent; color: var(--gray-light); border: 1px solid rgba(255,255,255,0.12); }
.hp-gd-pulse {
    position: absolute; inset: -4px; border-radius: inherit;
    border: 2px solid var(--primary); animation: gdPulse 1.8s ease-in-out infinite; pointer-events: none;
}
.hp-gd-pulse--orange { border-color: var(--orange); }
@keyframes gdPulse { 0%,100% { opacity: 0.6; transform: scale(1); } 50% { opacity: 0; transform: scale(1.15); } }
.hp-gd__solic {
    position: relative; display: flex; gap: 0.75rem; align-items: flex-start; padding: 0.85rem;
    border-radius: 10px; cursor: pointer; transition: border-color 0.2s, background 0.2s;
}
.hp-gd__solic--pending { border: 1px solid rgba(250,169,1,0.3); background: rgba(250,169,1,0.03); }
.hp-gd__solic--done { border: 1px solid rgba(255,255,255,0.08); }
.hp-gd__thumb { width: 48px; height: 48px; border-radius: 6px; flex-shrink: 0; border: 1px solid rgba(255,255,255,0.08); }
.hp-gd__solic-name { font-weight: 600; font-size: 0.85rem; color: #fff; margin-bottom: 2px; }
.hp-gd__solic-meta { font-size: 0.7rem; color: var(--gray); margin-bottom: 4px; }
.hp-gd__badge { font-size: 0.65rem; font-weight: 600; padding: 2px 8px; border-radius: 99px; display: inline-block; }
.hp-gd__badge--pending { background: rgba(250,169,1,0.1); color: var(--orange); }
.hp-gd__badge--done { background: rgba(16,185,129,0.1); color: var(--primary); }
.hp-gd__back { background: none; border: none; color: var(--gray); font-size: 0.78rem; cursor: pointer; padding: 0.25rem 0.5rem; border-radius: 6px; }
.hp-gd__preview-img { width: 100%; border-radius: 6px; display: block; }
.hp-gd__filename { font-size: 0.68rem; color: var(--gray); text-align: center; padding: 4px 0; }
.hp-gd__actions { display: flex; gap: 8px; margin-top: auto; }
.hp-gd__actions .hp-gd-btn { flex: 1; }
.hp-gd__confirmation { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 0.75rem; max-width: 320px; }
.hp-gd__conf-icon {
    width: 56px; height: 56px; border-radius: 50%; display: flex;
    align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 800;
}
.hp-gd__conf-icon--green { background: var(--primary); color: #000; box-shadow: 0 0 30px rgba(16,185,129,0.3); }
.hp-gd__conf-icon--blue { background: #3b82f6; color: #fff; font-size: 1.3rem; }
.hp-gd__conf-title { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; }
.hp-gd__conf-sub { font-size: 0.85rem; font-weight: 300; color: var(--gray-light); line-height: 1.6; }
.hp-gd__receipt {
    background: #171717; border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px; padding: 0.75rem 1rem; font-size: 0.75rem;
    color: var(--gray-light); text-align: left; width: 100%;
}
.hp-gd__receipt p { margin-bottom: 2px; }
.hp-gd__receipt strong { color: #fff; }
.hp-gd__timeline {
    background: #171717; border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px; padding: 0.75rem 1rem; width: 100%;
    display: flex; flex-direction: column; gap: 6px;
}
.hp-gd__tl-item { display: flex; align-items: center; gap: 8px; font-size: 0.75rem; color: var(--gray-light); }
.hp-gd__tl-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.hp-gd__change-preview { position: relative; width: fit-content; overflow: hidden; border-radius: 10px; margin: 0 auto; }
.hp-gd__change-preview img { width: 200px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.08); display: block; }
.hp-gd__pin { position: absolute; top: 35%; left: 50%; font-size: 1.2rem; transform: translate(-50%, -50%); }
.hp-gd__input {
    background: #1A1A1A; border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px; padding: 0.75rem 1rem; font-size: 0.82rem;
    color: var(--gray-light); min-height: 60px;
}
.hp-gd__cursor { animation: blink 1s step-end infinite; color: var(--primary); }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }
.hp-demo__note { text-align: center; font-size: 0.9rem; color: var(--gray); max-width: 480px; margin: 1.5rem auto 0; }

/* ── Social Proof ── */
.hp-proof { padding: 3.5rem 0; }
.hp-proof__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 4.5vw, 3.2rem); text-align: center; margin-bottom: 2rem; }
.hp-proof__grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 900px; margin: 0 auto; }
.hp-proof__card {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px; padding: 2rem; text-align: center;
}
.hp-proof__number { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.5rem, 6vw, 3.5rem); color: var(--primary); line-height: 1; }
.hp-proof__label { font-size: 1rem; color: var(--gray-light); margin-top: .5rem; }
.hp-proof__disclaimer { font-size: .8rem; color: var(--gray); text-align: center; margin-top: 2rem; }
@media (min-width: 768px) { .hp-proof__grid { grid-template-columns: repeat(3, 1fr); } }

/* ── Features ── */
.hp-features__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 4.5vw, 3.2rem); text-align: center; margin-bottom: 2.5rem; }
.hp-features__grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.hp-features__card {
    background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px; padding: 2rem; position: relative; overflow: hidden; transition: border-color .3s;
}
.hp-features__card:hover { border-color: rgba(16,185,129,0.3); }
.hp-features__card--big { grid-column: 1 / -1; }
.hp-features__card-icon { color: var(--primary); margin-bottom: 1rem; }
.hp-features__card-title { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; margin-bottom: .5rem; }
.hp-features__card-desc { font-size: .92rem; color: var(--gray-light); line-height: 1.6; }
@media (min-width: 768px) { .hp-features__grid { grid-template-columns: repeat(2, 1fr); } }

/* ── Pricing ── */
.hp-pricing { padding: 5rem 0; }
.hp-pricing__badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(139,24,217,0.15); border-radius: 999px; padding: 6px 16px; margin-bottom: 20px; font-size: 13px; font-weight: 600; color: rgb(180,120,255); }
.hp-pricing__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 16px; }
.hp-pricing__subtitle { font-size: 1.05rem; color: var(--gray-light); max-width: 550px; margin: 0 auto 32px; }
.hp-pricing__coupon {
    max-width: 520px; margin: 0 auto 28px; padding: 14px 20px;
    background: linear-gradient(135deg, rgba(139,24,217,0.15), rgba(24,217,107,0.10));
    border: 1px solid rgba(139,24,217,0.3); border-radius: 14px;
    display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center;
}
.hp-pricing__coupon-code {
    font-family: monospace; font-size: 15px; font-weight: 800; color: #fff;
    background: rgba(139,24,217,0.35); padding: 4px 12px; border-radius: 8px;
    letter-spacing: 0.05em; border: 1px dashed rgba(180,120,255,0.5);
}
.hp-pricing__toggle { display: inline-flex; border-radius: 999px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); padding: 3px; gap: 2px; }
.hp-pricing__toggle-btn {
    padding: 8px 20px; border-radius: 999px; font-size: 13px; font-weight: 600;
    border: none; cursor: pointer; transition: all .2s; background: transparent; color: var(--gray);
}
.hp-pricing__toggle-btn.active { background: var(--primary); color: #000; }
.hp-pricing__grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2rem; }
.hp-pricing__card {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px; overflow: hidden; display: flex; flex-direction: column;
}
.hp-pricing__card-bar { height: 4px; }
.hp-pricing__card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.hp-pricing__plan-header { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.hp-pricing__plan-icon {
    width: 44px; height: 44px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center; color: white;
}
.hp-pricing__plan-name { font-size: 20px; font-weight: 700; color: hsl(0,0%,92%); }
.hp-pricing__price { font-size: 36px; font-weight: 800; color: hsl(0,0%,92%); line-height: 1; }
.hp-pricing__price-period { font-size: 14px; color: hsl(0,0%,62%); margin-left: 4px; }
.hp-pricing__price-old { font-size: 18px; font-weight: 600; color: hsl(0,0%,50%); text-decoration: line-through; }
.hp-pricing__price-discount { font-size: 11px; font-weight: 700; color: rgb(180,120,255); background: rgba(139,24,217,0.2); border-radius: 6px; padding: 2px 7px; margin-left: 6px; }
.hp-pricing__coupon-note { font-size: 11px; color: rgb(180,120,255); margin-top: 4px; font-weight: 500; }
.hp-pricing__ideal {
    font-size: 13px; font-weight: 600; margin-bottom: 20px; padding: 10px 14px;
    border-radius: 10px; display: flex; align-items: center; gap: 8px;
}
.hp-pricing__features { flex: 1; margin-bottom: 20px; display: flex; flex-direction: column; gap: 2px; }
.hp-pricing__feat {
    display: flex; align-items: center; justify-content: space-between;
    padding: 7px 10px; border-radius: 8px; font-size: 13px;
}
.hp-pricing__feat-label { display: flex; align-items: center; gap: 8px; color: hsl(0,0%,62%); }
.hp-pricing__feat-value { font-size: 13px; font-weight: 500; color: hsl(0,0%,92%); }
.hp-pricing__feat.highlighted { font-weight: 600; }
.hp-pricing__cta-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; padding: 14px; font-size: 15px; font-weight: 700;
    border-radius: 10px; border: none; cursor: pointer; color: white;
    text-decoration: none; transition: opacity 0.2s;
}
.hp-pricing__cta-btn:hover { opacity: 0.9; }
@media (min-width: 768px) { .hp-pricing__grid { grid-template-columns: repeat(3, 1fr); } }

/* ── Tagline Banner ── */
.hp-tagline { padding: 0.5rem 0; text-align: center; overflow: hidden; }
.hp-tagline__text {
    font-family: var(--font-display); font-size: clamp(1.8rem, 5vw, 3.8rem);
    font-weight: 800; letter-spacing: 0.06em; line-height: 1; margin: 0;
    display: flex; justify-content: center; gap: 0.25em; white-space: nowrap;
}
.hp-tagline__word {
    background: linear-gradient(135deg, rgba(255,255,255,0.7) 0%, rgba(148,163,184,0.45) 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hp-tagline__word--accent {
    background: linear-gradient(135deg, var(--secondary) 0%, hsl(277,80%,60%) 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ── Transformation ── */
.hp-transform { padding: 8rem 0; }
.hp-transform__title { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; text-align: center; margin-bottom: 3rem; }
.hp-transform__slider {
    position: relative; width: 100%; max-width: 960px; margin: 0 auto;
    border-radius: 24px; overflow: hidden; aspect-ratio: 16/9;
    border: 1px solid rgba(255,255,255,.06); box-shadow: 0 40px 80px rgba(0,0,0,.5);
    cursor: ew-resize; user-select: none; -webkit-user-select: none;
}
.hp-transform__side { position: absolute; inset: 0; }
.hp-transform__side img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hp-transform__side--before { z-index: 2; clip-path: inset(0 50% 0 0); }
.hp-transform__handle {
    position: absolute; top: 0; bottom: 0; left: 50%;
    width: 3px; background: #fff; z-index: 10; transform: translateX(-50%);
}
.hp-transform__handle-grip {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--primary); display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(16,185,129,.4);
}
.hp-transform__hint { text-align: center; font-size: .85rem; color: var(--gray); margin-top: 1rem; }

/* ── CTA Final ── */
.hp-cta { padding: 6rem 0; text-align: center; }
.hp-cta__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1rem; line-height: 1.1; }
.hp-cta__desc { font-size: 1.1rem; color: var(--gray-light); margin-bottom: 2rem; }
.hp-cta__btn {
    display: inline-flex; align-items: center; gap: .6rem; padding: 1rem 2.5rem;
    border-radius: 50px; font-weight: 700; font-size: 1.1rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--text);
    text-decoration: none; animation: ctaPulse 2.5s ease-in-out infinite; transition: transform .2s;
}
.hp-cta__btn:hover { transform: translateY(-2px) scale(1.02); }

/* ── Back to top ── */
.hp-backtop {
    display: flex; align-items: center; gap: 0.5rem;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5); padding: 0.75rem 1.5rem; border-radius: 50px;
    cursor: pointer; font-size: 0.85rem; font-weight: 500; transition: all 0.3s;
    margin: 0 auto;
}
.hp-backtop:hover { border-color: var(--primary); color: var(--primary); }

/* ── Footer ── */
.hp-footer { padding: 48px 24px; position: relative; z-index: 10; }
.hp-footer__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 40px; margin-bottom: 40px; text-align: left; }
.hp-footer__brand-desc { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.6; max-width: 260px; margin-top: 12px; }
.hp-footer__slogan { font-size: 14px; font-weight: 700; color: rgba(255,255,255,.6); margin-top: 12px; letter-spacing: 1px; }
.hp-footer__col-title { font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.5); margin-bottom: 16px; }
.hp-footer__links { display: flex; flex-direction: column; gap: 10px; }
.hp-footer__links a { color: rgba(255,255,255,.6); font-size: 13px; transition: color .2s; }
.hp-footer__links a:hover { color: var(--primary); }
.hp-footer__bottom {
    border-top: 1px solid rgba(255,255,255,.06); padding-top: 24px;
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.hp-footer__copy { font-size: 12px; color: rgba(255,255,255,.55); margin: 0; text-align: center; width: 100%; }
.hp-footer__copy a { color: inherit; font-weight: 500; }
.hp-footer__social { display: flex; align-items: center; gap: 16px; }
.hp-footer__social a { color: rgba(255,255,255,.3); transition: color .3s; }
.hp-footer__social a:hover { color: var(--primary); }

/* ── Separator ── */
.separator { height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent); margin: 0; position: relative; z-index: 10; }

/* ── Header Dropdown ── */
.hp-header__dropdown { position: relative; }
.hp-header__dropdown-btn {
    background: none; border: none; cursor: pointer;
    color: inherit; font-size: inherit; font-weight: inherit; padding: 0;
}
.hp-header__dropdown-menu {
    display: none; position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%);
    background: hsl(0,0%,10%); border: 1px solid rgba(255,255,255,.1); border-radius: 12px;
    padding: 8px 0; min-width: 220px; z-index: 100;
    box-shadow: 0 16px 40px rgba(0,0,0,.5);
}
.hp-header__dropdown:hover .hp-header__dropdown-menu { display: block; }
.hp-header__dropdown-menu a {
    display: block; padding: 10px 20px; font-size: 13px; color: rgba(255,255,255,.7);
    transition: background .15s, color .15s; white-space: nowrap;
}
.hp-header__dropdown-menu a:hover { background: rgba(255,255,255,.05); color: var(--primary); }

/* ── Mobile nav tools group ── */
.hp-nav-mobile__group { display: flex; flex-direction: column; gap: 4px; padding: 8px 0; }
.hp-nav-mobile__group-title {
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
    color: rgba(255,255,255,.4); padding: 4px 0 8px;
}
.hp-nav-mobile__group a { font-size: 14px; padding: 6px 0; color: rgba(255,255,255,.7); }

/* ── Gallery label & glow ── */
.hp-gallery__label {
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--primary); margin-bottom: 0.75rem;
}
.hp-gallery__title-glow {
    background: linear-gradient(135deg, rgb(139,24,217), rgb(24,217,107));
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ── Social Proof desc ── */
.hp-proof__desc {
    font-size: 0.82rem; color: rgba(255,255,255,.5); margin-top: 0.5rem; line-height: 1.5;
}

/* ── Chaos: Before / After ── */
.hp-chaos__title {
    font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800;
    text-align: center; margin-bottom: 0.5rem;
}
.hp-chaos__sub {
    text-align: center; color: rgba(255,255,255,.55); font-size: 1rem; margin-bottom: 2.5rem; max-width: 600px; margin-left: auto; margin-right: auto;
}
.hp-chaos__grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
}
@media (max-width: 768px) {
    .hp-chaos__grid { grid-template-columns: 1fr; }
}
.hp-chaos__col {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px;
    padding: 2rem; display: flex; flex-direction: column; gap: 1.25rem;
}
.hp-chaos__col--before { border-color: rgba(239,68,68,.2); }
.hp-chaos__col--after { border-color: rgba(16,185,129,.2); }
.hp-chaos__col-title {
    font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; line-height: 1.4;
}
.hp-chaos__col-label {
    font-size: 1.5rem; font-weight: 800; display: block; margin-top: 0.25rem;
    color: rgba(255,255,255,.7);
}
.hp-chaos__item h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.25rem; }
.hp-chaos__item p { font-size: 0.85rem; color: rgba(255,255,255,.5); line-height: 1.5; }
.hp-chaos__item--green h4 { color: var(--primary); }

/* ── Pricing: SVG checks ── */
.hp-check { vertical-align: middle; flex-shrink: 0; }

/* ── Pricing: Expandable comparison ── */
.hp-pricing__expand {
    margin-top: 2rem; text-align: center;
}
.hp-pricing__expand-btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.7); padding: 0.75rem 1.5rem; border-radius: 50px;
    cursor: pointer; font-size: 0.9rem; font-weight: 500; transition: all 0.3s;
    list-style: none;
}
.hp-pricing__expand-btn::-webkit-details-marker { display: none; }
.hp-pricing__expand-btn:hover { border-color: var(--primary); color: var(--primary); }
.hp-pricing__expand[open] .hp-pricing__expand-btn svg { transform: rotate(180deg); }
.hp-pricing__expand-table {
    margin-top: 1.5rem; overflow-x: auto;
}
.hp-pricing__expand-table table {
    width: 100%; border-collapse: collapse; text-align: center; font-size: 0.85rem;
}
.hp-pricing__expand-table th {
    padding: 0.75rem 1rem; border-bottom: 1px solid var(--border);
    font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em;
    color: rgba(255,255,255,.6);
}
.hp-pricing__expand-table td {
    padding: 0.65rem 1rem; border-bottom: 1px solid rgba(255,255,255,.04);
    color: rgba(255,255,255,.7);
}
.hp-pricing__expand-table td:first-child {
    text-align: left; font-weight: 500; color: rgba(255,255,255,.85);
}
.hp-pricing__expand-table tbody tr:hover td {
    background: rgba(255,255,255,.02);
}

/* ── CTA Final com gradiente ── */
.hp-cta-final {
    position: relative; z-index: 10; padding: 5rem 0;
    background: linear-gradient(135deg, rgba(139,24,217,.15), rgba(24,217,107,.15));
}
.hp-cta-final__title {
    font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem); font-weight: 800;
    line-height: 1.15; margin-bottom: 1rem;
}
.hp-cta-final__desc {
    font-size: 1.15rem; color: rgba(255,255,255,.7); margin-bottom: 0.75rem;
}
.hp-cta-final__sub {
    font-size: 0.95rem; color: rgba(255,255,255,.5); margin-bottom: 2rem;
}


