:root {
  --navy: #0b1f33;
  --midnight: #102a43;
  --steel: #486581;
  --gold: #c9a24a;
  --gold-dark: #a87f2d;
  --off-white: #f7f4ec;
  --mist: #e6eaf0;
  --text: #1f2933;
  --muted: #5f6f7f;
  --white: #ffffff;
  --border: rgba(16, 42, 67, 0.14);
  --shadow: 0 18px 45px rgba(11, 31, 51, 0.1);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--off-white);
  color: var(--text);
  font-family: Inter, Manrope, "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body[data-nav-open] {
  overflow: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

p:last-child {
  margin-bottom: 0;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 1000;
  left: 20px;
  top: 18px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: var(--navy);
  background: var(--gold);
}

.icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(11, 31, 51, 0.98);
  color: var(--white);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.header__inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}

.brand__mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(201, 162, 74, 0.8);
  border-radius: 8px;
}

.brand__icon {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand__text {
  display: grid;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.brand__text span:first-child {
  font-size: 1rem;
}

.brand__text span:last-child {
  margin-top: 5px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav__link {
  position: relative;
  padding: 30px 0;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.nav__link::after {
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  opacity: 0;
  transform: scaleX(0.7);
  transition: 180ms ease;
}

.nav__link:hover::after,
.nav__link:focus-visible::after,
.nav__link.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-content: center;
  gap: 5px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: 180ms ease;
}

.button .icon {
  width: 18px;
  height: 18px;
}

.button--gold {
  color: var(--white);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: 0 10px 24px rgba(168, 127, 45, 0.18);
}

.button--gold:hover,
.button--gold:focus-visible {
  border-color: rgba(255, 255, 255, 0.4);
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.button--outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.66);
  background: rgba(255, 255, 255, 0.05);
}

.button--outline:hover,
.button--outline:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.button--outline-dark {
  color: var(--gold-dark);
  border-color: rgba(168, 127, 45, 0.55);
  background: transparent;
}

.button--outline-dark:hover,
.button--outline-dark:focus-visible {
  color: var(--navy);
  background: rgba(201, 162, 74, 0.13);
}

.hero {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero--page {
  min-height: 450px;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.84;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 31, 51, 0.98) 0%, rgba(11, 31, 51, 0.9) 36%, rgba(11, 31, 51, 0.45) 63%, rgba(11, 31, 51, 0.08) 100%),
    linear-gradient(0deg, rgba(11, 31, 51, 0.64), rgba(11, 31, 51, 0.06) 48%);
}

.hero__inner {
  position: relative;
  display: grid;
  min-height: inherit;
  align-content: center;
  padding: 84px 0 56px;
}

.hero__content {
  width: min(620px, 100%);
}

.hero h1 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4.75rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero--page h1 {
  font-size: clamp(2.35rem, 4vw, 4.2rem);
}

.hero p {
  width: min(560px, 100%);
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.12rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}

.hero-stat .icon {
  width: 38px;
  height: 38px;
  color: var(--gold);
}

.hero-stat strong,
.hero-stat span {
  display: block;
}

.hero-stat strong {
  font-size: 0.98rem;
  line-height: 1.2;
}

.hero-stat span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.85rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow::after {
  width: 38px;
  height: 1px;
  background: currentColor;
  content: "";
}

.section {
  padding: 78px 0;
  background: var(--off-white);
}

.section--mist {
  background: linear-gradient(180deg, #f9f8f4, var(--mist));
}

.section--dark {
  color: var(--white);
  background: var(--navy);
}

.section--dark p {
  color: rgba(255, 255, 255, 0.82);
}

.section--tight {
  padding: 40px 0;
}

.section-header {
  margin-bottom: 32px;
}

.section-header--center {
  width: min(760px, 100%);
  margin-inline: auto;
  text-align: center;
}

.section-header--center .eyebrow {
  justify-content: center;
}

.section-header h2,
.cta h2,
.footer-cta h2 {
  color: var(--navy);
  font-size: clamp(1.85rem, 3vw, 3rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.06;
}

.section--dark .section-header h2 {
  color: var(--white);
}

.section-header p {
  width: min(700px, 100%);
  color: var(--muted);
  font-size: 1.04rem;
}

.section-header--center p {
  margin-inline: auto;
}

.split-section {
  background: var(--off-white);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.two-col > article + article,
.two-col--intro > div + div {
  padding-left: 44px;
  border-left: 1px solid var(--border);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.mini-grid span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 700;
}

.mini-grid .icon {
  color: var(--gold-dark);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.package-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.package-card--featured {
  border-color: rgba(201, 162, 74, 0.52);
}

.package-card__head {
  display: flex;
  min-height: 134px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #082542);
}

.package-card__head h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.13rem;
  line-height: 1.2;
}

.package-card__head p {
  margin: 0;
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
}

.package-card__icon {
  display: grid;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--gold);
  border: 2px solid currentColor;
  border-radius: 50%;
}

.package-card__body {
  display: grid;
  gap: 20px;
  padding: 24px;
}

.package-card__body p {
  color: var(--text);
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text);
  font-size: 0.94rem;
}

.list-icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--gold-dark);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.credibility-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.audience-grid article,
.trust-grid article,
.topic-grid article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(11, 31, 51, 0.07);
}

.audience-grid span {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--gold);
  background: var(--navy);
  border-radius: 50%;
}

.audience-grid h3,
.trust-grid h3,
.topic-grid h3,
.lead-form h3 {
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.22;
}

.audience-grid p,
.trust-grid p,
.topic-grid p,
.lead-form p {
  color: var(--muted);
  font-size: 0.94rem;
}

.trust-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 56px;
  align-items: center;
}

.trust-grid,
.topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.trust-grid .icon {
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  color: var(--gold-dark);
}

.topic-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cred-cards,
.principle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.cred-cards article,
.principle-grid article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 14px 30px rgba(11, 31, 51, 0.07);
}

.cred-cards .icon,
.principle-grid .icon {
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  color: var(--gold-dark);
}

.cred-cards strong,
.cred-cards span {
  display: block;
}

.cred-cards strong,
.principle-grid h3 {
  color: var(--navy);
  font-weight: 700;
}

.cred-cards span {
  color: var(--muted);
  font-size: 0.92rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.process-step {
  position: relative;
  padding: 28px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 14px 28px rgba(11, 31, 51, 0.08);
}

.process-step__number {
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(72, 101, 129, 0.24);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.process-step__icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--gold);
  background: var(--navy);
  border-radius: 50%;
}

.process-step h3,
.service-card h3,
.example-card h3,
.value-row h3,
.contact-method h2,
.message-card h2,
.notice h2,
.dark-card h3 {
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.22;
}

.process-step p,
.service-card p,
.example-card p,
.value-row p,
.message-card p,
.notice p {
  color: var(--muted);
}

.cta {
  padding: 46px 0;
  background: var(--off-white);
}

.cta--dark {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(11, 31, 51, 0.98), rgba(11, 31, 51, 0.82)),
    url("../images/deck-hero.jpg") center right / cover no-repeat;
}

.cta--dark h2,
.cta--dark p {
  color: var(--white);
}

.cta__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cta--dark .cta__inner {
  background: rgba(11, 31, 51, 0.45);
  border-color: rgba(255, 255, 255, 0.16);
}

.cta__icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--gold);
  background: var(--navy);
  border-radius: 50%;
}

.cta--dark .cta__icon {
  background: rgba(255, 255, 255, 0.08);
}

.cta h2 {
  margin-bottom: 8px;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.cta p {
  color: var(--muted);
}

.lead-magnet {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 52px;
  align-items: center;
}

.lead-magnet__list {
  margin-top: 24px;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(201, 162, 74, 0.35);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lead-form h3 {
  margin-bottom: 0;
  font-size: 1.28rem;
}

.lead-form .button {
  width: 100%;
}

.lead-form__download[hidden] {
  display: none;
}

.thank-you {
  display: grid;
  min-height: 420px;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.thank-you__icon {
  display: grid;
  width: 70px;
  height: 70px;
  margin-bottom: 24px;
  place-items: center;
  color: var(--gold);
  background: var(--navy);
  border-radius: 50%;
}

.thank-you__icon .icon {
  width: 34px;
  height: 34px;
}

.thank-you__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.addon-layout {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 42px;
}

.addon-note {
  padding: 22px;
  background: var(--white);
  border: 1px solid rgba(201, 162, 74, 0.35);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(11, 31, 51, 0.06);
}

.addon-note h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.addon-note p {
  color: var(--muted);
  font-size: 0.94rem;
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.addon-grid article {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.addon-grid .icon {
  color: var(--gold-dark);
}

.note-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 22px;
}

.notice {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.notice--dark {
  color: var(--white);
  background: var(--navy);
}

.notice--dark h2,
.notice--dark p {
  color: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  min-height: 284px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(11, 31, 51, 0.07);
}

.service-card__icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  place-items: center;
  color: var(--gold-dark);
  background: #f2eee5;
  border-radius: 50%;
}

.value-row,
.feature-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
}

.value-row article,
.feature-row article {
  padding: 26px 20px;
  background: var(--off-white);
  text-align: center;
}

.value-row .icon,
.feature-row .icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 14px;
  color: var(--navy);
}

.feature-row strong,
.feature-row span {
  display: block;
}

.feature-row strong {
  color: var(--navy);
  font-weight: 700;
}

.feature-row span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
}

.feature-row--large article {
  background: var(--white);
}

.example-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.example-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 14px 30px rgba(11, 31, 51, 0.08);
}

.example-card--landscape {
  grid-column: span 2;
}

.example-card__media {
  display: grid;
  position: relative;
  flex: 0 0 auto;
  height: 430px;
  place-items: center;
  overflow: hidden;
  padding: 14px;
  background: linear-gradient(180deg, #fbfaf6, #e9edf2);
  border-bottom: 1px solid var(--border);
}

.example-card--landscape .example-card__media {
  height: 360px;
}

.example-card__media img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--white);
  border: 1px solid rgba(16, 42, 67, 0.12);
  box-shadow: 0 12px 26px rgba(11, 31, 51, 0.12);
}

.example-card__body {
  display: flex;
  position: relative;
  z-index: 1;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px;
  background: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--gold-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--navy);
}

.text-link__icon {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.section--dark .section-header .eyebrow,
.section--dark .eyebrow {
  color: var(--gold);
}

.dark-card {
  display: grid;
  gap: 14px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.dark-card article {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
}

.dark-card .icon {
  grid-row: span 2;
  width: 36px;
  height: 36px;
  color: var(--gold);
}

.dark-card h3,
.dark-card p {
  color: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 60px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--text);
  background: var(--white);
  border: 1px solid #cbd4df;
  border-radius: 5px;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(201, 162, 74, 0.28);
  border-color: var(--gold-dark);
}

.form-note,
.form-status {
  color: var(--muted);
  font-size: 0.93rem;
}

.quick-form {
  gap: 24px;
}

.quick-form__section {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.quick-form__section h2 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: 1.15rem;
  line-height: 1.25;
}

.option-grid,
.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.option-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.check-option {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
}

.check-option input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin: 0.2rem 0 0;
  padding: 0;
}

.setup-table {
  display: grid;
  gap: 10px;
}

.setup-row {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) repeat(3, minmax(120px, 0.85fr));
  gap: 10px;
  align-items: center;
  padding: 12px;
  background: var(--mist);
  border-radius: 6px;
}

.setup-row strong {
  color: var(--navy);
  font-size: 0.92rem;
}

.setup-row .check-option {
  font-size: 0.82rem;
  font-weight: 500;
}

.contact-aside {
  display: grid;
  align-content: start;
  gap: 22px;
}

.contact-method,
.message-card {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(11, 31, 51, 0.06);
}

.contact-method {
  display: flex;
  gap: 18px;
}

.contact-method > span {
  display: grid;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--gold);
  background: var(--navy);
  border-radius: 50%;
}

.message-card h2 {
  margin-bottom: 18px;
  text-transform: uppercase;
}

.site-footer {
  color: var(--white);
  background:
    radial-gradient(circle at 10% 15%, rgba(72, 101, 129, 0.22), transparent 28%),
    var(--navy);
}

.footer-cta {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  padding: 38px 0;
}

.footer-cta h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
}

.footer-cta p {
  width: min(620px, 100%);
  color: rgba(255, 255, 255, 0.78);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr 1.1fr;
  gap: 44px;
  padding: 44px 0;
}

.footer__grid h2 {
  color: var(--white);
  font-size: 0.86rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer__grid p,
.footer__grid a,
.footer__contact li {
  color: rgba(255, 255, 255, 0.8);
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
}

.footer__links a,
.footer__contact a {
  text-decoration: none;
}

.footer__links a:hover,
.footer__contact a:hover {
  color: var(--gold);
}

.footer__contact {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer__contact li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__contact .icon {
  width: 19px;
  height: 19px;
  color: var(--gold);
}

.footer__bottom {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 24px;
  padding: 22px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__bottom p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
}

@media (max-width: 980px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .header__inner {
    min-height: 72px;
  }

  .menu-toggle {
    display: grid;
  }

  .nav {
    position: fixed;
    inset: 72px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px;
    background: var(--navy);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  }

  .nav[data-open] {
    display: flex;
  }

  .nav__link {
    padding: 16px 0;
  }

  .nav__link::after {
    bottom: 10px;
    width: 52px;
  }

  .nav__cta {
    margin-top: 14px;
  }

  .hero,
  .hero--page {
    min-height: 540px;
  }

  .hero__overlay {
    background:
      linear-gradient(90deg, rgba(11, 31, 51, 0.98), rgba(11, 31, 51, 0.76)),
      linear-gradient(0deg, rgba(11, 31, 51, 0.68), rgba(11, 31, 51, 0.2));
  }

  .hero__inner {
    padding: 70px 0 44px;
  }

  .hero-stats,
  .package-grid,
  .package-grid--detail,
  .service-grid,
  .example-grid,
  .process-grid,
  .audience-grid,
  .topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-col,
  .credibility-grid,
  .trust-layout,
  .lead-magnet,
  .addon-layout,
  .note-grid,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .two-col > article + article,
  .two-col--intro > div + div {
    padding-left: 0;
    border-left: 0;
  }

  .footer__grid,
  .footer__bottom {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 15px;
  }

  .brand__text span:first-child {
    font-size: 0.86rem;
  }

  .brand__text span:last-child {
    font-size: 0.62rem;
  }

  .brand__mark {
    width: 40px;
    height: 40px;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.1rem);
  }

  .hero p {
    font-size: 1rem;
  }

  .hero__actions,
  .footer-cta__inner,
  .thank-you__actions {
    align-items: stretch;
  }

  .hero__actions .button,
  .footer-cta__inner .button,
  .cta__inner .button,
  .thank-you__actions .button,
  .contact-form .button {
    width: 100%;
  }

  .hero-stats,
  .package-grid,
  .package-grid--detail,
  .service-grid,
  .example-grid,
  .process-grid,
  .cred-cards,
  .trust-grid,
  .principle-grid,
  .value-row,
  .feature-row,
  .audience-grid,
  .topic-grid,
  .addon-grid,
  .form-row,
  .option-grid,
  .option-grid--three,
  .check-grid,
  .setup-row,
  .mini-grid,
  .footer-cta__inner,
  .cta__inner {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .section--tight {
    padding: 32px 0;
  }

  .cta__inner {
    text-align: left;
  }

  .cta__icon {
    width: 52px;
    height: 52px;
  }

  .package-card__head {
    min-height: auto;
  }

  .example-card--landscape {
    grid-column: auto;
  }

  .example-card__media,
  .example-card--landscape .example-card__media {
    height: 360px;
  }

  .contact-method {
    display: grid;
  }
}
