/* =====================================================================
   GraceTranslate: marketing site
   White background, single accent #14532D (with lighter shades).
   Type: Inter Tight (display) + Inter (body) = ElevenLabs-style grotesque.
   No gradients.
   ===================================================================== */

:root {
  --bg:         #ffffff;
  --tint:       #f3f7f4;   /* very light green section bg */
  --tint-2:     #e7f0ea;   /* chip / soft surface */
  --tint-3:     #d8e8df;

  --accent:     #14532d;   /* the one color */
  --accent-700: #0e3d20;   /* darker (hover) */
  --accent-300: #4f9e74;   /* lighter accent */
  --accent-200: #86c9a3;   /* light accent on dark */
  --accent-100: #cfe7da;

  --dark:       #14532d;   /* dark section bg */
  --dark-2:     #103d23;   /* alt dark */

  --ink:        #14211b;   /* headings, near-black */
  --text:       #46524b;   /* body */
  --muted:      #717d76;   /* muted */
  --line:       #e7ece9;   /* borders */
  --line-2:     #eef1ef;
  --white:      #ffffff;

  --font-display: "Inter Tight", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --container: 1180px;
  --radius:    16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(20,83,45,.05), 0 1px 1px rgba(20,83,45,.04);
  --shadow:    0 16px 40px -20px rgba(20,83,45,.20), 0 4px 12px rgba(20,83,45,.05);
  --shadow-lg: 0 40px 80px -28px rgba(20,83,45,.28);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--accent); color: #fff; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
.section--dark :focus-visible, .section--sea :focus-visible, .footer :focus-visible, .announce :focus-visible { outline-color: var(--accent-200); }

/* ---------- layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.section { padding: 92px 0; }
.section--beige { background: var(--tint); }
.section--dark  { background: var(--dark); }
.section--sea   { background: var(--dark-2); }

.section__head { max-width: 720px; margin-bottom: 52px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }

.eyebrow { font-weight: 600; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.eyebrow--light { color: var(--accent-200); }

.section__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 1.2rem + 2.4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -.025em;
  color: var(--ink);
}
.section__title--light { color: #fff; }

.section__lead { margin-top: 18px; font-size: 1.12rem; color: var(--muted); max-width: 640px; }
.section__head--center .section__lead { margin-left: auto; margin-right: auto; }
.section__lead--light { color: rgba(255,255,255,.72); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: .98rem; font-family: var(--font-body);
  padding: 12px 22px; border-radius: 999px;
  transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap; border: 1px solid transparent; min-height: 44px;
}
.btn--lg { padding: 15px 30px; font-size: 1.05rem; }
.btn--block { width: 100%; }
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-700); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { background: var(--accent-700); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--ghost { background: transparent; color: var(--accent); border-color: rgba(20,83,45,.22); }
.btn--ghost:hover { background: var(--tint); border-color: rgba(20,83,45,.4); }
.btn--light { background: #fff; color: var(--accent); }
.btn--light:hover { background: var(--tint); transform: translateY(-2px); }
.btn--lightghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn--lightghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }

/* ---------- scroll reveal ---------- */
.reveal { transition: opacity .7s var(--ease), transform .7s var(--ease); }
html.js .reveal { opacity: 0; transform: translateY(18px); }
html.js .reveal.is-visible { opacity: 1; transform: none; }

/* =====================================================================
   ANNOUNCEMENT BAR
   ===================================================================== */
.announce { background: var(--accent); color: #fff; font-size: .9rem; }
.announce__inner { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 9px 24px; flex-wrap: wrap; }
.announce__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-200); animation: pulse 2s infinite; }
.announce__link { color: var(--accent-200); font-weight: 600; }
.announce__link:hover { color: #fff; text-decoration: underline; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(134,201,163,.6)} 70%{box-shadow:0 0 0 8px rgba(134,201,163,0)} 100%{box-shadow:0 0 0 0 rgba(134,201,163,0)} }

/* =====================================================================
   NAV
   ===================================================================== */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.86); backdrop-filter: saturate(1.4) blur(14px); border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s; }
.nav.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 8px 24px -20px rgba(20,83,45,.3); }
.nav__inner { display: flex; align-items: center; gap: 20px; height: 70px; }

.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 1.22rem; color: var(--ink); letter-spacing: -.02em; white-space: nowrap; }
.brand__mark { display: inline-flex; }
.brand__mark svg { display: block; }

.nav__links { display: flex; align-items: center; gap: 24px; margin-left: 8px; }
.nav__link { font-weight: 500; font-size: .96rem; color: var(--text); position: relative; padding: 4px 0; white-space: nowrap; }
.nav__link::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--accent); transition: width .25s var(--ease); }
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }

/* language switcher */
.langswitch { position: relative; }
.langswitch__btn { display: inline-flex; align-items: center; gap: 7px; padding: 8px 12px; border-radius: 999px; border: 1px solid rgba(20,83,45,.16); font-weight: 600; font-size: .9rem; color: var(--ink); transition: background .2s, border-color .2s; white-space: nowrap; min-height: 40px; }
.langswitch__btn:hover { background: var(--tint); }
.langswitch__flag { border-radius: 2px; }
.langswitch__menu { position: absolute; right: 0; top: calc(100% + 8px); min-width: 168px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); padding: 6px; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity .18s, transform .18s, visibility .18s; z-index: 60; max-height: 60vh; overflow: auto; }
.langswitch.is-open .langswitch__menu { opacity: 1; visibility: visible; transform: none; }
.langswitch--up .langswitch__menu { top: auto; bottom: calc(100% + 8px); transform: translateY(6px); }
.langswitch__menu button { display: flex; align-items: center; gap: 10px; width: 100%; padding: 9px 12px; border-radius: 9px; font-size: .92rem; font-weight: 500; color: var(--text); text-align: left; }
.langswitch__menu button:hover { background: var(--tint); color: var(--ink); }
.langswitch__menu button img { border-radius: 2px; }

/* mobile toggle + drawer */
.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 10px; }
.nav__toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile { display: none; flex-direction: column; gap: 2px; padding: 12px 24px 22px; background: #fff; border-bottom: 1px solid var(--line); }
.nav.is-open .nav__mobile { display: flex; }
.nav__mlink { padding: 14px 6px; font-weight: 600; font-size: 1.05rem; color: var(--ink); border-bottom: 1px solid var(--line); }
.nav__mactions { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero { padding: 64px 0 88px; }
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.4rem, 1.2rem + 3.8vw, 4rem); line-height: 1.03; letter-spacing: -.03em; color: var(--ink); }
.hero__subtitle { margin-top: 22px; font-size: 1.2rem; color: var(--muted); max-width: 520px; }
.hero__actions { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero__trust { margin-top: 22px; font-size: .92rem; color: var(--muted); font-weight: 500; }

/* offer callout */
.offer { display: inline-flex; align-items: center; flex-wrap: wrap; gap: 8px 10px; margin-top: 24px; padding: 12px 18px; border-radius: 14px; background: var(--tint); border: 1px solid var(--line); color: var(--ink); font-weight: 500; font-size: .98rem; }
.offer__tag { display: inline-flex; color: var(--accent); }
.offer__link { color: var(--accent); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; }
.offer__link:hover { color: var(--accent-700); }

/* phone mockup */
.hero__visual { position: relative; display: flex; justify-content: center; }
.phone { position: relative; width: 300px; background: #0a2616; border-radius: 42px; padding: 12px; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.08); }
.phone__notch { position: absolute; top: 18px; left: 50%; transform: translateX(-50%); width: 110px; height: 24px; background: #0a2616; border-radius: 0 0 16px 16px; z-index: 2; }
.phone__screen { background: var(--accent); border-radius: 32px; padding: 40px 18px 18px; min-height: 480px; display: flex; flex-direction: column; }
.phone__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.live { display: inline-flex; align-items: center; gap: 6px; font-size: .7rem; font-weight: 700; letter-spacing: .1em; color: var(--accent-200); }
.live__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-200); animation: pulse 1.6s infinite; }
.phone__lang { display: inline-flex; align-items: center; gap: 6px; font-size: .78rem; color: rgba(255,255,255,.85); background: rgba(255,255,255,.1); padding: 5px 10px; border-radius: 999px; }
.phone__lang img { border-radius: 2px; }
.cap { border-radius: 14px; padding: 14px 15px; font-size: .96rem; line-height: 1.45; margin-bottom: 12px; }
.cap--past { background: rgba(255,255,255,.08); color: rgba(255,255,255,.6); }
.cap--now { background: #fff; color: var(--accent); font-weight: 500; box-shadow: 0 10px 30px -12px rgba(0,0,0,.4); }
.cap__label { display: block; font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-300); margin-bottom: 5px; }
.wave { display: flex; align-items: flex-end; gap: 4px; height: 34px; margin: 10px 2px 0; }
.wave span { flex: 1; background: var(--accent-200); border-radius: 3px; animation: wave 1.1s infinite ease-in-out; }
.wave span:nth-child(2){animation-delay:.1s}.wave span:nth-child(3){animation-delay:.2s}.wave span:nth-child(4){animation-delay:.3s}.wave span:nth-child(5){animation-delay:.15s}.wave span:nth-child(6){animation-delay:.25s}.wave span:nth-child(7){animation-delay:.05s}
@keyframes wave { 0%,100%{height:25%}50%{height:100%} }
.phone__foot { margin-top: auto; text-align: center; font-size: .8rem; color: rgba(255,255,255,.65); padding-top: 14px; }

.float-chip { position: absolute; display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 9px 14px; font-size: .85rem; font-weight: 600; color: var(--ink); box-shadow: var(--shadow); }
.float-chip img { border-radius: 2px; }
.float-chip--1 { top: 14%; left: -6%; animation: floaty 5s ease-in-out infinite; }
.float-chip--2 { top: 50%; right: -10%; animation: floaty 6s ease-in-out infinite .6s; }
.float-chip--3 { bottom: 8%; left: 2%; animation: floaty 5.5s ease-in-out infinite .3s; }
@keyframes floaty { 0%,100%{transform:translateY(0)}50%{transform:translateY(-12px)} }

/* =====================================================================
   CLIENT LOGO WALL (bordered grid + testimonial reveal)
   ===================================================================== */
.logos { padding: 56px 0 0; }
.logos__label { text-align: center; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 30px; }
.logos__wall { position: relative; background-color: #fff;
  background-image: repeating-linear-gradient(-45deg, var(--line-2) 0, var(--line-2) 1px, transparent 1px, transparent 9px); }
.logos__inner { max-width: var(--container); margin: 0 auto; background: var(--line); border: 1px solid var(--line); }
.logos__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; background: var(--line); }
.logo, .logo-quote { min-height: 132px; background: #fff; }
.logo { display: flex; align-items: center; justify-content: center; position: relative; background: #fff; font-family: var(--font-display); font-weight: 700; letter-spacing: -.02em; font-size: 1.05rem; color: #9aa39d; transition: color .2s, background .2s; padding: 18px; }
.logo:hover { color: var(--accent); background: var(--tint); }
.logo[data-quote]::after { content: "↗"; position: absolute; right: 12px; bottom: 10px; font-size: .8rem; color: var(--muted); }
.logo.is-active { color: var(--accent); background: var(--tint); }
.logo-quote { grid-column: span 2; grid-row: span 1; padding: 22px 24px; display: flex; flex-direction: column; justify-content: center; background: var(--tint); }
.logo-quote__text { font-family: var(--font-display); font-weight: 500; font-size: 1.02rem; line-height: 1.4; color: var(--ink); letter-spacing: -.01em; }
.logo-quote__text b { color: var(--accent); font-weight: 600; }
.logo-quote__foot { display: flex; align-items: center; gap: 10px; margin-top: 14px; }
.logo-quote__avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .85rem; flex: none; }
.logo-quote__name { font-weight: 600; font-size: .85rem; color: var(--ink); }
.logo-quote__role { font-size: .78rem; color: var(--muted); }
.logo-quote__cs { margin-left: auto; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); white-space: nowrap; }

/* =====================================================================
   METRICS
   ===================================================================== */
.metrics { padding: 64px 0; }
.metrics__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.metric { text-align: center; padding: 18px; }
.metric__num { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.6rem, 1.6rem + 2.6vw, 3.6rem); color: var(--accent); line-height: 1; letter-spacing: -.03em; }
.metric__label { margin-top: 12px; color: var(--muted); font-size: .98rem; }

/* =====================================================================
   FIVE PRODUCTS
   ===================================================================== */
.products__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 18px; }
.product-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease); }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--accent-100); }
.product-card__ic { display: inline-flex; color: var(--accent); margin-bottom: 16px; }
.product-card__ic svg { width: 28px; height: 28px; }
.product-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.16rem; color: var(--ink); margin-bottom: 6px; letter-spacing: -.01em; }
.product-card p { color: var(--muted); font-size: .95rem; }

/* =====================================================================
   HOW IT WORKS (Delphi-style numbers, no square badges)
   ===================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease); }
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--accent-100); }
.step__num { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--accent); letter-spacing: .02em; margin-bottom: 16px; display: inline-block; }
.step__num::before { content: ""; display: inline-block; width: 22px; height: 2px; background: var(--accent); vertical-align: middle; margin-right: 9px; }
.step__title { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; color: var(--ink); margin-bottom: 8px; letter-spacing: -.01em; }
.step__text { color: var(--muted); font-size: .97rem; }

/* =====================================================================
   PILLARS
   ===================================================================== */
.pillar__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.pillar--reverse .pillar__media { order: 2; }
.pillar__copy .feature-grid { margin-top: 28px; display: grid; gap: 12px; }

.feature-card { display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; column-gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease); }
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--accent-100); }
.feature-card__icon { grid-row: span 2; display: inline-flex; align-items: flex-start; color: var(--accent); }
.feature-card__icon svg { width: 26px; height: 26px; }
.feature-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.14rem; color: var(--ink); letter-spacing: -.01em; }
.feature-card p { color: var(--muted); font-size: .96rem; margin-top: 2px; }

/* device mockups */
.pillar__media { display: flex; justify-content: center; }
.device { width: 100%; max-width: 380px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; }
.device__bar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; background: var(--tint); border-bottom: 1px solid var(--line); color: var(--muted); font-size: .82rem; }
.device__lock { color: var(--accent); flex: none; }
.join { padding: 26px 24px 28px; text-align: center; }
.join__qr { width: 150px; height: 150px; margin: 0 auto; border-radius: 14px; box-shadow: var(--shadow-sm); }
.join__cap { font-weight: 600; color: var(--ink); margin-top: 16px; }
.join__or { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: .85rem; margin: 16px 0; }
.join__or::before, .join__or::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.join__langs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }

.lang-chip { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px; font-size: .92rem; font-weight: 500; color: var(--text); transition: border-color .2s, color .2s, background .2s; }
.lang-chip img { width: 18px; height: 13px; border-radius: 2px; }
.lang-chip--on { background: var(--accent); color: #fff; border-color: var(--accent); }
a.lang-chip:hover { border-color: var(--accent); color: var(--accent); background: var(--tint); }

.device--app { background: var(--accent); border-color: rgba(255,255,255,.08); color: #fff; }
.appbar { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,.12); }
.appbar__brand { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 600; font-size: .92rem; color: #fff; }
.appbar__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent-200); }
.appbody { padding: 18px 16px; }
.mock__pill { display: inline-flex; align-items: center; gap: 7px; font-size: .72rem; font-weight: 700; letter-spacing: .03em; padding: 6px 11px; border-radius: 999px; }
.mock__pill--live { background: rgba(255,255,255,.14); color: #fff; }
.mock__source { font-size: 1.05rem; font-weight: 600; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.12); margin-bottom: 14px; color: #fff; }
.mock__source img { width: 22px; height: 16px; border-radius: 3px; display: inline-block; vertical-align: -2px; margin: 0 4px; }
.mock__srclabel { color: var(--accent-200); font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; display: block; margin-bottom: 5px; }
.mock__listeners { display: grid; gap: 12px; }
.mock__lrow { display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 12px; font-size: .95rem; color: #fff; }
.mock__lrow img { width: 22px; height: 16px; border-radius: 3px; }
.mock__lrow .num { color: var(--accent-200); font-variant-numeric: tabular-nums; }
.bars { display: inline-flex; align-items: flex-end; gap: 3px; height: 18px; }
.bars b { width: 3px; background: var(--accent-200); border-radius: 2px; animation: eq 1s ease-in-out infinite alternate; }
.bars b:nth-child(2){ animation-delay: .2s; } .bars b:nth-child(3){ animation-delay: .4s; }
@keyframes eq { from { transform: scaleY(.5); } to { transform: scaleY(1); } }

/* =====================================================================
   STUDIO / TABS
   ===================================================================== */
.tabs { margin-top: 40px; }
.tabs__nav { display: flex; flex-wrap: wrap; width: fit-content; gap: 6px; background: rgba(255,255,255,.1); padding: 6px; border-radius: 999px; margin: 0 auto 36px; justify-content: center; }
.tab { padding: 11px 22px; border-radius: 999px; font-weight: 600; font-size: .96rem; color: rgba(255,255,255,.72); transition: background .2s, color .2s; }
.tab:hover { color: #fff; }
.tab--active { background: #fff; color: var(--accent); }
.tabpanel { display: none; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; animation: fade .4s var(--ease); }
.tabpanel--active { display: grid; }
@keyframes fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.tabpanel__text h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.5rem,1.1rem+1.4vw,2.05rem); color: #fff; margin-bottom: 14px; line-height: 1.15; letter-spacing: -.02em; }
.tabpanel__text p { color: rgba(255,255,255,.74); font-size: 1.06rem; }
.tabpanel__visual { display: flex; justify-content: center; }

/* studio UI cards */
.ui-card { width: 100%; max-width: 420px; background: #fff; border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-lg); }
.ui-card--center { text-align: center; }
.ui-field { margin-bottom: 16px; }
.ui-field label { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.ui-input { background: var(--tint); border: 1px solid var(--line); border-radius: 10px; padding: 13px 14px; color: var(--ink); font-weight: 500; }
.ui-input--flag { display: flex; align-items: center; gap: 9px; }
.ui-input--flag img { width: 22px; height: 16px; border-radius: 3px; }
.ui-go { display: flex; align-items: center; justify-content: center; gap: 9px; margin-top: 6px; background: var(--accent); color: #fff; font-weight: 700; padding: 13px; border-radius: 10px; }
.ui-go .live__dot { background: var(--accent-200); }
.ui-qr { width: 150px; height: 150px; margin: 0 auto; border-radius: 14px; box-shadow: var(--shadow-sm); }
.ui-qr__cap { margin-top: 16px; color: var(--muted); font-size: .92rem; }
.ui-clip__video { position: relative; height: 180px; border-radius: 14px; background: var(--accent); display: flex; align-items: center; justify-content: center; }
.ui-clip__play { width: 64px; height: 64px; border-radius: 50%; background: #fff; color: var(--accent); display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 12px rgba(255,255,255,.12); }
.ui-clip__cc { position: absolute; left: 14px; bottom: 14px; background: rgba(0,0,0,.35); color: #fff; font-size: .72rem; font-weight: 600; padding: 5px 10px; border-radius: 8px; }
.ui-clip__row { display: flex; gap: 10px; margin-top: 16px; }
.ui-clip__chip { flex: 1; text-align: center; background: var(--tint); border: 1px solid var(--line); border-radius: 10px; padding: 10px; font-size: .85rem; font-weight: 600; color: var(--ink); }

/* =====================================================================
   SERVE YOUR CHURCH (carousel)
   ===================================================================== */
.serve { overflow: hidden; }
.serve__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 36px; }
.serve__arrows { display: flex; gap: 10px; flex: none; }
.serve__arrow { width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,.28); color: #fff; display: flex; align-items: center; justify-content: center; transition: background .2s, color .2s, border-color .2s; }
.serve__arrow:hover { background: #fff; color: var(--accent); border-color: #fff; }
.serve__track { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x proximity; scroll-behavior: smooth; padding: 6px max(24px, calc(50% - 590px + 24px)) 24px; scrollbar-width: none; }
.serve__track::-webkit-scrollbar { display: none; }
.serve-card { flex: 0 0 300px; scroll-snap-align: start; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); padding: 28px 26px; color: #fff; display: flex; flex-direction: column; transition: background .25s var(--ease), transform .25s var(--ease); }
.serve-card:hover { background: rgba(255,255,255,.09); transform: translateY(-4px); }
.serve-card__ic { display: inline-flex; color: var(--accent-200); margin-bottom: 18px; }
.serve-card__ic svg { width: 30px; height: 30px; }
.serve-card__title { font-family: var(--font-display); font-weight: 600; font-size: 1.28rem; color: #fff; margin-bottom: 10px; letter-spacing: -.01em; }
.serve-card__desc { color: rgba(255,255,255,.72); font-size: .98rem; }

/* =====================================================================
   LANGUAGES
   ===================================================================== */
.lang-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 900px; margin: 0 auto; }
.lang-grid .lang-chip { padding: 11px 18px; font-size: 1rem; }
.lang-chip--more { background: var(--accent); color: #fff; border-color: var(--accent); font-weight: 600; }
a.lang-chip--more:hover { background: var(--accent-700); color: #fff; border-color: var(--accent-700); }

/* =====================================================================
   TESTIMONIAL
   ===================================================================== */
.testimonial { padding: 88px 0; }
.testimonial__inner { max-width: 880px; margin: 0 auto; text-align: center; position: relative; }
.testimonial__quotemark { font-family: var(--font-display); font-size: 5rem; line-height: .5; color: var(--accent-200); height: 40px; }
.testimonial__text { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.4rem, 1.1rem + 1.5vw, 2.1rem); line-height: 1.32; color: var(--ink); letter-spacing: -.02em; }
.testimonial__author { margin-top: 40px; display: inline-flex; align-items: center; gap: 18px; text-align: left; flex-wrap: wrap; justify-content: center; }
.testimonial__avatar { width: 54px; height: 54px; border-radius: 50%; background: var(--accent); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; display: flex; align-items: center; justify-content: center; }
.testimonial__name { font-weight: 700; color: var(--ink); }
.testimonial__role { font-size: .9rem; color: var(--muted); }
.testimonial__stat { padding-left: 24px; margin-left: 8px; border-left: 1px solid var(--line); }
.testimonial__statnum { font-family: var(--font-display); font-weight: 700; font-size: 2rem; color: var(--accent); line-height: 1; }
.testimonial__statlabel { font-size: .82rem; color: var(--muted); }

/* =====================================================================
   TRUST / SECURITY
   ===================================================================== */
.trust__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.trust__copy .btn { margin-top: 28px; }
.trust__badges { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.badge { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: 14px; padding: 18px 20px; color: #fff; font-weight: 600; }
.badge__check { width: 26px; height: 26px; flex: none; border-radius: 50%; background: var(--accent-200); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: .85rem; font-weight: 800; }

/* =====================================================================
   PRICING
   ===================================================================== */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 28px; box-shadow: var(--shadow-sm); position: relative; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.price-card--featured { border-color: var(--accent); box-shadow: var(--shadow-lg); transform: scale(1.03); }
.price-card--featured:hover { transform: scale(1.03) translateY(-5px); }
.price-card__badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: .76rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; }
.price-card__name { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; color: var(--ink); }
.price-card__desc { color: var(--muted); font-size: .95rem; margin-top: 6px; min-height: 44px; }
.price-card__price { margin: 18px 0 6px; display: flex; align-items: baseline; gap: 4px; }
.price-amount { font-family: var(--font-display); font-weight: 700; font-size: 2.8rem; color: var(--ink); letter-spacing: -.03em; }
.price-period { color: var(--muted); font-weight: 600; }
.price-card__hours { font-size: 1.02rem; color: var(--ink); }
.price-card__hours strong { font-size: 1.15rem; color: var(--accent); }
.price-card__over { color: var(--muted); font-size: .88rem; margin: 2px 0 22px; }
.price-card .btn { margin-bottom: 24px; }
.price-card__list { display: grid; gap: 12px; margin-top: auto; }
.price-card__list li { position: relative; padding-left: 28px; color: var(--text); font-size: .96rem; }
.price-card__list li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 19px; height: 19px; border-radius: 50%; background: var(--tint-2); color: var(--accent); font-size: .7rem; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.pricing__foot { text-align: center; margin-top: 36px; color: var(--muted); }

/* =====================================================================
   INSIGHTS / POST CARDS
   ===================================================================== */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease); }
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--accent-100); }
.post-card__img { height: 172px; position: relative; background: var(--tint); display: flex; align-items: center; justify-content: center; }
.post-card__img--1 { background: var(--tint); }
.post-card__img--2 { background: var(--tint-2); }
.post-card__img--3 { background: var(--tint-3); }
.post-card__img::after { content: ""; width: 40px; height: 40px; border-radius: 10px; background: var(--accent); opacity: .14; }
.post-card__body { padding: 22px 24px 26px; }
.post-card__tag { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.post-card__title { font-family: var(--font-display); font-weight: 600; font-size: 1.22rem; color: var(--ink); line-height: 1.25; margin-bottom: 10px; letter-spacing: -.01em; }
.post-card__excerpt { color: var(--muted); font-size: .96rem; }

/* =====================================================================
   FINAL CTA
   ===================================================================== */
.cta-band { background: var(--accent); }
.cta-band__inner { text-align: center; max-width: 760px; margin: 0 auto; }
.cta-band__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 1.4rem + 2.4vw, 3.2rem); color: #fff; line-height: 1.08; letter-spacing: -.025em; }
.cta-band__lead { margin-top: 18px; font-size: 1.16rem; color: rgba(255,255,255,.78); }
.cta-band__actions { margin-top: 32px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer { background: var(--accent); color: rgba(255,255,255,.72); padding: 72px 0 32px; }
.footer__inner { display: grid; grid-template-columns: 1.3fr 2.7fr; gap: 48px; }
.brand--footer { color: #fff; }
.footer__tag { margin-top: 16px; font-size: 1rem; color: rgba(255,255,255,.62); max-width: 240px; }
.footer__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.footer__col h3 { color: #fff; font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.footer__col a { display: block; padding: 7px 0; font-size: .96rem; color: rgba(255,255,255,.68); transition: color .2s; }
.footer__col a:hover { color: #fff; }
.footer__bottom { display: flex; align-items: center; gap: 20px; margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14); flex-wrap: wrap; }
.footer__copy { font-size: .9rem; color: rgba(255,255,255,.6); }
.footer__social { display: flex; gap: 10px; margin-left: auto; }
.footer__social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.24); display: flex; align-items: center; justify-content: center; font-size: .85rem; color: rgba(255,255,255,.75); transition: background .2s, color .2s, border-color .2s; }
.footer__social a:hover { background: #fff; color: var(--accent); border-color: #fff; }
.footer .langswitch__btn { color: #fff; border-color: rgba(255,255,255,.24); }
.footer .langswitch__btn:hover { background: rgba(255,255,255,.1); }
.footer .langswitch__menu { color: var(--text); }

/* =====================================================================
   SUBPAGE PRIMITIVES
   ===================================================================== */
.page-hero { padding: 76px 0 8px; }
.page-hero--tint { background: var(--tint); padding-bottom: 76px; }
.page-hero__inner { max-width: 800px; }
.page-hero--center .page-hero__inner { margin: 0 auto; text-align: center; }
.page-hero__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.2rem, 1.3rem + 3vw, 3.5rem); line-height: 1.04; letter-spacing: -.03em; color: var(--ink); }
.page-hero__lead { margin-top: 18px; font-size: 1.18rem; color: var(--muted); }
.page-hero--center .page-hero__lead { margin-left: auto; margin-right: auto; max-width: 640px; }
.crumbs { font-size: .85rem; color: var(--muted); margin-bottom: 18px; letter-spacing: .01em; }
.crumbs a { color: var(--accent); }
.crumbs a:hover { text-decoration: underline; }

.prose { max-width: 760px; }
.prose h2 { font-family: var(--font-display); font-weight: 600; font-size: 1.6rem; color: var(--ink); margin: 40px 0 14px; line-height: 1.2; letter-spacing: -.02em; }
.prose h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.22rem; color: var(--ink); margin: 28px 0 10px; }
.prose p { margin-bottom: 16px; color: var(--text); }
.prose ul { margin: 0 0 18px; display: grid; gap: 10px; }
.prose ul li { position: relative; padding-left: 26px; }
.prose ul li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 18px; height: 18px; border-radius: 50%; background: var(--tint-2); color: var(--accent); font-size: .66rem; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.prose strong { color: var(--ink); }
.prose .muted { color: var(--muted); font-size: .92rem; }

.contentgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.infocard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease); }
.infocard:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--accent-100); }
.infocard__ic { display: inline-flex; color: var(--accent); margin-bottom: 14px; }
.infocard__ic svg { width: 26px; height: 26px; }
.infocard h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.18rem; color: var(--ink); margin-bottom: 8px; letter-spacing: -.01em; }
.infocard p { color: var(--muted); font-size: .96rem; }

.faq { max-width: 780px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq__q { font-family: var(--font-display); font-weight: 600; font-size: 1.16rem; color: var(--ink); margin-bottom: 8px; }
.faq__a { color: var(--muted); }

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

.statusrow { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 22px; background: #fff; border: 1px solid var(--line); border-radius: 14px; margin-bottom: 12px; }
.statusrow__name { font-weight: 600; color: var(--ink); }
.statuspill { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .9rem; color: var(--accent); }
.statuspill::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--accent-300); }

.contactgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: .9rem; color: var(--ink); margin-bottom: 7px; }
.field input, .field textarea { width: 100%; font-family: inherit; font-size: 1rem; padding: 13px 14px; border: 1px solid var(--line); border-radius: 10px; background: #fff; color: var(--text); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(20,83,45,.12); }
.field textarea { min-height: 130px; resize: vertical; }

.callout { background: var(--tint); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 28px; }
.callout h3 { font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: 1.35rem; margin-bottom: 8px; letter-spacing: -.01em; }

/* =====================================================================
   LANGUAGES PAGE
   ===================================================================== */
.langpage { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 2px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.langpage__item { background: #fff; padding: 16px 18px; display: flex; align-items: center; gap: 12px; font-size: .98rem; color: var(--ink); transition: background .15s; }
.langpage__item:hover { background: var(--tint); }
.langpage__flag { width: 22px; height: 16px; border-radius: 3px; flex: none; box-shadow: 0 0 0 1px var(--line); object-fit: cover; }
.langpage__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-300); flex: none; margin: 0 7px; }
.langpage__native { color: var(--muted); font-size: .85rem; margin-left: auto; }

/* =====================================================================
   PER-LANGUAGE PAGE
   ===================================================================== */
.langhero__greet { display: inline-flex; align-items: baseline; gap: 10px; margin-bottom: 18px; padding: 9px 18px; border-radius: 999px; background: var(--tint-2); color: var(--accent); font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; }
.langhero__greet small { color: var(--muted); font-weight: 500; font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; }
.lang-facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.lang-sample { text-align: center; max-width: 800px; margin: 0 auto; }
.lang-sample__text { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.7rem, 1.1rem + 2.4vw, 2.9rem); line-height: 1.2; letter-spacing: -.02em; color: var(--ink); }
.lang-sample__gloss { margin-top: 16px; color: var(--muted); font-size: 1.1rem; font-style: italic; }

/* =====================================================================
   BLOG ARTICLE
   ===================================================================== */
.article { max-width: 720px; margin: 0 auto; }
.article__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px; color: var(--muted); font-size: .9rem; margin-bottom: 18px; }
.article__tag { color: var(--accent); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: .74rem; }
.article__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 1.3rem + 2.6vw, 3rem); line-height: 1.08; letter-spacing: -.03em; color: var(--ink); }
.article__dek { margin-top: 18px; font-size: 1.2rem; color: var(--muted); line-height: 1.5; }
.article__author { display: flex; align-items: center; gap: 12px; margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line); }
.article__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--font-display); }
.article__cover { height: clamp(220px, 34vw, 420px); border-radius: var(--radius-lg); background: var(--tint); margin: 32px 0; display: flex; align-items: center; justify-content: center; }
.article__cover svg { width: 64px; height: 64px; color: var(--accent); opacity: .5; }
.article__body { font-size: 1.12rem; line-height: 1.75; color: var(--text); }
.article__body h2 { font-family: var(--font-display); font-weight: 600; font-size: 1.6rem; color: var(--ink); margin: 38px 0 14px; line-height: 1.2; letter-spacing: -.02em; }
.article__body h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.28rem; color: var(--ink); margin: 28px 0 10px; }
.article__body p { margin-bottom: 20px; }
.article__body ul, .article__body ol { margin: 0 0 22px 0; display: grid; gap: 10px; padding-left: 0; }
.article__body ul li { position: relative; padding-left: 28px; list-style: none; }
.article__body ul li::before { content: "✓"; position: absolute; left: 0; top: 2px; width: 18px; height: 18px; border-radius: 50%; background: var(--tint-2); color: var(--accent); font-size: .66rem; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.article__body ol { counter-reset: n; }
.article__body ol li { position: relative; padding-left: 32px; list-style: none; counter-increment: n; }
.article__body ol li::before { content: counter(n); position: absolute; left: 0; top: 1px; width: 22px; height: 22px; border-radius: 50%; background: var(--accent); color: #fff; font-size: .72rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.article__body blockquote { margin: 28px 0; padding: 4px 0 4px 24px; border-left: 3px solid var(--accent); font-family: var(--font-display); font-weight: 500; font-size: 1.3rem; line-height: 1.4; color: var(--ink); letter-spacing: -.01em; }
.article__cta { max-width: 760px; margin: 56px auto 0; }

/* =====================================================================
   EXPLAINER VIDEO + PHONE METRIC
   ===================================================================== */
.how__video { max-width: 980px; margin: 8px auto 0; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); background: var(--tint); }
.how__video video { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; }
.metric__num--icon { display: flex; align-items: center; justify-content: center; color: var(--accent); line-height: 1; }
.metric__num--icon svg { width: auto; height: clamp(2.6rem, 1.6rem + 2.6vw, 3.6rem); }

/* =====================================================================
   MODAL (shared)
   ===================================================================== */
.modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal.is-open { display: flex; }
.modal__scrim { position: absolute; inset: 0; background: rgba(10,20,14,.55); backdrop-filter: blur(3px); }
.modal__card { position: relative; background: #fff; border-radius: 20px; box-shadow: var(--shadow-lg); width: 100%; max-width: 480px; max-height: 88vh; overflow: auto; padding: 34px; animation: modalin .3s var(--ease); }
.modal__card--wide { max-width: 760px; padding: 0; overflow: hidden; }
.modal__close { position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--muted); background: rgba(255,255,255,.75); z-index: 5; transition: background .2s, color .2s, transform .2s; }
.modal__close:hover { background: var(--tint); color: var(--ink); transform: rotate(90deg); }
@keyframes modalin { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: none; } }

/* case study popover */
.cs-card__eyebrow { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.cs-card__quote { font-family: var(--font-display); font-weight: 500; font-size: 1.4rem; line-height: 1.35; letter-spacing: -.01em; color: var(--ink); }
.cs-card__foot { display: flex; align-items: center; gap: 12px; margin: 22px 0 24px; }
.cs-card__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--font-display); flex: none; }
.cs-card__name { display: block; font-weight: 600; color: var(--ink); }
.cs-card__role { display: block; font-size: .88rem; color: var(--muted); }

/* logo clickability */
.logo:not(.logo--cs) { cursor: default; }
.logo:not(.logo--cs):hover { color: #9aa39d; background: #fff; }
.logo--cs { cursor: pointer; }
.logo--cs::after { content: "↗"; position: absolute; right: 12px; top: 10px; font-size: .85rem; color: var(--muted); opacity: 0; transition: opacity .2s; }
.logo--cs:hover::after { opacity: 1; }

/* =====================================================================
   BENTO (use cases)
   ===================================================================== */
.bento { display: grid; gap: 1px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.14); border-radius: 18px; overflow: hidden; margin-top: 44px;
  grid-template-columns: repeat(4, 1fr);
  grid-template-areas: "a a b b" "a a c d" "e e f f"; }
.bento__tile { background: var(--dark); color: #fff; text-align: left; padding: 28px 26px; min-height: 168px; display: flex; flex-direction: column; cursor: pointer; transition: background .3s var(--ease); }
.bento__tile:hover { background: #1a6038; }
.bento__tile--a { grid-area: a; } .bento__tile--b { grid-area: b; } .bento__tile--c { grid-area: c; }
.bento__tile--d { grid-area: d; } .bento__tile--e { grid-area: e; } .bento__tile--f { grid-area: f; }
.bento__num { font-family: var(--font-display); font-weight: 600; font-size: .85rem; color: var(--accent-200); margin-bottom: auto; }
.bento__title { font-family: var(--font-display); font-weight: 600; font-size: 1.45rem; letter-spacing: -.02em; line-height: 1.12; margin-top: 18px; color: #fff; }
.bento__tile--a .bento__title, .bento__tile--e .bento__title { font-size: 2rem; }
.bento__more { margin-top: 14px; display: inline-flex; align-items: center; gap: 6px; font-size: .8rem; font-weight: 600; color: var(--accent-200); opacity: 0; transform: translateY(4px); transition: opacity .25s, transform .25s; }
.bento__tile:hover .bento__more, .bento__tile:focus-visible .bento__more { opacity: 1; transform: none; }

.bento-card__grid { display: grid; grid-template-columns: .85fr 1.15fr; }
.bento-card__visual { background: var(--tint); display: flex; align-items: center; justify-content: center; min-height: 260px; color: var(--accent); }
.bento-card__icon svg { width: 68px; height: 68px; }
.bento-card__body { padding: 34px; }
.bento-card__num { font-family: var(--font-display); font-weight: 700; color: var(--accent); font-size: .95rem; }
.bento-card__title { font-family: var(--font-display); font-weight: 600; font-size: 1.85rem; letter-spacing: -.02em; color: var(--ink); margin: 4px 0 12px; }
.bento-card__desc { color: var(--muted); font-size: 1.06rem; }
.bento-card__hl { margin-top: 24px; font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.bento-card__list { margin-top: 12px; display: grid; gap: 11px; }
.bento-card__list li { position: relative; padding-left: 28px; color: var(--text); font-size: .97rem; }
.bento-card__list li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 19px; height: 19px; border-radius: 50%; background: var(--tint-2); color: var(--accent); font-size: .68rem; font-weight: 800; display: flex; align-items: center; justify-content: center; }

@media (max-width: 900px) {
  .bento { grid-template-columns: repeat(2, 1fr); grid-template-areas: "a a" "b c" "d e" "f f"; }
  .bento__tile--a .bento__title, .bento__tile--e .bento__title { font-size: 1.45rem; }
  .bento-card__grid { grid-template-columns: 1fr; }
  .bento-card__visual { min-height: 180px; }
}
@media (max-width: 540px) {
  .bento { grid-template-columns: 1fr; grid-template-areas: "a" "b" "c" "d" "e" "f"; }
  .bento__tile { min-height: 120px; }
  .bento__more { opacity: 1; transform: none; }
}

/* =====================================================================
   TESTIMONIALS (ticker)
   ===================================================================== */
.testimonials { padding: 92px 0; overflow: hidden; }
.testi__head { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.testi__badge { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 7px 16px; margin-bottom: 18px; box-shadow: var(--shadow-sm); }
.ticker-row { width: 100%; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); padding: 10px 0; }
.ticker { display: flex; gap: 20px; width: max-content; animation: tickerL 64s linear infinite; }
.ticker--right { animation: tickerR 64s linear infinite; }
.ticker-row:hover .ticker { animation-play-state: paused; }
@keyframes tickerL { to { transform: translateX(-50%); } }
@keyframes tickerR { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.tcard { flex: none; width: 360px; background: var(--tint); border: 1px solid var(--line); border-radius: 18px; padding: 26px 28px; display: flex; flex-direction: column; }
.tcard__stars { color: var(--accent); letter-spacing: 3px; font-size: .95rem; margin-bottom: 14px; }
.tcard__quote { font-weight: 500; font-size: 1.05rem; line-height: 1.45; color: var(--ink); margin: 0; border: 0; padding: 0; }
.tcard__foot { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.tcard__avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--font-display); flex: none; }
.tcard__name { display: block; font-weight: 600; font-size: .9rem; color: var(--ink); }
.tcard__role { display: block; font-size: .8rem; color: var(--muted); }
.testi__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; padding-top: 40px; border-top: 1px solid var(--line); }
.testi__stat { text-align: center; }
.testi__statnum { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.4rem, 1.6rem + 2.2vw, 3.2rem); color: var(--ink); letter-spacing: -.03em; line-height: 1; }
.testi__statlabel { margin-top: 8px; color: var(--muted); }
@media (max-width: 560px) { .tcard { width: 280px; } .testi__stats { grid-template-columns: 1fr; gap: 28px; } }

/* =====================================================================
   PRODUCTS ECOSYSTEM (6 products)
   ===================================================================== */
.eco { position: relative; }
.eco__hub { position: relative; max-width: 1000px; margin: 40px auto 0; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; }
.eco__col { display: flex; flex-direction: column; gap: 22px; }
.eco__center { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.eco__mark { width: 96px; height: 96px; border-radius: 28px; background: var(--accent); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); position: relative; }
.eco__mark svg { width: 52px; height: 52px; }
.eco__mark::after { content: ""; position: absolute; inset: -10px; border-radius: 36px; border: 1px dashed var(--accent-100); }
.eco__ring { margin-top: 16px; font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 1.1rem; }
.eco__price { color: var(--muted); font-size: .9rem; }
.eco-node { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 16px 18px; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease); }
.eco__col--right .eco-node { flex-direction: row-reverse; text-align: right; }
.eco-node:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--accent-100); }
.eco-node__ic { flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--tint-2); color: var(--accent); display: flex; align-items: center; justify-content: center; }
.eco-node__ic svg { width: 24px; height: 24px; }
.eco-node__t { font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: var(--ink); line-height: 1.2; }
.eco-node__d { font-size: .85rem; color: var(--muted); margin-top: 2px; }
.eco__foot { text-align: center; margin-top: 44px; }
.eco__chips { display: inline-flex; flex-wrap: wrap; justify-content: center; gap: 12px 26px; color: var(--muted); }
.eco__chip { display: inline-flex; align-items: baseline; gap: 8px; }
.eco__chip b { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: var(--accent); }
@media (max-width: 760px) {
  .eco__hub { grid-template-columns: 1fr; }
  .eco__center { order: -1; margin-bottom: 8px; }
  .eco__col--right .eco-node { flex-direction: row; text-align: left; }
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1160px) {
  .nav__links, .nav__login { display: none; }
  .nav__toggle { display: flex; }
}
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 44px; }
  .hero__visual { order: 2; }
  .float-chip--1 { left: 0; }
  .float-chip--2 { right: 0; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .pillar__inner { grid-template-columns: 1fr; gap: 40px; }
  .pillar--reverse .pillar__media { order: 0; }
  .trust__inner { grid-template-columns: 1fr; gap: 36px; }
  .tabpanel { grid-template-columns: 1fr; gap: 28px; }
  .tabpanel__visual { order: -1; }
  .contentgrid { grid-template-columns: repeat(2, 1fr); }
  .bloglist { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 860px) {
  .logos__grid { grid-template-columns: repeat(3, 1fr); }
  .logo-quote { grid-column: span 3; }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .price-card--featured { transform: none; }
  .price-card--featured:hover { transform: translateY(-5px); }
  .post-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
  .contactgrid { grid-template-columns: 1fr; gap: 28px; }
  .serve__head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .section { padding: 64px 0; }
  .container { padding: 0 18px; }
  .metrics__grid { grid-template-columns: 1fr; gap: 26px; }
  .steps { grid-template-columns: 1fr; }
  .contentgrid { grid-template-columns: 1fr; }
  .bloglist { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .testimonial__author { flex-direction: column; gap: 14px; }
  .testimonial__stat { border-left: none; padding-left: 0; margin-left: 0; border-top: 1px solid var(--line); padding-top: 14px; }
  .trust__badges { grid-template-columns: 1fr; }
  .tabs__nav { width: 100%; }
  .tab { flex: 1; padding: 11px 8px; font-size: .82rem; }
  .float-chip--1 { left: 0; } .float-chip--2 { right: 2%; } .float-chip--3 { left: 0; }
  .announce__inner { font-size: .8rem; gap: 7px; }
  .serve-card { flex-basis: 78vw; }
  .logos__grid { grid-template-columns: repeat(2, 1fr); }
  .logo-quote { grid-column: span 2; }
  .langpage { grid-template-columns: 1fr 1fr; }
}

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