/* ==========================================================================
   WinNorth Digital — shared stylesheet
   Brand colours pulled directly from /WinNorth-Digital-Logo-Pack/svg
   ========================================================================== */

/* ---- Self-hosted fonts (no third-party requests — GDPR-clean, faster) ---- */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../assets/fonts/inter-var.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../assets/fonts/poppins-500.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../assets/fonts/poppins-600.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../assets/fonts/poppins-700.woff2") format("woff2");
}

:root {
  --navy: #0c1524;
  --navy-soft: #101b2e;
  --blue-deep: #1560d4;
  --blue-light: #5aa6ff;
  --slate: #4a6fa5;
  --slate-soft: #8fb4e6;
  --ink: #0c1524;
  --body-text: #3c4657;
  --muted: #6b7686;
  --bg: #ffffff;
  --bg-alt: #f5f7fb;
  --border: #e4e8f0;
  --radius: 14px;
  --shadow-sm: 0 2px 8px rgba(12, 21, 36, 0.06);
  --shadow-md: 0 12px 32px rgba(12, 21, 36, 0.1);
  --gradient: linear-gradient(120deg, var(--blue-deep) 0%, var(--blue-light) 100%);
  --max-width: 1180px;
  --font-heading: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--body-text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.2rem, 4.2vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }

p { margin: 0 0 1em; }

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

.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-deep);
  background: rgba(21, 96, 212, 0.08);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.section {
  padding: 88px 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section--navy {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
}

.section--navy h2,
.section--navy h3 {
  color: #ffffff;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section--navy .section-head p {
  color: rgba(255, 255, 255, 0.7);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(21, 96, 212, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(21, 96, 212, 0.36);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(12, 21, 36, 0.16);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--blue-deep);
  color: var(--blue-deep);
}

.section--navy .btn-ghost {
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
}

.section--navy .btn-ghost:hover {
  border-color: #ffffff;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  height: 38px;
  width: auto;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1;
}

.brand-name em {
  font-style: normal;
  font-weight: 600;
  color: var(--slate);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.main-nav a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--body-text);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--blue-deep);
  border-color: var(--blue-deep);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-right: -8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background: var(--navy);
  color: #ffffff;
  overflow: hidden;
  padding: 110px 0 100px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(680px circle at 82% 0%, rgba(90, 166, 255, 0.28), transparent 60%),
    radial-gradient(520px circle at 10% 100%, rgba(21, 96, 212, 0.22), transparent 55%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  color: #ffffff;
}

.hero .lede {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.hero-stats div strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: #ffffff;
}

.hero-stats div span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.hero-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(6px);
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.hero-card-header span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.pill {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(90, 166, 255, 0.18);
  color: var(--blue-light);
}

.hero-job-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.hero-job-row:last-child {
  border-bottom: none;
}

.hero-job-row .status {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
}

.status--progress { background: rgba(90, 166, 255, 0.18); color: var(--blue-light); }
.status--quote { background: rgba(255, 196, 87, 0.18); color: #ffc457; }
.status--done { background: rgba(85, 209, 141, 0.18); color: #55d18d; }

/* ---------- Logo strip ---------- */

.trust-strip {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.trust-strip .container {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-strip p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.trust-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-tags span {
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--body-text);
}

/* ---------- Two-pillar offer ---------- */

.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.pillar-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #fff;
}

.pillar-icon svg {
  width: 26px;
  height: 26px;
}

.pillar-card ul {
  margin: 20px 0 26px;
  padding: 0;
  list-style: none;
}

.pillar-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--body-text);
  margin-bottom: 10px;
}

.pillar-card li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--blue-deep);
}

.card-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--blue-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ---------- Feature grid (3-col) ---------- */

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

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

.feature-card {
  padding: 30px;
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid var(--border);
}

.section--alt .feature-card,
.section--navy .feature-card {
  background: rgba(255, 255, 255, 0.04);
}

.section--alt .feature-card {
  background: #ffffff;
}

.feature-card .num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--blue-deep);
  margin-bottom: 12px;
  display: block;
}

.feature-card h3 {
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

.section--navy .feature-card p {
  color: rgba(255, 255, 255, 0.65);
}

.section--navy .feature-card {
  border-color: rgba(255, 255, 255, 0.12);
}

/* ---------- Steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 28px 22px;
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.6rem;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--blue-deep);
  display: block;
  margin-bottom: 14px;
}

/* ---------- Industries ---------- */

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.tag-cloud span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #ffffff;
}

/* ---------- CTA banner ---------- */

.cta-banner {
  background: var(--gradient);
  border-radius: 24px;
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  color: #ffffff;
}

.cta-banner h2 {
  color: #ffffff;
  margin-bottom: 8px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.cta-banner .btn-ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

.cta-banner .btn-primary {
  background: #ffffff;
  color: var(--blue-deep);
  box-shadow: none;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.6);
  padding: 70px 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .brand {
  margin-bottom: 16px;
}

.footer-brand .brand-mark {
  height: 32px;
}

.footer-brand .brand-name {
  color: #ffffff;
}

.footer-brand .brand-name em {
  color: var(--slate-soft);
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 280px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-col h4 {
  color: #ffffff;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
  transition: color 0.15s ease;
}

.footer-col a:hover {
  color: #ffffff;
}

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

/* ---------- Page hero (inner pages) ---------- */

.page-hero {
  background: var(--navy);
  color: #ffffff;
  padding: 90px 0 76px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at 85% 0%, rgba(90, 166, 255, 0.25), transparent 60%);
}

.page-hero .container {
  position: relative;
  max-width: 760px;
}

.page-hero h1 {
  color: #ffffff;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.72);
}

.breadcrumb {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 18px;
}

.breadcrumb a:hover {
  color: #ffffff;
}

/* ---------- Split content ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split.reverse .split-media {
  order: 2;
}

.split-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.mock-browser {
  background: #ffffff;
}

.mock-browser-bar {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.mock-browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}

.mock-browser-body {
  padding: 22px;
}

.mock-table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}

.mock-table-row:last-child {
  border-bottom: none;
}

.mock-bar {
  height: 8px;
  border-radius: 4px;
  background: var(--bg-alt);
  overflow: hidden;
}

.mock-bar i {
  display: block;
  height: 100%;
  background: var(--gradient);
  border-radius: 4px;
}

.split ul {
  list-style: none;
  padding: 0;
  margin: 22px 0;
}

.split ul li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.98rem;
}

.split ul li:last-child {
  border-bottom: none;
}

.split ul li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--blue-deep);
}

/* ---------- Pricing note callout ---------- */

.callout {
  border: 1px solid var(--border);
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 30px 34px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.callout svg {
  flex-shrink: 0;
  color: var(--blue-deep);
  margin-top: 2px;
}

.callout h3 {
  margin-bottom: 6px;
}

.callout p {
  margin: 0;
  color: var(--muted);
}

/* ---------- Values / about ---------- */

.value-card {
  padding: 26px;
}

.timeline {
  border-left: 2px solid var(--border);
  margin-left: 6px;
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.timeline-item {
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -37px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gradient);
}

/* ---------- Contact page ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: flex-start;
}

.contact-info-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.contact-info-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.contact-info-row:last-child {
  margin-bottom: 0;
}

.contact-info-row svg {
  flex-shrink: 0;
  color: var(--blue-deep);
  margin-top: 3px;
}

.contact-info-row strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  margin-bottom: 2px;
  color: var(--ink);
}

.contact-info-row span,
.contact-info-row a {
  font-size: 0.92rem;
  color: var(--muted);
}

.contact-info-row a:hover {
  color: var(--blue-deep);
}

form.contact-form {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  color: var(--ink);
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue-deep);
  background: #ffffff;
}

.form-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 14px;
}

.form-status {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 0.9rem;
  display: none;
}

.form-status.is-visible {
  display: block;
}

.form-status.success {
  background: rgba(85, 209, 141, 0.12);
  color: #1a8f52;
  border: 1px solid rgba(85, 209, 141, 0.35);
}

.form-status.error {
  background: rgba(220, 76, 76, 0.1);
  color: #c0392b;
  border: 1px solid rgba(220, 76, 76, 0.35);
}

/* ---------- FAQ ---------- */

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}

.faq-item summary {
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
  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::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--blue-deep);
  flex-shrink: 0;
  transition: transform 0.15s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin-top: 14px;
  color: var(--muted);
}

/* ---------- Responsive ---------- */

/* ---------- Pricing ---------- */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  max-width: 1080px;
  margin: 0 auto;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 38px 34px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--slate-soft);
}

.price-card.featured {
  background: radial-gradient(120% 120% at 50% 0%, #16264180 0%, transparent 60%), var(--navy);
  border: 1px solid rgba(90, 166, 255, 0.4);
  color: #ffffff;
  box-shadow: 0 26px 60px rgba(21, 96, 212, 0.28);
  z-index: 1;
}

.price-card.featured:hover {
  transform: translateY(-10px);
  box-shadow: 0 34px 72px rgba(21, 96, 212, 0.36);
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gradient);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(21, 96, 212, 0.45);
}

.price-head h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.price-card.featured .price-head h3 {
  color: #ffffff;
}

.price-tagline {
  font-size: 0.92rem;
  color: var(--muted);
  min-height: 44px;
  line-height: 1.5;
}

.price-card.featured .price-tagline {
  color: var(--slate-soft);
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin: 22px 0 5px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.price-card.featured .price-amount {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.price-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.price-card.featured .price-value {
  color: #ffffff;
}

.price-period {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
}

.price-card.featured .price-period {
  color: var(--slate-soft);
}

.price-setup {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 26px;
}

.price-card.featured .price-setup {
  color: var(--slate-soft);
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.94rem;
  line-height: 1.45;
}

.price-features svg {
  flex-shrink: 0;
  box-sizing: border-box;
  width: 22px;
  height: 22px;
  padding: 4px;
  border-radius: 50%;
  background: rgba(21, 96, 212, 0.12);
  color: var(--blue-deep);
}

.price-card.featured .price-features svg {
  background: rgba(90, 166, 255, 0.2);
  color: var(--blue-light);
}

.price-card .btn {
  margin-top: auto;
}

.price-cta-invert {
  background: #ffffff;
  color: var(--navy);
}

.price-cta-invert:hover {
  background: #eef3fb;
  transform: translateY(-1px);
}

/* Trust row under the pricing cards */
.price-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 32px;
  margin-top: 44px;
}

.price-trust span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--body-text);
}

.price-trust svg {
  color: var(--blue-deep);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .hero .container,
  .split,
  .split.reverse .split-media,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .split.reverse .split-media {
    order: 0;
  }

  .pillars,
  .grid-3,
  .grid-2,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .main-nav {
    position: fixed;
    top: 82px;
    right: 0;
    left: 0;
    height: calc(100vh - 82px);
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 24px;
    gap: 22px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .nav-toggle {
    display: flex;
  }

  .header-actions .btn-ghost {
    display: none;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 40px 28px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}
