/* ─── Design tokens ──────────────────────────────────────────────────────── */
:root {
  --bg: #f5f6fa;
  --bg-alt: #ffffff;
  --surface: #ffffff;
  --text: #0d1117;
  --muted: #4b5563;
  --border: rgba(13, 17, 23, 0.1);
  --shadow-sm: 0 1px 3px rgba(13, 17, 23, 0.08), 0 4px 12px rgba(13, 17, 23, 0.06);
  --shadow: 0 4px 20px rgba(13, 17, 23, 0.10), 0 1px 4px rgba(13, 17, 23, 0.06);
  --shadow-lg: 0 12px 40px rgba(13, 17, 23, 0.14);

  --brand: #1A4480;
  --brand-dark: #102c57;
  --brand-light: #d0def2;
  --accent: #f59e0b;     /* amber */
  --accent-light: #fef3c7;

  --green: #16a34a;
  --green-light: #dcfce7;
  --red: #dc2626;
  --red-light: #fee2e2;

  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 20px;
  --max: 1100px;
}

/* ─── Reset & base ───────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

p {
  margin: 0;
}

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

/* ─── Skip link ──────────────────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 16px;
  z-index: 9999;
  font-weight: 600;
}
.skip-link:focus {
  left: 12px;
}

/* ─── Layout ─────────────────────────────────────────────────────────────── */
.container {
  width: min(100%, calc(var(--max) + 48px));
  padding-inline: 24px;
  margin-inline: auto;
}

.section {
  padding: 80px 0;
}
.section--alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section--cta {
  background: var(--text);
  padding: 80px 0;
}

/* ─── Typography helpers ─────────────────────────────────────────────────── */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-light);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.kicker--light {
  color: #93c5fd;
  background: rgba(147, 197, 253, 0.15);
}

.section__header {
  max-width: 600px;
  margin-bottom: 48px;
}
.section__header h2 {
  font-size: clamp(30px, 3.5vw, 44px);
  margin-top: 0;
}
.section__lead {
  color: var(--muted);
  font-size: 17px;
  margin-top: 12px;
}

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 13px 22px;
  border: 2px solid transparent;
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none !important;
}
.btn:active {
  transform: translateY(1px);
}
.btn--primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  box-shadow: 0 3px 10px rgba(26, 68, 128, 0.18);
}
.btn--primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  box-shadow: 0 4px 14px rgba(26, 68, 128, 0.25);
}
.btn--outline {
  background: transparent;
  border-color: rgba(13, 17, 23, 0.2);
  color: var(--text);
}
.btn--outline:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.btn--ghost {
  background: transparent;
  border-color: transparent;
  color: var(--muted);
}
.btn--ghost:hover {
  color: var(--text);
  background: rgba(13, 17, 23, 0.06);
}
.btn--small {
  padding: 10px 16px;
  font-size: 14px;
}
.btn--full {
  width: 100%;
}

.icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

/* ─── Header / nav ───────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 246, 250, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.01em;
  text-decoration: none !important;
}
.brand__mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--brand);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 900;
  flex: 0 0 auto;
}
.brand__mark--sm {
  width: 28px;
  height: 28px;
  font-size: 11px;
  border-radius: 7px;
}
.brand__name {
  font-size: 15px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 140ms ease, color 140ms ease;
}
.nav__links a:hover {
  background: rgba(13, 17, 23, 0.06);
  color: var(--text);
  text-decoration: none;
}

.mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 9px;
  cursor: pointer;
}
.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  padding: 8px 0 16px;
}
.mobile-menu a {
  display: block;
  font-weight: 600;
}
.mobile-menu__cta {
  padding-top: 12px;
}

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  padding: 80px 0 64px;
  background:
    radial-gradient(ellipse 800px 500px at 60% -20%, rgba(29, 78, 216, 0.07), transparent 60%),
    radial-gradient(ellipse 500px 400px at 90% 80%, rgba(245, 158, 11, 0.06), transparent 60%),
    var(--bg);
}

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

.hero__content h1 {
  font-size: clamp(36px, 4.8vw, 58px);
  font-weight: 900;
  margin-top: 14px;
  max-width: 16ch;
}

.lead {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  margin-top: 16px;
  max-width: 52ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero__visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero__visual img {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
}

.proof-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
  box-shadow: var(--shadow-sm);
}
.proof-card__icon {
  font-size: 22px;
  display: block;
  margin-bottom: 8px;
}
.proof-card strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}
.proof-card span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

/* ─── Strip ──────────────────────────────────────────────────────────────── */
.strip {
  background: var(--brand);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 600;
  padding: 12px 0;
  letter-spacing: 0.01em;
}
.strip__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.strip__divider {
  opacity: 0.5;
}

/* ─── Feature cards (services) ───────────────────────────────────────────── */
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 160ms ease, transform 160ms ease;
}
.feature-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.feature-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--brand-light);
  color: var(--brand);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.feature-card__icon svg {
  width: 20px;
  height: 20px;
}
.feature-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* ─── Process ────────────────────────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.process-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
}
.process-step__num {
  font-size: 28px;
  font-weight: 900;
  color: var(--brand-light);
  line-height: 1;
  letter-spacing: -0.04em;
  flex: 0 0 auto;
  min-width: 40px;
}
.process-step__body h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.process-step__body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.process-footnote {
  margin-top: 32px;
  font-size: 13px;
  color: var(--muted);
}

.tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px 8px;
  letter-spacing: 0;
}

/* ─── Split / Why static ─────────────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split__text h2 {
  font-size: clamp(28px, 3vw, 38px);
  margin-top: 14px;
  margin-bottom: 16px;
}
.split__text p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 14px;
}
.split__text .btn {
  margin-top: 6px;
}

.split__cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.compare-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
}
.compare-card--good {
  background: var(--green-light);
  border-color: rgba(22, 163, 74, 0.25);
}
.compare-card--bad {
  background: var(--red-light);
  border-color: rgba(220, 38, 38, 0.2);
}
.compare-card__label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 12px;
}
.compare-card--good .compare-card__label { color: var(--green); }
.compare-card--bad .compare-card__label { color: var(--red); }

.compare-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.compare-list li {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.compare-list li::before {
  content: "✓";
  font-weight: 700;
  color: var(--green);
  font-size: 13px;
  flex: 0 0 auto;
}
.compare-list--bad li::before {
  content: "✗";
  color: var(--red);
}

/* ─── Retainer plans ─────────────────────────────────────────────────────── */
.retainer-header {
  margin-top: 56px;
  margin-bottom: 20px;
}
.retainer-header h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
}
.retainer-header p {
  font-size: 15px;
  color: var(--muted);
}

.retainer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 740px;
}

.retainer-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.retainer-card--featured {
  border-color: var(--brand);
  box-shadow: 0 0 0 1px var(--brand), var(--shadow);
}
.retainer-card__header h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}
.retainer-card__header p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.price-amount--sm {
  font-size: 28px;
}

@media (max-width: 700px) {
  .retainer-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Pricing ────────────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.pricing-card--featured {
  border-color: var(--brand);
  box-shadow: 0 0 0 1px var(--brand), var(--shadow);
}
.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.pricing-card__header h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}
.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 10px;
}
.price-amount {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.03em;
}
.price-note {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}
.pricing-card__header p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 18px;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
}
.pricing-list li {
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.pricing-list li::before {
  content: "✓";
  font-weight: 800;
  color: var(--brand);
  font-size: 13px;
  margin-top: 1px;
  flex: 0 0 auto;
}

.pricing-note {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin-top: 24px;
}
.pricing-note strong {
  color: var(--text);
}

/* ─── FAQ ────────────────────────────────────────────────────────────────── */
.faq-container {
  max-width: 760px;
}

.faq-list {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child {
  border-bottom: none;
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  font: inherit;
  font-size: 15px;
  font-weight: 650;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  transition: background 140ms ease;
}
.faq-trigger:hover {
  background: var(--bg);
}
.faq-trigger[aria-expanded="true"] {
  color: var(--brand);
}
.faq-trigger[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--muted);
  transition: transform 200ms ease;
}

.faq-answer {
  padding: 0px 22px 18px;
}
.faq-answer p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── Contact / CTA ──────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact__text h2 {
  font-size: clamp(28px, 3vw, 38px);
  color: #fff;
  margin-top: 12px;
  margin-bottom: 16px;
}
.contact__text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.7;
}
.contact__details {
  margin-top: 24px;
}
.contact__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none !important;
  transition: color 140ms ease;
}
.contact__link:hover {
  color: #fff;
}
.contact__link .icon {
  color: #93c5fd;
}

.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}

/* ─── Form elements ──────────────────────────────────────────────────────── */
.form-row {
  margin-bottom: 14px;
}

label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  padding: 11px 13px;
  font: inherit;
  font-size: 15px;
  color: var(--text);
  transition: border-color 140ms ease, box-shadow 140ms ease;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

input,
select {
  height: 46px;
  box-sizing: border-box;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234b5563' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.12);
  background: #fff;
}
textarea {
  min-height: 100px;
  resize: vertical;
}

.fineprint {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
}

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--text);
  padding: 28px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}
.footer__brand .brand__mark {
  background: var(--brand);
}
.footer__brand strong {
  color: #fff;
}
.footer__links {
  display: flex;
  gap: 20px;
}
.footer__links a {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  transition: color 140ms ease;
}
.footer__links a:hover {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}
.footer__copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__visual {
    justify-content: center;
  }
  .split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .section {
    padding: 56px 0;
  }
  .hero {
    padding: 56px 0 48px;
  }
  .grid3 {
    grid-template-columns: 1fr;
  }
  .nav__links,
  .nav > .btn {
    display: none;
  }
  .mobile-toggle {
    display: inline-flex;
  }
  .mobile-menu {
    display: block;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}


/* ─── Utility ────────────────────────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}