:root {
  --navy: #061d34;
  --navy-2: #0b2a4d;
  --blue: #174f9b;
  --gold: #d2a33a;
  --gold-2: #f2cf73;
  --ink: #0b1525;
  --muted: #5c6775;
  --line: #dde3ea;
  --soft: #f5f7fa;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(6, 29, 52, 0.13);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

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

.brand strong,
.brand small {
  display: block;
  line-height: 1.02;
  text-transform: uppercase;
}

.brand strong {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}

.brand small {
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}

.desktop-nav {
  display: none;
}

.header-cta {
  display: none;
}

.hero {
  display: grid;
  gap: 26px;
  padding: 36px 18px 30px;
  background:
    linear-gradient(150deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.88) 47%, rgba(6,29,52,0.08) 100%),
    radial-gradient(circle at 92% 14%, rgba(210,163,58,0.18), transparent 30%);
  overflow: hidden;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 14px;
  font-size: clamp(2.35rem, 12vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h1 span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  text-transform: uppercase;
}

.hero-subhead {
  max-width: 620px;
  color: var(--navy-2);
  font-size: clamp(1.05rem, 5vw, 1.5rem);
  font-weight: 700;
}

.proof-line {
  max-width: 560px;
  color: var(--muted);
  font-weight: 600;
}

.hero-actions {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  width: fit-content;
  max-width: 100%;
  padding: 14px 20px;
  border: 0;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary,
.button.secondary {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 12px 28px rgba(6, 29, 52, 0.22);
}

.button.secondary {
  margin: 28px auto 0;
}

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

.talk-link {
  color: var(--navy-2);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
}

.hero-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--navy);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.trust-strip {
  display: grid;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  padding: 18px;
  background: var(--white);
}

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

.trust-strip strong {
  color: var(--navy);
  font-weight: 900;
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.91rem;
}

.section {
  padding: 58px 18px;
}

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

h2 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(2rem, 9vw, 3.25rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.2;
}

.split {
  display: grid;
  gap: 28px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
}

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

.check-list,
.x-list,
.guarantee ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.x-list li,
.guarantee li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before,
.guarantee li::before {
  content: "";
  position: absolute;
  top: 0.44em;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
}

.check-list li::after,
.guarantee li::after {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 5px;
  width: 6px;
  height: 3px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg);
}

.x-list li::before {
  content: "";
  position: absolute;
  top: 0.49em;
  left: 1px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #d94d45;
}

.portrait-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.portrait-panel img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 20%;
  opacity: 0.9;
}

.portrait-panel div {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 16px;
  color: var(--white);
  border-radius: var(--radius);
  background: rgba(6, 29, 52, 0.86);
}

.portrait-panel strong {
  display: block;
  color: var(--gold-2);
  font-size: 1.55rem;
  line-height: 1;
}

.portrait-panel span {
  display: block;
  margin-top: 6px;
  font-size: 0.92rem;
}

.steps,
.deliverables,
.fit-grid,
.case-grid {
  display: grid;
  gap: 16px;
  max-width: 1160px;
  margin: 0 auto;
}

.steps article,
.deliverables article,
.fit-grid article,
.case-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(6, 29, 52, 0.06);
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  color: var(--white);
  font-weight: 900;
  border-radius: 50%;
  background: var(--navy);
}

.steps p,
.deliverables p,
.case-grid p,
.faq p {
  margin-bottom: 0;
  color: var(--muted);
}

.included,
.fit,
.faq {
  background: var(--soft);
}

.section-note,
.disclaimer {
  max-width: 720px;
  margin: 24px auto 0;
  color: var(--muted);
  text-align: center;
  font-weight: 700;
}

.guarantee {
  display: grid;
  gap: 22px;
  padding: 56px 18px;
  color: var(--white);
  background:
    linear-gradient(140deg, rgba(6,29,52,0.98), rgba(11,42,77,0.96)),
    url("mainHero.jpg") center / cover;
}

.guarantee h2,
.guarantee h3 {
  color: var(--white);
}

.guarantee p,
.guarantee li {
  color: rgba(255, 255, 255, 0.84);
}

.guarantee > * {
  max-width: 1000px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.proof {
  padding: 58px 18px;
  color: var(--white);
  background: var(--navy);
}

.proof h2,
.proof h3 {
  color: var(--white);
}

.proof .case-grid article {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.case-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.case-grid em {
  display: block;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.88);
}

.proof .disclaimer {
  color: rgba(255, 255, 255, 0.74);
}

.team-band {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
}

.team-band img {
  width: 100%;
  aspect-ratio: 1 / 1.15;
  object-fit: cover;
  object-position: center 18%;
  background: #73737a;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.faq summary {
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}

.faq details p {
  margin-top: 10px;
}

.application {
  display: grid;
  gap: 28px;
  padding: 58px 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.88)),
    radial-gradient(circle at 12% 16%, rgba(210,163,58,0.2), transparent 34%);
}

.application-copy,
.lead-form {
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
}

.application-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

.secure-note {
  display: grid;
  gap: 4px;
  padding: 16px;
  border-left: 4px solid var(--gold);
  background: var(--soft);
}

.secure-note strong {
  color: var(--navy);
}

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

.lead-form {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  gap: 14px;
}

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

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

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(210, 163, 58, 0.28);
  border-color: var(--gold);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0;
  color: var(--ink);
  font-weight: 700;
}

.consent input {
  flex: 0 0 auto;
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.submit-button {
  width: 100%;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--navy);
  font-weight: 800;
}

.form-status.error {
  color: #a3322d;
}

.site-footer {
  display: grid;
  gap: 24px;
  padding: 34px 18px;
  color: rgba(255, 255, 255, 0.84);
  background: #041526;
}

.site-footer .brand strong,
.site-footer .brand small,
.site-footer strong {
  color: var(--white);
}

.site-footer p {
  max-width: 440px;
  margin-bottom: 0;
}

address {
  display: grid;
  gap: 6px;
  font-style: normal;
}

.copyright {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.84rem;
}

@media (min-width: 700px) {
  .site-header {
    padding: 14px 32px;
  }

  .header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 16px;
    color: var(--white);
    font-weight: 900;
    border-radius: 6px;
    background: var(--navy);
  }

  .hero,
  .section,
  .application,
  .proof,
  .guarantee {
    padding-right: 34px;
    padding-left: 34px;
  }

  .hero {
    grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.8fr);
    align-items: center;
    min-height: 720px;
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .hero-media img {
    aspect-ratio: 0.78 / 1;
  }

  .hero-actions {
    grid-template-columns: auto 1fr;
    align-items: center;
  }

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

  .split,
  .application {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  }

  .steps,
  .deliverables,
  .fit-grid,
  .case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .wide {
    grid-column: 1 / -1;
  }

  .team-band {
    grid-template-columns: repeat(4, 1fr);
  }

  .site-footer {
    grid-template-columns: 1.3fr 1fr;
    padding: 42px 34px;
  }

  .copyright {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1020px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    color: var(--navy);
    font-size: 0.92rem;
    font-weight: 800;
  }

  .hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.78fr);
    padding-right: max(48px, calc((100vw - 1180px) / 2));
    padding-left: max(48px, calc((100vw - 1180px) / 2));
  }

  .trust-strip {
    grid-template-columns: repeat(4, 1fr);
  }

  .trust-strip div {
    padding: 24px 32px;
  }

  .section,
  .application,
  .proof,
  .guarantee {
    padding-top: 86px;
    padding-bottom: 86px;
  }

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

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

  .lead-form {
    padding: 28px;
  }
}
