:root {
  --navy: #15243a;
  --navy-deep: #0e1a2b;
  --navy-soft: #203552;
  --ink: #243044;
  --muted: #687386;
  --line: #d9e0ea;
  --grey: #f3f6f9;
  --white: #ffffff;
  --accent: #b75c2b;
  --accent-dark: #93441d;
  --success: #1e7a4a;
  --error: #b3261e;
  --shadow: 0 24px 70px rgba(21, 36, 58, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

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

.top-bar {
  padding: 9px clamp(18px, 5vw, 64px);
  color: rgba(255, 255, 255, 0.88);
  background: var(--navy-deep);
  font-size: 0.91rem;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 224, 234, 0.85);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 184px;
  height: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 700;
}

.header-nav a {
  padding: 10px 14px;
  border-radius: 6px;
}

.header-nav a:hover,
.header-nav a:focus-visible {
  background: var(--grey);
  outline: none;
}

.header-nav .nav-button {
  color: var(--white);
  background: var(--navy);
}

.section {
  padding: clamp(72px, 9vw, 124px) clamp(18px, 5vw, 64px);
}

.section[id] {
  scroll-margin-top: 106px;
}

.section-inner {
  width: min(1130px, 100%);
  margin: 0 auto;
}

.hero {
  padding-top: clamp(64px, 8vw, 108px);
  padding-bottom: clamp(72px, 9vw, 124px);
  background:
    linear-gradient(90deg, rgba(21, 36, 58, 0.96), rgba(21, 36, 58, 0.9)),
    linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: var(--white);
}

.hero-grid,
.two-column,
.track-grid,
.contact-grid,
.switch-grid,
.example-card,
.pack-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(32px, 6vw, 74px);
  align-items: center;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0b58c;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.12rem;
  line-height: 1.25;
}

.hero-subheading {
  max-width: 680px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.1rem, 2vw, 1.34rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button-primary {
  color: var(--white);
  background: var(--accent);
  box-shadow: 0 12px 28px rgba(147, 68, 29, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-dark);
  outline: none;
}

.button-secondary {
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

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

.hero-panel {
  padding: clamp(24px, 4vw, 38px);
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-panel-main {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.hero-panel-main span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel-main strong {
  display: block;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.02;
}

.benefit-list,
.tick-grid,
.property-list,
.reason-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
  font-weight: 700;
}

.benefit-list li,
.tick-grid span,
.property-list span,
.reason-list span {
  position: relative;
  padding-left: 30px;
}

.benefit-list li::before,
.tick-grid span::before,
.property-list span::before,
.reason-list span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
}

.trust-bar {
  padding: 0 clamp(18px, 5vw, 64px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: -30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(21, 36, 58, 0.1);
}

.trust-grid div {
  min-height: 112px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.trust-grid div:last-child {
  border-right: 0;
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  margin-bottom: 7px;
  color: var(--navy);
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  line-height: 1.05;
}

.trust-grid span {
  color: var(--muted);
  font-weight: 800;
}

.pain-section,
.ideal-section,
.faq-section {
  background: var(--grey);
}

.tick-grid,
.property-list,
.reason-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
  font-weight: 700;
}

.section-note {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

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

.align-left {
  margin: 0;
  text-align: left;
}

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

.reason-list {
  padding: 30px;
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.reason-list span::before {
  background: #f0b58c;
}

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

.feature-grid article,
.steps article,
.faq-grid article {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-grid p,
.steps p,
.faq-grid p,
.example-copy p,
.pack-card p,
.contact-copy p {
  margin-bottom: 0;
  color: var(--muted);
}

.example-section {
  background: var(--navy);
}

.example-card {
  align-items: start;
  padding: clamp(28px, 5vw, 48px);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.example-card h2 {
  margin-bottom: 0;
}

.example-copy {
  display: grid;
  gap: 18px;
  padding-left: 28px;
  border-left: 4px solid var(--accent);
  font-size: 1.08rem;
}

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

.logo-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.logo-row img {
  width: 150px;
  max-height: 74px;
  object-fit: contain;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.stat-grid div {
  min-height: 150px;
  padding: 24px;
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
}

.stat-grid strong {
  display: block;
  margin-bottom: 10px;
  color: #f0b58c;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
}

.stat-grid span {
  display: block;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.steps-section {
  background: var(--grey);
}

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

.steps span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 0.83rem;
  font-weight: 800;
  text-transform: uppercase;
}

.property-list {
  grid-template-columns: 1fr;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.pack-card {
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
  background: var(--grey);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.pack-card h2 {
  margin-bottom: 12px;
}

.pack-card .button {
  justify-self: end;
  text-align: center;
}

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

.guide-hero {
  padding-top: clamp(64px, 8vw, 108px);
  padding-bottom: clamp(72px, 9vw, 124px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(21, 36, 58, 0.96), rgba(21, 36, 58, 0.9)),
    linear-gradient(135deg, var(--navy), var(--navy-soft));
}

.guide-hero-grid,
.guide-model-grid,
.guide-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(32px, 6vw, 74px);
  align-items: center;
}

.guide-hero .eyebrow {
  color: #f0b58c;
}

.guide-summary {
  padding: clamp(24px, 4vw, 38px);
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.guide-summary strong {
  display: block;
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.12;
}

.guide-summary p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.guide-model-section,
.guide-handles-section,
.guide-final-cta {
  background: var(--white);
}

.guide-content-card {
  min-height: 100%;
  padding: clamp(28px, 5vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(21, 36, 58, 0.08);
}

.guide-content-card h2 {
  margin-bottom: 16px;
}

.guide-content-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

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

.process-grid article {
  min-height: 100%;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(21, 36, 58, 0.06);
}

.process-grid span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
}

.process-grid h3 {
  font-size: 1.02rem;
}

.process-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.muted-card {
  background: var(--grey);
}

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

.guide-feature-grid article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(21, 36, 58, 0.06);
}

.guide-feature-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--accent);
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 800;
}

.guide-feature-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.guide-trust {
  padding-top: clamp(58px, 7vw, 88px);
  padding-bottom: clamp(58px, 7vw, 88px);
  background: var(--grey);
}

.guide-trust .trust-grid {
  margin-top: 0;
}

.guide-example-section {
  background: var(--navy);
}

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

.guide-cta-card {
  padding: clamp(28px, 5vw, 48px);
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.guide-cta-card h2 {
  color: var(--white);
}

.guide-cta-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.guide-contact-panel {
  display: grid;
  gap: 12px;
  justify-items: start;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.guide-contact-panel > a:not(.button) {
  color: #f0b58c;
  font-size: 1.12rem;
  font-weight: 800;
}

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

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

.contact-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.contact-note {
  display: grid;
  gap: 6px;
  margin-top: 28px;
  padding: 20px;
  border-left: 4px solid var(--accent);
  background: rgba(255, 255, 255, 0.08);
}

.contact-note span {
  color: rgba(255, 255, 255, 0.78);
}

.direct-contact {
  display: grid;
  gap: 6px;
  margin-top: 22px;
  padding: 20px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  font-style: normal;
}

.direct-contact strong {
  color: var(--white);
}

.direct-contact a {
  width: fit-content;
  color: #f0b58c;
  font-weight: 800;
}

.direct-contact a:hover,
.direct-contact a:focus-visible {
  color: var(--white);
  outline: none;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 36px);
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

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

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #c9d2df;
  border-radius: 6px;
  font: inherit;
}

textarea {
  min-height: 116px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  outline: 3px solid rgba(183, 92, 43, 0.16);
}

label.has-error input,
label.has-error select,
label.has-error textarea {
  border-color: var(--error);
}

.error-message {
  display: none;
  color: var(--error);
  font-size: 0.82rem;
  font-weight: 700;
}

label.has-error .error-message {
  display: block;
}

.form-alert {
  display: none;
  padding: 13px 14px;
  border-radius: 6px;
  font-weight: 700;
}

.form-alert.is-success {
  display: block;
  color: var(--success);
  background: #e9f5ee;
}

.form-alert.is-error {
  display: block;
  color: var(--error);
  background: #fdecea;
}

.mailto-fallback {
  display: grid;
  gap: 10px;
  padding: 14px;
  color: var(--ink);
  background: var(--grey);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.mailto-fallback[hidden] {
  display: none;
}

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

.mailto-fallback a {
  width: fit-content;
  color: var(--accent-dark);
  font-weight: 800;
}

.mailto-fallback textarea {
  min-height: 170px;
  font-size: 0.9rem;
}

.form-button {
  width: 100%;
  margin-top: 4px;
}

.site-footer {
  padding: 28px clamp(18px, 5vw, 64px);
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner img {
  width: 150px;
  padding: 6px;
  background: var(--white);
  border-radius: 6px;
}

.footer-inner p {
  margin: 0;
}

@media (max-width: 920px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .header-nav {
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
  }

  .hero-grid,
  .two-column,
  .track-grid,
  .contact-grid,
  .switch-grid,
  .example-card,
  .pack-card,
  .guide-hero-grid,
  .guide-model-grid,
  .guide-cta-card {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .steps,
  .trust-grid,
  .faq-grid,
  .guide-feature-grid,
  .guide-faq-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-grid div:nth-child(2) {
    border-right: 0;
  }

  .trust-grid div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .pack-card .button {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .brand img {
    width: 156px;
  }

  .header-nav a {
    padding: 9px 10px;
    white-space: nowrap;
  }

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

  .tick-grid,
  .feature-grid,
  .steps,
  .stat-grid,
  .form-row,
  .trust-grid,
  .faq-grid,
  .reason-list,
  .guide-feature-grid,
  .guide-faq-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    margin-top: -20px;
  }

  .trust-grid div,
  .trust-grid div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid div:last-child {
    border-bottom: 0;
  }

  .example-copy {
    padding-left: 20px;
  }

  .logo-row,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .logo-row img {
    width: 168px;
  }
}
