/* ==========================================================================
   Botino 2.0 - Components
   ========================================================================== */

/* ---- Brand lockup ------------------------------------------------------- */
.brand { display: inline-flex; align-items: center; gap: 0.6rem; }
.brand__icon { width: 34px; height: 34px; flex: none; }
.brand__word { font-family: var(--font-display); font-weight: var(--fw-extra); font-size: 1.35rem; letter-spacing: -0.03em; color: var(--text-strong); }
.brand--on-dark .brand__word { color: #fff; }

/* ==========================================================================
   Header / navigation
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur), box-shadow var(--dur), background var(--dur);
}
.site-header.is-scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow-xs); }
.nav { display: flex; align-items: center; gap: var(--space-5); height: var(--header-h); }
.nav__menu { display: flex; align-items: center; gap: 0.35rem; margin-left: var(--space-4); flex-wrap: nowrap; }
.nav__link {
  font-size: var(--fs-sm); font-weight: var(--fw-medium); color: var(--text-default);
  padding: 0.5rem 0.7rem; border-radius: var(--r-sm); white-space: nowrap;
  transition: color var(--dur), background var(--dur);
}
.nav__link:hover { color: var(--color-primary-700); background: var(--color-primary-50); }
.nav__right { display: flex; align-items: center; gap: 0.6rem; margin-left: auto; flex-wrap: nowrap; }
.nav__signin { font-size: var(--fs-sm); font-weight: var(--fw-semibold); color: var(--text-default); padding: 0.5rem 0.6rem; white-space: nowrap; }
.nav__signin:hover { color: var(--color-primary-700); }

/* Language switcher */
.lang {
  display: inline-flex; align-items: center; border: 1px solid var(--border-strong);
  border-radius: var(--r-full); overflow: hidden; background: var(--bg);
}
.lang__btn {
  font-size: var(--fs-xs); font-weight: var(--fw-bold); letter-spacing: 0.02em;
  padding: 0.42rem 0.66rem; color: var(--text-muted);
  transition: background var(--dur), color var(--dur);
}
.lang__btn[aria-pressed="true"] { background: var(--color-primary-600); color: #fff; }
.lang__btn:not([aria-pressed="true"]):hover { background: var(--color-slate-100); color: var(--text-strong); }

/* Hamburger */
.nav__burger { display: none; width: 44px; height: 44px; border-radius: var(--r-sm); align-items: center; justify-content: center; }
.nav__burger:hover { background: var(--color-slate-100); }
.nav__burger span { display: block; width: 20px; height: 2px; background: var(--text-strong); border-radius: 2px; position: relative; transition: transform var(--dur), opacity var(--dur); }
.nav__burger span::before, .nav__burger span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--text-strong); border-radius: 2px; transition: transform var(--dur), opacity var(--dur); }
.nav__burger span::before { top: -6px; }
.nav__burger span::after { top: 6px; }
body.menu-open .nav__burger span { background: transparent; }
body.menu-open .nav__burger span::before { transform: translateY(6px) rotate(45deg); }
body.menu-open .nav__burger span::after { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: var(--z-overlay);
  background: var(--bg); padding: var(--space-6) var(--gutter);
  display: flex; flex-direction: column; gap: var(--space-2);
  transform: translateX(100%); transition: transform var(--dur) var(--ease-out);
  overflow-y: auto;
}
body.menu-open .mobile-menu { transform: translateX(0); }
.mobile-menu a.m-link { font-size: 1.2rem; font-weight: var(--fw-semibold); color: var(--text-strong); padding: 0.85rem 0; border-bottom: 1px solid var(--border); }
.mobile-menu .m-foot { margin-top: var(--space-5); display: flex; flex-direction: column; gap: var(--space-3); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; padding-top: clamp(2.5rem, 1rem + 5vw, 5rem); padding-bottom: var(--section-y); overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background: var(--grad-hero-glow); pointer-events: none; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 1rem + 4vw, 4.5rem); align-items: center; position: relative; }
.hero__eyebrow { margin-bottom: var(--space-5); }
.hero h1 { font-size: var(--fs-display); font-weight: var(--fw-extra); letter-spacing: var(--tracking-tighter); margin-bottom: var(--space-5); }
.hero h1 .grad-text { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__sub { font-size: var(--fs-lg); color: var(--text-muted); max-width: 38ch; margin-bottom: var(--space-6); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; }
.hero__note { display: flex; align-items: center; gap: 0.5rem; font-size: var(--fs-sm); color: var(--text-muted); margin-top: var(--space-5); }
.hero__note svg { width: 1.05rem; height: 1.05rem; color: var(--color-success); flex: none; }

/* Trust strip */
.trust { border-top: 1px solid var(--border); margin-top: var(--space-9); padding-top: var(--space-6); }
.trust__label { font-size: var(--fs-xs); font-weight: var(--fw-semibold); letter-spacing: var(--tracking-wide); text-transform: uppercase; color: var(--text-subtle); margin-bottom: var(--space-4); }
.trust__items { display: flex; flex-wrap: wrap; gap: 0.7rem 1.4rem; }
.trust__chip { display: inline-flex; align-items: center; gap: 0.5rem; font-size: var(--fs-sm); font-weight: var(--fw-semibold); color: var(--text-default); }
.trust__chip svg { width: 1.1rem; height: 1.1rem; color: var(--color-primary-600); flex: none; }

/* ---- Hero product composite -------------------------------------------- */
.hero__visual { position: relative; }
.mock { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }

.dash-mock { padding: 0; overflow: hidden; }
.dash-mock__bar { display: flex; align-items: center; gap: 0.45rem; padding: 0.8rem 1rem; border-bottom: 1px solid var(--border); background: var(--bg-soft); }
.dash-mock__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--color-slate-300); }
.dash-mock__title { margin-left: 0.5rem; font-size: var(--fs-xs); font-weight: var(--fw-semibold); color: var(--text-muted); }
.dash-mock__body { padding: 1.1rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.mini-card { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--r-md); padding: 0.9rem; }
.mini-card__label { font-size: var(--fs-xs); color: var(--text-muted); font-weight: var(--fw-semibold); }
.mini-card__value { font-family: var(--font-display); font-size: 1.5rem; font-weight: var(--fw-bold); color: var(--text-strong); margin-top: 0.2rem; }
.mini-card__trend { font-size: var(--fs-xs); font-weight: var(--fw-semibold); color: var(--color-success); }

.spark { display: flex; align-items: flex-end; gap: 3px; height: 38px; margin-top: 0.5rem; }
.spark span { flex: 1; background: var(--color-primary-200); border-radius: 3px 3px 0 0; }
.spark span.hi { background: var(--color-primary-600); }

/* Floating widget */
.float-widget {
  position: absolute; right: -18px; bottom: -26px; width: 230px;
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl); padding: 0.9rem; animation: floaty 6s var(--ease-in-out) infinite;
}
.float-voice {
  position: absolute; left: -28px; top: 38px; width: 196px;
  background: var(--grad-ink); color: #fff; border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl); padding: 0.9rem 1rem; animation: floaty 7s var(--ease-in-out) infinite reverse;
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@media (prefers-reduced-motion: reduce) { .float-widget, .float-voice { animation: none; } }

.chat-line { display: flex; gap: 0.5rem; margin-bottom: 0.55rem; align-items: flex-end; }
.chat-bubble { font-size: var(--fs-xs); line-height: 1.4; padding: 0.5rem 0.7rem; border-radius: 12px; max-width: 82%; }
.chat-bubble--bot { background: var(--color-slate-100); color: var(--text-default); border-bottom-left-radius: 4px; }
.chat-bubble--user { background: var(--color-primary-600); color: #fff; margin-left: auto; border-bottom-right-radius: 4px; }
.chat-avatar { width: 22px; height: 22px; border-radius: 50%; background: var(--grad-brand); flex: none; }

/* Voice waveform */
.wave { display: flex; align-items: center; gap: 3px; height: 30px; }
.wave span { width: 3px; border-radius: 3px; background: var(--color-teal-400); animation: waveb 1.1s var(--ease-in-out) infinite; }
@keyframes waveb { 0%,100% { height: 7px; } 50% { height: 26px; } }
@media (prefers-reduced-motion: reduce) { .wave span { height: 16px !important; animation: none; } }

/* ==========================================================================
   Feature / use-case / demo cards
   ========================================================================== */
.feature-icon {
  width: 48px; height: 48px; border-radius: var(--r-md); display: grid; place-items: center;
  background: var(--color-primary-50); color: var(--color-primary-600); margin-bottom: var(--space-4);
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-icon--teal { background: rgba(20,196,184,0.12); color: var(--color-teal-600); }
.feature-icon--violet { background: rgba(139,92,246,0.12); color: var(--color-violet-700); }
.feature-icon--warm { background: rgba(255,122,69,0.12); color: var(--color-warm-500); }
.card h3 { font-size: var(--fs-h4); margin-bottom: var(--space-2); }
.card p { color: var(--text-muted); font-size: var(--fs-sm); }
.card__list { margin-top: var(--space-3); display: flex; flex-direction: column; gap: 0.4rem; }
.card__list li { display: flex; gap: 0.5rem; font-size: var(--fs-sm); color: var(--text-default); }
.card__list svg { width: 1.05rem; height: 1.05rem; color: var(--color-success); flex: none; margin-top: 0.15rem; }

.usecase { display: flex; flex-direction: column; gap: var(--space-3); }
.usecase__q { margin-top: auto; font-size: var(--fs-sm); font-style: italic; color: var(--text-default); background: var(--bg-soft); border-left: 3px solid var(--color-primary-300); padding: 0.6rem 0.8rem; border-radius: 0 var(--r-sm) var(--r-sm) 0; }

.demo-card { display: flex; flex-direction: column; gap: var(--space-3); position: relative; overflow: hidden; }
.demo-card__top { display: flex; align-items: center; gap: 0.75rem; }
.demo-avatar { width: 46px; height: 46px; border-radius: var(--r-md); flex: none; display: grid; place-items: center; color: #fff; font-weight: var(--fw-bold); }
.demo-card__tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.demo-card__tags .badge { font-size: 0.72rem; padding: 0.22rem 0.5rem; }

/* ==========================================================================
   Solution diagram
   ========================================================================== */
.flow { display: grid; gap: var(--space-4); align-items: stretch; }
.flow__node {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: var(--space-5); box-shadow: var(--shadow-sm); text-align: center;
}
.flow__node h4 { font-size: var(--fs-h4); margin-bottom: 0.4rem; }
.flow__node p { font-size: var(--fs-sm); color: var(--text-muted); }
.flow__node--mid { background: var(--grad-brand); color: #fff; border: none; box-shadow: var(--shadow-brand); }
.flow__node--mid h4 { color: #fff; }
.flow__node--mid p { color: rgba(255,255,255,0.85); }
.flow__arrow { display: grid; place-items: center; color: var(--color-slate-400); }
.flow__arrow svg { width: 28px; height: 28px; }
.flow__inputs { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-3); }
.flow__inputs .flow__node { padding: var(--space-4); }

/* ==========================================================================
   How it works - timeline
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--space-4); position: relative; }
.steps::before { content: ""; position: absolute; top: 22px; left: 6%; right: 6%; height: 2px; background: linear-gradient(90deg, var(--color-primary-200), var(--color-violet-500)); z-index: 0; }
.step { position: relative; z-index: 1; text-align: center; }
.step__num { width: 46px; height: 46px; margin: 0 auto var(--space-3); border-radius: 50%; display: grid; place-items: center; background: var(--bg); border: 2px solid var(--color-primary-300); color: var(--color-primary-700); font-family: var(--font-display); font-weight: var(--fw-bold); box-shadow: var(--shadow-sm); }
.step h4 { font-size: var(--fs-sm); margin-bottom: 0.3rem; }
.step p { font-size: var(--fs-xs); color: var(--text-muted); }

/* ==========================================================================
   Integrations + code snippet
   ========================================================================== */
.logo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); }
.logo-tile { display: flex; align-items: center; justify-content: center; gap: 0.6rem; padding: 1.1rem; background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-md); font-weight: var(--fw-bold); color: var(--text-default); font-size: var(--fs-sm); transition: border-color var(--dur), transform var(--dur), box-shadow var(--dur); }
.logo-tile:hover { border-color: var(--color-primary-200); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.logo-tile .glyph { width: 26px; height: 26px; border-radius: 7px; display: grid; place-items: center; color: #fff; font-size: 0.85rem; flex: none; }

.code-block { background: #0E1626; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,0.08); }
.code-block__bar { display: flex; align-items: center; justify-content: space-between; padding: 0.6rem 0.9rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.code-block__dots { display: flex; gap: 0.4rem; }
.code-block__dots i { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.code-block__copy { font-size: var(--fs-xs); font-weight: var(--fw-semibold); color: #9DAAC4; display: inline-flex; gap: 0.35rem; align-items: center; }
.code-block__copy:hover { color: #fff; }
.code-block pre { margin: 0; padding: 1rem 1.1rem; overflow-x: auto; }
.code-block code { font-family: var(--font-mono); font-size: 0.82rem; line-height: 1.7; color: #C7D2FF; white-space: pre; }
.tok-tag { color: #7C9CFF; }
.tok-attr { color: #2CE0C3; }
.tok-str { color: #FFC68A; }

/* ==========================================================================
   Pricing
   ========================================================================== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); align-items: start; }
.price-card { display: flex; flex-direction: column; gap: var(--space-4); position: relative; }
.price-card--featured { border-color: var(--color-primary-300); box-shadow: var(--shadow-lg); }
.price-card--featured::before { content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; background: var(--grad-brand); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.price-card__tag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); }
.price-card__name { font-size: var(--fs-h4); font-weight: var(--fw-bold); color: var(--text-strong); }
.price-card__desc { font-size: var(--fs-sm); color: var(--text-muted); min-height: 2.6em; }
.price-card__price { display: flex; align-items: baseline; gap: 0.3rem; }
.price-card__amt { font-family: var(--font-display); font-size: 2.6rem; font-weight: var(--fw-extra); color: var(--text-strong); letter-spacing: -0.03em; }
.price-card__per { font-size: var(--fs-sm); color: var(--text-muted); }
.price-card__feats { display: flex; flex-direction: column; gap: 0.6rem; }
.price-card__feats li { display: flex; gap: 0.55rem; font-size: var(--fs-sm); }
.price-card__feats svg { width: 1.1rem; height: 1.1rem; color: var(--color-primary-600); flex: none; margin-top: 0.12rem; }
.price-note { text-align: center; font-size: var(--fs-sm); color: var(--text-muted); margin-top: var(--space-5); }

/* ==========================================================================
   Comparison table
   ========================================================================== */
.compare { width: 100%; border-collapse: separate; border-spacing: 0; background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.compare th, .compare td { padding: 0.95rem 1.15rem; text-align: center; vertical-align: middle; font-size: var(--fs-sm); border-bottom: 1px solid var(--border); }
.compare th:first-child, .compare td:first-child { text-align: left; width: 34%; }
.compare thead th { font-family: var(--font-display); font-weight: var(--fw-bold); color: var(--text-muted); background: var(--bg-soft); font-size: var(--fs-xs); letter-spacing: 0.01em; padding-block: 1.05rem; }
.compare thead th:first-child { color: var(--text-strong); font-size: var(--fs-sm); }
.compare tbody tr:nth-child(even) td { background: var(--bg-softer); }
.compare tbody tr:hover td { background: var(--color-slate-50); }
.compare tbody td:first-child { font-weight: var(--fw-semibold); color: var(--text-default); text-align: left; }
.compare tr:last-child td { border-bottom: none; }

/* Highlighted Botino column band */
.compare thead th.col-botino { background: var(--grad-brand); color: #fff; font-size: var(--fs-sm); text-shadow: 0 1px 2px rgba(20,30,60,.25); }
.compare td.col-botino,
.compare tbody tr:nth-child(even) td.col-botino,
.compare tbody tr:hover td.col-botino { background: var(--color-primary-50); box-shadow: inset 2px 0 0 var(--color-primary-200), inset -2px 0 0 var(--color-primary-200); }
.compare tr:last-child td.col-botino { box-shadow: inset 2px 0 0 var(--color-primary-200), inset -2px 0 0 var(--color-primary-200), inset 0 -2px 0 var(--color-primary-200); }

/* Value markers */
.compare .yes { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: var(--r-full); background: var(--color-success-bg); color: var(--color-success); }
.compare .yes svg { width: 15px; height: 15px; }
.compare .no { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: var(--r-full); background: var(--color-slate-100); color: var(--color-slate-400); font-weight: var(--fw-bold); }
.compare .meh { display: inline-flex; align-items: center; gap: .35rem; padding: .22rem .65rem; border-radius: var(--r-full); background: var(--color-warning-bg); color: var(--color-warning); font-size: var(--fs-xs); font-weight: var(--fw-semibold); white-space: nowrap; }
.compare .meh::before { content: ""; width: 6px; height: 6px; border-radius: var(--r-full); background: var(--color-warning); flex: none; }
/* Botino column: filled brand checks for emphasis */
.compare td.col-botino .yes { background: var(--color-primary-600); color: #fff; box-shadow: var(--shadow-brand); }

/* ==========================================================================
   FAQ accordion + tabs
   ========================================================================== */
.faq { display: grid; gap: var(--space-3); }
.faq__item { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; transition: border-color var(--dur), box-shadow var(--dur); }
.faq__item.is-open { border-color: var(--color-primary-200); box-shadow: var(--shadow-sm); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 1.3rem; font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: var(--fs-body); color: var(--text-strong); text-align: left; }
.faq__icon { width: 26px; height: 26px; flex: none; border-radius: 50%; display: grid; place-items: center; background: var(--color-primary-50); color: var(--color-primary-600); transition: transform var(--dur), background var(--dur); }
.faq__item.is-open .faq__icon { transform: rotate(45deg); background: var(--color-primary-600); color: #fff; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height var(--dur) var(--ease-in-out); }
.faq__a-inner { padding: 0 1.3rem 1.2rem; color: var(--text-muted); font-size: var(--fs-sm); }

.tabs { display: inline-flex; gap: 0.3rem; padding: 0.3rem; background: var(--color-slate-100); border-radius: var(--r-full); }
.tab { font-size: var(--fs-sm); font-weight: var(--fw-semibold); padding: 0.55rem 1rem; border-radius: var(--r-full); color: var(--text-muted); transition: background var(--dur), color var(--dur); }
.tab[aria-selected="true"] { background: var(--bg); color: var(--color-primary-700); box-shadow: var(--shadow-xs); }
.tabpanel { display: none; }
.tabpanel.is-active { display: block; animation: fadeIn var(--dur) var(--ease-out); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* ==========================================================================
   Forms
   ========================================================================== */
.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: var(--space-4); }
.field label { font-size: var(--fs-sm); font-weight: var(--fw-semibold); color: var(--text-default); }
.input, .textarea {
  width: 100%; padding: 0.8rem 0.95rem; font-size: var(--fs-sm);
  background: var(--bg); border: 1px solid var(--border-strong); border-radius: var(--r-sm);
  transition: border-color var(--dur), box-shadow var(--dur);
}
.input::placeholder, .textarea::placeholder { color: var(--text-subtle); }
.input:focus, .textarea:focus { outline: none; border-color: var(--color-primary-500); box-shadow: var(--ring-focus); }
.field--error .input, .field--error .textarea { border-color: var(--color-danger); }
.field__msg { font-size: var(--fs-xs); display: none; }
.field--error .field__msg { display: block; color: var(--color-danger); }
.form-success { display: none; align-items: center; gap: 0.6rem; padding: 0.9rem 1.1rem; background: var(--color-success-bg); color: var(--color-success); border-radius: var(--r-sm); font-size: var(--fs-sm); font-weight: var(--fw-semibold); }
.form-success.is-shown { display: flex; }
.form-success svg { width: 1.2rem; height: 1.2rem; flex: none; }

/* ==========================================================================
   CTA band (shared) - landing final CTA + blog CTA
   ========================================================================== */
.cta-band {
  position: relative; overflow: hidden; isolation: isolate;
  background: var(--grad-ink);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-2xl);
  padding: clamp(2.75rem, 1.5rem + 5vw, 5rem) clamp(1.5rem, 0.5rem + 4vw, 4rem);
  box-shadow: var(--shadow-xl);
  text-align: center;
}
/* dotted texture + layered colour glow */
.cta-band::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(55% 75% at 88% -10%, rgba(44,224,195,0.22), transparent 60%),
    radial-gradient(60% 80% at 5% 115%, rgba(109,74,242,0.45), transparent 55%);
}
.cta-band::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: 0.5;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.10) 1px, transparent 0);
  background-size: 26px 26px;
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 70%);
  mask-image: linear-gradient(180deg, #000, transparent 70%);
}
.cta-band__inner { position: relative; max-width: 620px; margin-inline: auto; display: flex; flex-direction: column; align-items: center; }
.cta-band__eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: var(--fs-xs); font-weight: var(--fw-bold); letter-spacing: var(--tracking-wide); text-transform: uppercase;
  color: var(--color-teal-400); background: rgba(44,224,195,0.10);
  border: 1px solid rgba(44,224,195,0.22);
  padding: 0.4rem 0.85rem; border-radius: var(--r-full); margin-bottom: var(--space-5);
}
.cta-band__eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--color-teal-400); box-shadow: 0 0 0 3px rgba(44,224,195,0.18); }
.cta-band__title { color: #fff; font-size: var(--fs-h1); letter-spacing: var(--tracking-tight); max-width: 18ch; }
.cta-band__sub { color: rgba(255,255,255,0.82); font-size: var(--fs-lg); max-width: 48ch; margin-top: var(--space-4); }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; margin-top: var(--space-7); }
.cta-band__note { display: inline-flex; align-items: center; gap: 0.5rem; font-size: var(--fs-sm); color: var(--text-on-dark-muted); margin-top: var(--space-5); }
.cta-band__note svg { width: 1.05rem; height: 1.05rem; color: var(--color-teal-400); flex: none; }
/* decorative waveform motif */
.cta-band__wave { position: absolute; right: clamp(-30px, -2vw, -10px); bottom: clamp(-22px, -2vw, -8px); display: flex; align-items: flex-end; gap: 7px; height: 120px; opacity: 0.16; z-index: -1; pointer-events: none; }
.cta-band__wave span { width: 9px; border-radius: 6px 6px 0 0; background: #fff; }
.cta-band--grad-cta .btn--grad { box-shadow: 0 16px 40px -12px rgba(59,91,252,0.65); }
@media (max-width: 640px) { .cta-band__wave { display: none; } }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--grad-ink); color: var(--text-on-dark-muted); padding-block: var(--space-9) var(--space-6); }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: var(--space-6); }
.footer__about { max-width: 30ch; font-size: var(--fs-sm); margin-top: var(--space-4); }
.footer h5 { font-family: var(--font-display); font-size: var(--fs-sm); font-weight: var(--fw-bold); color: #fff; letter-spacing: 0.02em; margin-bottom: var(--space-4); }
.footer-col a { display: block; font-size: var(--fs-sm); padding: 0.32rem 0; color: var(--text-on-dark-muted); transition: color var(--dur); }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); flex-wrap: wrap; margin-top: var(--space-8); padding-top: var(--space-5); border-top: 1px solid var(--border-on-dark); font-size: var(--fs-sm); }
.footer-social { display: flex; gap: 0.5rem; }
.footer-credit { font-size: var(--fs-sm); color: var(--text-on-dark-muted); }
.footer-credit a { color: #fff; font-weight: var(--fw-semibold); text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; transition: color var(--dur); }
.footer-credit a:hover { color: var(--color-teal-400); }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,0.07); border: 1px solid var(--border-on-dark); color: var(--text-on-dark); transition: background var(--dur); }
.footer-social a:hover { background: rgba(255,255,255,0.16); }
.footer .lang { background: transparent; border-color: var(--border-on-dark); }
.footer .lang__btn { color: var(--text-on-dark-muted); }
.footer .lang__btn[aria-pressed="true"] { background: rgba(255,255,255,0.16); color: #fff; }

/* ==========================================================================
   Modal (demo) + cookie notice
   ========================================================================== */
.modal-overlay { position: fixed; inset: 0; z-index: var(--z-modal); background: rgba(11,18,32,0.55); backdrop-filter: blur(4px); display: none; align-items: center; justify-content: center; padding: var(--gutter); opacity: 0; transition: opacity var(--dur); }
.modal-overlay.is-open { display: flex; opacity: 1; }
.modal { background: var(--bg); border-radius: var(--r-xl); max-width: 440px; width: 100%; box-shadow: var(--shadow-xl); overflow: hidden; transform: translateY(12px) scale(0.98); transition: transform var(--dur) var(--ease-out); }
.modal-overlay.is-open .modal { transform: none; }
.modal__head { display: flex; align-items: center; gap: 0.8rem; padding: 1.2rem 1.3rem; border-bottom: 1px solid var(--border); }
.modal__close { margin-left: auto; width: 36px; height: 36px; border-radius: var(--r-sm); display: grid; place-items: center; color: var(--text-muted); }
.modal__close:hover { background: var(--color-slate-100); color: var(--text-strong); }
.modal__body { padding: 1.3rem; }

.cookie {
  position: fixed; left: var(--gutter); bottom: var(--gutter); z-index: var(--z-overlay);
  max-width: 420px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl); padding: 1.1rem 1.2rem; display: flex; flex-direction: column; gap: 0.8rem;
  transform: translateY(140%); transition: transform var(--dur-slow) var(--ease-out);
}
.cookie.is-shown { transform: none; }
.cookie p { font-size: var(--fs-sm); color: var(--text-muted); }
.cookie__row { display: flex; gap: 0.6rem; }

/* ==========================================================================
   Phase 2 app preview
   ========================================================================== */
.app-shot { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow-md); overflow: hidden; }
.app-shot__bar { display: flex; align-items: center; gap: 0.5rem; padding: 0.7rem 0.9rem; border-bottom: 1px solid var(--border); background: var(--bg-soft); }
.app-shot__bar .t { margin-left: 0.4rem; font-size: var(--fs-xs); font-weight: var(--fw-semibold); color: var(--text-muted); }
.app-shot__body { padding: 1.1rem; }
.app-row { display: flex; align-items: center; justify-content: space-between; padding: 0.7rem 0.85rem; border: 1px solid var(--border); border-radius: var(--r-sm); margin-bottom: 0.55rem; background: var(--bg); }
.app-row__l { display: flex; align-items: center; gap: 0.65rem; font-size: var(--fs-sm); font-weight: var(--fw-semibold); color: var(--text-strong); }
.app-dot { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; color: #fff; flex: none; font-size: 0.8rem; }
.kpi-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.6rem; margin-bottom: 0.9rem; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .steps { grid-template-columns: repeat(3, 1fr); gap: var(--space-6) var(--space-4); }
  .steps::before { display: none; }
}
@media (max-width: 900px) {
  .nav__menu, .nav__signin, .nav .lang { display: none; }
  .nav__burger { display: flex; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { margin-top: var(--space-7); max-width: 460px; }
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .cols-3 { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .flow__inputs { grid-template-columns: 1fr; }
  .compare-wrap { overflow-x: auto; }
  .compare { min-width: 640px; }
}
@media (max-width: 600px) {
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .dash-mock__body { grid-template-columns: 1fr 1fr; }
  .float-widget { right: -6px; width: 200px; }
  .float-voice { left: -6px; width: 170px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
