:root {
  --ig-blue: #0b4bce;
  --ig-blue-dark: #0047ab;
  --ig-ink: #0f172a;
  --ig-navy: #071632;
  --ig-soft: #eef1f6;
  --ig-line: #d9e0ea;
  --ig-muted: #5f6b7a;
  --ig-coral: #ec6b5f;
  --ig-mint: #dcefe9;
  --ig-white: #ffffff;
  --ig-max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.ig-redesign {
  margin: 0;
  padding-top: 0;
  overflow-x: hidden;
  background: var(--ig-white);
  color: var(--ig-ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

body.ig-redesign.ig-has-floating-header {
  padding-top: 0;
}

body.ig-redesign img { display: block; max-width: 100%; }
body.ig-redesign a:not([class]) { color: inherit; }
body.ig-redesign button,
body.ig-redesign a { -webkit-tap-highlight-color: transparent; }

.ig-shell {
  width: min(var(--ig-max), calc(100% - 48px));
  margin-inline: auto;
}

.ig-hero {
  position: relative;
  min-height: 670px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  background: var(--ig-navy);
  color: var(--ig-white);
}

.ig-hero__media,
.ig-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ig-hero__media { z-index: -2; }
.ig-hero__media img { object-fit: cover; object-position: center; }

.ig-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(7, 22, 50, .94) 0%, rgba(7, 22, 50, .76) 48%, rgba(7, 22, 50, .2) 78%, rgba(7, 22, 50, .12) 100%);
}

.ig-hero__content {
  width: min(720px, 68%);
  padding: 72px 0 78px;
}

.ig-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: #dbe7ff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: uppercase;
}

.ig-eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  border-radius: 2px;
  background: var(--ig-coral);
}

.ig-hero h1,
.ig-section h2,
.ig-section h3,
.ig-footer h2 {
  margin-top: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  letter-spacing: 0;
}

.ig-hero h1 {
  max-width: 700px;
  margin-bottom: 22px;
  font-size: 56px;
  line-height: 1.06;
  font-weight: 800;
}

.ig-hero__lead {
  max-width: 640px;
  margin: 0 0 30px;
  color: #eef4ff;
  font-size: 19px;
  line-height: 1.55;
}

.ig-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ig-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}

.ig-button:hover { transform: translateY(-2px); }
.ig-button--primary { background: var(--ig-blue); color: #fff; }
.ig-button--light { background: #fff; color: var(--ig-ink); }
.ig-button--outline { border-color: #b9c4d2; background: transparent; color: var(--ig-ink); }
.ig-hero .ig-button--outline { border-color: rgba(255,255,255,.58); color: #fff; }

.ig-trust {
  padding: 25px 0;
  border-bottom: 1px solid var(--ig-line);
  background: #fff;
}

.ig-trust__inner {
  display: grid;
  grid-template-columns: 190px 1fr;
  align-items: center;
  gap: 32px;
}

.ig-trust p {
  margin: 0;
  color: var(--ig-muted);
  font-size: 13px;
  font-weight: 650;
}

.ig-logo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.ig-logo-row a { display: inline-flex; align-items: center; min-height: 42px; }
.ig-logo-row img { width: auto; height: 25px; object-fit: contain; filter: grayscale(1); opacity: .72; }

.ig-section { padding: 88px 0; }
.ig-section--soft { background: var(--ig-soft); }
.ig-section--navy { background: var(--ig-navy); color: #fff; }
.ig-section--mint { background: var(--ig-mint); }
.ig-section--compact { padding: 62px 0; }

.ig-section__head {
  max-width: 720px;
  margin-bottom: 48px;
}

.ig-section__head--center {
  margin-inline: auto;
  text-align: center;
}

.ig-kicker {
  margin: 0 0 12px;
  color: var(--ig-blue);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.ig-section--navy .ig-kicker { color: #8fb5ff; }

.ig-section h2 {
  margin-bottom: 16px;
  font-size: 38px;
  line-height: 1.18;
  font-weight: 780;
}

.ig-section h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.3;
  font-weight: 750;
}

.ig-section p { margin-top: 0; }
.ig-section__head > p,
.ig-muted { color: var(--ig-muted); }
.ig-section--navy .ig-muted,
.ig-section--navy .ig-section__head > p { color: #c8d5e7; }

.ig-route-list { border-top: 1px solid var(--ig-line); }

.ig-route {
  display: grid;
  grid-template-columns: 64px minmax(210px, .72fr) 1.35fr auto;
  align-items: center;
  gap: 28px;
  padding: 26px 0;
  border-bottom: 1px solid var(--ig-line);
  text-decoration: none;
}

.ig-route__number {
  color: var(--ig-blue);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.ig-route h3 { margin: 0; }
.ig-route p { margin: 0; color: var(--ig-muted); font-size: 15px; }
.ig-route .material-icons-outlined { color: var(--ig-blue); transition: transform .18s ease; }
.ig-route:hover .material-icons-outlined { transform: translateX(4px); }

.ig-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.ig-split__media {
  overflow: hidden;
  border-radius: 8px;
  min-height: 440px;
}

.ig-split__media img { width: 100%; height: 100%; min-height: 440px; object-fit: cover; }

.ig-feature-list,
.ig-check-list,
.ig-link-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.ig-feature-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--ig-line);
}

.ig-feature-list .material-icons-outlined,
.ig-check-list .material-icons-outlined { color: var(--ig-blue); }
.ig-feature-list strong { display: block; margin-bottom: 3px; }
.ig-feature-list p { margin: 0; color: var(--ig-muted); font-size: 14px; }

.ig-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.22);
}

.ig-process--5 { grid-template-columns: repeat(5, 1fr); }

.ig-process__step {
  padding: 30px 28px 6px 0;
  border-right: 1px solid rgba(255,255,255,.22);
}

.ig-process__step:last-child { border-right: 0; padding-right: 0; padding-left: 28px; }
.ig-process__step:not(:first-child):not(:last-child) { padding-left: 28px; }
.ig-process__number { display: block; margin-bottom: 38px; color: #8fb5ff; font-size: 13px; font-weight: 800; }
.ig-process__step h3 { color: #fff; }
.ig-process__step p { color: #c8d5e7; font-size: 14px; }

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

.ig-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ig-line);
  border-bottom: 1px solid var(--ig-line);
}

.ig-detail {
  padding: 30px 28px 28px 0;
  border-right: 1px solid var(--ig-line);
}

.ig-detail:not(:first-child) { padding-left: 28px; }
.ig-detail:last-child { padding-right: 0; border-right: 0; }
.ig-detail__number { display: block; margin-bottom: 28px; color: var(--ig-coral); font-size: 13px; font-weight: 800; }
.ig-detail p { margin-bottom: 0; color: var(--ig-muted); font-size: 14px; }

.ig-card {
  padding: 26px;
  border: 1px solid var(--ig-line);
  border-radius: 8px;
  background: #fff;
}

.ig-card__icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border-radius: 8px;
  background: var(--ig-mint);
  color: #12664f;
}

.ig-card p { color: var(--ig-muted); font-size: 14px; }

.ig-package {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.ig-package--featured { border: 2px solid var(--ig-blue); }
.ig-package__label { align-self: flex-start; margin-bottom: 18px; padding: 5px 9px; border-radius: 5px; background: var(--ig-mint); color: #12664f; font-size: 11px; font-weight: 750; }
.ig-package__price { margin: 20px 0 6px; font-family: "Plus Jakarta Sans", sans-serif; font-size: 30px; font-weight: 800; }
.ig-package__price small { color: var(--ig-muted); font-family: "Space Grotesk", sans-serif; font-size: 13px; font-weight: 500; }
.ig-package .ig-check-list { margin-bottom: 26px; }
.ig-package .ig-button { margin-top: auto; }

.ig-check-list { display: grid; gap: 11px; }
.ig-check-list li { display: flex; align-items: flex-start; gap: 9px; color: #394454; font-size: 14px; }
.ig-check-list .material-icons-outlined { font-size: 19px; }

.ig-proof-quote {
  margin: 0;
  padding: 30px 0 30px 28px;
  border-left: 4px solid var(--ig-coral);
  color: var(--ig-ink);
  font-size: 21px;
  line-height: 1.55;
}

.ig-proof-quote cite { display: block; margin-top: 16px; color: var(--ig-muted); font-size: 13px; font-style: normal; }

.ig-founder {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.ig-founder img {
  width: 116px;
  height: 116px;
  border-radius: 8px;
  object-fit: cover;
}

.ig-founder .ig-proof-quote { padding-top: 12px; padding-bottom: 12px; }

.ig-fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(15, 23, 42, .18);
  border-bottom: 1px solid rgba(15, 23, 42, .18);
}

.ig-fit-panel { padding: 30px 38px 30px 0; }
.ig-fit-panel + .ig-fit-panel { padding-right: 0; padding-left: 38px; border-left: 1px solid rgba(15, 23, 42, .18); }
.ig-fit-panel h3 { margin-bottom: 22px; }
.ig-fit-panel .ig-check-list { margin-top: 0; }
.ig-fit-panel--negative .material-icons-outlined { color: var(--ig-coral); }

.ig-testimonial-link { color: var(--ig-blue); font-weight: 700; text-decoration: none; }

.ig-faq { max-width: 860px; margin-inline: auto; border-top: 1px solid var(--ig-line); }
.ig-faq details { border-bottom: 1px solid var(--ig-line); }
.ig-faq summary { position: relative; cursor: pointer; padding: 22px 42px 22px 0; list-style: none; font-family: "Plus Jakarta Sans", sans-serif; font-weight: 720; }
.ig-faq summary::-webkit-details-marker { display: none; }
.ig-faq summary::after { content: "+"; position: absolute; right: 4px; top: 17px; color: var(--ig-blue); font-size: 26px; font-weight: 400; }
.ig-faq details[open] summary::after { content: "−"; }
.ig-faq details p { padding: 0 50px 22px 0; color: var(--ig-muted); }

.ig-link-list { display: flex; flex-wrap: wrap; gap: 10px; }
.ig-link-list a { padding: 9px 12px; border: 1px solid var(--ig-line); border-radius: 6px; background: #fff; color: var(--ig-blue); text-decoration: none; font-size: 13px; font-weight: 650; }

.ig-cta-band { padding: 62px 0; background: var(--ig-blue); color: #fff; }
.ig-cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.ig-cta-band h2 { max-width: 720px; margin: 0; font-family: "Plus Jakarta Sans", sans-serif; font-size: 34px; line-height: 1.2; }
.ig-cta-band__copy { max-width: 720px; }
.ig-cta-band__copy h2 { margin-bottom: 12px; }
.ig-cta-band__copy p { max-width: 650px; margin: 0; color: #e6efff; }

.ig-footer { padding: 62px 0 28px; background: var(--ig-navy); color: #fff; }
.ig-footer__grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 48px; }
.ig-footer__brand { width: 58px; height: auto; margin-bottom: 20px; filter: brightness(0) invert(1); }
.ig-footer p { max-width: 440px; color: #b8c5d7; }
.ig-footer h2 { margin-bottom: 16px; font-size: 16px; }
.ig-footer ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.ig-footer a { color: #d9e3f0; text-decoration: none; font-size: 14px; }
.ig-footer a:hover { color: #fff; }
.ig-footer__bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 48px; padding-top: 22px; border-top: 1px solid #253552; color: #93a3b8; font-size: 12px; }
.ig-footer__legal { display: flex; flex-wrap: wrap; gap: 18px; }

@media (max-width: 920px) {
  .ig-hero { min-height: 620px; }
  .ig-hero__content { width: 80%; }
  .ig-hero h1 { font-size: 48px; }
  .ig-route { grid-template-columns: 50px 1fr auto; gap: 18px; }
  .ig-route p { grid-column: 2 / 3; }
  .ig-split { gap: 38px; }
  .ig-grid-3 { grid-template-columns: 1fr 1fr; }
  .ig-process { grid-template-columns: 1fr 1fr; }
  .ig-process__step:nth-child(2) { border-right: 0; }
  .ig-process__step:nth-child(3), .ig-process__step:nth-child(4) { border-top: 1px solid rgba(255,255,255,.22); }
  .ig-process__step:nth-child(3) { padding-left: 0; }
  .ig-process--5 .ig-process__step:nth-child(5) { padding-left: 0; border-top: 1px solid rgba(255,255,255,.22); border-right: 0; }
  .ig-detail-grid { grid-template-columns: 1fr; }
  .ig-detail, .ig-detail:not(:first-child), .ig-detail:last-child { padding: 24px 0; border-right: 0; border-bottom: 1px solid var(--ig-line); }
  .ig-detail:last-child { border-bottom: 0; }
  .ig-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .ig-shell { width: min(100% - 32px, var(--ig-max)); }
  .ig-hero { min-height: 610px; align-items: flex-end; }
  .ig-hero::after { background: linear-gradient(0deg, rgba(7,22,50,.96) 0%, rgba(7,22,50,.82) 55%, rgba(7,22,50,.25) 100%); }
  .ig-hero__media img { object-position: center; }
  .ig-hero__content { width: 100%; padding: 220px 0 38px; }
  .ig-eyebrow { margin-bottom: 13px; font-size: 11px; }
  .ig-hero h1 { margin-bottom: 14px; font-size: 35px; line-height: 1.08; }
  .ig-hero__lead { margin-bottom: 20px; font-size: 15px; line-height: 1.48; }
  .ig-actions { display: grid; grid-template-columns: 1fr; }
  .ig-button { width: 100%; }
  .ig-trust { padding: 20px 0; }
  .ig-trust__inner { grid-template-columns: 1fr; gap: 16px; }
  .ig-logo-row { justify-content: flex-start; gap: 22px; overflow-x: auto; padding-bottom: 4px; }
  .ig-logo-row a { flex: 0 0 auto; }
  .ig-logo-row img { height: 20px; }
  .ig-section { padding: 62px 0; }
  .ig-section--compact { padding: 48px 0; }
  .ig-section__head { margin-bottom: 32px; }
  .ig-section h2 { font-size: 30px; line-height: 1.22; }
  .ig-section h3 { font-size: 19px; }
  .ig-route { grid-template-columns: 36px 1fr auto; gap: 12px; padding: 22px 0; }
  .ig-route p { font-size: 14px; }
  .ig-split { grid-template-columns: 1fr; gap: 30px; }
  .ig-split__media, .ig-split__media img { min-height: 330px; }
  .ig-grid-2, .ig-grid-3, .ig-process { grid-template-columns: 1fr; }
  .ig-process__step, .ig-process__step:not(:first-child):not(:last-child), .ig-process__step:last-child { padding: 24px 0; border-right: 0; border-top: 1px solid rgba(255,255,255,.22); }
  .ig-process__number { margin-bottom: 20px; }
  .ig-card { padding: 22px; }
  .ig-founder { grid-template-columns: 78px minmax(0, 1fr); gap: 16px; align-items: start; }
  .ig-founder img { width: 78px; height: 78px; }
  .ig-founder .ig-proof-quote { padding: 0 0 0 18px; font-size: 17px; }
  .ig-fit-grid { grid-template-columns: 1fr; }
  .ig-fit-panel, .ig-fit-panel + .ig-fit-panel { padding: 26px 0; border-left: 0; }
  .ig-fit-panel + .ig-fit-panel { border-top: 1px solid rgba(15, 23, 42, .18); }
  .ig-cta-band { padding: 46px 0; }
  .ig-cta-band__inner { display: grid; gap: 24px; }
  .ig-cta-band h2 { font-size: 28px; }
  .ig-footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .ig-footer__bottom { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
