/* ==========================================================================
   Do My Programming Homework — Master Copy V9
   Dark / white theme.
   --------------------------------------------------------------------------
   1.  Tokens
   2.  Base
   3.  Layout
   4.  Buttons
   5.  Header
   6.  Hero
   7.  Terminal / code windows + tabs
   8.  Coverage explorer
   9.  Tables (pricing, time)
   10. Ways to work / cards
   11. Sample package tabs + document styling
   12. Developers
   13. Numbered rows
   14. Language grid
   15. Reviews
   16. FAQ
   17. Form
   18. Closing CTA / footer
   19. Toast & sticky CTA
   20. Motion
   21. Responsive
   ========================================================================== */

/* 1. Tokens ------------------------------------------------------------ */
:root {
  --white: #ffffff;
  --bg-soft: #f5f6fa;
  --ink: #0a0c14;
  --body: #4b5165;
  --muted: #888fa3;
  --line: #e8e9f0;

  --dark: #06070d;
  --dark-2: #0e1020;
  --dark-line: rgba(255, 255, 255, 0.09);
  --dark-line-2: rgba(255, 255, 255, 0.16);
  --dark-body: #a9aec2;
  --dark-muted: #767ca0;

  --grad-a: #6d5bff;
  --grad-b: #a855f7;
  --grad-c: #ec4899;
  --gradient: linear-gradient(95deg, var(--grad-a), var(--grad-b) 65%, var(--grad-c));
  --gradient-flat: linear-gradient(95deg, var(--grad-a), var(--grad-b));

  --success: #17b26a;
  --danger: #e5484d;
  --star: #f0a92c;

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  --mono: "SF Mono", ui-monospace, "JetBrains Mono", Menlo, Consolas, monospace;

  --radius: 12px;
  --radius-lg: 20px;
  --container: 1120px;
  --header-h: 76px;
}

/* 2. Base ---------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.7;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.5em;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 660;
}

h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.15rem);
  letter-spacing: -0.038em;
}
h2 {
  font-size: clamp(1.7rem, 2.9vw, 2.3rem);
}
h3 {
  font-size: 1.06rem;
  font-weight: 630;
}
h4 {
  font-size: 0.98rem;
  font-weight: 620;
}

p {
  margin: 0 0 1rem;
}

a {
  color: var(--grad-a);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

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

:focus-visible {
  outline: 2px solid var(--grad-a);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  z-index: 200;
}
.skip-link:focus {
  left: 0;
}

.icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex: none;
}

.grad-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stars {
  color: var(--star);
  letter-spacing: 1.5px;
  font-size: 0.82rem;
}

/* Placeholder marker for unfinished data blocks */
.todo {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px dashed rgba(240, 169, 44, 0.5);
  background: rgba(240, 169, 44, 0.07);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 32px;
  font-size: 0.86rem;
  color: #8a6a1f;
}
.todo .icon {
  width: 17px;
  height: 17px;
  margin-top: 3px;
  color: #b5851f;
}
.todo strong {
  color: #6d5313;
}
.section--dark .todo {
  color: #e3c483;
  background: rgba(240, 169, 44, 0.09);
}
.section--dark .todo strong {
  color: #f5d99b;
}

/* 3. Layout --------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.container--narrow {
  max-width: 820px;
}

.section {
  padding: 92px 0;
}
.section--soft {
  background: var(--bg-soft);
}
.section--dark {
  background: var(--dark);
  color: var(--dark-body);
}
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

.section-head {
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-head--left {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
  max-width: 760px;
}
.eyebrow {
  display: block;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.section--dark .eyebrow {
  color: var(--dark-muted);
}
.eyebrow--grad {
  background: var(--gradient-flat);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 620;
}
.section-head h2 {
  margin-bottom: 14px;
}
.section-head p {
  color: var(--muted);
  margin: 0 auto;
}
.section--dark .section-head p {
  color: var(--dark-body);
}

.prose {
  max-width: 720px;
}
.prose--center {
  margin-inline: auto;
}
.prose p:last-child {
  margin-bottom: 0;
}
.prose strong {
  color: var(--ink);
  font-weight: 620;
}
.section--dark .prose strong {
  color: #fff;
}

.note {
  font-size: 0.92rem;
  color: var(--muted);
}

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

/* 4. Buttons --------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font: inherit;
  font-weight: 580;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease,
    border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}
.btn:hover {
  text-decoration: none;
}
.btn--grad {
  background: var(--gradient-flat);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(109, 91, 255, 0.55);
}
.btn--grad:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -8px rgba(109, 91, 255, 0.65);
}
.btn--dark {
  background: var(--ink);
  color: #fff;
}
.btn--dark:hover {
  background: #1c2033;
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover {
  border-color: #cfd2e0;
}
.btn--ghost-dark {
  background: transparent;
  color: #fff;
  border-color: var(--dark-line-2);
}
.btn--ghost-dark:hover {
  border-color: rgba(255, 255, 255, 0.4);
}
.btn--light {
  background: #fff;
  color: var(--ink);
}
.btn--light:hover {
  background: #eceef5;
}
.btn--block {
  width: 100%;
}
.btn--lg {
  padding: 16px 32px;
}
.btn--sm {
  padding: 10px 18px;
  font-size: 0.9rem;
}
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* 5. Header ----------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: var(--header-h);
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 660;
  font-size: 0.98rem;
  color: var(--ink);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.logo:hover {
  text-decoration: none;
}
.logo__mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--gradient-flat);
  color: #fff;
  display: grid;
  place-items: center;
  flex: none;
}
.logo__mark .icon {
  width: 16px;
  height: 16px;
  stroke-width: 2.1;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  color: var(--body);
  font-size: 0.92rem;
  font-weight: 490;
  transition: color 0.15s ease;
}
.nav__links a:hover {
  color: var(--ink);
  text-decoration: none;
}
.nav__links a[aria-current="page"] {
  color: var(--ink);
  font-weight: 620;
}
.nav__links .btn {
  display: none;
}
.nav__cta .btn {
  padding: 11px 20px;
  font-size: 0.92rem;
}
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: none;
  cursor: pointer;
  padding: 0;
  place-items: center;
  color: var(--ink);
}
.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  display: block;
  width: 17px;
  height: 1.6px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
}
.nav-toggle__bars::before {
  transform: translateY(-5.5px);
}
.nav-toggle__bars::after {
  transform: translateY(5.5px);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bars {
  background: transparent;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before {
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after {
  transform: rotate(-45deg);
}

/* 6. Hero --------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--dark);
  padding: 84px 0 76px;
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 640px;
  background: radial-gradient(
      520px 320px at 22% 18%,
      rgba(109, 91, 255, 0.32),
      transparent 65%
    ),
    radial-gradient(480px 300px at 78% 6%, rgba(236, 72, 153, 0.2), transparent 65%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.82rem;
  font-weight: 560;
  color: #7ee2b0;
  background: rgba(23, 178, 106, 0.1);
  border: 1px solid rgba(23, 178, 106, 0.28);
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 22px;
}
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  flex: none;
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.35;
    transform: scale(1.5);
  }
}

.hero h1 {
  color: #fff;
  margin-bottom: 22px;
}
.hero__sub {
  font-size: 1.05rem;
  color: var(--dark-body);
  max-width: 60ch;
  margin: 0 auto 16px;
}
.hero__sub:last-of-type {
  margin-bottom: 32px;
}
.hero .btn-row {
  justify-content: center;
}

.hero__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px 26px;
  flex-wrap: wrap;
  margin-top: 26px;
  font-size: 0.84rem;
  color: var(--dark-muted);
}
.hero__badges span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.hero__badges .icon {
  width: 15px;
  height: 15px;
  color: var(--success);
}

.hero__panel {
  position: relative;
  max-width: 820px;
  margin: 48px auto 0;
}
.hero__caption {
  margin: 16px auto 0;
  max-width: 62ch;
  font-size: 0.86rem;
  color: var(--dark-muted);
  text-align: center;
}

/* 7. Terminal / code windows + tabs ---------------------------------------- */
.code-window {
  background: var(--dark-2);
  border: 1px solid var(--dark-line-2);
  border-radius: var(--radius);
  overflow: hidden;
  font-family: var(--mono);
  font-size: 0.79rem;
  line-height: 1.75;
  text-align: left;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.7);
}
.code-window__bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--dark-line);
  flex-wrap: wrap;
}
.code-window__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  flex: none;
}
.code-window__file {
  margin-left: 8px;
  color: #5c6280;
  font-size: 0.73rem;
}
.code-window pre {
  margin: 0;
  padding: 20px 22px 24px;
  overflow-x: auto;
  color: #d7dde8;
}
.code-window code {
  background: none;
  border: 0;
  padding: 0;
  font-size: inherit;
  color: inherit;
}

/* Language tabs living inside the window chrome, like an editor */
.term-tabs {
  display: flex;
  gap: 4px;
  margin-left: 10px;
  flex-wrap: wrap;
}
.term-tabs button {
  font: inherit;
  font-family: var(--mono);
  font-size: 0.73rem;
  color: #6b7089;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 5px 12px;
  cursor: pointer;
  transition: color 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}
.term-tabs button:hover {
  color: #cfd6e4;
}
.term-tabs button[aria-selected="true"] {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--dark-line-2);
}
.term-panel[hidden] {
  display: none;
}

.tok-key { color: #b48ce8; }
.tok-fn { color: #6aa6f8; }
.tok-str { color: #63c9a0; }
.tok-com { color: #565c78; }
.tok-num { color: #e0a458; }
.tok-pre { color: #e07b9a; }
.tok-type { color: #56b6c2; }
.tok-ok { color: #4ade80; }
.tok-dim { color: #6b7089; }
.tok-warn { color: #e0a458; }

/* 8. Coverage explorer ---------------------------------------------------- */
.cov {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  align-items: start;
}
.cov__list {
  display: grid;
  gap: 4px;
}
.cov__tab {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: left;
  font: inherit;
  font-size: 0.93rem;
  font-weight: 560;
  color: var(--body);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 13px 16px;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.cov__tab .icon {
  width: 18px;
  height: 18px;
  color: var(--muted);
  transition: color 0.18s ease;
}
.cov__tab:hover {
  background: var(--bg-soft);
  color: var(--ink);
}
.cov__tab[aria-selected="true"] {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
  box-shadow: 0 8px 24px -18px rgba(10, 12, 20, 0.5);
}
.cov__tab[aria-selected="true"] .icon {
  color: var(--grad-a);
}

.cov__panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  min-height: 340px;
}
.cov__panel[hidden] {
  display: none;
}
.cov__panel h3 {
  font-size: 1.16rem;
  margin-bottom: 6px;
}
.cov__alias {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 22px;
}
.cov__block {
  margin-bottom: 20px;
}
.cov__block:last-child {
  margin-bottom: 0;
}
.cov__label {
  display: block;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.cov__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.cov__chips li {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--body);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 5px 10px;
}
.cov__chips--brand li {
  color: var(--grad-a);
  background: rgba(109, 91, 255, 0.06);
  border-color: rgba(109, 91, 255, 0.2);
}
.cov__topics {
  margin: 0;
  color: var(--body);
  font-size: 0.94rem;
}

/* 9. Tables --------------------------------------------------------------- */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
table.data {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
  font-size: 0.93rem;
}
table.data th,
table.data td {
  padding: 15px 20px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}
table.data thead th {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--bg-soft);
  white-space: nowrap;
}
table.data tbody tr:last-child td,
table.data tbody tr:last-child th {
  border-bottom: 0;
}
table.data tbody tr:hover {
  background: rgba(109, 91, 255, 0.03);
}
table.data th[scope="row"] {
  font-weight: 560;
  color: var(--ink);
}
table.data td {
  color: var(--body);
}
.cell-num {
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.cell-price {
  white-space: nowrap;
  font-weight: 640;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

/* 7b. Stat band (directly under the hero) ---------------------------------- */
.statband {
  background: linear-gradient(180deg, #efecfd, #f4f2fe);
  border-top: 3px solid transparent;
  border-image: var(--gradient) 1;
  border-bottom: 1px solid #ddd8f7;
  padding: 40px 0;
}
.statband__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.statband__item b {
  display: block;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 6px;
}
.statband__item span {
  display: block;
  font-size: 0.88rem;
  color: #5b5370;
  line-height: 1.4;
}

/* 7c. Expert cards ---------------------------------------------------------- */
.experts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.xcard {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 24px 24px;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.xcard:hover {
  border-color: #d6d9e6;
  transform: translateY(-3px);
  box-shadow: 0 24px 54px -34px rgba(10, 12, 20, 0.5);
}
.xcard__ribbon {
  position: absolute;
  top: 0;
  right: 0;
  font-family: var(--mono);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #fff;
  background: var(--grad-a);
  padding: 6px 14px;
  border-bottom-left-radius: 10px;
  white-space: nowrap;
}
.xcard__ribbon--green { background: var(--success); }
.xcard__ribbon--blue { background: #2563eb; }
.xcard__ribbon--orange { background: #ea580c; }

.xcard__grid {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 20px;
  align-items: start;
}
.xcard__rail {
  text-align: center;
}
.xcard__avatar {
  position: relative;
  width: 88px;
  height: 88px;
  margin: 0 auto;
}
.xcard__avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 22%;
  background: var(--bg-soft);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 1px var(--line);
}
.xcard__dot {
  position: absolute;
  right: 4px;
  bottom: 4px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--success);
  border: 3px solid var(--white);
}
.xcard__dot--away { background: #b9bdcc; }
.xcard__rate {
  margin-top: 12px;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.xcard__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #0f8a55;
  background: rgba(23, 178, 106, 0.11);
  border-radius: 999px;
  padding: 4px 10px;
  white-space: nowrap;
}
.xcard__status--away {
  color: var(--muted);
  background: var(--bg-soft);
}
.xcard__status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  display: block;
}

.xcard__name {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1.16rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.025em;
  margin-bottom: 5px;
}
.xcard__verified {
  width: 17px;
  height: 17px;
  flex: none;
}
.xcard__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 9px;
}
.xcard__count {
  font-size: 0.95rem;
  color: var(--body);
  margin-bottom: 14px;
}
.xcard__count b {
  color: var(--ink);
  font-weight: 700;
}
.xcard__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 16px;
}
.xcard__tags span {
  font-size: 0.78rem;
  font-weight: 560;
  color: var(--grad-a);
  background: rgba(109, 91, 255, 0.07);
  border-radius: 7px;
  padding: 6px 11px;
}
.xcard__tip {
  border-left: 3px solid var(--grad-a);
  background: var(--bg-soft);
  border-radius: 0 9px 9px 0;
  padding: 13px 15px;
  font-size: 0.88rem;
  font-style: italic;
  color: var(--body);
  line-height: 1.6;
  margin-bottom: 18px;
}
.xcard__tip b {
  font-style: normal;
  color: var(--grad-a);
  font-weight: 640;
}
.xcard__tip code {
  font-family: var(--mono);
  font-size: 0.86em;
  font-style: normal;
  background: rgba(109, 91, 255, 0.09);
  border-radius: 4px;
  padding: 1px 5px;
  color: var(--ink);
}
.xcard__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.xcard__link {
  font-size: 0.88rem;
  font-weight: 560;
  color: var(--grad-a);
  border-bottom: 1px dashed rgba(109, 91, 255, 0.45);
}
.xcard__link:hover {
  text-decoration: none;
  border-bottom-style: solid;
}

/* 9b. Interactive pricing picker ------------------------------------------- */
.pricer {
  max-width: 1000px;
  margin: 0 auto;
}
.pricer__tiers {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 22px;
}
.pricer__tab {
  font: inherit;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 8px;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease,
    transform 0.18s ease;
}
.pricer__tab:hover {
  border-color: #cfd2e0;
  transform: translateY(-2px);
}
.pricer__tab b {
  display: block;
  font-size: 0.79rem;
  font-weight: 560;
  color: var(--body);
  margin-bottom: 4px;
  line-height: 1.3;
}
.pricer__tab i {
  display: block;
  font-style: normal;
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.pricer__tab[aria-selected="true"] {
  border-color: var(--grad-a);
  background: rgba(109, 91, 255, 0.05);
  box-shadow: inset 0 0 0 1px var(--grad-a);
}
.pricer__tab[aria-selected="true"] b {
  color: var(--grad-a);
}

.pricer__panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 300px 1fr;
}
.pricer__panel[hidden] {
  display: none;
}
.pricer__price {
  background: var(--dark);
  color: #fff;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.pricer__label {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--dark-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}
.pricer__amount {
  font-size: 2.4rem;
  font-weight: 660;
  letter-spacing: -0.04em;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
}
.pricer__meta {
  display: grid;
  gap: 7px;
  margin-bottom: 24px;
}
.pricer__meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--dark-body);
}
.pricer__meta .icon {
  width: 15px;
  height: 15px;
  color: var(--dark-muted);
}
.pricer__price .btn {
  margin-top: auto;
}
.pricer__body {
  padding: 32px 30px;
}
.pricer__body h3 {
  font-size: 1.14rem;
  margin-bottom: 12px;
}
.pricer__scope {
  color: var(--body);
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.pricer__examples {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}
.pricer__examples li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.91rem;
  color: var(--body);
}
.pricer__examples .icon {
  width: 16px;
  height: 16px;
  margin-top: 4px;
  color: var(--success);
}
.pricer__toggle {
  display: block;
  margin: 22px auto 0;
}

/* 9c. Five-step milestone process ------------------------------------------ */
.flow-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin: 0 auto 40px;
  padding: 20px 22px;
  border: 1px solid var(--dark-line);
  background: var(--dark-2);
  border-radius: var(--radius);
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--dark-body);
  max-width: 900px;
}
.flow-diagram b {
  font-weight: 500;
  white-space: nowrap;
}
.flow-diagram i {
  font-style: normal;
  background: var(--gradient-flat);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  counter-reset: flowstep;
}
.flow__step {
  background: var(--dark-2);
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  padding: 24px 20px;
}
.flow__step::before {
  counter-increment: flowstep;
  content: "0" counter(flowstep);
  display: block;
  font-family: var(--mono);
  font-size: 0.78rem;
  background: var(--gradient-flat);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
}
.flow__step h3 {
  font-size: 0.98rem;
  margin-bottom: 6px;
}
.flow__step p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--dark-body);
}

/* 9d. Delivered-files rows -------------------------------------------------- */
.files {
  max-width: 860px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.file-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.file-row__num {
  font-family: var(--mono);
  font-size: 0.95rem;
  background: var(--gradient-flat);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.5;
}
.file-row__head {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 7px;
}
.file-row__head h3 {
  margin: 0;
  font-size: 1.02rem;
}
.file-row__tag {
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--grad-a);
  background: rgba(109, 91, 255, 0.08);
  border: 1px solid rgba(109, 91, 255, 0.22);
  border-radius: 999px;
  padding: 3px 9px;
  white-space: nowrap;
}
.file-row p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--body);
  max-width: 74ch;
}

/* 10. Ways to work / generic cards ----------------------------------------- */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.section--soft .card {
  background: var(--white);
}
.card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-soft);
  color: var(--grad-a);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.section--soft .card__icon {
  background: rgba(109, 91, 255, 0.07);
}
.card h3 {
  margin-bottom: 8px;
}
.card p {
  margin: 0;
  color: var(--body);
  font-size: 0.94rem;
}
.card p + p {
  margin-top: 10px;
}

.dark-card {
  background: var(--dark-2);
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.dark-card h3 {
  margin-bottom: 8px;
}
.dark-card p {
  margin: 0;
  color: var(--dark-body);
  font-size: 0.93rem;
}
.dark-card__label {
  display: block;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark-muted);
  margin-bottom: 10px;
}

/* Callout */
.callout {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 22px;
  font-size: 0.94rem;
  color: var(--body);
}
.callout .icon {
  color: var(--grad-a);
  margin-top: 3px;
}
.callout strong {
  color: var(--ink);
  font-weight: 620;
}
.callout p {
  margin: 0;
}
.callout--good {
  border-color: rgba(23, 178, 106, 0.3);
  background: rgba(23, 178, 106, 0.06);
}
.callout--good .icon {
  color: var(--success);
}
.callout--warn {
  border-color: rgba(240, 169, 44, 0.4);
  background: rgba(240, 169, 44, 0.07);
}
.callout--warn .icon {
  color: #b5851f;
}
.section--dark .callout {
  background: var(--dark-2);
  border-color: var(--dark-line);
  color: var(--dark-body);
}
.section--dark .callout strong {
  color: #fff;
}

/* 11. Sample package tabs + document styling ------------------------------- */
.pkg {
  max-width: 900px;
  margin: 0 auto;
}
.pkg__tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.pkg__tab {
  font: inherit;
  font-size: 0.88rem;
  font-weight: 560;
  color: var(--body);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 10px 16px;
  cursor: pointer;
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.pkg__tab:hover {
  border-color: #cfd2e0;
  color: var(--ink);
}
.pkg__tab[aria-selected="true"] {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}
.pkg__panel[hidden] {
  display: none;
}
.pkg__note {
  margin: 16px 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 68ch;
}
.pkg__sub {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 0 14px;
}

/* Document styling for prose tabs (brief, walkthrough, viva) */
.doc {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 36px;
}
.doc__head {
  padding-bottom: 18px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.doc__title {
  font-family: var(--mono);
  font-size: 0.9rem;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.doc__meta {
  font-size: 0.85rem;
  color: var(--muted);
}
.doc p {
  color: var(--body);
  font-size: 0.95rem;
}
.doc h4 {
  margin: 26px 0 8px;
}
.doc h4:first-child {
  margin-top: 0;
}
.doc ol,
.doc ul {
  margin: 0 0 1rem;
  padding-left: 1.3rem;
  color: var(--body);
  font-size: 0.95rem;
}
.doc ol li,
.doc ul li {
  margin-bottom: 7px;
}
.doc code {
  font-family: var(--mono);
  font-size: 0.86em;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 1px 5px;
  color: var(--ink);
}
.doc__req {
  list-style: none;
  padding: 0;
  counter-reset: req;
}
.doc__req li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 9px;
}
.doc__req li::before {
  counter-increment: req;
  content: counter(req) ".";
  position: absolute;
  left: 0;
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--grad-a);
}

/* Viva Q&A list */
.qa {
  display: grid;
  gap: 20px;
}
.qa__item h4 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 0.96rem;
}
.qa__item p {
  margin: 0;
  font-size: 0.93rem;
  color: var(--body);
}

/* 12. Developers ---------------------------------------------------------- */
.dev {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  /* Column layout keeps the stats bar pinned to the bottom of every card,
     however many tag rows the developer above it happens to wrap to. */
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.dev:hover {
  border-color: #d6d9e6;
  transform: translateY(-3px);
  box-shadow: 0 20px 48px -30px rgba(10, 12, 20, 0.45);
}
.dev__top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px 22px 18px;
}
.dev__photo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  flex: none;
  position: relative;
  display: grid;
  place-items: center;
  font-weight: 660;
  font-size: 1rem;
  color: #fff;
  letter-spacing: -0.01em;
  background: var(--gradient-flat);
}
.dev__photo--b { background: linear-gradient(140deg, #0ea5e9, #6d5bff); }
.dev__photo--c { background: linear-gradient(140deg, #f59e0b, #ec4899); }
.dev__photo--d { background: linear-gradient(140deg, #17b26a, #0ea5e9); }
.dev__photo::after {
  content: "";
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--success);
  border: 2.5px solid var(--white);
}
.dev__photo--away::after {
  background: #c6cad8;
}
.dev__name {
  font-size: 1rem;
  font-weight: 640;
  color: var(--ink);
  line-height: 1.3;
}
.dev__spec {
  font-size: 0.85rem;
  color: var(--grad-a);
  font-weight: 560;
  margin-bottom: 4px;
}
.dev__degree {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
}
.dev__tags {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 5px;
  padding: 0 22px 18px;
  flex: 1;
}
.dev__tags span {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--body);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 3px 8px;
}
.dev__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
}
.dev__stat {
  padding: 12px 10px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.dev__stat:last-child {
  border-right: 0;
}
.dev__stat b {
  display: block;
  font-size: 0.92rem;
  font-weight: 660;
  color: var(--ink);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.dev__stat span {
  display: block;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 1px;
}

/* 13. Numbered rows -------------------------------------------------------- */
.rows {
  counter-reset: row;
  border-top: 1px solid var(--line);
}
.section--dark .rows {
  border-color: var(--dark-line);
}
.row {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.section--dark .row {
  border-color: var(--dark-line);
}
.row::before {
  counter-increment: row;
  content: "0" counter(row);
  font-family: var(--mono);
  font-size: 1.05rem;
  font-weight: 500;
  background: var(--gradient-flat);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.4;
}
.row h3 {
  margin-bottom: 6px;
}
.row p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--body);
}
.section--dark .row p {
  color: var(--dark-body);
}

/* Plain labelled list (no numbers) */
.plain-rows {
  border-top: 1px solid var(--line);
}
.section--dark .plain-rows {
  border-color: var(--dark-line);
}
.plain-row {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.section--dark .plain-row {
  border-color: var(--dark-line);
}
.plain-row h3 {
  margin-bottom: 6px;
}
.plain-row p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--body);
  max-width: 76ch;
}
.section--dark .plain-row p {
  color: var(--dark-body);
}

/* Bullet list with check/x markers */
.marks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.marks li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.95rem;
  color: var(--body);
}
.section--dark .marks li {
  color: var(--dark-body);
}
.marks .icon {
  width: 17px;
  height: 17px;
  margin-top: 4px;
  color: var(--success);
}
.marks--dot .icon {
  color: var(--grad-a);
}

/* 14. Language grid -------------------------------------------------------- */
.lang-group {
  margin-bottom: 34px;
}
.lang-group:last-child {
  margin-bottom: 0;
}
.lang-group__label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.lang-group__label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.lang-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
/* Each tile carries its own accent through --c, set inline per language */
.lang-tile {
  --c: var(--grad-a);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.87rem;
  font-weight: 550;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 9px 15px 9px 12px;
  transition: border-color 0.16s ease, background 0.16s ease,
    transform 0.16s ease, box-shadow 0.16s ease;
}
.lang-tile::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 3px;
  background: var(--c);
  flex: none;
}
.lang-tile:hover {
  text-decoration: none;
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--c) 55%, transparent);
  background: color-mix(in srgb, var(--c) 7%, #fff);
  box-shadow: 0 10px 22px -16px var(--c);
}
/* Fallback for browsers without color-mix */
@supports not (background: color-mix(in srgb, red 5%, white)) {
  .lang-tile:hover {
    border-color: var(--c);
    background: var(--bg-soft);
  }
}

/* 15. Reviews -------------------------------------------------------------- */
.tcard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
}
.tcard__stars {
  margin-bottom: 13px;
}
.tcard__text {
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.65;
  margin: 0 0 20px;
  flex: 1;
}
.tcard__who {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}
.tcard__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.74rem;
  font-weight: 640;
  color: #fff;
  background: var(--ink);
  flex: none;
}
.tcard__name {
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
.tcard__meta {
  font-size: 0.79rem;
  color: var(--muted);
}
.tcard__order {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 4px 9px;
  white-space: nowrap;
}

/* 16. FAQ ------------------------------------------------------------------ */
.faq {
  max-width: 780px;
  margin: 0 auto;
}
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__item:first-child {
  border-top: 1px solid var(--line);
}
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  font: inherit;
  font-weight: 560;
  font-size: 0.99rem;
  color: var(--ink);
  background: none;
  border: 0;
  padding: 22px 4px;
  cursor: pointer;
}
.faq__icon {
  flex: none;
  color: var(--muted);
  transition: transform 0.28s ease;
}
.faq__icon .icon {
  width: 16px;
  height: 16px;
}
.faq__q[aria-expanded="true"] .faq__icon {
  transform: rotate(45deg);
  color: var(--grad-a);
}
.faq__a {
  overflow: hidden;
  height: 0;
  transition: height 0.3s ease;
}
.faq__a-inner {
  padding: 0 4px 22px;
  color: var(--muted);
  font-size: 0.94rem;
  max-width: 68ch;
}
.faq__a-inner p {
  margin: 0;
}

/* 17. Form ----------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 290px;
  gap: 52px;
  align-items: start;
  max-width: 940px;
  margin: 0 auto;
}
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.field--full {
  grid-column: 1 / -1;
}
.field label {
  font-size: 0.87rem;
  font-weight: 560;
  color: var(--ink);
}
.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--white);
  width: 100%;
  transition: border-color 0.15s ease;
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23888fa3' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' d='m1 1.5 5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}
.field textarea {
  resize: vertical;
  min-height: 124px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--grad-a);
}
.field .error {
  font-size: 0.79rem;
  color: var(--danger);
  display: none;
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--danger);
}
.field.has-error .error {
  display: block;
}
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.86rem;
  color: var(--muted);
  font-weight: 400 !important;
  line-height: 1.55;
}
.checkbox input {
  width: auto;
  margin-top: 4px;
  accent-color: var(--grad-a);
  flex: none;
}

/* Radio group rendered as three tappable tiles */
.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.choice {
  position: relative;
  display: block;
}
.choice input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.choice span {
  display: block;
  text-align: center;
  padding: 12px 8px;
  border: 1px solid var(--line);
  border-radius: 9px;
  font-size: 0.87rem;
  color: var(--body);
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.choice span:hover {
  border-color: #cfd2e0;
}
.choice input:checked + span {
  border-color: var(--grad-a);
  color: var(--grad-a);
  font-weight: 560;
}
.choice input:focus-visible + span {
  outline: 2px solid var(--grad-a);
  outline-offset: 2px;
}
.fsteps {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.fsteps__seg {
  flex: 1;
  height: 2px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
}
.fsteps__seg::after {
  content: "";
  display: block;
  height: 100%;
  background: var(--gradient-flat);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.fsteps__seg.is-filled::after {
  transform: scaleX(1);
}
.fsteps__count {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--muted);
  flex: none;
}
.fstep {
  display: none;
}
.fstep.is-active {
  display: block;
}
.fstep__title {
  font-size: 1.14rem;
  margin-bottom: 6px;
}
.fstep__sub {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 22px;
}
.form-nav {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.form-nav .btn[type="submit"],
.form-nav .btn[data-next] {
  flex: 1;
}
.aside-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 22px;
}
.aside-list li {
  display: flex;
  gap: 13px;
}
.aside-list .icon {
  color: var(--grad-a);
  margin-top: 3px;
}
.aside-list strong {
  display: block;
  color: var(--ink);
  font-size: 0.91rem;
  font-weight: 560;
}
.aside-list span {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.55;
}

/* 18. Closing CTA / footer -------------------------------------------------- */
.cta-dark {
  position: relative;
  background: var(--dark);
  overflow: hidden;
  text-align: center;
  padding: 88px 0;
}
.cta-dark__glow {
  position: absolute;
  inset: -30% -10%;
  background: radial-gradient(
    520px 320px at 50% 30%,
    rgba(109, 91, 255, 0.28),
    transparent 65%
  );
  pointer-events: none;
}
.cta-dark__inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}
.cta-dark h2 {
  color: #fff;
}
.cta-dark p {
  color: var(--dark-body);
  margin-bottom: 28px;
}
.byline {
  font-size: 0.82rem;
  color: var(--dark-muted);
  margin: 26px 0 0;
}

.site-footer {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 64px 0 32px;
  font-size: 0.9rem;
  color: var(--body);
}
.footer__main {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 44px;
}
.footer__brand .logo {
  margin-bottom: 16px;
}
.footer__tagline {
  font-weight: 620;
  color: var(--ink);
  margin-bottom: 8px;
}
.footer__about {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 48ch;
  margin-bottom: 20px;
}
.footer__addr {
  font-size: 0.86rem;
  color: var(--muted);
  font-style: normal;
  line-height: 1.6;
}
.footer__addr b {
  display: block;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 6px;
}
.footer__colhead {
  display: block;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 14px;
}
.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}
.footer__list a {
  color: var(--muted);
  font-size: 0.9rem;
}
.footer__list a:hover {
  color: var(--grad-a);
  text-decoration: none;
}

.footer__bottom {
  border-top: 1px solid var(--line);
  padding-top: 30px;
  text-align: center;
}
.footer__legal-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.footer__legal-links a,
.footer__legal-links span {
  color: var(--body);
  font-size: 0.9rem;
}
.footer__legal-links a:hover {
  color: var(--grad-a);
  text-decoration: none;
}
.footer__legal-links li + li::before {
  content: "·";
  color: var(--muted);
  margin-right: 18px;
}
.footer__disclaimer {
  max-width: 78ch;
  margin: 0 auto 20px;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.65;
}
.footer__copy {
  font-size: 0.86rem;
  color: var(--muted);
  margin: 0;
}

/* 19. Toast & sticky CTA ---------------------------------------------------- */
.toast-stack {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 300;
  display: grid;
  gap: 10px;
  max-width: min(360px, calc(100vw - 40px));
}
.toast {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  background: var(--dark);
  color: #cfd2e0;
  border: 1px solid var(--dark-line-2);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 0.86rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.toast.is-visible {
  opacity: 1;
  transform: none;
}
.toast strong {
  display: block;
  color: #fff;
  font-weight: 560;
}
.toast .icon {
  width: 17px;
  height: 17px;
  margin-top: 3px;
  color: var(--success);
}
.toast--error .icon {
  color: #ef7a86;
}
.toast__close {
  margin-left: auto;
  background: none;
  border: 0;
  color: #6b7089;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
  background: rgba(6, 7, 13, 0.92);
  backdrop-filter: saturate(180%) blur(16px);
  border-top: 1px solid var(--dark-line-2);
  transform: translateY(110%);
  transition: transform 0.3s ease;
}
.sticky-cta.is-visible {
  transform: none;
}
.sticky-cta__text {
  font-size: 0.79rem;
  color: var(--dark-muted);
  line-height: 1.35;
}
.sticky-cta__text strong {
  display: block;
  font-size: 0.91rem;
  color: #fff;
  font-weight: 560;
}

/* 20. Motion ------------------------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* 21. Responsive ----------------------------------------------------------- */
@media (max-width: 1000px) {
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .flow {
    grid-template-columns: repeat(3, 1fr);
  }
  .pricer__panel {
    grid-template-columns: 1fr;
  }
  .cov {
    grid-template-columns: 1fr;
  }
  .cov__list {
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    overflow-x: auto;
    padding-bottom: 6px;
  }
  .cov__tab {
    white-space: nowrap;
  }
}

@media (max-width: 940px) {
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .pricer__tiers {
    grid-template-columns: repeat(3, 1fr);
  }
  .experts {
    grid-template-columns: 1fr;
  }
  .footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
  .statband__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 24px;
  }
}

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

@media (max-width: 820px) {
  .nav-toggle {
    display: grid;
  }
  .nav__cta .btn {
    display: none;
  }
  .sticky-cta {
    display: flex;
  }
  body {
    padding-bottom: 74px;
  }
  .toast-stack {
    bottom: 90px;
  }
  .nav__links {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 8px 24px 24px;
    display: none;
  }
  .nav__links.is-open {
    display: flex;
  }
  .nav__links a {
    padding: 14px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--line);
  }
  .nav__links .btn {
    display: inline-flex;
    margin-top: 16px;
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }
  .section {
    padding: 64px 0;
  }
  .hero {
    padding: 52px 0 48px;
  }
  .hero__panel {
    margin-top: 34px;
  }
  .grid--2,
  .grid--3,
  .grid--4,
  .flow {
    grid-template-columns: 1fr;
  }
  .pricer__tiers,
  .choice-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-card,
  .doc,
  .cov__panel,
  .pricer__price,
  .pricer__body {
    padding: 22px 18px;
  }
  .file-row {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }
  /* Expert card stacks: avatar row on top, details beneath */
  .xcard__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .xcard__rail {
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
  }
  .xcard__avatar {
    margin: 0;
    width: 66px;
    height: 66px;
  }
  .xcard__rate {
    margin-top: 0;
  }
  .xcard__status {
    margin-top: 4px;
  }
  .xcard__ribbon {
    font-size: 0.58rem;
    padding: 5px 10px;
  }
  .code-window {
    font-size: 0.72rem;
  }
  .btn-row .btn {
    flex: 1;
  }
  .footer__main {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .row {
    grid-template-columns: 52px 1fr;
    gap: 14px;
  }
  .dev__stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .dev__stat {
    padding: 10px 4px;
  }
  .dev__stat b {
    font-size: 0.85rem;
  }
  .dev__stat span {
    font-size: 0.56rem;
  }
  .pkg__tabs {
    gap: 5px;
  }
  .pkg__tab {
    padding: 9px 12px;
    font-size: 0.83rem;
  }
}

/* ==========================================================================
   22. Legal pages (privacy, terms, refund)
   ========================================================================== */
.legal-hero {
  position: relative;
  background: var(--dark);
  padding: 72px 0 64px;
  overflow: hidden;
  text-align: center;
}
.legal-hero__glow {
  position: absolute;
  inset: -40% -10% auto -10%;
  height: 420px;
  background: radial-gradient(
    520px 260px at 50% 20%,
    rgba(109, 91, 255, 0.26),
    transparent 65%
  );
  pointer-events: none;
}
.legal-hero__inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.legal-hero h1 {
  color: #fff;
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  margin-bottom: 14px;
}
.legal-hero .updated {
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark-muted);
  margin: 0;
}

.legal {
  max-width: 780px;
  margin: 0 auto;
  padding: 68px 0 88px;
}
.legal__lead {
  font-size: 1.05rem;
  color: var(--body);
  margin-bottom: 14px;
}
.legal h2 {
  font-size: 1.32rem;
  margin: 0 0 14px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
  margin-top: 42px;
}
.legal h2:first-of-type {
  border-top: 0;
  padding-top: 0;
  margin-top: 34px;
}
.legal h3 {
  font-size: 1rem;
  margin: 26px 0 8px;
}
.legal p {
  margin: 0 0 1rem;
  color: var(--body);
}
.legal ul,
.legal ol {
  margin: 0 0 1.1rem;
  padding-left: 1.35rem;
  color: var(--body);
}
.legal li {
  margin-bottom: 9px;
}
.legal li::marker {
  color: var(--grad-a);
}
.legal strong {
  color: var(--ink);
  font-weight: 620;
}
.legal a {
  color: var(--grad-a);
  overflow-wrap: anywhere;
}
.legal code {
  font-family: var(--mono);
  font-size: 0.86em;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 1px 5px;
  color: var(--ink);
}
.legal .table-wrap {
  margin-bottom: 1.2rem;
}
.legal table.data {
  min-width: 520px;
  font-size: 0.9rem;
}

/* Highlighted advice / disclaimer blocks */
.legal-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin: 0 0 1.2rem;
  font-size: 0.94rem;
  color: var(--body);
}
.legal-note .icon {
  color: var(--grad-a);
  margin-top: 3px;
}
.legal-note p {
  margin: 0;
}
.legal-note p + p {
  margin-top: 10px;
}
.legal-note--warn {
  border-color: rgba(240, 169, 44, 0.4);
  background: rgba(240, 169, 44, 0.07);
}
.legal-note--warn .icon {
  color: #b5851f;
}
.legal-note--good {
  border-color: rgba(23, 178, 106, 0.3);
  background: rgba(23, 178, 106, 0.06);
}
.legal-note--good .icon {
  color: var(--success);
}

/* Cross-links to the other two policies */
.legal-more {
  border-top: 1px solid var(--line);
  margin-top: 52px;
  padding-top: 30px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.legal-more a {
  font-size: 0.9rem;
  font-weight: 560;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 10px 18px;
}
.legal-more a:hover {
  border-color: var(--grad-a);
  color: var(--grad-a);
  text-decoration: none;
}

@media (max-width: 640px) {
  .legal {
    padding: 48px 0 64px;
  }
  .legal h2 {
    padding-top: 32px;
    margin-top: 32px;
  }
  .legal-note {
    flex-direction: column;
    gap: 10px;
  }
}

/* ==========================================================================
   23. How it works — ladder timeline
   ========================================================================== */
.ladder {
  position: relative;
  max-width: 940px;
  margin: 0 auto;
}
/* The rail every rung hangs off */
.ladder::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(109, 91, 255, 0.15),
    rgba(109, 91, 255, 0.45) 12%,
    rgba(168, 85, 247, 0.45) 88%,
    rgba(168, 85, 247, 0.15)
  );
  transform: translateX(-50%);
}

.rung {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 92px 1fr;
  align-items: center;
  margin-bottom: 26px;
}
.rung:last-child {
  margin-bottom: 0;
}
.rung__node {
  grid-column: 2;
  display: grid;
  place-items: center;
}
.rung__num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--gradient-flat);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: 0 0 0 7px var(--white), 0 10px 26px -12px rgba(109, 91, 255, 0.8);
  position: relative;
  z-index: 1;
}
.section--soft .rung__num {
  box-shadow: 0 0 0 7px var(--bg-soft), 0 10px 26px -12px rgba(109, 91, 255, 0.8);
}

.rung__card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 26px 24px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.rung__card:hover {
  border-color: #d6d9e6;
  transform: translateY(-2px);
  box-shadow: 0 22px 50px -34px rgba(10, 12, 20, 0.5);
}
/* Alternate sides so the rungs read as a ladder rather than a list */
.rung:nth-child(odd) .rung__card {
  grid-column: 1;
  grid-row: 1;
}
.rung:nth-child(even) .rung__card {
  grid-column: 3;
  grid-row: 1;
}

.rung__meta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grad-a);
  background: rgba(109, 91, 255, 0.07);
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 13px;
}
.rung__card h3 {
  font-size: 1.12rem;
  margin-bottom: 9px;
}
.rung__card p {
  margin: 0 0 12px;
  font-size: 0.94rem;
  color: var(--body);
}
.rung__card p:last-child {
  margin-bottom: 0;
}
.rung__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.rung__list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.9rem;
  color: var(--body);
}
.rung__list .icon {
  width: 15px;
  height: 15px;
  margin-top: 4px;
  color: var(--success);
}

@media (max-width: 820px) {
  .ladder::before {
    left: 27px;
  }
  .rung {
    grid-template-columns: 54px 1fr;
    gap: 18px;
    align-items: start;
    margin-bottom: 20px;
  }
  .rung__node {
    grid-column: 1;
    grid-row: 1;
  }
  .rung__num {
    width: 54px;
    height: 54px;
  }
  .rung:nth-child(odd) .rung__card,
  .rung:nth-child(even) .rung__card {
    grid-column: 2;
    grid-row: 1;
  }
}

@media (max-width: 640px) {
  .rung__card {
    padding: 22px 18px;
  }
  .rung {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }
  .ladder::before {
    left: 22px;
  }
  .rung__num {
    width: 44px;
    height: 44px;
    font-size: 0.82rem;
    box-shadow: 0 0 0 5px var(--white), 0 8px 20px -12px rgba(109, 91, 255, 0.8);
  }
  .section--soft .rung__num {
    box-shadow: 0 0 0 5px var(--bg-soft), 0 8px 20px -12px rgba(109, 91, 255, 0.8);
  }
}

/* ==========================================================================
   24. Testimonials page
   ========================================================================== */
.rev-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 38px;
}
.rev-filter button {
  font: inherit;
  font-size: 0.87rem;
  font-weight: 560;
  color: var(--body);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px;
  cursor: pointer;
  transition: color 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}
.rev-filter button:hover {
  border-color: #cfd2e0;
  color: var(--ink);
}
.rev-filter button[aria-pressed="true"] {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}
.rev-filter .count {
  opacity: 0.55;
  font-variant-numeric: tabular-nums;
  margin-left: 5px;
}

.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}
.rev-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.rev-card[hidden] {
  display: none;
}
.rev-card:hover {
  border-color: #d6d9e6;
  transform: translateY(-2px);
  box-shadow: 0 20px 46px -34px rgba(10, 12, 20, 0.5);
}
.rev-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
/* Subject pill, tinted per language via --c */
.rev-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.74rem;
  font-weight: 620;
  color: var(--c, var(--grad-a));
  background: color-mix(in srgb, var(--c, #6d5bff) 9%, transparent);
  border: 1px solid color-mix(in srgb, var(--c, #6d5bff) 24%, transparent);
  border-radius: 999px;
  padding: 5px 11px;
  white-space: nowrap;
}
.rev-card__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c, var(--grad-a));
  flex: none;
}
.rev-card__kind {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: right;
}
.rev-card__stars {
  margin-bottom: 11px;
}
.rev-card__text {
  margin: 0 0 20px;
  font-size: 0.93rem;
  line-height: 1.65;
  color: var(--body);
  flex: 1;
}
.rev-card__who {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}
.rev-card__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 660;
  color: #fff;
  background: var(--c, var(--ink));
  flex: none;
}
.rev-card__name {
  font-size: 0.88rem;
  font-weight: 620;
  color: var(--ink);
  line-height: 1.3;
}
.rev-card__order {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.rev-empty {
  text-align: center;
  color: var(--muted);
  padding: 40px 0;
}
.rev-empty[hidden] {
  display: none;
}

@media (max-width: 940px) {
  .rev-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .rev-grid {
    grid-template-columns: 1fr;
  }
  .rev-filter {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
  }
  .rev-filter button {
    white-space: nowrap;
  }
}

/* ==========================================================================
   25. About page
   ========================================================================== */
/* Founding fact strip */
.fact {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 720px;
  margin: 28px auto 0;
  padding: 20px 24px;
  border: 1px solid rgba(109, 91, 255, 0.24);
  background: rgba(109, 91, 255, 0.05);
  border-radius: var(--radius);
  font-size: 0.94rem;
  color: var(--body);
}
.fact .icon {
  color: var(--grad-a);
  margin-top: 3px;
}
.fact p {
  margin: 0;
}
.fact strong {
  color: var(--ink);
  font-weight: 620;
}

/* "What we won't do" — refusal list on the dark band */
.nope {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
  max-width: 780px;
}
.nope li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-size: 0.95rem;
  color: var(--dark-body);
  background: var(--dark-2);
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.nope .icon {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: #ef7a86;
  flex: none;
}
.nope b {
  color: #fff;
  font-weight: 620;
}

/* Mission / US-specifics labelled rows */
.spec {
  display: grid;
  gap: 0;
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.spec__row {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.spec__row h3 {
  margin-bottom: 7px;
  font-size: 1.04rem;
}
.spec__row p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--body);
  max-width: 76ch;
}

/* ==========================================================================
   26. Contact / free quote page
   ========================================================================== */
.contact-wide {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 44px;
  align-items: start;
  max-width: 1060px;
  margin: 0 auto;
}

/* Enlarged form card */
.form-card--lg {
  padding: 44px 46px;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 70px -50px rgba(10, 12, 20, 0.55);
}
.form-card--lg .fsteps {
  margin-bottom: 36px;
}
.form-card--lg .fsteps__seg {
  height: 3px;
}
.form-card--lg .fsteps__count {
  font-size: 0.82rem;
}
.form-card--lg .fstep__title {
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}
.form-card--lg .fstep__sub {
  font-size: 0.97rem;
  margin-bottom: 30px;
}
.form-card--lg .form-grid {
  gap: 24px;
}
.form-card--lg .field label {
  font-size: 0.94rem;
}
.form-card--lg .field input,
.form-card--lg .field select,
.form-card--lg .field textarea {
  font-size: 1.02rem;
  padding: 16px 18px;
  border-radius: 11px;
}
.form-card--lg .field select {
  background-position: right 18px center;
  padding-right: 44px;
}
.form-card--lg .field textarea {
  min-height: 190px;
}
.form-card--lg .choice span {
  padding: 16px 10px;
  font-size: 0.96rem;
  border-radius: 11px;
}
.form-card--lg .form-nav {
  margin-top: 32px;
}
.form-card--lg .form-nav .btn {
  padding: 17px 30px;
  font-size: 1.03rem;
}
.form-card--lg .checkbox {
  font-size: 0.92rem;
}

/* Contact rail */
.crail {
  display: grid;
  gap: 22px;
}
.crail__card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px;
}
.crail__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.crail__head .icon {
  color: var(--grad-a);
}
.crail__head h3 {
  margin: 0;
  font-size: 0.98rem;
}
.crail__card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--body);
  line-height: 1.6;
}
.crail__card p + p {
  margin-top: 8px;
}
.crail__card a {
  overflow-wrap: anywhere;
}
.crail__meta {
  display: block;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 10px;
}

/* Google map embed */
.map-embed {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-soft);
  line-height: 0;
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 260px;
  border: 0;
}

/* Quick contact strip under the hero */
.reach {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1060px;
  margin: 0 auto;
}
.reach__item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.reach__item .icon {
  color: var(--grad-a);
  margin-top: 3px;
}
.reach__item strong {
  display: block;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 620;
  margin-bottom: 2px;
}
.reach__item span {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 1000px) {
  .contact-wide {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .crail {
    grid-template-columns: repeat(2, 1fr);
  }
  .crail__card--map {
    grid-column: 1 / -1;
  }
}
@media (max-width: 700px) {
  .reach {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .form-card--lg {
    padding: 26px 20px;
  }
  .form-card--lg .fstep__title {
    font-size: 1.25rem;
  }
  .crail {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   27. Nav dropdown
   ========================================================================== */
.nav__item--menu {
  position: relative;
}

.nav__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 490;
  color: var(--body);
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: color 0.15s ease;
}
.nav__trigger:hover,
.nav__trigger[aria-expanded="true"] {
  color: var(--ink);
}
/* Matches the active styling of a plain nav link */
.nav__trigger.is-current {
  color: var(--ink);
  font-weight: 620;
}
.nav__chev {
  width: 11px;
  height: 8px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}
.nav__trigger[aria-expanded="true"] .nav__chev {
  transform: rotate(180deg);
}

.nav__submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 196px;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 44px -20px rgba(10, 12, 20, 0.35);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 120;
}
/* Invisible bridge so the pointer can cross the gap without closing it */
.nav__submenu::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}
.nav__item--menu.is-open .nav__submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav__submenu a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 490;
  color: var(--body);
  white-space: nowrap;
}
.nav__submenu a:hover {
  background: var(--bg-soft);
  color: var(--ink);
  text-decoration: none;
}
.nav__submenu a[aria-current="page"] {
  color: var(--grad-a);
  font-weight: 620;
  background: rgba(109, 91, 255, 0.06);
}

/* Inside the mobile drawer the submenu is just an indented list */
@media (max-width: 820px) {
  .nav__item--menu {
    position: static;
  }
  .nav__trigger {
    width: 100%;
    justify-content: space-between;
    padding: 14px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--line);
  }
  .nav__submenu {
    position: static;
    transform: none;
    min-width: 0;
    padding: 0 0 0 16px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    transition: none;
  }
  .nav__submenu::before {
    display: none;
  }
  .nav__item--menu.is-open .nav__submenu {
    display: block;
    transform: none;
  }
  .nav__submenu a {
    padding: 13px 0;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.97rem;
  }
  .nav__submenu li:last-child a {
    border-bottom: 0;
  }
}
