/* ===========================================================
   ISO 360 Plus — Marketing Site Design System
   =========================================================== */

:root {
  /* Brand colors — sampled from the ISO 360 Plus shield logo */
  --navy-950: #060a2e;
  --navy-900: #0a1044;
  --navy-800: #0e1657;
  --navy-700: #131c66;
  --navy-600: #1b2680;
  --purple-700: #2a1f7a;
  --purple-600: #3b2a99;

  --teal-300: #9df3e4;
  --teal-400: #5fe3cd;
  --teal-500: #2ed8b6;
  --teal-600: #22b89a;
  --teal-700: #189a80;

  --ink-900: #0b1130;
  --ink-700: #333a5c;
  --ink-500: #5b6285;
  --ink-300: #9096b3;
  --ink-100: #eef0f8;

  --bg-white: #ffffff;
  --bg-soft: #f6f7fc;
  --bg-card: #ffffff;
  --border-soft: #e3e6f3;

  --amber-500: #f5a524;
  --amber-100: #fdf0da;
  --green-600: #1a9e6f;
  --green-100: #dcf5ea;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(10, 16, 68, 0.06);
  --shadow-md: 0 8px 30px rgba(10, 16, 68, 0.10);
  --shadow-lg: 0 20px 60px rgba(10, 16, 68, 0.18);

  --container: 1180px;
  --font-sans: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink-900);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }

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

section { position: relative; }

.section-pad { padding: 96px 0; }
@media (max-width: 720px) {
  .section-pad { padding: 64px 0; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-700);
  background: var(--teal-300);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}
.eyebrow.on-dark {
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.9);
}

h1, .h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--navy-900);
}
h2, .h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--navy-900);
}
h3, .h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-900);
}
.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--ink-500);
  max-width: 640px;
}
.section-head {
  max-width: 700px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head p { margin-top: 14px; }

.text-center { text-align: center; }
.muted { color: var(--ink-500); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
  color: var(--navy-950);
  box-shadow: 0 10px 24px rgba(46, 216, 182, 0.35);
}
.btn-primary:hover { box-shadow: 0 14px 30px rgba(46, 216, 182, 0.45); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  border-color: var(--border-soft);
  color: var(--navy-900);
}
.btn-outline:hover { border-color: var(--navy-700); background: var(--bg-soft); }

.btn-ghost-dark {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}
.btn-ghost-dark:hover { background: rgba(255,255,255,0.16); }

.btn-lg { padding: 16px 32px; font-size: 1.02rem; }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border-soft);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--navy-900);
}
.brand img { height: 38px; width: auto; }
.brand-name { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name .maker { font-size: 0.68rem; font-weight: 600; color: var(--ink-300); letter-spacing: 0.03em; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-700);
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--navy-900); }
.nav-links a.active { color: var(--teal-700); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy-900);
  margin: 5px 0;
  transition: 0.2s;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-actions .btn-outline { display: none; }
  .nav-toggle { display: block; }

  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px 24px 28px;
    gap: 18px;
    border-bottom: 1px solid var(--border-soft);
    box-shadow: var(--shadow-md);
  }
  .nav.open .nav-actions .btn-outline {
    display: inline-flex;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 140% at 15% 0%, #1b2680 0%, #0e1657 42%, #0a1044 78%, #060a2e 100%);
  color: #fff;
  padding: 110px 0 130px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 2;
}
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-grid .lede { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-trust { justify-content: center; }
}

.hero h1 { color: #fff; }
.hero .lede { color: rgba(255,255,255,0.78); }

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-trust {
  margin-top: 46px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}
.hero-trust .dots { display: flex; gap: 8px; }
.hero-trust .dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.25);
}

/* Cube motif */
.cube-field {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.cube {
  position: absolute;
  width: 90px;
  height: 104px;
  opacity: 0.85;
  animation: floatY 7s ease-in-out infinite;
}
.cube .face {
  position: absolute;
  inset: 0;
}
.cube .top {
  width: 90px; height: 52px;
  background: linear-gradient(135deg, var(--teal-300), var(--teal-500));
  clip-path: polygon(50% 0, 100% 25%, 50% 50%, 0 25%);
  top: 0;
}
.cube .left {
  width: 90px; height: 60px;
  background: linear-gradient(160deg, var(--teal-600), var(--teal-700));
  clip-path: polygon(0 25%, 50% 50%, 50% 100%, 0 75%);
  top: 22px;
  opacity: 0.95;
}
.cube .right {
  width: 90px; height: 60px;
  background: linear-gradient(200deg, var(--teal-400), var(--teal-600));
  clip-path: polygon(100% 25%, 50% 50%, 50% 100%, 100% 75%);
  top: 22px;
}
.cube.navy .top { background: linear-gradient(135deg, #3546c9, #1b2680); }
.cube.navy .left { background: linear-gradient(160deg, #131c66, #0a1044); }
.cube.navy .right { background: linear-gradient(200deg, #2233a0, #131c66); }
.cube.small { transform: scale(0.55); }
.cube.large { transform: scale(1.35); }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}
.cube.small { animation-duration: 6s; }
.cube.large { animation-duration: 9s; }

.hero-art {
  position: relative;
  z-index: 2;
  height: 380px;
}
@media (max-width: 940px) {
  .hero-art { height: 260px; margin-top: 10px; }
}

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--bg-soft);
  padding: 34px 0;
  border-bottom: 1px solid var(--border-soft);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-bar-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-500);
  letter-spacing: 0.02em;
}
.stat-strip {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.stat-value {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.01em;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-500);
  white-space: nowrap;
}
@media (max-width: 720px) {
  .stat-strip { gap: 24px; }
}

/* ---------- Cards / grids ---------- */
.grid {
  display: grid;
  gap: 24px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 940px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.icon-tile {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-950));
  color: var(--teal-400);
  margin-bottom: 20px;
  flex-shrink: 0;
}
.icon-tile svg { width: 26px; height: 26px; }

.card h3 { margin-bottom: 10px; }
.card p { color: var(--ink-500); font-size: 0.95rem; }

.pillar-card { display: flex; flex-direction: column; }

/* ---------- Badges ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}
.badge-live { background: var(--green-100); color: var(--green-600); }
.badge-planned { background: var(--amber-100); color: var(--amber-500); }
.badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
@media (max-width: 940px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .steps { grid-template-columns: 1fr; } }

.step {
  position: relative;
  padding-top: 8px;
}
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--teal-400);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.step h3 { margin-bottom: 8px; font-size: 1.05rem; }
.step p { color: var(--ink-500); font-size: 0.92rem; }

/* ---------- Module preview ---------- */
.module-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 820px) { .module-row { grid-template-columns: 1fr; } }

.module-card {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px;
  background: var(--bg-white);
}
.module-card.planned { background: var(--bg-soft); }
.module-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  gap: 12px;
}
.module-card ul { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.module-card li {
  display: flex;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--ink-700);
}
.module-card li .tick {
  color: var(--teal-600);
  flex-shrink: 0;
  margin-top: 2px;
}
.module-card .annex-tag {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink-500);
  background: var(--bg-soft);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

/* ---------- Diagram (two-layer access) ---------- */
.access-diagram {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px;
  background: var(--bg-soft);
}
.access-layer {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}
.access-layer:last-child { margin-bottom: 0; }
.access-layer .num {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--navy-900);
  color: var(--teal-400);
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.access-arrow {
  text-align: center;
  color: var(--ink-300);
  font-size: 1.4rem;
  margin: 4px 0;
}

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border-soft); }
table.roles-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  background: #fff;
}
table.roles-table th, table.roles-table td {
  text-align: left;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-soft);
  font-size: 0.92rem;
  vertical-align: top;
}
table.roles-table th {
  background: var(--navy-900);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
}
table.roles-table tr:last-child td { border-bottom: none; }
table.roles-table td:first-child { font-weight: 700; color: var(--navy-900); white-space: nowrap; }

/* ---------- Testimonial ---------- */
.testimonial {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-950));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.testimonial blockquote {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 600;
  line-height: 1.5;
  max-width: 760px;
  margin: 0 auto 24px;
}
.testimonial cite {
  font-style: normal;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  display: block;
}
@media (max-width: 720px) { .testimonial { padding: 40px 24px; } }

/* ---------- CTA band ---------- */
.cta-band {
  background: radial-gradient(120% 160% at 85% 20%, #2a1f7a 0%, #0e1657 55%, #0a1044 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.75); margin: 16px auto 30px; max-width: 560px; }
.cta-band .hero-cta { justify-content: center; margin-top: 0; }
@media (max-width: 720px) { .cta-band { padding: 44px 24px; } }

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img { height: 34px; }
.footer-brand span { font-weight: 800; color: #fff; font-size: 1.05rem; }
.footer p.desc { font-size: 0.9rem; max-width: 280px; }

.footer h4 {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer ul { display: flex; flex-direction: column; gap: 11px; }
.footer a { font-size: 0.92rem; color: rgba(255,255,255,0.65); transition: color 0.15s; }
.footer a:hover { color: var(--teal-400); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ---------- Page hero (non-home) ---------- */
.page-hero {
  background: radial-gradient(120% 140% at 15% 0%, #1b2680 0%, #0e1657 42%, #0a1044 78%, #060a2e 100%);
  color: #fff;
  padding: 76px 0 84px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero h1 { color: #fff; }
.page-hero .lede { color: rgba(255,255,255,0.78); margin: 18px auto 0; }

/* ---------- Feature detail blocks ---------- */
.feature-block {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
  padding: 64px 0;
  border-bottom: 1px solid var(--border-soft);
}
.feature-block:last-child { border-bottom: none; }
@media (max-width: 860px) { .feature-block { grid-template-columns: 1fr; gap: 28px; } }

.feature-block-intro .badge { margin-bottom: 16px; }
.feature-block-intro h2 { margin-bottom: 14px; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 22px; margin-top: 8px; }
@media (max-width: 620px) { .feature-list { grid-template-columns: 1fr; } }
.feature-item {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}
.feature-item h4 { font-size: 0.95rem; color: var(--navy-900); margin-bottom: 6px; }
.feature-item p { font-size: 0.86rem; color: var(--ink-500); }

/* ---------- Mock screenshot ---------- */
.mockup {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-md);
  background: #fff;
}
.mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border-soft);
}
.mockup-bar span { width: 10px; height: 10px; border-radius: 50%; background: var(--border-soft); }
.mockup-body { padding: 20px; }
.mockup-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  margin-bottom: 10px;
  font-size: 0.82rem;
}
.mockup-row:last-child { margin-bottom: 0; }
.mockup-row .dim { width: 90px; height: 8px; border-radius: 4px; background: var(--border-soft); }
.mockup-chip {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
}
.chip-high { background: #fde3e1; color: #c23b2c; }
.chip-med { background: var(--amber-100); color: var(--amber-500); }
.chip-low { background: var(--green-100); color: var(--green-600); }

/* ---------- Roadmap timeline ---------- */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.timeline-group { margin-bottom: 56px; }
.timeline-group-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.timeline-group-head .line { flex: 1; height: 1px; background: var(--border-soft); }
.timeline-group-head h3 { color: var(--navy-900); white-space: nowrap; }

.roadmap-card {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 22px;
  background: #fff;
}
.roadmap-card .badge { margin-bottom: 12px; }
.roadmap-card h4 { font-size: 1rem; margin-bottom: 8px; color: var(--navy-900); }
.roadmap-card p { font-size: 0.88rem; color: var(--ink-500); margin-bottom: 10px; }
.roadmap-card .clause {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--navy-700);
  background: var(--bg-soft);
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

/* ---------- Support page ---------- */
.support-item {
  display: flex;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid var(--border-soft);
}
.support-item:last-child { border-bottom: none; }
.support-item .icon-tile { margin-bottom: 0; }
.support-item h3 { margin-bottom: 6px; }
.support-item p { color: var(--ink-500); font-size: 0.94rem; }

.status-flow {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-weight: 700;
  font-size: 0.9rem;
}
.status-flow .pill {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  color: var(--navy-900);
}
.status-flow .arrow { color: var(--ink-300); }

/* ---------- Contact / forms ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 8px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-soft);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink-900);
  background: #fff;
  transition: border-color 0.15s;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--teal-500);
}
.form-field textarea { min-height: 130px; resize: vertical; }

.info-card {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.info-row { display: flex; gap: 14px; margin-bottom: 22px; }
.info-row:last-child { margin-bottom: 0; }
.info-row h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink-500); margin-bottom: 4px; }
.info-row p, .info-row a { font-size: 0.98rem; font-weight: 600; color: var(--navy-900); }

.form-success {
  display: none;
  background: var(--green-100);
  color: var(--green-600);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 18px;
}
.form-success.show { display: block; }

/* ---------- Pricing card ---------- */
.pricing-card {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  background: #fff;
  max-width: 460px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}
.pricing-card .price { font-size: 2.4rem; font-weight: 800; color: var(--navy-900); margin: 14px 0 4px; }
.pricing-card .price span { font-size: 1rem; color: var(--ink-500); font-weight: 600; }
.pricing-card ul { text-align: left; margin: 26px 0; display: flex; flex-direction: column; gap: 12px; }
.pricing-card li { display: flex; gap: 10px; font-size: 0.92rem; color: var(--ink-700); }
.pricing-card li .tick { color: var(--teal-600); }

/* ---------- Utilities ---------- */
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-12 { gap: 12px; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.bg-soft { background: var(--bg-soft); }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
