/* ========================================================================
   Projektų Galia — light pastel theme
   - Background: warm cream (#F6F2EE)
   - Accent: pastel purple (#A78BFA / #C4B5FD)
   - Headings: Instrument Serif (italic accent)
   - Body: Geist
   ======================================================================== */

:root {
  --bg: #F6F2EE;
  --bg-2: #FBF8F4;
  --bg-3: #EFE9E2;
  --card: #FFFFFF;
  --line: rgba(20, 14, 30, 0.10);
  --line-2: rgba(20, 14, 30, 0.06);
  --ink: #1A1320;
  --ink-2: #3A3145;
  --ink-3: #6B6075;
  --ink-4: #9A8FA5;
  --accent: #7C3AED;
  --accent-2: #A78BFA;
  --accent-3: #C4B5FD;
  --accent-soft: #EDE4FF;
  --ok: #047857;
  --warn: #B45309;
  --shadow-sm: 0 1px 2px rgba(20, 14, 30, .04), 0 1px 1px rgba(20, 14, 30, .03);
  --shadow-md: 0 6px 24px -8px rgba(124, 58, 237, .12), 0 2px 6px rgba(20, 14, 30, .05);
  --shadow-lg: 0 20px 60px -20px rgba(124, 58, 237, .18), 0 4px 12px rgba(20, 14, 30, .06);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --font-display: "Instrument Serif", "Geist", Georgia, serif;
  --font-body: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --wrap: 1240px;
  --wrap-narrow: 820px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg, video { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
  line-height: 1.1;
}

h1 {
  font-size: clamp(38px, 6vw, 68px);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
h2 {
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.015em;
  line-height: 1.1;
}
h3 {
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.2;
}
h4 {
  font-size: 16px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0;
}

p { margin: 0; color: var(--ink-2); }

.it { font-style: italic; color: var(--accent); font-family: var(--font-display); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 12px;
  background: var(--accent-soft);
  border-radius: 999px;
}

.hero-eyebrow { background: rgba(255, 255, 255, .65); color: var(--accent); border: 1px solid var(--line-2); }

.lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 52ch;
}

.link {
  color: var(--accent);
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease);
}
.link:hover { border-bottom-color: var(--accent); }

/* ========== LAYOUT ========== */
.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}
.wrap-narrow {
  max-width: var(--wrap-narrow);
  margin: 0 auto;
}

.section { padding: 96px 0; }
.section-tight { padding: 56px 0; }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}
.section-head .right { display: flex; flex-direction: column; justify-content: flex-end; }

@media (max-width: 820px) {
  .section { padding: 64px 0; }
  .section-tight { padding: 40px 0; }
  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 36px; }
}

/* ========== NAV ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 242, 238, 0.82);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border-bottom: 1px solid var(--line-2);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 68px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.brand .word { font-style: italic; color: var(--accent); }

.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 14px;
  color: var(--ink-2);
  border-radius: 999px;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-links a:hover { color: var(--ink); background: var(--bg-3); }
.nav-links a.is-active { color: var(--accent); background: var(--accent-soft); }

.nav-right { display: flex; align-items: center; gap: 12px; }

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  background: var(--bg-3);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-3);
}
.lang-switch button {
  padding: 4px 8px;
  border-radius: 999px;
  font-weight: 500;
  color: var(--ink-3);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.lang-switch button.is-active { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.lang-switch span { opacity: .4; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 12px;
  border: 1px solid var(--line);
  position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  position: absolute;
  left: 11px;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  transition: transform .25s var(--ease), top .25s var(--ease);
}
.nav-toggle span { top: 50%; transform: translateY(-50%); }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.is-open span::after { top: 0; transform: rotate(-45deg); }

.mobile-menu {
  display: none;
  padding: 12px 24px 24px;
  background: var(--bg);
  border-bottom: 1px solid var(--line-2);
  position: sticky;
  top: 68px;
  z-index: 49;
}
.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line-2);
  font-size: 18px;
  color: var(--ink);
}
.mobile-menu a span { color: var(--accent); }
.mobile-menu .menu-cta {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .lang-switch { display: none; }
  .nav-right .btn-accent,
  .nav-right .btn-primary { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .mobile-menu.is-open { display: block; }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: transform .2s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-accent,
.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-accent:hover,
.btn-primary:hover {
  background: var(--accent);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: #fff; border-color: var(--accent-3); }

.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }
.arrow { display: inline-block; }

/* ========== HERO ========== */
.hero {
  padding: 56px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--accent-soft) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-lede {
  margin-top: 24px;
  font-size: 18px;
  color: var(--ink-2);
  max-width: 52ch;
  line-height: 1.6;
}
.hero-cta {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-meta {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  color: var(--ink-3);
  font-size: 13px;
}
.hero-meta > div { display: inline-flex; align-items: center; gap: 8px; }
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
}

@media (max-width: 900px) {
  .hero { padding: 40px 0 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

h1 { margin-top: 24px; }

/* ========== HERO VISUAL (LIVE byla card) ========== */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-visual-inner {
  width: 100%;
  max-width: 480px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hv-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line-2);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  text-transform: uppercase;
}
.dots { display: inline-flex; gap: 5px; }
.dots span {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--line);
}
.dots span:nth-child(1) { background: #FCA5A5; }
.dots span:nth-child(2) { background: #FCD34D; }
.dots span:nth-child(3) { background: #6EE7B7; }

.live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #B91C1C;
  font-weight: 600;
}
.live::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #DC2626;
  box-shadow: 0 0 0 0 rgba(220, 38, 38, .55);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(220, 38, 38, .55); }
  70% { box-shadow: 0 0 0 8px rgba(220, 38, 38, 0); }
  100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}

.hv-flow { padding: 16px 18px; display: flex; flex-direction: column; gap: 6px; }
.hv-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: var(--bg-2);
  border: 1px solid var(--line-2);
}
.hv-row .node {
  display: inline-grid;
  place-items: center;
  width: 32px; height: 32px;
  border-radius: 10px;
  background: var(--bg-3);
  color: var(--ink-3);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
}
.hv-row .label {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 14px;
  color: var(--ink);
}
.hv-row .label small {
  font-size: 12px;
  color: var(--ink-3);
}
.hv-row .badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--bg-3);
  color: var(--ink-3);
  text-transform: uppercase;
}
.hv-row.done .node { background: #D1FAE5; color: #047857; }
.hv-row.done .badge { background: #D1FAE5; color: #047857; }
.hv-row:not(.done):not(.pending) .node { background: var(--accent-soft); color: var(--accent); }
.hv-row:not(.done):not(.pending) .badge { background: var(--accent-soft); color: var(--accent); }
.hv-row.pending .node { background: var(--bg-3); color: var(--ink-4); }
.hv-row.pending .badge { background: transparent; border: 1px dashed var(--line); color: var(--ink-4); }

.hv-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-top: 1px solid var(--line-2);
  background: var(--bg-2);
  font-size: 13px;
  color: var(--ink-3);
}
.hv-foot strong { color: var(--ink); font-weight: 600; }


/* ========== TRUST STRIP ========== */
.trust-strip {
  padding: 24px 0;
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  background: var(--bg-2);
}
.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-stat .num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}
.trust-stat .lbl {
  margin-top: 6px;
  font-size: 13px;
  color: var(--ink-3);
}
@media (max-width: 720px) {
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 20px 16px; }
}

/* ========== INTEGRATIONS ========== */
.integ { padding: 64px 0; }
.integ-h {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 28px;
}
.integ-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
}
.integ-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: #fff;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink-2);
}

/* ========== FEATURE CARDS ========== */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feat-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-2);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  display: flex;
  flex-direction: column;
}
.feat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-3);
}
.feat-viz {
  height: 200px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line-2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.feat-body { padding: 22px 24px 26px; }
.feat-body h3 { margin-bottom: 10px; }
.feat-body p { font-size: 14px; color: var(--ink-3); }

.viz-rows {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.viz-row {
  display: grid;
  grid-template-columns: 18px 1fr 40px;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--line-2);
  font-size: 12px;
  color: var(--ink-3);
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}
.viz-row .vn {
  width: 8px; height: 8px;
  border-radius: 2px;
  background: var(--bg-3);
}
.viz-row .vbar {
  height: 4px;
  border-radius: 999px;
  background: var(--bg-3);
}
.viz-row.hi { border-color: var(--accent-3); background: var(--accent-soft); color: var(--accent); }
.viz-row.hi .vn { background: var(--accent); }
.viz-row.hi .vbar { background: var(--accent-2); }

.viz-chart { width: 100%; }
.viz-chart svg { width: 100%; height: 100%; }

.viz-nodes { width: 100%; }
.workflow-svg { width: 100%; height: 100%; }
.workflow-svg .line { stroke: var(--line); stroke-width: 1.5; fill: none; }
.workflow-svg .line.active { stroke: var(--accent-2); stroke-dasharray: 6 4; animation: dash 1.4s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -20; } }
.workflow-svg .node { fill: #fff; stroke: var(--line); stroke-width: 1.5; }
.workflow-svg .node.hi { fill: var(--accent); stroke: var(--accent); }
.workflow-svg text {
  font-family: var(--font-body);
  font-size: 10px;
  fill: var(--ink-3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 900px) { .feat-grid { grid-template-columns: 1fr; } }

/* ========== WHY (AUTHORITY) ========== */
.why {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 56px;
  align-items: start;
}
.why-h p { margin-top: 24px; max-width: 38ch; }
.why-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.why-item {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.why-item:hover { border-color: var(--accent-3); transform: translateY(-2px); }
.why-item .idx {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--accent);
  font-style: italic;
}
.why-item h3 { font-size: 18px; margin-bottom: 6px; }
.why-item p { font-size: 14px; color: var(--ink-3); }

@media (max-width: 900px) {
  .why { grid-template-columns: 1fr; gap: 32px; }
  .why-list { grid-template-columns: 1fr; }
}

/* ========== SERVICES GRID ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.svc-card {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 28px 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  min-height: 260px;
}
.svc-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-3);
}
.svc-card .num {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.svc-card h3 { font-size: 22px; margin-bottom: 8px; }
.svc-card p { font-size: 14px; color: var(--ink-3); line-height: 1.55; }
.meta { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: var(--bg-3);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-2);
}
.more {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.more .arrow { transition: transform .25s var(--ease); }
.svc-card:hover .more .arrow { transform: translateX(3px); }

@media (max-width: 820px) { .services-grid { grid-template-columns: 1fr; } }

/* ========== PROCESS ========== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.process-step {
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 180px;
}
.process-step .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.step-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-style: italic;
  color: var(--accent);
  line-height: 1;
}
.step-tag {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 4px 10px;
  background: #fff;
  border-radius: 999px;
  border: 1px solid var(--line-2);
}
.process-step h3 { font-size: 18px; margin-bottom: 6px; }
.process-step p { font-size: 14px; color: var(--ink-3); }

@media (max-width: 900px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .process-grid { grid-template-columns: 1fr; } }

/* ========== SEO GRID ========== */
.seo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.seo-cell {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
  min-height: 150px;
}
.seo-cell:hover {
  border-color: var(--accent-3);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.seo-loc {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.seo-cell h4 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--ink);
}
.seo-arrow {
  margin-top: auto;
  font-size: 13px;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.seo-cell:hover .seo-arrow { color: var(--accent); }

@media (max-width: 900px) { .seo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .seo-grid { grid-template-columns: 1fr; } }

/* ========== FAQ ========== */
.faq {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 56px;
  align-items: start;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s var(--ease);
}
.faq-item.is-open { border-color: var(--accent-3); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  padding: 18px 22px;
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
}
.faq-q .icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.faq-q .icon::before,
.faq-q .icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 1.5px;
  background: var(--accent);
  transition: transform .3s var(--ease);
}
.faq-q .icon::after { transform: rotate(90deg); }
.faq-item.is-open .faq-q .icon::after { transform: rotate(0); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s var(--ease);
}
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner {
  overflow: hidden;
  padding: 0 22px;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.6;
}
.faq-item.is-open .faq-a-inner { padding: 0 22px 22px; }

@media (max-width: 900px) {
  .faq { grid-template-columns: 1fr; gap: 28px; }
}

/* ========== CTA BANNER ========== */
.cta-banner {
  background: linear-gradient(135deg, #fff 0%, var(--accent-soft) 100%);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-xl);
  padding: 56px;
  position: relative;
  overflow: hidden;
}
.cta-banner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-banner-right { display: flex; align-items: end; justify-content: flex-end; }
.cta-channels {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 380px;
}
.cta-channel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: rgba(255, 255, 255, .85);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.cta-channel:hover { background: #fff; border-color: var(--accent-3); transform: translateX(2px); }
.ch-label { display: flex; flex-direction: column; }
.ch-label small { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); }
.ch-label strong { font-weight: 500; color: var(--ink); }
.cta-channel .arrow { color: var(--accent); }

@media (max-width: 820px) {
  .cta-banner { padding: 36px 28px; }
  .cta-banner-inner { grid-template-columns: 1fr; gap: 32px; }
  .cta-banner-right { justify-content: flex-start; }
  .cta-channels { max-width: 100%; }
}

/* ========== FOOTER ========== */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line-2);
  padding: 64px 0 24px;
  margin-top: 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand h3 {
  font-size: 28px;
  line-height: 1.15;
  margin-bottom: 14px;
}
.footer-brand h3 em,
.footer-brand h3 .it {
  font-style: italic;
  color: var(--accent);
}
.footer-brand p { font-size: 14px; color: var(--ink-3); max-width: 36ch; }
.footer h4 {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
  margin-bottom: 16px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer ul li, .footer ul li a { font-size: 14px; color: var(--ink-2); }
.footer ul li a { transition: color .2s var(--ease); }
.footer ul li a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--line-2);
  font-size: 12px;
  color: var(--ink-4);
}
@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ========== MOBILE STICKY CTA ========== */
.mobile-cta {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  padding: 14px 20px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 12px 32px -10px rgba(124, 58, 237, .35), 0 2px 8px rgba(20, 14, 30, .12);
}
@media (max-width: 720px) {
  .mobile-cta { display: flex; }
  body { padding-bottom: 72px; }
}

/* ========== BREADCRUMBS / PROSE / TOC / TLDR ========== */
.bread {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 13px;
  color: var(--ink-3);
  margin-bottom: 24px;
}
.bread a { color: var(--ink-3); transition: color .2s var(--ease); }
.bread a:hover { color: var(--accent); }
.bread .sep { color: var(--ink-4); }

.tldr {
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
}
.tldr strong { color: var(--accent); font-weight: 600; }

.toc {
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 16px;
}
.toc a {
  font-size: 13px;
  color: var(--ink-2);
  padding: 4px 0;
  transition: color .2s var(--ease);
}
.toc a:hover { color: var(--accent); }
@media (max-width: 820px) { .toc { grid-template-columns: 1fr; } }

.prose { margin-top: 48px; }
.prose h2 {
  font-size: clamp(26px, 3vw, 34px);
  margin: 48px 0 16px;
  scroll-margin-top: 100px;
}
.prose h3 {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  margin: 24px 0 8px;
  color: var(--ink);
}
.prose p, .prose ul, .prose ol {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.7;
  margin: 0 0 12px;
}
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin-bottom: 6px; }
.prose strong { color: var(--ink); font-weight: 600; }

/* ========== PRICING ========== */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.price-card {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 32px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.price-card:hover { border-color: var(--accent-3); transform: translateY(-2px); }
.price-card.featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  background: linear-gradient(180deg, #fff 0%, var(--accent-soft) 130%);
}
.price-card .badge {
  position: absolute;
  top: -12px;
  left: 28px;
  padding: 6px 12px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.price-card h3 { font-size: 22px; }
.price-card > div > p { font-size: 14px; color: var(--ink-3); }
.price {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  line-height: 1;
  letter-spacing: -0.02em;
}
.price small {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-3);
  margin-top: 8px;
}
.checks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.checks li {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
}
.checks li::before {
  content: "";
  position: absolute;
  left: 0; top: 5px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--accent-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237C3AED' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 10px no-repeat;
}
.price-card .btn { margin-top: auto; align-self: flex-start; }

@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; } }

/* ========== CONTACT FORM ========== */
.contact-form {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  padding: 12px 14px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
}
.field textarea { min-height: 120px; resize: vertical; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B6075' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 38px;
}

.file-drop {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px;
  border: 1.5px dashed var(--line);
  border-radius: 12px;
  background: var(--bg-2);
  text-align: center;
  font-size: 14px;
  color: var(--ink-3);
  cursor: pointer;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.file-drop.is-drag { border-color: var(--accent); background: var(--accent-soft); }
.file-drop input[type=file] { display: none; }
.file-drop u { color: var(--accent); }
.file-drop .files {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  color: var(--ink-2);
}

.consent { display: flex; flex-direction: row; align-items: flex-start; gap: 10px; }
.consent input[type=checkbox] { margin-top: 4px; accent-color: var(--accent); }
.consent label { text-transform: none; letter-spacing: 0; }
.consent label a { color: var(--accent); border-bottom: 1px solid var(--accent-3); }

@media (max-width: 720px) {
  .contact-form { padding: 24px 20px; }
  .form-grid { grid-template-columns: 1fr; }
}

/* ========== REVEAL ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal-stagger.is-in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-in > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.is-in > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger.is-in > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger.is-in > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger.is-in > *:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger.is-in > *:nth-child(6) { transition-delay: 400ms; }
.reveal-stagger.is-in > *:nth-child(7) { transition-delay: 480ms; }
.reveal-stagger.is-in > *:nth-child(8) { transition-delay: 560ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ========== FOCUS / A11Y ========== */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 6px;
}
::selection { background: var(--accent-soft); color: var(--accent); }

/* ========== WHATSAPP FLOATING BUTTON ========== */
.wa-fab {
  position: fixed;
  right: 24px;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 50;
  box-shadow:
    0 10px 28px -8px rgba(37, 211, 102, 0.55),
    0 4px 12px rgba(20, 14, 30, 0.18);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s ease;
  -webkit-tap-highlight-color: transparent;
}
.wa-fab::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  z-index: -1;
  opacity: 0.6;
  animation: wa-pulse 2.4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.wa-fab svg {
  width: 30px;
  height: 30px;
  fill: #fff;
  display: block;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.12));
}
.wa-fab:hover,
.wa-fab:focus-visible {
  transform: translateY(-3px) scale(1.05);
  background: #1FB855;
  box-shadow:
    0 16px 36px -8px rgba(37, 211, 102, 0.7),
    0 6px 16px rgba(20, 14, 30, 0.22);
  outline: none;
}
.wa-fab:active {
  transform: translateY(-1px) scale(1.02);
}
@keyframes wa-pulse {
  0%   { transform: scale(1);    opacity: 0.55; }
  70%  { transform: scale(1.6);  opacity: 0; }
  100% { transform: scale(1.6);  opacity: 0; }
}
@media (max-width: 720px) {
  .wa-fab {
    right: 16px;
    bottom: calc(80px + env(safe-area-inset-bottom, 0px));
    width: 54px;
    height: 54px;
  }
  .wa-fab svg { width: 28px; height: 28px; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-fab { transition: none; }
  .wa-fab::before { animation: none; opacity: 0; }
  .wa-fab:hover, .wa-fab:focus-visible { transform: none; }
}

/* ========== BUILT BY (subtle credit) ========== */
.built-by {
  font-size: 12px;
  color: var(--ink-4);
  letter-spacing: 0.04em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--line-2);
  transition: color .2s ease;
}
.built-by a {
  color: var(--ink-3);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.built-by a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent-3);
}

/* ========== COOKIE BANNER ========== */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  max-width: 480px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 22px 22px 20px;
  z-index: 9999;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  transform: translateY(20px);
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
}
.cookie-banner.is-open {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner h4 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 8px;
}
.cookie-banner p {
  margin: 0 0 16px;
  color: var(--ink-3);
}
.cookie-banner a {
  color: var(--accent);
  text-decoration: underline;
}
.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-banner .btn {
  flex: 1 1 0;
  min-width: 130px;
  text-align: center;
  justify-content: center;
}
@media (max-width: 540px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 18px 18px 16px;
  }
  .cookie-banner h4 { font-size: 20px; }
  .cookie-banner-actions .btn { flex: 1 1 100%; }
}

/* ========== GOOGLE TRANSLATE — hide widget chrome ========== */
#google_translate_element { display: none !important; }
.goog-te-banner-frame.skiptranslate,
.goog-te-gadget-icon,
.goog-te-balloon-frame { display: none !important; }
body { top: 0 !important; }
.goog-tooltip, .goog-tooltip:hover { display: none !important; }
.goog-text-highlight { background: none !important; box-shadow: none !important; }
font[style] { background: transparent !important; box-shadow: none !important; }
