/* ═══════════════════════════════════
   MAVERIX PRIME v2 — style.css
   Clean · Editorial · No AI fluff
   ═══════════════════════════════════ */

/* ── TOKENS ─────────────────────── */
:root {
  --brand:      oklch(0.45 0.24 264);
  --brand-deep: oklch(0.32 0.22 266);
  --frame:      oklch(0.99 0 0);
  --ink:        oklch(0.18 0.05 264);
  --ink-2:      oklch(0.38 0.04 264);
  --ink-3:      oklch(0.55 0.03 264);
  --border:     oklch(0.91 0.01 264);
  --muted:      oklch(0.96 0.01 264);
  --shadow:     0 24px 64px -16px oklch(0.25 0.18 264 / 0.4);
}

/* ── RESET ──────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--brand);
  color: #fff;
  min-height: 100vh;
}
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { display: block; max-width: 100%; }
input, select, textarea { font-family: inherit; }
::selection { background: var(--ink); color: #fff; }

/* ── DISPLAY FONT ───────────────── */
.fd {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
}

/* ── OUTER ──────────────────────── */
.outer {
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px 16px 0;
}
@media (min-width: 768px) { .outer { padding: 24px 24px 0; } }

/* ── FRAME ──────────────────────── */
.frame {
  background: var(--frame);
  border-radius: 2.5rem;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  color: var(--ink);
  min-height: 100vh;
  animation: frameIn .65s cubic-bezier(.22,1,.36,1) both;
}
@keyframes frameIn {
  from { opacity:0; transform:translateY(18px) scale(0.985); }
  to   { opacity:1; transform:translateY(0) scale(1); }
}

/* ── HEADER ─────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 30;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: box-shadow .25s, padding .25s;
}
.site-header.scrolled {
  box-shadow: 0 4px 24px -4px oklch(0.25 0.18 264 / 0.14);
  padding: 12px 24px;
}
@media (min-width: 768px) { .site-header { padding: 20px 44px; } }
@media (min-width: 768px) { .site-header.scrolled { padding: 12px 44px; } }

.nav-group {
  display: none;
  align-items: center; gap: 0;
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px;
}
@media (min-width: 768px) { .nav-group { display: flex; } }

.nav-link {
  position: relative;
  padding: 7px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 500;
  color: var(--ink-3);
  cursor: pointer; background: none; border: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: color .18s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--ink); }
.nav-link.act { color: var(--ink); }
.nav-link.act::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 1px 4px oklch(0.25 0.18 264 / 0.12);
  z-index: -1;
}

.site-logo {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 20px; font-weight: 700; letter-spacing: -0.04em;
  color: var(--ink);
  display: flex; align-items: center; gap: 10px;
  cursor: pointer; user-select: none;
}
.logo-mark {
  width: 30px; height: 30px; border-radius: 9px;
  background: var(--ink); color: #fff;
  display: grid; place-items: center;
  font-size: 13px; font-weight: 800; flex-shrink: 0;
}
.logo-sep { color: var(--brand); margin: 0 1px; }

.header-right {
  display: none; align-items: center; gap: 8px;
}
@media (min-width: 768px) { .header-right { display: flex; } }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 999px;
  font-size: 13px; font-weight: 600;
  border: none; cursor: pointer; font-family: inherit;
  transition: background .18s, color .18s, transform .15s;
  white-space: nowrap;
}
.btn:active { transform: scale(.98); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--brand); }
.btn-brand { background: var(--brand); color: #fff; }
.btn-brand:hover { background: var(--brand-deep); }
.btn-ghost { background: #fff; color: var(--ink); border: 1px solid var(--border); }
.btn-ghost:hover { background: var(--muted); }
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1fba58; }
.btn-arrow {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 8px 8px 22px; border-radius: 999px;
  font-size: 13px; font-weight: 600;
  border: none; cursor: pointer; font-family: inherit;
  transition: background .18s; white-space: nowrap;
}
.btn-arrow-dark { background: var(--ink); color: #fff; }
.btn-arrow-dark:hover { background: var(--brand); }
.btn-arrow .ic {
  width: 34px; height: 34px; border-radius: 50%;
  background: #fff; color: var(--ink);
  display: grid; place-items: center; flex-shrink: 0;
  transition: transform .22s;
}
.btn-arrow:hover .ic { transform: rotate(45deg); }
.btn-arrow .ic svg { width: 14px; height: 14px; }

/* Mobile hamburger */
.ham {
  width: 38px; height: 38px; border-radius: 999px;
  background: var(--ink); color: #fff;
  display: grid; place-items: center; cursor: pointer; border: none;
}
.ham svg { width: 17px; height: 17px; }
@media (min-width: 768px) { .ham { display: none; } }

/* Mobile nav */
.mob-nav {
  position: fixed; inset: 0; z-index: 50;
  background: oklch(0.12 0.04 264 / .96);
  backdrop-filter: blur(24px);
  padding: 32px; display: flex; flex-direction: column;
  opacity: 0; pointer-events: none; transition: opacity .22s;
}
.mob-nav.open { opacity: 1; pointer-events: all; }
.mob-close {
  align-self: flex-end; width: 38px; height: 38px; border-radius: 50%;
  background: #fff; color: var(--ink); display: grid; place-items: center;
  cursor: pointer; border: none;
}
.mob-close svg { width: 16px; height: 16px; }
.mob-nav nav { margin-top: 48px; display: flex; flex-direction: column; gap: 6px; }
.mob-nav nav button {
  font-family: 'Sora', sans-serif;
  font-size: clamp(32px, 9vw, 52px); font-weight: 700; letter-spacing: -0.04em;
  color: #fff; background: none; border: none; cursor: pointer; text-align: left;
  transition: color .18s; padding: 4px 0;
}
.mob-nav nav button:hover { color: oklch(0.62 0.18 260); }

/* ── PAGE SYSTEM ─────────────────── */
.page { display: none; }
.page.active { display: block; animation: pageIn .38s cubic-bezier(.22,1,.36,1) both; }
@keyframes pageIn { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }

/* ── TYPOGRAPHY UTILITIES ────────── */
.eyebrow {
  font-size: 11px; text-transform: uppercase;
  letter-spacing: .28em; color: var(--ink-3);
  display: flex; align-items: center; gap: 8px;
}
.eyebrow::before {
  content: ''; width: 16px; height: 1px;
  background: var(--brand); flex-shrink: 0;
}

.page-title {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 700; letter-spacing: -0.04em;
  font-size: clamp(44px, 10vw, 96px);
  line-height: .9; color: var(--ink); margin-top: 14px;
}
.page-title .accent { color: var(--brand); }

.section-title {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 700; letter-spacing: -0.04em;
  font-size: clamp(26px, 4vw, 40px);
  color: var(--ink);
}

.lead {
  font-size: clamp(15px, 1.2vw, 17px); line-height: 1.68;
  color: var(--ink-2); max-width: 600px;
}

/* Section wrapper */
.wrap { padding: 56px 24px; }
@media (min-width: 768px) { .wrap { padding: 72px 48px; } }
.wrap-sm { padding: 40px 24px; }
@media (min-width: 768px) { .wrap-sm { padding: 48px 48px; } }

/* Divider */
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ── HOME HERO ───────────────────── */
.hero { padding: 56px 24px 0; }
@media (min-width: 768px) { .hero { padding: 72px 48px 0; } }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1fr 280px; gap: 40px; align-items: start; }
}

.hero-h1 {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 700; letter-spacing: -0.04em;
  font-size: clamp(56px, 12vw, 120px);
  line-height: .88; color: var(--ink);
  animation: fadeUp .85s cubic-bezier(.22,1,.36,1) both;
}
.hero-h1 em { font-style: normal; color: var(--brand); }

.hero-sub {
  margin-top: 24px; max-width: 500px;
  font-size: clamp(15px, 1.2vw, 17px); line-height: 1.68;
  color: var(--ink-2);
  animation: fadeUp .65s .25s both;
}

.hero-cta {
  margin-top: 32px; display: flex; flex-wrap: wrap; gap: 10px;
  animation: fadeUp .55s .45s both;
}

.hero-trust {
  margin-top: 36px; padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 24px;
  animation: fadeUp .5s .6s both; flex-wrap: wrap;
}
.trust-avatars { display: flex; }
.trust-av {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid #fff; margin-right: -7px;
}
.trust-text { font-size: 13px; }
.trust-text strong { display: block; color: var(--ink); font-weight: 600; }
.trust-text span { color: var(--ink-3); }

.stars { display: flex; gap: 2px; }
.stars svg { width: 12px; height: 12px; color: var(--ink); }

/* Hero right — stat column */
.hero-stats {
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--border); border-radius: 20px; overflow: hidden;
  animation: fadeUp .55s .35s both;
}
.hero-stat-tile {
  padding: 24px 22px;
  border-bottom: 1px solid var(--border);
}
.hero-stat-tile:last-child { border-bottom: none; }
.hero-stat-val {
  font-family: 'Sora', sans-serif; font-size: 40px; font-weight: 700;
  letter-spacing: -0.05em; color: var(--ink); line-height: 1;
}
.hero-stat-val.accent { color: var(--brand); }
.hero-stat-label { font-size: 12px; color: var(--ink-3); margin-top: 5px; text-transform: uppercase; letter-spacing: .1em; }

/* Trust bar */
.trust-bar {
  margin-top: 48px; padding: 24px 0;
  border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; gap: 24px 40px;
  align-items: center;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--ink-2);
}
.trust-item-val {
  font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 700;
  letter-spacing: -0.04em; color: var(--ink);
}
.trust-sep { color: var(--border); font-size: 18px; }

/* Ticker */
.ticker-row {
  margin-top: 0; padding: 16px 0;
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.ticker {
  display: flex; gap: 40px; width: max-content;
  white-space: nowrap;
  animation: marquee 36s linear infinite;
}
.ticker-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--ink-3); }
.ticker-dash { width: 12px; height: 1px; background: var(--brand); flex-shrink: 0; }
@keyframes marquee { from { transform:translateX(0); } to { transform:translateX(-50%); } }

/* ── HOME SERVICES OVERVIEW ──────── */
.svc-grid {
  display: grid; gap: 0;
  border: 1px solid var(--border); border-radius: 20px; overflow: hidden;
}
@media (min-width: 768px) { .svc-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1100px) { .svc-grid { grid-template-columns: repeat(4,1fr); } }

.svc-tile {
  padding: 28px 24px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background .2s;
  position: relative; overflow: hidden;
}
.svc-tile:hover { background: var(--muted); }
@media (min-width: 1100px) {
  .svc-tile:nth-child(4n) { border-right: none; }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .svc-tile:nth-child(2n) { border-right: none; }
}
@media (max-width: 767px) {
  .svc-tile { border-right: none; }
}
.svc-tile:nth-last-child(-n+4) { border-bottom: none; }

.svc-num {
  font-size: 11px; color: var(--ink-3); letter-spacing: .1em;
  margin-bottom: 20px; font-family: 'Sora', sans-serif; font-weight: 700;
}
.svc-name {
  font-family: 'Sora', sans-serif; font-size: 17px;
  font-weight: 700; letter-spacing: -0.04em; color: var(--ink);
}
.svc-desc { font-size: 13px; color: var(--ink-3); line-height: 1.55; margin-top: 8px; }
.svc-price {
  font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 700;
  color: var(--brand); margin-top: 20px; letter-spacing: -0.02em;
}
.svc-arrow {
  position: absolute; right: 20px; top: 20px;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--muted); border: 1px solid var(--border);
  display: grid; place-items: center; color: var(--ink-3);
  transition: background .2s, color .2s, transform .22s;
}
.svc-tile:hover .svc-arrow { background: var(--brand); color: #fff; transform: rotate(45deg); }
.svc-arrow svg { width: 12px; height: 12px; }

/* ── HOW IT WORKS ────────────────── */
.hiw-list { margin-top: 40px; display: flex; flex-direction: column; }
.hiw-item {
  display: grid; grid-template-columns: 64px 1fr;
  gap: 0 24px; align-items: start;
  padding: 28px 0; border-top: 1px solid var(--border);
}
.hiw-item:last-child { border-bottom: 1px solid var(--border); }
.hiw-num {
  font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 700;
  color: var(--brand); letter-spacing: .05em; padding-top: 3px;
}
.hiw-body-title {
  font-family: 'Sora', sans-serif; font-size: 18px;
  font-weight: 700; letter-spacing: -0.04em; color: var(--ink);
}
.hiw-body-desc { font-size: 14px; color: var(--ink-3); line-height: 1.65; margin-top: 6px; max-width: 560px; }

/* ── PORTFOLIO ROWS ──────────────── */
.port-list { margin-top: 32px; }
.port-row {
  display: grid;
  grid-template-columns: 36px 1fr auto auto;
  gap: 16px 24px; align-items: center;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  cursor: pointer; transition: background .18s;
  position: relative;
}
.port-row:last-child { border-bottom: 1px solid var(--border); }
@media (max-width: 640px) {
  .port-row { grid-template-columns: 28px 1fr; }
  .port-cat, .port-num-col { display: none; }
}
.port-idx {
  font-family: 'Sora', sans-serif; font-size: 12px; font-weight: 700;
  color: var(--ink-3); letter-spacing: .05em;
}
.port-name-wrap { min-width: 0; }
.port-title-text {
  font-family: 'Sora', sans-serif; font-size: 17px; font-weight: 700;
  letter-spacing: -0.04em; color: var(--ink); white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}
.port-insight { font-size: 13px; color: var(--ink-3); margin-top: 4px; line-height: 1.4; }
.port-result {
  font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 700;
  letter-spacing: -0.04em; white-space: nowrap; text-align: right;
}
.port-cat {
  font-size: 11px; text-transform: uppercase; letter-spacing: .15em;
  color: var(--ink-3); white-space: nowrap; text-align: right;
}
.port-row-overlay {
  position: absolute; inset: 0;
  background: var(--muted); opacity: 0; transition: opacity .18s;
  pointer-events: none; border-radius: 4px;
}
.port-row:hover .port-row-overlay { opacity: 1; }

/* ── TESTIMONIALS ────────────────── */
.testi-grid { margin-top: 40px; display: grid; gap: 24px; }
@media (min-width: 768px) { .testi-grid { grid-template-columns: repeat(3,1fr); } }
.testi-card {
  padding: 28px 24px;
  border: 1px solid var(--border); border-radius: 18px;
}
.testi-quote {
  font-family: 'Sora', sans-serif; font-size: clamp(16px, 2vw, 20px);
  font-weight: 700; letter-spacing: -0.04em;
  color: var(--ink); line-height: 1.2;
}
.testi-quote::before { content: '\201C'; color: var(--brand); }
.testi-quote::after  { content: '\201D'; color: var(--brand); }
.testi-fig { margin-top: 20px; display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 13px; flex-shrink: 0;
}
.testi-name { font-weight: 600; font-size: 14px; color: var(--ink); }
.testi-role { font-size: 12px; color: var(--ink-3); margin-top: 2px; }

/* ── CTA BANNER ──────────────────── */
.cta-band {
  background: var(--ink); color: #fff;
  padding: 40px 24px;
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between; gap: 24px;
}
@media (min-width: 768px) { .cta-band { padding: 40px 48px; } }
.cta-band-title {
  font-family: 'Sora', sans-serif; font-size: clamp(22px, 4vw, 38px);
  font-weight: 700; letter-spacing: -0.04em; line-height: 1.05;
}
.cta-band-sub { font-size: 14px; color: rgba(255,255,255,.65); margin-top: 8px; max-width: 340px; line-height: 1.6; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 10px; flex-shrink: 0; }

/* ── SERVICES TABLE ──────────────── */
.svc-table-wrap {
  border: 1px solid var(--border); border-radius: 18px; overflow: hidden;
  margin-top: 28px;
}
.svc-row {
  display: grid; grid-template-columns: 1fr 2fr auto;
  gap: 16px 24px; align-items: start;
  padding: 18px 24px; border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.svc-row:last-child { border-bottom: none; }
.svc-row:hover { background: var(--muted); }
@media (max-width: 600px) {
  .svc-row { grid-template-columns: 1fr auto; }
  .svc-row-desc { display: none; }
}
.svc-row-name {
  font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 700;
  letter-spacing: -0.03em; color: var(--ink);
}
.svc-row-desc { font-size: 13px; color: var(--ink-3); line-height: 1.55; }
.svc-row-price {
  font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 700;
  color: var(--brand); white-space: nowrap; letter-spacing: -0.02em; text-align: right;
}

/* ── PACKAGES ────────────────────── */
.pkg-row {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  margin-top: 40px;
}
.pkg-card {
  border: 1px solid var(--border); border-radius: 18px;
  padding: 28px; position: relative; overflow: hidden;
  transition: border-color .2s;
}
.pkg-card:hover { border-color: oklch(0.45 0.24 264 / .4); }
.pkg-card.feat {
  border-color: oklch(0.45 0.24 264 / .45);
  background: oklch(0.45 0.24 264 / .03);
}
.pkg-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--brand); color: #fff;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  padding: 4px 14px; border-radius: 0 0 10px 10px;
}
.pkg-label { font-size: 11px; text-transform: uppercase; letter-spacing: .18em; color: var(--ink-3); }
.pkg-price {
  font-family: 'Sora', sans-serif; font-size: 34px; font-weight: 700;
  letter-spacing: -0.05em; color: var(--ink); line-height: 1; margin-top: 8px;
}
.pkg-price .period { font-size: 14px; color: var(--ink-3); font-family: 'Plus Jakarta Sans', sans-serif; letter-spacing: 0; }
.pkg-timeline { font-size: 12px; color: var(--ink-3); margin-top: 4px; }
.pkg-sep { height: 1px; background: var(--border); margin: 18px 0; }
.pkg-feats { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.pkg-feats li { display: flex; gap: 9px; font-size: 13px; color: var(--ink-2); line-height: 1.4; }
.pkg-feats li::before { content: '✓'; color: var(--brand); font-weight: 700; flex-shrink: 0; }

/* ── ABOUT EDITORIAL ─────────────── */
.about-body { max-width: 680px; }
.about-body p {
  font-size: clamp(15px, 1.2vw, 17px); line-height: 1.75; color: var(--ink-2);
  margin-top: 20px;
}
.about-pull {
  font-family: 'Sora', sans-serif; font-size: clamp(28px, 5vw, 52px);
  font-weight: 700; letter-spacing: -0.04em; color: var(--ink);
  line-height: 1.05;
}
.about-pull .n { color: var(--brand); }

.values-list { margin-top: 40px; }
.value-item {
  display: grid; grid-template-columns: 56px 1fr;
  gap: 0 0; padding: 20px 0 20px 0;
  border-top: 1px solid var(--border);
  border-left: 3px solid transparent;
  padding-left: 16px; margin-left: -16px;
  transition: border-color .2s;
}
.value-item:last-child { border-bottom: 1px solid var(--border); }
.value-item:hover { border-left-color: var(--brand); }
.value-num { font-size: 11px; font-weight: 700; color: var(--brand); letter-spacing: .05em; padding-top: 3px; font-family: 'Sora', sans-serif; }
.value-title { font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 700; letter-spacing: -0.04em; color: var(--ink); }
.value-desc { font-size: 14px; color: var(--ink-3); line-height: 1.6; margin-top: 5px; }

.tools-wrap { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 8px; }
.tool-tag {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 14px; border-radius: 999px;
  border: 1px solid var(--border); background: var(--muted);
  font-size: 13px; color: var(--ink-2);
}
.tool-tag::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--brand); flex-shrink: 0; }

.area-row { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 10px; }
.area-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 12px;
  border: 1px solid var(--border); background: var(--muted);
}
.area-flag { font-size: 20px; }
.area-name { font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: -0.03em; color: var(--ink); }
.area-sub { font-size: 11px; color: var(--ink-3); margin-top: 1px; }

/* ── FAQ ─────────────────────────── */
.faq-wrap { max-width: 720px; margin-top: 40px; }
.faq-item { border-top: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 20px 0; text-align: left; cursor: pointer;
  background: none; border: none; font-family: inherit; transition: color .15s;
}
.faq-q {
  font-family: 'Sora', sans-serif; font-size: clamp(15px, 2vw, 18px);
  font-weight: 700; letter-spacing: -0.03em; color: var(--ink);
}
.faq-icon {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: var(--muted); border: 1px solid var(--border);
  display: grid; place-items: center; color: var(--ink-3);
  transition: background .2s, color .2s, transform .28s;
}
.faq-icon svg { width: 14px; height: 14px; }
.faq-item.open .faq-icon { background: var(--brand); color: #fff; border-color: var(--brand); transform: rotate(45deg); }
.faq-ans { max-height: 0; overflow: hidden; opacity: 0; transition: max-height .32s cubic-bezier(.22,1,.36,1), opacity .28s; }
.faq-item.open .faq-ans { max-height: 200px; opacity: 1; }
.faq-ans-txt { padding-bottom: 20px; font-size: 14px; color: var(--ink-2); line-height: 1.7; max-width: 640px; }

/* ── CONTACT ─────────────────────── */
.contact-split {
  display: grid; gap: 48px;
}
@media (min-width: 1024px) { .contact-split { grid-template-columns: 1fr 1.1fr; gap: 60px; } }

.contact-info-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: .2em;
  color: var(--ink-3); margin-bottom: 6px; display: block;
}
.contact-info-val { font-size: 15px; font-weight: 600; color: var(--ink); }

.contact-info-list { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.contact-info-row { display: flex; gap: 14px; align-items: flex-start; }
.contact-info-icon {
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--muted); border: 1px solid var(--border);
  display: grid; place-items: center; flex-shrink: 0; color: var(--ink-2);
}
.contact-info-icon svg { width: 15px; height: 15px; }

.pay-badges { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 8px; }
.pay-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 12px; border-radius: 999px;
  border: 1px solid var(--border); background: var(--muted);
  font-size: 12px; color: var(--ink-2); font-weight: 500;
}

.booking-steps { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.booking-step { display: flex; gap: 12px; align-items: flex-start; }
.step-n {
  width: 24px; height: 24px; border-radius: 7px; flex-shrink: 0;
  background: var(--brand); color: #fff;
  display: grid; place-items: center;
  font-size: 11px; font-weight: 800; font-family: 'Sora', sans-serif;
}
.step-done {
  width: 24px; height: 24px; border-radius: 7px; flex-shrink: 0;
  background: oklch(0.82 0.16 165); color: #fff;
  display: grid; place-items: center; font-size: 12px;
}
.step-txt { font-size: 13px; color: var(--ink-2); line-height: 1.5; padding-top: 3px; }

/* Form */
.form-body { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; }
.field-lbl { font-size: 11px; text-transform: uppercase; letter-spacing: .18em; color: var(--ink-3); }
.field-inp {
  border: 1px solid var(--border); background: #fff;
  padding: 11px 15px; border-radius: 12px;
  color: var(--ink); font-size: 14px;
  transition: border-color .18s, box-shadow .18s; outline: none;
  width: 100%;
}
.field-inp::placeholder { color: oklch(0.55 0.03 264 / .7); }
.field-inp:focus { border-color: var(--brand); box-shadow: 0 0 0 3px oklch(0.45 0.24 264 / .1); }
select.field-inp { cursor: pointer; -webkit-appearance: none; }
textarea.field-inp { resize: vertical; min-height: 110px; border-radius: 14px; }

/* ── OUTER FOOTER ────────────────── */
.site-footer {
  margin-top: 20px; padding: 0 8px 24px;
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 14px;
  font-size: 13px; color: rgba(255,255,255,.6);
}
.footer-socials { display: flex; gap: 8px; }
.footer-social {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: none;
  display: grid; place-items: center; cursor: pointer;
  transition: background .18s; color: #fff;
}
.footer-social:hover { background: rgba(255,255,255,.18); }
.footer-social svg { width: 13px; height: 13px; }

/* ── ANIMATIONS ─────────────────── */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(16px); }
  to   { opacity:1; transform:translateY(0); }
}
.anim { animation: fadeUp .55s cubic-bezier(.22,1,.36,1) both; }
.d1 { animation-delay:.07s; } .d2 { animation-delay:.14s; }
.d3 { animation-delay:.21s; } .d4 { animation-delay:.28s; }

/* ── MISC ────────────────────────── */
@media (max-width: 640px) { .hide-sm { display: none !important; } }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--brand); }
::-webkit-scrollbar-thumb { background: oklch(0.62 0.18 260); border-radius: 2px; }

/* ── CYBER NOTICE ────────────────── */
.cyber-note {
  background: oklch(0.78 0.16 80 / .08); border: 1px solid oklch(0.78 0.16 80 / .25);
  border-radius: 12px; padding: 14px 18px;
  display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px;
  font-size: 13px; color: var(--ink-2); line-height: 1.55;
}

/* ── TAB SYSTEM ─────────────────── */
.tabs { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 36px; }
.tab {
  padding: 9px 18px; border-radius: 999px; font-size: 13px; font-weight: 600;
  color: var(--ink-3); background: var(--muted); border: 1px solid var(--border);
  cursor: pointer; transition: all .18s; font-family: inherit;
}
.tab:hover { color: var(--ink); }
.tab.active { background: var(--ink); color: #fff; border-color: var(--ink); }

.tab-panel { display: none; }
.tab-panel.active { display: block; animation: pageIn .3s both; }

/* ── FILTER BAR ─────────────────── */
.filters { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 32px; }
.filt {
  padding: 8px 16px; border-radius: 999px; font-size: 13px; font-weight: 500;
  color: var(--ink-3); background: var(--muted); border: 1px solid var(--border);
  cursor: pointer; transition: all .18s; font-family: inherit;
}
.filt:hover { color: var(--ink); }
.filt.active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ── TEAM PAGE ─────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 36px;
}
@media (min-width: 640px)  { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }

.team-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color .2s, transform .28s cubic-bezier(.22,1,.36,1);
}
.team-card:hover {
  border-color: oklch(0.45 0.24 264 / .35);
  transform: translateY(-4px);
}
.team-av-wrap {
  aspect-ratio: 4/5;
  display: grid; place-items: center;
}
.team-initials {
  font-family: 'Sora', sans-serif;
  font-size: clamp(40px, 8vw, 64px);
  font-weight: 700; letter-spacing: -0.04em;
  color: rgba(255,255,255,.92);
}
.team-info {
  padding: 16px 18px 18px;
  border-top: 1px solid var(--border);
}
.team-name {
  font-family: 'Sora', sans-serif;
  font-size: 15px; font-weight: 700; letter-spacing: -0.04em; color: var(--ink);
}
.team-role { font-size: 12px; color: var(--ink-3); margin-top: 3px; }

.hiring-band {
  margin-top: 56px;
  background: var(--ink); color: #fff;
  border-radius: 20px;
  padding: 36px 40px;
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between; gap: 24px;
}
.hiring-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(20px, 3.5vw, 32px);
  font-weight: 700; letter-spacing: -0.04em;
}
.hiring-sub { margin-top: 8px; color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.6; max-width: 380px; }

/* ── ABOUT TESTIMONIALS ────────────────────── */
.about-testi-grid {
  display: grid; gap: 16px; margin-top: 32px;
}
@media (min-width: 768px) { .about-testi-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── EXTRA PORTFOLIO COLORS ────────────────── */
.port-result.c-mint   { color: oklch(0.82 0.16 165); }
.port-result.c-brand  { color: var(--brand); }
.port-result.c-violet { color: oklch(0.68 0.2  305); }
.port-result.c-coral  { color: oklch(0.75 0.18  25); }
.port-result.c-amber  { color: oklch(0.78 0.16  80); }

/* ── CONSULT STRIP ─────────────────────────────── */
.consult-strip {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 20px;
  background: var(--muted); border-radius: 20px;
  padding: 20px 28px; margin-top: 40px;
  border: 1px solid var(--border);
}
.consult-inner { display: flex; align-items: center; gap: 14px; }
.consult-img {
  width: 56px; height: 56px; border-radius: 50%;
  object-fit: cover; object-position: top center; flex-shrink: 0;
  border: 2px solid #fff;
  box-shadow: 0 2px 10px oklch(0.25 0.18 264 / .15);
}
.consult-title {
  font-family: 'Sora', sans-serif; font-size: 16px;
  font-weight: 700; letter-spacing: -0.04em; color: var(--ink);
}
.consult-sub { font-size: 13px; color: var(--ink-3); margin-top: 3px; line-height: 1.4; }

/* ── CURRENCY TOGGLE ───────────────────────────── */
.currency-bar {
  display: flex; align-items: center; gap: 14px;
  margin-top: 28px;
}
.currency-label { font-size: 13px; color: var(--ink-3); }
.currency-toggle {
  position: relative; display: inline-flex;
  background: var(--muted); border: 1px solid var(--border);
  border-radius: 999px; padding: 3px; gap: 0;
}
.cur-btn {
  position: relative; z-index: 1;
  padding: 6px 18px; border-radius: 999px; border: none;
  font-size: 13px; font-weight: 600; cursor: pointer;
  background: none; font-family: inherit; color: var(--ink-3);
  transition: color .18s;
}
.cur-btn.active { color: var(--ink); }
.cur-pill {
  position: absolute; top: 3px; bottom: 3px;
  border-radius: 999px; background: #fff;
  box-shadow: 0 1px 4px oklch(0.25 0.18 264 / 0.12);
  transition: left .25s cubic-bezier(.22,1,.36,1), width .25s cubic-bezier(.22,1,.36,1);
  pointer-events: none;
}
.currency-note { font-size: 12px; color: var(--ink-3); }
.currency-note span { color: var(--brand); font-weight: 600; }

/* price values that switch */
[data-tsh], [data-usd] { transition: opacity .2s; }
