:root {
  --navy: #09264c;
  --navy-soft: #18365a;
  --gold: #d6a354;
  --gold-dark: #c7923f;
  --gold-soft: #f5ead9;
  --white: #ffffff;
  --text: #0c274d;
  --muted: #40546f;
  --border: #e7e9ed;
  --section: #fbfbfc;
  --shadow: 0 10px 30px rgba(15, 42, 77, 0.08);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
  --page-gutter: 60px;
  --content-width: 904px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--white);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.menu-open {
  overflow: hidden;
}

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

img,
svg {
  display: block;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-header {
  position: relative;
  z-index: 20;
  height: 84px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #edf0f3;
}

.header-inner,
.section-inner,
.footer-inner {
  width: min(var(--content-width), calc(100% - (2 * var(--page-gutter))));
  margin: 0 auto;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
}

.brand {
  flex: 0 0 auto;
  width: 224px;
  height: 45px;
}

.brand img {
  width: 224px;
  height: 45px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 41px;
  margin-left: auto;
  margin-right: 45px;
  white-space: nowrap;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
  color: var(--navy);
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 24px;
  font-family: var(--sans);
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease, border-color 150ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:focus-visible,
.mobile-menu-toggle:focus-visible,
.desktop-nav a:focus-visible,
.mobile-nav a:focus-visible,
.site-footer a:focus-visible {
  outline: 3px solid rgba(214, 163, 84, 0.32);
  outline-offset: 3px;
}

.button svg {
  width: 18px;
  height: 18px;
  margin-right: 9px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, #d5a154 0%, #dfb76f 100%);
  box-shadow: 0 8px 18px rgba(198, 144, 60, 0.18);
}

.button-primary:hover {
  box-shadow: 0 10px 22px rgba(198, 144, 60, 0.24);
}

.button-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: #c9d0d9;
}

.button-secondary:hover {
  border-color: var(--navy);
}

.button-outline-gold {
  color: var(--gold-dark);
  background: var(--white);
  border-color: #e7bd7e;
  border-radius: 7px;
  font-weight: 600;
}

.header-cta {
  min-width: 146px;
  padding: 0 18px;
}

.mobile-menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  height: 442px;
  overflow: hidden;
  background:
    radial-gradient(circle at 40% 52%, rgba(224, 232, 237, 0.62) 0, rgba(240, 244, 247, 0.33) 23%, rgba(255, 255, 255, 0) 47%),
    linear-gradient(90deg, #fff 0%, #fff 33%, #f3f7f9 50%, #eef3f5 100%);
}

.hero-photo {
  position: absolute;
  inset: 0 0 0 auto;
  width: 62.9%;
  height: 100%;
  background: url("assets/hero.jpg") center center / cover no-repeat;
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 80px;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.82) 22%, rgba(255,255,255,0) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--content-width), calc(100% - (2 * var(--page-gutter))));
  height: 100%;
  margin: 0 auto;
}

.hero-copy {
  width: 360px;
  padding-top: 42px;
}

.hero h1 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 59px;
  line-height: 0.96;
  font-weight: 400;
  letter-spacing: -1.9px;
}

.hero-lead {
  margin: 15px 0 0;
  color: #102c52;
  font-size: 19px;
  line-height: 1.45;
  font-weight: 400;
}

.gold-rule {
  display: block;
  width: 31px;
  height: 2px;
  margin-top: 14px;
  background: var(--gold);
}

.hero-text {
  margin: 14px 0 0;
  color: #173558;
  font-size: 18px;
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 17px;
}

.hero-actions .button-primary {
  min-width: 172px;
}

.hero-actions .button-secondary {
  min-width: 114px;
  padding: 0 18px;
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}

.social-proof img {
  width: 100px;
  height: 39px;
  object-fit: contain;
}

.social-proof .stars {
  color: #f4be4c;
  font-size: 13px;
  letter-spacing: 1.1px;
  line-height: 1;
}

.social-proof p {
  margin: 4px 0 0;
  color: #314867;
  font-size: 11px;
  line-height: 1.2;
}

.benefits {
  height: 174px;
  min-height: 0;
  background: #fff;
  border-bottom: 1px solid #f1f2f4;
}

.benefits-inner {
  width: min(904px, calc(100% - 60px));
  height: 100%;
  min-height: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.benefit {
  position: relative;
  min-height: 116px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 6px 22px 0;
}

.benefit + .benefit::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 1px;
  height: 102px;
  background: #eceff2;
}

.benefit > svg {
  width: 47px;
  height: 47px;
  color: var(--gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit h2 {
  margin: 10px 0 0;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
}

.benefit p {
  margin: 10px 0 0;
  color: #334b69;
  font-size: 11.5px;
  line-height: 1.46;
}

.situations {
  min-height: 312px;
  background: linear-gradient(180deg, #fff 0%, #fefefe 100%);
}

.situations-inner {
  padding-top: 18px;
  text-align: center;
}

.section-title {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.04;
  font-weight: 400;
  letter-spacing: -0.55px;
}

.situation-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 13px;
  margin-top: 17px;
}

.situation-card {
  min-height: 157px;
  padding: 19px 10px 12px;
  background: #fff;
  border: 1px solid #eceef1;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(16, 42, 74, 0.025);
  text-align: center;
}

.situation-card > svg {
  width: 45px;
  height: 45px;
  margin: 0 auto;
  color: var(--gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.situation-card h3 {
  margin: 10px 0 0;
  color: var(--navy);
  font-size: 11.5px;
  line-height: 1.25;
  font-weight: 700;
}

.situation-card p {
  margin: 10px 0 0;
  color: #38506e;
  font-size: 10.5px;
  line-height: 1.45;
}

.situations-button {
  min-width: 220px;
  min-height: 36px;
  margin-top: 13px;
}

.pricing {
  min-height: 245px;
  background: #fff;
}

.pricing-inner {
  padding-top: 13px;
}

.pricing .section-title {
  text-align: center;
  font-size: 28px;
  line-height: 1.2;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-top: 9px;
}

.pricing-card {
  position: relative;
  min-height: 176px;
  display: grid;
  grid-template-columns: 72px 1fr;
  grid-template-rows: 1fr auto;
  padding: 17px 22px 12px 26px;
  border: 1px solid #e8eaed;
  border-radius: 9px;
  overflow: hidden;
}

.pricing-basic {
  background: #fff;
}

.pricing-exclusive {
  background: linear-gradient(100deg, #fffdf9 0%, #f4eadc 100%);
  border-color: #f2ecdf;
}

.plan-icon {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  justify-content: center;
  padding-top: 15px;
}

.plan-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing-basic .plan-icon {
  color: var(--navy);
}

.pricing-exclusive .plan-icon {
  color: var(--gold);
}

.plan-content {
  grid-column: 2;
  grid-row: 1;
}

.plan-content h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.15;
  font-weight: 400;
}

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

.plan-content li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 7px;
  color: #324966;
  font-size: 10.5px;
  line-height: 1.15;
}

.plan-content li svg {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  fill: none;
  stroke: #71829a;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing-exclusive .plan-content li svg {
  stroke: #caa361;
}

.plan-bottom {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

.price {
  margin: 0;
  color: #233d5d;
  font-size: 13px;
  line-height: 1;
}

.price strong {
  color: var(--navy);
  font-size: 18px;
}

.plan-bottom .button {
  min-width: 132px;
  min-height: 34px;
  padding: 0 20px;
  border-radius: 7px;
  font-size: 10px;
}

.popular {
  position: absolute;
  top: 15px;
  right: 14px;
  padding: 5px 11px;
  color: #c58e3e;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid #f0e5d4;
  border-radius: 999px;
  font-size: 9px;
  line-height: 1;
  font-weight: 600;
}

.about {
  min-height: 211px;
  background: #fff;
}

.about-inner {
  min-height: 211px;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 56px;
  align-items: start;
  padding-top: 17px;
}

.about-photo {
  width: 380px;
  height: 185px;
  overflow: hidden;
  border-radius: 7px;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-copy {
  padding-top: 12px;
}

.about-copy .section-title {
  font-size: 28px;
  line-height: 1.15;
}

.about-copy > p {
  margin: 10px 0 0;
  color: #172b44;
  font-size: 12.5px;
  line-height: 1.5;
}

.about-stats {
  display: flex;
  align-items: flex-start;
  gap: 42px;
  margin-top: 26px;
}

.stat {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--navy);
}

.stat > svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat div {
  display: flex;
  flex-direction: column;
}

.stat strong {
  font-size: 16px;
  line-height: 1.1;
}

.stat span {
  margin-top: 9px;
  color: #48607d;
  font-size: 9.5px;
  line-height: 1.2;
  white-space: nowrap;
}

.site-footer {
  height: 68px;
  background: #fff;
  border-top: 1px solid #f1f2f4;
}

.footer-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 222px 1fr auto auto;
  align-items: center;
  column-gap: 74px;
}

.footer-brand {
  width: 166px;
}

.footer-brand img {
  width: 166px;
  height: auto;
}

.footer-inner p,
.footer-inner > a:not(.footer-brand) {
  margin: 0;
  color: #71819a;
  font-size: 9.5px;
  line-height: 1.25;
  white-space: nowrap;
}

.footer-inner > a:not(.footer-brand):hover {
  color: var(--navy);
}

@media (max-width: 980px) {
  :root {
    --page-gutter: 32px;
  }

  .desktop-nav {
    gap: 24px;
    margin-right: 25px;
  }

  .header-cta {
    min-width: 140px;
  }

  .hero-photo {
    width: 66%;
  }

  .about-inner {
    gap: 34px;
  }

  .footer-inner {
    column-gap: 30px;
  }
}

@media (max-width: 820px) {
  :root {
    --page-gutter: 24px;
  }

  html {
    scroll-padding-top: 72px;
  }

  .site-header {
    height: 72px;
  }

  .brand,
  .brand img {
    width: 190px;
    height: auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu-toggle {
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 10px;
    display: grid;
    place-items: center;
    color: var(--navy);
    background: transparent;
    border: 0;
    border-radius: 8px;
  }

  .mobile-menu-toggle svg {
    grid-area: 1 / 1;
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
  }

  .mobile-menu-toggle .close-icon {
    opacity: 0;
  }

  .mobile-menu-toggle[aria-expanded="true"] .menu-icon {
    opacity: 0;
  }

  .mobile-menu-toggle[aria-expanded="true"] .close-icon {
    opacity: 1;
  }

  .mobile-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 24px 28px;
    background: #fff;
    border-top: 1px solid var(--border);
    box-shadow: 0 22px 35px rgba(10, 38, 76, 0.12);
  }

  .mobile-nav.is-open {
    display: flex;
  }

  .mobile-nav > a:not(.button) {
    padding: 14px 4px;
    color: var(--navy);
    border-bottom: 1px solid #eef0f2;
    font-size: 15px;
    font-weight: 700;
  }

  .mobile-nav .button {
    margin-top: 20px;
  }

  .hero {
    height: auto;
    min-height: 690px;
    display: flex;
    flex-direction: column;
    background: #fff;
  }

  .hero-photo {
    position: relative;
    order: 2;
    width: 100%;
    height: 360px;
    background-position: center center;
  }

  .hero-photo::before {
    inset: 0 0 auto;
    width: auto;
    height: 45px;
    background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0) 100%);
  }

  .hero-inner {
    order: 1;
    width: calc(100% - (2 * var(--page-gutter)));
    height: auto;
  }

  .hero-copy {
    width: 100%;
    padding: 46px 0 22px;
  }

  .hero h1 {
    font-size: clamp(49px, 9vw, 62px);
  }

  .benefits {
    height: auto;
  }

  .benefits-inner {
    width: calc(100% - (2 * var(--page-gutter)));
    height: auto;
    grid-template-columns: 1fr 1fr;
    padding: 28px 0;
  }

  .benefit {
    min-height: 150px;
    padding-top: 12px;
  }

  .benefit + .benefit::before {
    display: none;
  }

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

  .situation-card:last-child {
    grid-column: 1 / -1;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pricing,
  .situations,
  .about {
    min-height: 0;
  }

  .pricing-inner,
  .situations-inner {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 20px;
    padding-bottom: 42px;
  }

  .about-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 380 / 185;
  }

  .about-copy {
    padding-top: 0;
  }

  .about-stats {
    flex-wrap: wrap;
  }

  .footer-inner {
    height: auto;
    grid-template-columns: 1fr 1fr;
    gap: 18px 24px;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .site-footer {
    height: auto;
  }
}

@media (max-width: 560px) {
  :root {
    --page-gutter: 20px;
  }

  .brand,
  .brand img {
    width: 172px;
  }

  .hero-copy {
    padding-top: 36px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    width: min(100%, 300px);
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-photo {
    height: 300px;
    background-position: 58% center;
  }

  .social-proof img {
    width: 88px;
    height: auto;
  }

  .benefits-inner {
    grid-template-columns: 1fr;
  }

  .benefit {
    min-height: 140px;
    border-bottom: 1px solid #eef0f2;
  }

  .benefit:last-child {
    border-bottom: 0;
  }

  .section-title,
  .pricing .section-title,
  .about-copy .section-title {
    font-size: 26px;
  }

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

  .situation-card:last-child {
    grid-column: auto;
  }

  .pricing-card {
    grid-template-columns: 55px 1fr;
    padding-left: 16px;
    padding-right: 16px;
  }

  .plan-icon svg {
    width: 36px;
    height: 36px;
  }

  .plan-bottom {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    margin-top: 14px;
  }

  .plan-bottom .button {
    width: 100%;
  }

  .popular {
    top: 12px;
    right: 12px;
  }

  .about-copy > p br.desktop-only {
    display: none;
  }

  .about-stats {
    flex-direction: column;
    gap: 22px;
  }

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

  .footer-inner p,
  .footer-inner > a:not(.footer-brand) {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
