/* Oriens Local v2 — Clean direction design system */

/* ============================ FONTS ============================ */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,500;12..96,600;12..96,700;12..96,800&family=Hanken+Grotesk:wght@400;500;600;700;800&display=swap');

/* ============================ TOKENS (Clean direction, hardcoded) ============================ */
:root {
  color-scheme: light;
  --navy-deep: #101e33;
  --navy: #1a2c49;
  --navy-soft: #243a5e;
  --ink: #17243a;
  --muted: #5b6677;
  --muted-2: #7a8494;

  --accent: #ea7a3c;
  --accent-deep: #d2641f;
  --accent-tint: #fbe7d6;

  --bg: #fbf5ec;
  --bg-2: #f6ecdd;
  --surface: #ffffff;
  --surface-2: #fbf6ee;
  --border: #ebe0d0;
  --border-strong: #ddcfba;

  --radius: 16px;
  --radius-lg: 22px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(24,35,58,.05), 0 2px 8px rgba(24,35,58,.04);
  --shadow: 0 8px 30px rgba(24,35,58,.08);
  --shadow-lg: 0 24px 60px rgba(16,30,51,.16);

  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;
  --type-scale: 1;

  --hero-bg: var(--bg);
  --hero-ink: var(--ink);
  --hero-eyebrow: var(--accent-deep);
  --hero-card-bg: var(--navy-deep);

  --maxw: 1180px;
  --gutter: 24px;
}

/* ============================ BASE ============================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
::selection { background: var(--accent-tint); color: var(--ink); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.02em;
  margin: 0;
  color: var(--ink);
}
h2 { font-size: calc(clamp(2rem, 3.6vw, 3.05rem) * var(--type-scale)); letter-spacing: -.025em; }
p { margin: 0; }
.lead {
  font-size: calc(1.14rem * var(--type-scale));
  color: var(--muted);
  line-height: 1.55;
  max-width: 54ch;
}

/* eyebrow label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin: 0 0 18px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  flex: none;
}
.eyebrow--center { justify-content: center; }

.section-head { max-width: 740px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-head .lead { margin-top: 18px; }
.section-head.center .lead { margin-left: auto; margin-right: auto; }

/* ============================ BUTTONS ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  padding: 16px 24px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s;
  white-space: nowrap;
  text-decoration: none;
  font-family: var(--font-body);
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 20px -6px color-mix(in srgb, var(--accent) 70%, transparent);
}
.btn--primary:hover {
  background: var(--accent-deep);
  box-shadow: 0 12px 26px -6px color-mix(in srgb, var(--accent) 80%, transparent);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--ink);
}
.btn--ghost:hover { border-color: var(--ink); background: rgba(0,0,0,.02); }
.btn--lg { padding: 18px 30px; font-size: 1.06rem; }
.btn svg.wa { width: 18px; height: 18px; fill: currentColor; flex: none; }

/* ============================ NAV ============================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background .2s;
}
.nav.scrolled {
  border-color: var(--border);
  background: color-mix(in srgb, var(--bg) 92%, transparent);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  height: 74px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.18rem;
  letter-spacing: -.02em;
  text-decoration: none;
  color: var(--ink);
  flex: none;
}
.brand .mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--navy);
  display: grid;
  place-items: center;
  flex: none;
  box-shadow: var(--shadow-sm);
}
.brand .mark svg { width: 20px; height: 20px; }
.brand .ll { color: var(--accent); }
.nav-links { display: flex; gap: 4px; margin-left: 14px; }
.nav-links a {
  font-size: .95rem;
  font-weight: 600;
  color: var(--muted);
  padding: 9px 13px;
  border-radius: 9px;
  transition: color .15s, background .15s;
  text-decoration: none;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--ink); background: rgba(0,0,0,.04); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 14px; flex: none; }

/* language toggle pill */
.lang {
  display: inline-flex;
  padding: 3px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  position: relative;
  box-shadow: var(--shadow-sm);
  -webkit-user-select: none;
  user-select: none;
  flex: none;
}
.lang button {
  position: relative;
  z-index: 1;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .04em;
  color: var(--muted);
  padding: 7px 14px;
  border-radius: 999px;
  transition: color .2s;
  font-family: var(--font-body);
  line-height: 1;
}
.lang button.on { color: #fff; }
.lang .thumb {
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 3px;
  width: calc(50% - 3px);
  background: var(--navy);
  border-radius: 999px;
  transition: transform .22s cubic-bezier(.4, 1.2, .5, 1);
  pointer-events: none;
}
.lang[data-l="en"] .thumb { transform: translateX(100%); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex: none;
}
.nav-toggle svg { width: 20px; height: 20px; stroke: var(--ink); }

/* mobile menu */
.mmenu {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 10px var(--gutter) 18px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.mmenu.open { display: flex; }
.mmenu a {
  padding: 12px 12px;
  font-weight: 600;
  color: var(--ink);
  border-radius: 9px;
  text-decoration: none;
  font-size: .98rem;
}
.mmenu a:hover { background: rgba(0,0,0,.04); }

/* ============================ HERO ============================ */
.hero {
  background: var(--hero-bg);
  color: var(--hero-ink);
  position: relative;
  overflow: hidden;
}
.hero .eyebrow { color: var(--hero-eyebrow); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
  padding: clamp(48px, 7vw, 92px) 0 clamp(60px, 8vw, 104px);
}
.hero h1 {
  font-size: calc(clamp(2.7rem, 5.4vw, 4.5rem) * var(--type-scale));
  color: var(--hero-ink);
  letter-spacing: -.035em;
  line-height: .98;
  margin: 0;
}
.hero h1 .l2 { color: var(--accent); display: block; }
.hero-sub {
  margin-top: 26px;
  font-size: calc(1.18rem * var(--type-scale));
  line-height: 1.5;
  max-width: 50ch;
  color: rgba(23,36,58,.78);
  color: color-mix(in srgb, var(--hero-ink) 78%, transparent);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-note {
  margin-top: 22px;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .01em;
  color: rgba(23,36,58,.62);
  color: color-mix(in srgb, var(--hero-ink) 62%, transparent);
}
.hero-bilingual {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  gap: 8px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--hero-eyebrow);
  margin-bottom: 20px;
  border: 1px solid rgba(210,100,31,.35);
  border: 1px solid color-mix(in srgb, var(--hero-eyebrow) 35%, transparent);
  padding: 7px 13px;
  border-radius: 999px;
}
.hero-bilingual .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 22%, transparent);
  flex: none;
}

/* hero radial glow */
.hero::after {
  content: "";
  position: absolute;
  right: -12%;
  top: -30%;
  width: 60%;
  height: 120%;
  background: radial-gradient(circle at center, color-mix(in srgb, var(--accent) 18%, transparent), transparent 62%);
  pointer-events: none;
  opacity: .7;
}

/* ============================ BROWSER MOCKUP ============================ */
.mock { position: relative; z-index: 1; }
.mock-window {
  background: var(--hero-card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.08);
}
.mock-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mock-bar .dots { display: flex; gap: 6px; }
.mock-bar .dots i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
  display: block;
}
.mock-bar .url {
  margin-left: 8px;
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.08);
  padding: 6px 12px;
  border-radius: 7px;
  font-family: var(--font-body);
}
.mock-hero {
  position: relative;
  padding: 26px 26px 30px;
  background: linear-gradient(160deg, #21364f, #16273c);
}
.mock-hero .ph {
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image: repeating-linear-gradient(135deg, #fff 0 1px, transparent 1px 11px);
  pointer-events: none;
}
.mock-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.mock-biz {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
}
.mock-badge {
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
  padding: 4px 9px;
  border-radius: 999px;
}
.mock-h {
  position: relative;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.7rem;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 34px 0 18px;
  max-width: 14ch;
}
.mock-cta {
  position: relative;
  display: inline-flex;
  white-space: nowrap;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  padding: 11px 18px;
  border-radius: 9px;
}
.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--surface);
}
.mock-stats .st {
  padding: 18px 20px;
  border-right: 1px solid var(--border);
}
.mock-stats .st:last-child { border-right: 0; }
.mock-stats .n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--accent-deep);
  letter-spacing: -.02em;
}
.mock-stats .l {
  font-size: .74rem;
  color: var(--muted);
  margin-top: 2px;
  line-height: 1.25;
}

/* ============================ STRIP ============================ */
.strip { background: var(--navy); color: #fff; }
.strip .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 24px;
  text-align: center;
  font-weight: 600;
  font-size: .98rem;
}
.strip .star { width: 18px; height: 18px; fill: var(--accent); flex: none; }

/* ============================ INCLUDED ============================ */
.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 52px;
}
.icard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.icard:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.icard .ic {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: var(--accent-tint);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.icard .ic svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent-deep);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icard h3 { font-size: 1.16rem; margin-bottom: 9px; }
.icard p { color: var(--muted); font-size: .97rem; line-height: 1.5; }

/* ============================ PROCESS ============================ */
.proc {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 54px;
}
.pstep { position: relative; padding-top: 18px; }
.pstep .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.4rem;
  line-height: 1;
  color: var(--accent);
  opacity: .95;
  letter-spacing: -.04em;
}
.pstep .bar {
  height: 2px;
  background: var(--border-strong);
  margin: 18px 0 20px;
  position: relative;
}
.pstep .bar::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  width: 34px;
  background: var(--accent);
}
.pstep h3 { font-size: 1.28rem; margin-bottom: 10px; }
.pstep p { color: var(--muted); font-size: 1rem; line-height: 1.5; max-width: 32ch; }

/* ============================ COMPARE ============================ */
.compare-section { background: var(--bg-2); }
.cmp {
  margin-top: 54px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.cmp .ch {
  padding: 24px 26px;
  font-weight: 700;
  font-size: 1.02rem;
  border-bottom: 1px solid var(--border);
}
.cmp .ch.lbl {
  color: var(--muted-2);
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
}
.cmp .ch.you { color: var(--muted); background: var(--surface-2); }
.cmp .ch.us { color: #fff; background: var(--navy); }
.cmp .ch.us .tag { display: inline-flex; align-items: center; gap: 7px; }
.cmp .ch.us .tag svg { width: 18px; height: 18px; }
.cmp .cell {
  padding: 20px 26px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: .99rem;
  line-height: 1.4;
}
.cmp .row-k { font-weight: 700; color: var(--ink); align-items: center; }
.cmp .cell.you { color: var(--muted); background: var(--surface-2); }
.cmp .cell.us {
  color: var(--ink);
  font-weight: 600;
  background: color-mix(in srgb, var(--accent-tint) 38%, var(--surface));
}
.cmp .mk { width: 21px; height: 21px; flex: none; margin-top: 1px; }
.cmp .mk.x circle { fill: #ece7e0; }
.cmp .mk.x path { stroke: #a9a195; fill: none; }
.cmp .mk.ck circle { fill: var(--accent); }
.cmp .mk.ck path { stroke: #fff; fill: none; }
.cmp .grid-row { display: contents; }
.cmp .cell:nth-last-child(-n+3) { border-bottom: 0; }

/* ============================ PRICING ============================ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 54px;
  align-items: start;
}
.plan {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .18s, box-shadow .18s;
}
.plan:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.plan.pop {
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}
.plan.pop:hover { transform: translateY(-11px); }
.plan .badge {
  position: absolute;
  top: -14px;
  left: 28px;
  white-space: nowrap;
  background: var(--accent);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.plan .pname {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -.01em;
}
.plan .pr {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  margin-top: 14px;
}
.plan .pr .amt {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3rem;
  letter-spacing: -.03em;
  color: var(--ink);
  line-height: 1;
}
.plan .pr .per {
  font-weight: 600;
  color: var(--muted-2);
  font-size: 1rem;
  padding-bottom: 7px;
  line-height: 1;
}
.plan .setup {
  margin-top: 6px;
  font-size: .86rem;
  color: var(--muted-2);
  font-weight: 600;
}
.plan .setup b { color: var(--ink); }
.plan-ideal {
  margin-top: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  font-style: italic;
  line-height: 1.4;
}
.plan .feats {
  list-style: none;
  padding: 0;
  margin: 24px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.plan .feats li {
  display: flex;
  gap: 11px;
  font-size: .97rem;
  color: var(--ink);
  line-height: 1.35;
  align-items: flex-start;
}
.plan .feats svg { width: 19px; height: 19px; flex: none; margin-top: 1px; }
.plan .feats svg circle { fill: var(--accent-tint); }
.plan .feats svg path {
  stroke: var(--accent-deep);
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.plan .btn { width: 100%; }
.price-foot {
  text-align: center;
  margin-top: 34px;
  color: var(--muted);
  font-size: .95rem;
}
.price-foot a {
  color: var(--accent-deep);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================ WHY ============================ */
.why {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 48px;
  align-items: center;
}
.why-card {
  background: var(--navy-deep);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: "";
  position: absolute;
  right: -30%;
  bottom: -40%;
  width: 90%;
  height: 90%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 30%, transparent), transparent 65%);
  pointer-events: none;
}
.why-card .eyebrow {
  color: var(--accent);
  position: relative;
}
.why-card .eyebrow::before { background: var(--accent); }
.why-card h2 {
  color: #fff;
  position: relative;
  font-size: calc(clamp(1.8rem, 2.6vw, 2.5rem) * var(--type-scale));
}
.why-card > p {
  color: rgba(255,255,255,.74);
  margin-top: 18px;
  position: relative;
  font-size: 1.06rem;
  line-height: 1.5;
}
.why-points { display: flex; flex-direction: column; gap: 14px; }
.wpoint {
  display: flex;
  gap: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .15s;
}
.wpoint:hover { transform: translateX(4px); }
.wpoint .ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-tint);
  display: grid;
  place-items: center;
  flex: none;
}
.wpoint .ic svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent-deep);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.wpoint h3 { font-size: 1.12rem; margin-bottom: 5px; }
.wpoint p { color: var(--muted); font-size: .96rem; line-height: 1.45; }

/* ============================ REVIEWS ============================ */
.reviews-section { background: var(--bg-2); }
.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.rcard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.rcard .quote {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--accent);
  opacity: .5;
  height: 24px;
  overflow: hidden;
}
.rcard .stars {
  display: flex;
  gap: 3px;
  margin: 16px 0 14px;
}
.rcard .stars svg { width: 16px; height: 16px; fill: var(--accent); }
.rcard p { color: var(--ink); font-size: 1.01rem; line-height: 1.55; flex: 1; }
.rcard .who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.rcard .av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .95rem;
  flex: none;
}
.rcard .who .nm { font-weight: 700; font-size: .96rem; }
.rcard .who .role { font-size: .84rem; color: var(--muted-2); }
.rev-disc { text-align: center; margin-top: 30px; color: var(--muted-2); font-size: .88rem; }

/* ============================ FAQ ============================ */
.faq-list {
  margin-top: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.faq-list details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 16px;
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
}
.faq-list summary {
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  outline: none;
  color: var(--ink);
}
.faq-list p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* ============================ CONTACT ============================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 40px;
  margin-top: 50px;
  align-items: start;
}
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 34px 38px;
  box-shadow: var(--shadow);
}
.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1/-1; margin-bottom: 18px; }
.field label { font-weight: 700; font-size: .86rem; color: var(--ink); }
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--surface-2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.field textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 16%, transparent);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--muted-2); }
.field select { cursor: pointer; }
.form-consent { font-size: .84rem; color: var(--muted-2); margin-top: 6px; }
.form-consent a { text-decoration: underline; text-underline-offset: 2px; color: inherit; }
.form-consent a:hover { color: var(--accent-deep); }
.form-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 18px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--muted);
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.trust-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
  flex: none;
}
.form-ok {
  background: var(--accent-tint);
  border: 1px solid var(--accent);
  color: var(--accent-deep);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: .97rem;
}
.form-ok svg { width: 22px; height: 22px; flex: none; stroke: var(--accent-deep); fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.form-ok.hidden { display: none; }

.contact-side { display: flex; flex-direction: column; gap: 18px; }
.side-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.side-card h3 { font-size: 1.18rem; margin-bottom: 6px; }
.side-card .ssub { color: var(--muted); font-size: .95rem; line-height: 1.45; margin-bottom: 18px; }
.side-item { display: block; padding: 14px 0; border-top: 1px solid var(--border); }
.side-item .k {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 4px;
}
.side-item .v {
  font-weight: 700;
  color: var(--ink);
  font-size: 1.04rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.side-item a.v:hover { color: var(--accent-deep); }
.side-item .v svg { width: 18px; height: 18px; flex: none; }
.side-item .v.addr { white-space: normal; font-weight: 600; font-size: .98rem; display: block; }
.wa-card { background: #1faa55; color: #fff; border: 0; }
.wa-card .k { color: rgba(255,255,255,.7); }
.wa-card .ssub { color: rgba(255,255,255,.85); margin-bottom: 0; }
.wa-card h3 { color: #fff; display: flex; align-items: center; gap: 9px; }
.wa-card h3 svg { width: 22px; height: 22px; fill: #fff; flex: none; }
.wa-card .side-item { border-color: rgba(255,255,255,.18); }
.wa-card .v { color: #fff; }
.wa-card a.v:hover { color: rgba(255,255,255,.8); }

/* ============================ FOOTER ============================ */
.footer {
  background: var(--navy-deep);
  color: #fff;
  padding: 48px 0 38px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer .brand { color: #fff; }
.footer .brand .mark { background: rgba(255,255,255,.1); }
.footer-tag {
  color: rgba(255,255,255,.6);
  font-size: .95rem;
  margin-top: 12px;
  max-width: 30ch;
  line-height: 1.5;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  align-items: center;
  font-size: .92rem;
}
.footer-links .ph { color: var(--accent); font-weight: 800; }
.footer-links a { color: rgba(255,255,255,.72); text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-sep { color: rgba(255,255,255,.25); }
.footer-muted { color: rgba(255,255,255,.72); }
.botcheck { display: none; }
.footer-bottom {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.5);
  font-size: .86rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ============================ FLOATING WHATSAPP ============================ */
/* Fallback for noscript/no-js */
.fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.fab:hover {
  transform: scale(1.05);
}
.fab svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* Enhanced interactive state */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 12px;
  text-decoration: none;
  cursor: pointer;
  pointer-events: auto;
  transition: transform 0.2s ease;
}

.whatsapp-float:active {
  transform: scale(0.95);
}

.whatsapp-btn-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  position: relative;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .whatsapp-btn-inner {
    animation: whatsapp-pulse 2s infinite;
  }
}

.whatsapp-float:hover .whatsapp-btn-inner {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.whatsapp-pill {
  max-width: 0;
  opacity: 0;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 20px;
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: max-width 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, padding 0.4s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.whatsapp-float:hover .whatsapp-pill,
.whatsapp-float.whatsapp-show-pill .whatsapp-pill {
  max-width: 200px;
  opacity: 1;
  padding: 8px 16px;
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5), 0 8px 24px rgba(37, 211, 102, 0.3);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0), 0 8px 24px rgba(37, 211, 102, 0.3);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 8px 24px rgba(37, 211, 102, 0.3);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
  }
  
  .whatsapp-btn-inner {
    width: 50px;
    height: 50px;
  }
  
  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }

  .whatsapp-pill {
    display: none; /* Hide text on mobile to avoid overlapping */
  }
}


/* ============================ STAGGERED REVEAL DELAYS ============================ */
/* Utility delay classes — used instead of inline transition-delay styles */
.d60  { transition-delay:  60ms; }
.d70  { transition-delay:  70ms; }
.d80  { transition-delay:  80ms; }
.d90  { transition-delay:  90ms; }
.d120 { transition-delay: 120ms; }
.d140 { transition-delay: 140ms; }
.d160 { transition-delay: 160ms; }
.d180 { transition-delay: 180ms; }
.d210 { transition-delay: 210ms; }

/* ============================ BUTTON VARIANTS ============================ */
/* Compact nav pill size */
.btn--nav { padding: 12px 20px; }
/* Full-width button (form submit) */
.btn--full { width: 100%; justify-content: center; }
/* Hero secondary ghost — uses hero-ink token for clean/bold compatibility */
.btn--hero-ghost {
  color: var(--hero-ink);
  border-color: rgba(23,36,58,.28);
  border-color: color-mix(in srgb, var(--hero-ink) 28%, transparent);
}

/* ============================ SCROLL REVEAL ============================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s ease, transform .6s ease;
  }
  .reveal.in {
    opacity: 1;
    transform: none;
  }
}

/* ============================ RESPONSIVE ============================ */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .why { grid-template-columns: 1fr; gap: 30px; }
  .contact-grid { grid-template-columns: 1fr; gap: 26px; }
  .price-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }
  .plan.pop { transform: none; }
  .plan.pop:hover { transform: translateY(-3px); }
}

@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .proc { grid-template-columns: 1fr; gap: 30px; }
  .rev-grid { grid-template-columns: 1fr; }
  .cmp { grid-template-columns: 1fr; font-size: .95rem; }
  .cmp .ch.lbl { display: none; }
  .cmp .row-k { background: var(--surface-2); font-size: 1.05rem; padding-bottom: 8px; }
  .cmp .cell { border-bottom: 0; padding-top: 8px; padding-bottom: 8px; }
  .cmp .cell.us { margin-bottom: 6px; }
  .cmp .grid-row { display: block; border-bottom: 1px solid var(--border); padding: 8px 0; }
  .cmp .cell:nth-last-child(-n+3) { border-bottom: 0; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .cards-4 { grid-template-columns: 1fr; }
  .frow { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .mock-stats .n { font-size: 1.3rem; }
  .footer-bottom { flex-direction: column; }
  .side-item .v { white-space: normal; }
}
