/* ===== Reset & base ===== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #1a1d21;
  background: #ffffff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; line-height: 1.15; font-weight: 800; }
p { margin: 0; }

:root {
  --accent: #14b8a6;
  --accent-dark: #0d9488;
  --accent-light: #ccfbf1;
  --ink: #111318;
  --ink-soft: #3b3f46;
  --muted: #6b7280;
  --bg-alt: #f5f7f8;
  --border: #e6e9eb;
  --radius-lg: 20px;
  --radius-md: 12px;
  --max: 1240px;
  --shadow: 0 20px 50px -20px rgba(17, 19, 24, 0.25);
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

section { padding: 96px 0; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 18px;
}

.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); letter-spacing: -0.01em; }
.section-head p { margin-top: 16px; font-size: 18px; color: var(--muted); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 10px 24px -8px rgba(13,148,136,.55); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #262a31; transform: translateY(-1px); }
.btn-outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-ghost { color: var(--ink); background: transparent; padding: 13px 18px; }
.btn-ghost:hover { color: var(--accent-dark); }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-block { width: 100%; }

/* ===== Top utility bar ===== */
.topbar {
  background: var(--ink);
  color: #cfd3d9;
}
.topbar .wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 28px;
  height: 42px;
  font-size: 13.5px;
}
.topbar a { display: inline-flex; align-items: center; gap: 7px; color: #cfd3d9; }
.topbar a:hover { color: #fff; }
.topbar svg { width: 15px; height: 15px; flex: none; }

/* ===== Main nav ===== */
.navbar {
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 100;
}
.navbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; font-size: 21px; font-weight: 800; color: var(--ink); flex: none; }
.brand img { width: 32px; height: 32px; }

.nav-links { display: flex; align-items: center; gap: 2px; flex-wrap: nowrap; }
.mobile-cta { display: none; }
.nav-links > li { position: relative; }
.nav-links > li > a, .nav-links > li > button.nav-top {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 11px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-soft);
  border-radius: 8px;
  background: none;
  border: none;
  white-space: nowrap;
}
.nav-links > li > a:hover, .nav-links > li > button.nav-top:hover,
.nav-links > li.open > button.nav-top { color: var(--ink); background: var(--bg-alt); }
.nav-links .chev { width: 10px; height: 10px; transition: transform .15s ease; }
.nav-links > li.open .chev { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  min-width: 300px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
}
.nav-links > li.open .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--ink);
}
.dropdown a:hover { background: var(--bg-alt); }
.dropdown a strong { font-size: 14.5px; font-weight: 700; }
.dropdown a span { font-size: 13px; color: var(--muted); font-weight: 400; }

.nav-cta { display: flex; align-items: center; gap: 8px; flex: none; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle svg { width: 26px; height: 26px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 72px 0 0;
  background: linear-gradient(180deg, #eef8f6 0%, #ffffff 62%);
  overflow: hidden;
}
.hero .wrap {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1.05fr);
  align-items: center;
  gap: 20px;
  padding-bottom: 70px;
  min-width: 0;
}
.hero-copy {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 52px 48px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
  min-width: 0;
}
.hero-copy h1 {
  font-size: clamp(34px, 4.2vw, 54px);
  color: var(--accent-dark);
  letter-spacing: -0.015em;
}
.hero-copy p.lead {
  margin-top: 22px;
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 46ch;
}
.hero-actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }

.hero-visual { position: relative; z-index: 1; padding-top: 64px; min-width: 0; width: 100%; }
.hero-arrow {
  position: absolute;
  left: 36px;
  top: 0;
  width: 76px;
  height: 76px;
  z-index: 3;
  color: var(--accent);
}

/* Laptop dashboard mockup (pure CSS/SVG) */
.laptop { position: relative; margin-left: 20px; overflow-x: auto; min-width: 0; max-width: 100%; }
.laptop-screen {
  background: #14161a;
  border-radius: 18px 18px 6px 6px;
  padding: 14px 14px 26px;
  box-shadow: 0 40px 70px -30px rgba(0,0,0,.45);
  width: 460px;
  min-width: 460px;
}
.laptop-bar { display: flex; gap: 6px; padding: 2px 4px 12px; }
.laptop-bar span { width: 9px; height: 9px; border-radius: 50%; background: #3a3d44; }
.laptop-body {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 150px minmax(0,1fr);
  min-height: 300px;
  font-size: 12px;
}
.laptop-sidebar { background: var(--bg-alt); border-right: 1px solid var(--border); padding: 16px 12px; }
.laptop-sidebar .app-name { font-weight: 800; font-size: 13px; margin-bottom: 14px; color: var(--ink); display: flex; align-items: center; gap: 6px; }
.laptop-sidebar .app-name i { width: 16px; height: 16px; border-radius: 50%; border: 2px solid var(--accent); display: inline-block; }
.laptop-nav-item { padding: 8px 10px; border-radius: 6px; color: var(--muted); font-weight: 600; margin-bottom: 2px; }
.laptop-nav-item.active { background: #fff; color: var(--ink); box-shadow: 0 1px 3px rgba(0,0,0,.08); }
.laptop-main { padding: 16px 18px; }
.laptop-main h4 { font-size: 13px; color: var(--ink); margin-bottom: 3px; }
.laptop-main .sub { color: var(--muted); font-size: 11px; margin-bottom: 14px; }
.stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 14px; }
.stat-box { background: var(--bg-alt); border-radius: 8px; padding: 10px; }
.stat-box .num { font-size: 16px; font-weight: 800; color: var(--ink); }
.stat-box .lbl { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.log-table { border: 1px solid var(--border); border-radius: 8px; overflow-x: auto; overflow-y: hidden; }
.log-row { display: grid; grid-template-columns: 1.3fr .8fr .7fr .9fr; gap: 6px; padding: 7px 10px; align-items: center; border-bottom: 1px solid var(--border); font-size: 10.5px; min-width: 320px; }
.log-row:last-child { border-bottom: none; }
.log-row.head { background: var(--bg-alt); color: var(--muted); font-weight: 700; text-transform: uppercase; font-size: 9px; letter-spacing: .04em; }
.badge { display: inline-block; padding: 2px 8px; border-radius: 999px; font-weight: 700; font-size: 9.5px; }
.badge.success { background: #dcfce7; color: #166534; }
.badge.failed { background: #fee2e2; color: #991b1b; }
.badge.retrying { background: #fef3c7; color: #92400e; }

/* ===== Logo / trust strip ===== */
.trust-strip { padding: 28px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-alt); }
.trust-strip .wrap { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; justify-content: space-between; }
.trust-strip p { font-weight: 700; color: var(--muted); font-size: 14px; letter-spacing: .02em; white-space: nowrap; }
.trust-icons { display: flex; gap: 34px; flex-wrap: wrap; align-items: center; opacity: .85; }
.trust-icons span { font-weight: 700; color: var(--ink-soft); font-size: 15px; display:flex; align-items:center; gap:8px; }
.trust-icons svg { width: 18px; height: 18px; color: var(--accent-dark); }

/* ===== Feature grid ===== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  background: #fff;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: transparent; }
.card .icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--accent-light);
  color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.card .icon svg { width: 24px; height: 24px; }
.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 15px; }
.card a.more { display: inline-flex; align-items:center; gap:6px; margin-top: 16px; font-weight: 700; color: var(--accent-dark); font-size: 14.5px; }
.card a.more svg { width: 14px; height: 14px; }

/* ===== Steps ===== */
.steps { counter-reset: step; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step { position: relative; padding-left: 4px; }
.step .num {
  counter-increment: step;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 17px;
  margin-bottom: 18px;
}
.step .num::before { content: counter(step); }
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15px; }

/* ===== Split section (image + text) ===== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
}
.split ul.checklist { margin-top: 22px; display: flex; flex-direction: column; gap: 14px; }
.split ul.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: var(--ink-soft); }
.split ul.checklist svg { width: 20px; height: 20px; flex: none; color: var(--accent-dark); margin-top: 1px; }

/* ===== Bordered panel table used on split sections ===== */
.mini-panel { background: #fff; border: 1px solid var(--border); border-radius: 10px; overflow-x: auto; overflow-y: hidden; }
.mini-panel .row { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 8px; padding: 12px 14px; border-bottom: 1px solid var(--border); font-size: 13px; align-items: center; min-width: 360px; }
.mini-panel .row:last-child { border-bottom: none; }
.mini-panel .row.head { background: var(--bg-alt); font-weight: 700; color: var(--muted); font-size: 11.5px; text-transform: uppercase; letter-spacing: .04em; }
.sev { display: inline-flex; align-items:center; gap:6px; font-weight: 700; font-size: 12.5px; }
.sev::before { content: ""; width: 8px; height: 8px; border-radius: 50%; }
.sev.high::before { background: #dc2626; }
.sev.medium::before { background: #f59e0b; }
.sev.info::before { background: #14b8a6; }

/* ===== CTA band ===== */
.cta-band {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band h2 { color: #fff; font-size: clamp(24px, 3vw, 32px); max-width: 560px; }
.cta-band p { color: #b6bcc4; margin-top: 10px; font-size: 16px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== Stats ===== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stats .stat h3 { font-size: clamp(30px, 4vw, 44px); color: var(--accent-dark); }
.stats .stat p { color: var(--muted); margin-top: 6px; font-size: 15px; }

/* ===== Page hero (interior pages) ===== */
.page-hero { background: var(--bg-alt); padding: 64px 0; border-bottom: 1px solid var(--border); }
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero h1 { font-size: clamp(30px, 4vw, 46px); letter-spacing: -0.01em; }
.page-hero p { margin-top: 18px; font-size: 18px; color: var(--muted); max-width: 62ch; }
.breadcrumb { font-size: 13.5px; color: var(--muted); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--accent-dark); }

/* ===== Pricing / plan cards (used sparingly) ===== */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan { border: 1px solid var(--border); border-radius: var(--radius-md); padding: 32px; display: flex; flex-direction: column; }
.plan.featured { border-color: var(--accent); box-shadow: var(--shadow); position: relative; }
.plan.featured .tag { position: absolute; top: -13px; left: 28px; background: var(--accent); color: #fff; font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 999px; }
.plan h3 { font-size: 20px; }
.plan .price { font-size: 34px; font-weight: 800; margin: 14px 0 6px; }
.plan .price span { font-size: 14px; font-weight: 600; color: var(--muted); }
.plan p.desc { color: var(--muted); font-size: 14.5px; }
.plan ul { margin: 22px 0; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.plan ul li { display: flex; gap: 10px; font-size: 14.5px; color: var(--ink-soft); }
.plan ul svg { width: 18px; height: 18px; color: var(--accent-dark); flex: none; }

/* ===== Team ===== */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.team-card { text-align: center; }
.team-avatar { width: 100%; aspect-ratio: 1; border-radius: 16px; background: linear-gradient(135deg, var(--accent-light), #e6f1ff); display: flex; align-items: center; justify-content: center; font-size: 30px; font-weight: 800; color: var(--accent-dark); margin-bottom: 14px; }
.team-card h4 { font-size: 15.5px; }
.team-card p { color: var(--muted); font-size: 13.5px; margin-top: 3px; }

/* ===== Values ===== */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: flex-start; }
.contact-info-card { background: var(--bg-alt); border-radius: var(--radius-lg); padding: 36px; border: 1px solid var(--border); }
.contact-info-card .item { display: flex; gap: 14px; margin-bottom: 24px; }
.contact-info-card .item:last-child { margin-bottom: 0; }
.contact-info-card .icon { width: 40px; height: 40px; border-radius: 10px; background: var(--accent-light); color: var(--accent-dark); display: flex; align-items: center; justify-content: center; flex: none; }
.contact-info-card .icon svg { width: 20px; height: 20px; }
.contact-info-card h4 { font-size: 15px; margin-bottom: 3px; }
.contact-info-card p, .contact-info-card a { color: var(--muted); font-size: 14.5px; }

.field { margin-bottom: 20px; }
.field label { display: block; font-size: 13.5px; font-weight: 700; margin-bottom: 7px; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  background: #fff;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-card { border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 14px; }
.form-success {
  display: none;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
  padding: 16px 18px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 600;
  margin-bottom: 20px;
}
.form-success.show { display: block; }
.form-error {
  display: none;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  padding: 16px 18px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 600;
  margin-bottom: 20px;
}
.form-error.show { display: block; }
.btn[disabled] { opacity: 0.7; cursor: not-allowed; }

/* ===== Legal / prose content ===== */
.legal-updated { color: var(--muted); font-size: 14px; margin-bottom: 40px; }
.legal-content { max-width: 760px; }
.legal-content h2 { font-size: 22px; margin-top: 44px; margin-bottom: 14px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 17px; margin-top: 26px; margin-bottom: 10px; }
.legal-content p { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 14px; }
.legal-content ul, .legal-content ol { margin: 0 0 14px; padding-left: 22px; display: flex; flex-direction: column; gap: 8px; }
.legal-content li { color: var(--ink-soft); font-size: 15.5px; }
.legal-content a { color: var(--accent-dark); text-decoration: underline; }
.legal-content strong { color: var(--ink); }

/* ===== FAQ ===== */
.faq-item { border-bottom: 1px solid var(--border); padding: 22px 0; }
.faq-item summary { cursor: pointer; font-weight: 700; font-size: 16.5px; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus { width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid var(--border); flex: none; position: relative; }
.faq-item summary .plus::before, .faq-item summary .plus::after { content:""; position: absolute; background: var(--ink); top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-item summary .plus::before { width: 10px; height: 1.6px; }
.faq-item summary .plus::after { width: 1.6px; height: 10px; }
.faq-item[open] summary .plus::after { display: none; }
.faq-item p { margin-top: 14px; color: var(--muted); font-size: 15px; max-width: 68ch; }

/* ===== Guide ===== */
.guide-item { border: 1px solid var(--border); border-radius: 12px; padding: 26px 28px; margin-bottom: 16px; }
.guide-item summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.guide-item summary::-webkit-details-marker { display: none; }
.guide-item summary .guide-title { font-weight: 700; font-size: 18px; color: var(--ink); }
.guide-item summary .guide-sub { display: block; margin-top: 4px; font-weight: 400; font-size: 14px; color: var(--muted); }
.guide-item summary .plus { width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid var(--border); flex: none; position: relative; }
.guide-item summary .plus::before, .guide-item summary .plus::after { content:""; position: absolute; background: var(--ink); top: 50%; left: 50%; transform: translate(-50%,-50%); }
.guide-item summary .plus::before { width: 10px; height: 1.6px; }
.guide-item summary .plus::after { width: 1.6px; height: 10px; }
.guide-item[open] summary .plus::after { display: none; }
.guide-body { margin-top: 20px; }
.guide-body p { color: var(--muted); font-size: 15px; line-height: 1.65; max-width: 74ch; margin-bottom: 14px; }
.guide-body code { background: var(--bg-alt); border: 1px solid var(--border); padding: 1px 6px; border-radius: 5px; font-family: "SF Mono", Consolas, monospace; font-size: 13.5px; color: var(--accent-dark); }
.guide-body h3 { font-size: 15px; font-weight: 700; color: var(--ink); margin: 22px 0 10px; }
.guide-body h3:first-child { margin-top: 0; }
.code-block { background: #1a1c22; color: #d8dce2; padding: 18px 20px; border-radius: 10px; font-family: "SF Mono", Consolas, monospace; font-size: 13px; line-height: 1.6; white-space: pre; overflow-x: auto; margin: 0 0 14px; }
.guide-note { background: var(--accent-light); border: 1px solid var(--accent); border-radius: 10px; padding: 14px 18px; font-size: 14px; color: var(--ink-soft); line-height: 1.6; margin-top: 14px; }
.guide-note strong { color: var(--ink); }

/* ===== Footer ===== */
.site-footer { background: var(--ink); color: #b6bcc4; padding: 72px 0 0; }
.footer-top { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 32px; padding-bottom: 56px; border-bottom: 1px solid #2b2f37; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-size: 19px; font-weight: 800; color: #fff; margin-bottom: 14px; }
.footer-brand img { width: 28px; height: 28px; }
.footer-top p.desc { font-size: 14.5px; color: #8b929c; max-width: 30ch; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 34px; height: 34px; border-radius: 8px; background: #23262d; display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { background: var(--accent-dark); }
.footer-social svg { width: 16px; height: 16px; color: #fff; }
.footer-col h5 { color: #fff; font-size: 13.5px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14.5px; color: #b6bcc4; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 26px 0; gap: 16px; flex-wrap: wrap; font-size: 13.5px; color: #7d848d; }
.footer-bottom .legal-links { display: flex; gap: 22px; }
.footer-bottom a:hover { color: #fff; }

/* ===== Utilities ===== */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }

/* ===== Responsive ===== */
@media (max-width: 1080px) {
  .hero .wrap { grid-template-columns: minmax(0,1fr); }
  .hero-visual { max-width: 560px; margin: 0 auto; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .grid-3, .steps-grid, .split, .values-grid, .team-grid, .plans, .contact-grid { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  section { padding: 64px 0; }
}
@media (max-width: 860px) {
  .topbar { display: none; }
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .navbar.mobile-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 84px; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 12px 20px 24px;
    gap: 2px;
    box-shadow: var(--shadow);
    align-items: stretch;
  }
  .navbar.mobile-open .nav-links > li { width: 100%; }
  .navbar.mobile-open .nav-links > li > a, .navbar.mobile-open .nav-links > li > button.nav-top { width: 100%; justify-content: space-between; }
  .navbar.mobile-open .dropdown { position: static; box-shadow: none; opacity: 1; visibility: visible; transform: none; display: none; border: none; padding-left: 12px; }
  .navbar.mobile-open li.open .dropdown { display: block; }
  .nav-cta .btn-ghost { display: none; }
  .hero-copy { padding: 36px 26px; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .navbar.mobile-open .mobile-cta { display: block; margin-top: 12px; }
  .nav-links li.mobile-cta > a {
    background: var(--accent);
    color: #fff;
    justify-content: center;
    padding: 13px 26px;
    border-radius: 999px;
  }
  .nav-links li.mobile-cta > a:hover { background: var(--accent-dark); }
}
@media (max-width: 520px) {
  .nav-cta .btn-primary { display: none; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .field-row { grid-template-columns: 1fr; }
  .laptop { margin-left: 0; }
}
@media (max-width: 400px) {
  .brand { font-size: 17px; gap: 7px; }
  .brand img { width: 26px; height: 26px; }
}
