/* ============================================================
   TAMOOR ALI — "SwiftForm-format" portfolio
   Layout language after the SwiftForm template, rebuilt from
   scratch with a mint-teal accent. Dark hero/footer, light body,
   pastel stat cards, pill buttons with circular arrow badges.
   ============================================================ */

:root {
  --ink: #0b0d0c;          /* near-black for dark sections */
  --ink-2: #11201b;        /* dark green-tinted card */
  --paper: #ffffff;
  --soft: #eef1ee;         /* light section background */
  --soft-2: #e6ebe7;
  --text: #14181a;         /* body text on light */
  --muted: #66706c;        /* muted on light */
  --line: rgba(20, 24, 26, 0.1);
  --line-d: rgba(255, 255, 255, 0.12);

  --mint: #34f5c5;         /* primary accent */
  --mint-deep: #0c9e7d;    /* accent for text on light bg */
  --blue: #5b8cff;

  /* pastel cards */
  --pc-mint: #d6efe5;
  --pc-blue: #dbe6fb;
  --pc-lav:  #e7defb;
  --pc-peach:#fde7d2;
  --pc-pink: #fbdedd;

  --font-display: "Bricolage Grotesque", "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --container: min(1200px, 92vw);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --r: 22px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

::selection { background: var(--mint); color: #06140f; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.02; letter-spacing: -0.02em; }

.container { width: var(--container); margin-inline: auto; }
.mono { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; }

.skip { position: fixed; top: -100%; left: 1rem; z-index: 200; background: var(--mint); color: #06140f;
  padding: 0.6rem 1rem; border-radius: 8px; font-weight: 600; }
.skip:focus { top: 1rem; }
:focus-visible { outline: 2px solid var(--mint-deep); outline-offset: 3px; border-radius: 6px; }

/* ---------- Pills & buttons ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.45rem 0.85rem; border-radius: 999px; border: 1px solid var(--line);
  color: var(--muted); background: var(--paper);
}
.badge .star { color: var(--mint-deep); }
.badge--dark { background: rgba(255,255,255,0.06); border-color: var(--line-d); color: rgba(255,255,255,0.8); }

.btn {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--font-display); font-weight: 500; font-size: 0.98rem;
  padding: 0.5rem 0.5rem 0.5rem 1.3rem; border-radius: 999px;
  transition: transform 0.35s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
  will-change: transform; cursor: pointer; border: 1px solid transparent;
}
.btn .ico {
  width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; flex: none;
  transition: transform 0.4s var(--ease), background 0.3s;
}
.btn .ico svg { width: 15px; height: 15px; }
.btn:hover .ico { transform: rotate(-45deg); }
.btn-mint { background: var(--mint); color: #06140f; }
.btn-mint .ico { background: #06140f; color: var(--mint); }
.btn-mint:hover { background: #57ffd6; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark .ico { background: var(--mint); color: #06140f; }
.btn-ghost { border-color: var(--line); color: var(--text); padding-right: 1.3rem; }
.btn-ghost:hover { border-color: var(--text); }
.btn-ghost-d { border-color: var(--line-d); color: #fff; padding-right: 1.3rem; }
.btn-ghost-d:hover { border-color: #fff; }

.eyebrow { display: inline-flex; }
.sec-head { text-align: center; max-width: 720px; margin: 0 auto clamp(2.5rem, 5vw, 3.5rem); }
.sec-head .badge { margin-bottom: 1.2rem; }
.sec-head h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
.sec-head p { color: var(--muted); margin-top: 1rem; }

section { position: relative; }
.pad { padding: clamp(4.5rem, 9vh, 7.5rem) 0; }

/* reveal helper (JS adds .in) */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.no-js .reveal, .no-anim .reveal { opacity: 1; transform: none; }

/* ============ NAV ============ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 80;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem clamp(1rem, 4vw, 2.4rem);
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s, box-shadow 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled { background: rgba(255,255,255,0.82); backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px); border-bottom-color: var(--line); }
.nav.on-dark { color: #fff; }
.nav.on-dark.scrolled { color: var(--text); }
.nav-logo { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; display: flex; align-items: center; gap: 0.5rem; }
.nav-logo .dot { color: var(--mint-deep); }
.nav.on-dark:not(.scrolled) .nav-logo .dot { color: var(--mint); }
.nav-links { display: flex; gap: clamp(1rem, 2.2vw, 2rem); }
.nav-links a { font-size: 0.9rem; font-weight: 500; opacity: 0.85; position: relative; padding: 0.3rem 0; transition: opacity 0.25s; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--mint-deep); transform: scaleX(0); transform-origin: right; transition: transform 0.35s var(--ease); }
.nav.on-dark:not(.scrolled) .nav-links a::after { background: var(--mint); }
.nav-links a:hover, .nav-links a.active { opacity: 1; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav .btn { font-size: 0.9rem; padding: 0.4rem 0.4rem 0.4rem 1.1rem; }
.nav .btn .ico { width: 30px; height: 30px; }
@media (max-width: 920px) { .nav-links { display: none; } }

/* ============ HERO ============ */
.hero { background: var(--ink); color: #fff; padding: 7.5rem 0 3rem; position: relative; overflow: hidden; }
.hero::before { /* soft glow */
  content: ""; position: absolute; width: 60vw; height: 60vw; left: -10vw; top: -20vw; border-radius: 50%;
  background: radial-gradient(circle, rgba(52,245,197,0.18), transparent 60%); pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; position: relative; }
.hero-h1 { font-size: clamp(2.7rem, 6.4vw, 5rem); line-height: 0.98; margin: 1.6rem 0 1.5rem; }
.hero-h1 .accent { color: var(--mint); }
.hero-h1 .word { display: inline-block; overflow: hidden; vertical-align: top; }
.hero-h1 .word-in { display: inline-block; will-change: transform; transition: transform 0.9s var(--ease); }
.hero-h1.is-pre .word-in { transform: translateY(115%); }
.hero-sub { color: rgba(255,255,255,0.72); font-size: 1.1rem; max-width: 44ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2.2rem; }

.hero-media { position: relative; }
/* two-card cluster: photo card + info card, like the SwiftForm hero */
.hero-cards { display: grid; grid-template-columns: 1.06fr 0.94fr; gap: 0.9rem; align-items: stretch; }

.hc-photo {
  position: relative; border-radius: var(--r); overflow: hidden; min-height: 420px;
  border: 1px solid var(--line-d); background: var(--ink-2);
}
.hc-photo img { width: 100%; height: 100%; object-fit: cover; }
.hc-photo.no-photo img { display: none; }
.hc-photo .ph {
  position: absolute; inset: 0; display: none; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 5rem; color: var(--mint);
  background: radial-gradient(circle at 35% 25%, rgba(52,245,197,0.18), transparent 60%);
}
.hc-photo.no-photo .ph { display: grid; }
.chip {
  position: absolute; left: 0.9rem; bottom: 0.9rem; display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.94); color: #06140f; padding: 0.55rem 0.9rem; border-radius: 999px;
  font-size: 0.78rem; font-weight: 600; backdrop-filter: blur(6px); box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.chip .tick { width: 16px; height: 16px; border-radius: 50%; background: var(--mint-deep); color: #fff;
  display: grid; place-items: center; font-size: 0.58rem; }

.hc-info {
  background: var(--paper); color: var(--text); border-radius: var(--r); padding: 1.4rem 1.3rem;
  display: flex; flex-direction: column;
}
.hc-title { font-size: 1.5rem; line-height: 1.05; margin-bottom: 1.2rem; }
.hc-list { list-style: none; display: grid; gap: 0.7rem; }
.hc-list li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; font-weight: 500; }
.hc-list .tick { flex: none; width: 20px; height: 20px; border-radius: 50%; background: var(--ink); color: var(--mint);
  display: grid; place-items: center; font-size: 0.56rem; }
.hc-foot { margin-top: auto; padding-top: 1.4rem; display: flex; align-items: flex-end; justify-content: space-between; gap: 0.5rem; }
.hc-n { font-family: var(--font-display); font-weight: 700; font-size: 1.9rem; letter-spacing: -0.03em; }
.hc-l { font-size: 0.72rem; color: var(--muted); margin-top: 0.1rem; }
.hc-bars { display: flex; align-items: flex-end; gap: 4px; height: 34px; }
.hc-bars i { width: 7px; background: var(--mint); border-radius: 2px; display: block; }

@media (max-width: 480px) {
  .hero-cards { grid-template-columns: 1fr; }
  .hc-photo { min-height: 340px; }
}

.partners { margin-top: clamp(3rem, 6vh, 4.5rem); }
.partners-l { color: rgba(255,255,255,0.5); margin-bottom: 1.2rem; }
.partners-track { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.partners-row { display: flex; gap: 2.6rem; width: max-content; animation: pmarq 36s linear infinite; }
.partners-row span { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem;
  color: rgba(255,255,255,0.62); white-space: nowrap; letter-spacing: 0.01em; }
@keyframes pmarq { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .partners-row { animation: none; flex-wrap: wrap; } }

@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 420px; }
  .hero-statcard { right: 0; }
}

/* ============ ABOUT + stat cards ============ */
.about { background: var(--paper); }
.about-h { font-size: clamp(1.9rem, 4.2vw, 3.1rem); max-width: 18ch; margin-bottom: 2.6rem; }
.about-h .muted { color: var(--muted); }
.statgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.statcard { border-radius: var(--r); padding: 1.5rem 1.4rem; min-height: 150px; display: flex; flex-direction: column; justify-content: space-between; }
.statcard .n { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 3.6vw, 2.8rem); letter-spacing: -0.03em; }
.statcard .l { font-size: 0.82rem; color: #2c3330; }
.statcard.pc-mint { background: var(--pc-mint); }
.statcard.pc-blue { background: var(--pc-blue); }
.statcard.pc-lav { background: var(--pc-lav); }
.statcard.pc-peach { background: var(--pc-peach); }
.statcard.pc-pink { background: var(--pc-pink); }
.statcard.dark { background: var(--ink); color: #fff; }
.statcard.dark .l { color: rgba(255,255,255,0.7); }
.statcard .mini-btn { align-self: flex-start; margin-top: 0.6rem; }
@media (max-width: 920px) { .statgrid { grid-template-columns: repeat(2, 1fr); } }

/* ============ FEATURE splits ============ */
.feature { background: var(--soft); }
.feature.alt { background: var(--paper); }
.feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.feat-grid.flip .feat-copy { order: 2; }
.feat-copy h2 { font-size: clamp(1.8rem, 3.8vw, 2.8rem); margin: 1rem 0 1rem; }
.feat-copy > p { color: var(--muted); max-width: 46ch; }
.checklist { list-style: none; margin: 1.6rem 0 2rem; display: grid; gap: 0.85rem; }
.checklist li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.98rem; }
.checklist .tick { flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--ink); color: var(--mint);
  display: grid; place-items: center; font-size: 0.62rem; margin-top: 1px; }
.feat-visual { border-radius: var(--r); min-height: 340px; position: relative; overflow: hidden; padding: 1.6rem;
  background: var(--soft-2); border: 1px solid var(--line); display: flex; }
.feat-visual.lav { background: var(--pc-lav); border-color: transparent; }
.viz-card { background: var(--paper); border-radius: 16px; padding: 1.4rem; align-self: center; width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06); }
.viz-card .vbig { font-family: var(--font-display); font-weight: 700; font-size: 3rem; letter-spacing: -0.03em; }
.viz-card .vbig sup { font-size: 1rem; color: var(--muted); font-weight: 500; vertical-align: super; }
.viz-card .vlab { color: var(--muted); font-size: 0.9rem; margin-top: 0.3rem; }
.bars { display: flex; align-items: flex-end; gap: 8px; height: 90px; margin-top: 1.2rem; }
.bars i { flex: 1; background: var(--soft-2); border-radius: 5px; }
.bars i.hot { background: var(--mint); }
/* line chart card (dark) */
.viz-chart { background: var(--ink); border-radius: 16px; padding: 1.4rem; width: 100%; align-self: center; color: #fff; }
.viz-chart .ct { font-weight: 600; font-family: var(--font-display); }
.viz-chart .cs { color: rgba(255,255,255,0.55); font-size: 0.75rem; margin-bottom: 0.6rem; }
.viz-chart svg { width: 100%; height: 150px; display: block; }
@media (max-width: 920px) {
  .feat-grid { grid-template-columns: 1fr; }
  .feat-grid.flip .feat-copy { order: 0; }
}

/* ============ SERVICES ============ */
.services { background: var(--soft); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.svc-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 1.8rem 1.7rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s; }
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.07); border-color: transparent; }
.svc-ico { width: 46px; height: 46px; border-radius: 12px; background: var(--pc-mint); color: var(--ink-2);
  display: grid; place-items: center; margin-bottom: 2.6rem; }
.svc-ico svg { width: 22px; height: 22px; }
.svc-card h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.svc-card p { color: var(--muted); font-size: 0.92rem; }
@media (max-width: 920px) { .svc-grid { grid-template-columns: 1fr; } }

/* ============ EXPERIENCE (accordion, designleader-style) ============ */
.exp { background: var(--paper); }
.exp-title { font-size: clamp(1.7rem, 3.8vw, 2.7rem); max-width: 18ch; margin-bottom: 2.6rem; color: var(--muted); font-weight: 600; }
.exp-title .hl { color: var(--text); }
/* rotating job title */
.role-rot { display: inline-block; position: relative; vertical-align: bottom; }
.role-rot-in { display: inline-block; color: var(--text); white-space: nowrap;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease); }
.role-rot-in::after { content: ""; display: inline-block; width: 3px; height: 0.9em; margin-left: 4px;
  background: var(--mint-deep); vertical-align: -0.08em; animation: rot-caret 1s steps(2) infinite; }
.role-rot.swap .role-rot-in { opacity: 0; transform: translateY(0.4em); }
@keyframes rot-caret { 50% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  .role-rot-in { transition: none; }
  .role-rot-in::after { animation: none; }
}
.xp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; align-items: start; }
.xp-card { background: var(--soft); border-radius: var(--r); overflow: hidden; transition: background 0.35s; }
.xp-card.open { background: var(--soft-2); }
.xp-head { width: 100%; text-align: left; background: transparent; border: 0; cursor: pointer;
  padding: 1.5rem 1.6rem; display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.xp-meta { display: flex; flex-direction: column; gap: 0.28rem; }
.xp-co { font-family: var(--font-display); font-weight: 700; font-size: 1.45rem; letter-spacing: -0.01em; }
.xp-role { font-size: 0.95rem; color: var(--text); }
.xp-yr { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.xp-plus { position: relative; width: 36px; height: 36px; border-radius: 50%; background: var(--paper);
  border: 1px solid var(--line); flex: none; transition: background 0.35s, border-color 0.35s; }
.xp-plus::before, .xp-plus::after { content: ""; position: absolute; top: 50%; left: 50%; background: var(--ink);
  border-radius: 2px; transition: transform 0.4s var(--ease), background 0.35s; }
.xp-plus::before { width: 13px; height: 2px; transform: translate(-50%, -50%); }
.xp-plus::after { width: 2px; height: 13px; transform: translate(-50%, -50%); }
.xp-card.open .xp-plus { background: var(--mint); border-color: var(--mint); }
.xp-card.open .xp-plus::before, .xp-card.open .xp-plus::after { background: #06140f; }
.xp-card.open .xp-plus::after { transform: translate(-50%, -50%) scaleY(0); }
.xp-body { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.xp-body-in { padding: 0 1.6rem 1.6rem; }
.xp-body-in ul { list-style: none; display: grid; gap: 0.7rem; }
.xp-body-in li { position: relative; padding-left: 1.1rem; color: var(--muted); font-size: 0.92rem; line-height: 1.55; }
.xp-body-in li::before { content: ""; position: absolute; left: 0; top: 0.6em; width: 6px; height: 6px;
  border-radius: 50%; background: var(--mint-deep); }
.xp-video { display: inline-flex; align-items: center; gap: 0.8rem; margin-top: 1.2rem;
  padding: 0.6rem 1rem 0.6rem 0.6rem; border-radius: 14px; background: var(--ink); color: #fff;
  transition: transform 0.35s var(--ease); }
.xp-video:hover { transform: translateY(-2px); }
.xp-play { width: 32px; height: 32px; border-radius: 50%; background: var(--mint); color: #06140f;
  display: grid; place-items: center; font-size: 0.7rem; flex: none; }
.xp-video-t { display: block; font-weight: 600; font-size: 0.9rem; }
.xp-video-s { display: block; font-size: 0.74rem; color: rgba(255, 255, 255, 0.6); }
.xp-cv { margin-top: 2rem; }
@media (max-width: 760px) { .xp-grid { grid-template-columns: 1fr; } }

/* ============ WAYS TO WORK (adapted pricing) ============ */
.ways { background: var(--ink); color: #fff; }
.ways .sec-head h2, .ways .sec-head { color: #fff; }
.ways .sec-head p { color: rgba(255,255,255,0.65); }
.toggle { display: inline-flex; align-items: center; gap: 0.7rem; background: rgba(255,255,255,0.08);
  border: 1px solid var(--line-d); border-radius: 999px; padding: 0.35rem; margin: 0 auto; }
.toggle button { font-family: var(--font-body); font-weight: 600; font-size: 0.85rem; color: rgba(255,255,255,0.6);
  background: transparent; border: 0; padding: 0.45rem 1.1rem; border-radius: 999px; cursor: pointer; transition: all 0.3s; }
.toggle button.on { background: var(--mint); color: #06140f; }
.ways-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 2.6rem; }
.plan { border-radius: var(--r); padding: 2rem 1.9rem; }
.plan.light { background: var(--paper); color: var(--text); }
.plan.deep { background: var(--ink-2); border: 1px solid var(--line-d); }
.plan h3 { font-size: 1.5rem; }
.plan .ptag { color: var(--muted); font-size: 0.9rem; margin-top: 0.2rem; }
.plan.deep .ptag { color: rgba(255,255,255,0.6); }
.plan .pwhat { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin: 1.6rem 0 1rem; }
.plan.deep .pwhat { color: rgba(255,255,255,0.5); }
.plan ul { list-style: none; display: grid; gap: 0.8rem; margin-bottom: 1.8rem; }
.plan li { display: flex; gap: 0.6rem; font-size: 0.95rem; }
.plan li .tick { flex: none; color: var(--mint-deep); }
.plan.deep li .tick { color: var(--mint); }
.plan .lead { font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; margin: 1.2rem 0 0.2rem; }
@media (max-width: 820px) { .ways-grid { grid-template-columns: 1fr; } }

/* ============ TESTIMONIALS bento ============ */
.tms { background: var(--paper); }
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; grid-auto-rows: 1fr; }
.tcard { border-radius: var(--r); padding: 1.6rem; display: flex; flex-direction: column; gap: 1rem; }
.tcard.quote { background: var(--soft); }
.tcard.quote p { font-size: 0.98rem; line-height: 1.55; }
.tcard.dark { background: var(--ink); color: #fff; grid-column: span 2; }
.tcard.dark p { font-size: 1.08rem; line-height: 1.5; }
.tcard.stat { background: var(--pc-lav); justify-content: center; }
.tcard.stat.peach { background: var(--pc-peach); }
.tcard.stat.mint { background: var(--pc-mint); }
.tcard.stat .n { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem,3.2vw,2.6rem); letter-spacing: -0.03em; }
.tcard.stat .l { font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; color: #2c3330; }
.tperson { display: flex; align-items: center; gap: 0.7rem; margin-top: auto; }
.tperson .av { width: 38px; height: 38px; border-radius: 50%; flex: none; background: var(--mint); color: #06140f;
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 0.85rem; }
.tcard.dark .tperson .av { background: var(--mint); }
.tperson .nm { font-weight: 600; font-size: 0.9rem; }
.tperson .rl { font-size: 0.74rem; color: var(--muted); }
.tcard.dark .tperson .rl { color: rgba(255,255,255,0.55); }
@media (max-width: 920px) { .bento { grid-template-columns: repeat(2, 1fr); }
  .tcard.dark { grid-column: span 2; } }
@media (max-width: 560px) { .bento { grid-template-columns: 1fr; }
  .tcard.dark { grid-column: span 1; } }

/* ============ INSIGHTS ============ */
.insights { background: var(--soft); }
.ins-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.ins-card { background: var(--paper); border-radius: var(--r); overflow: hidden; border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), box-shadow 0.4s; }
.ins-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.08); }
.ins-img { aspect-ratio: 16/10; background: linear-gradient(135deg, var(--g1), var(--g2)); }
.ins-body { padding: 1.4rem 1.5rem 1.7rem; }
.ins-body .k { color: var(--muted); }
.ins-body h3 { font-size: 1.18rem; margin-top: 0.5rem; }
@media (max-width: 920px) { .ins-grid { grid-template-columns: 1fr; } }

/* ============ FAQ ============ */
.faq { background: var(--paper); }
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 0.8rem; }
.qa { background: var(--soft); border-radius: 16px; overflow: hidden; }
.qa-q { width: 100%; text-align: left; background: transparent; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.2rem 1.4rem; font-family: var(--font-display); font-weight: 500; font-size: 1.05rem; color: var(--text); }
.qa-q .pm { width: 30px; height: 30px; border-radius: 50%; background: var(--ink); color: #fff; flex: none;
  display: grid; place-items: center; transition: transform 0.4s var(--ease); }
.qa.open .qa-q .pm { transform: rotate(45deg); background: var(--mint); color: #06140f; }
.qa-a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.qa-a p { padding: 0 1.4rem 1.3rem; color: var(--muted); }

/* ============ CTA + FOOTER ============ */
.cta { background: var(--ink); color: #fff; text-align: center; }
.cta h2 { font-size: clamp(2.4rem, 6vw, 4.5rem); max-width: 16ch; margin: 0 auto 1.4rem; }
.cta h2 .accent { color: var(--mint); }
.cta p { color: rgba(255,255,255,0.65); max-width: 44ch; margin: 0 auto 2rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; }

.footer { background: var(--ink); color: #fff; border-top: 1px solid var(--line-d); padding: 3.5rem 0 2.5rem; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; }
.foot-brand .nav-logo { color: #fff; margin-bottom: 1rem; }
.foot-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; max-width: 30ch; }
.foot-col h4 { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 1rem; }
.foot-col a { display: block; color: rgba(255,255,255,0.78); font-size: 0.92rem; padding: 0.3rem 0; transition: color 0.25s; }
.foot-col a:hover { color: var(--mint); }
.foot-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-top: 3rem;
  padding-top: 1.5rem; border-top: 1px solid var(--line-d); color: rgba(255,255,255,0.5); font-size: 0.82rem; }
.foot-social { display: flex; gap: 0.6rem; }
.foot-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line-d);
  display: grid; place-items: center; color: #fff; transition: background 0.3s, color 0.3s, border-color 0.3s; }
.foot-social a:hover { background: var(--mint); color: #06140f; border-color: var(--mint); }
.foot-social svg { width: 16px; height: 16px; }
@media (max-width: 820px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; } }

@media (prefers-reduced-motion: reduce) {
  .btn, .case-row, .svc-card, .ins-card { transition: none; }
}
