:root {
  --ink: #152033;
  --muted: #5e6b7f;
  --line: #dde5ef;
  --bg: #f6f8fb;
  --card: #ffffff;
  --accent: #e45d2c;
  --accent-dark: #bd4418;
  --navy: #0f2942;
  --shadow: 0 24px 80px rgba(15, 41, 66, 0.14);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

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

.site-header {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.98rem;
  font-weight: 850;
  letter-spacing: -0.035em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: var(--navy);
  color: white;
  flex: 0 0 auto;
}

.brand-mark svg {
  width: 24px;
  height: 24px;
}

.brand-mark path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.nav a:hover {
  color: var(--ink);
}

.nav-cta {
  padding: 8px 13px;
  margin-top: -8px;
  border-radius: 999px;
  background: var(--navy);
  color: white !important;
}

.hero {
  width: min(1120px, calc(100% - 32px));
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 420px;
  gap: 34px;
  align-items: stretch;
}

.hero-copy {
  background:
    linear-gradient(135deg, rgba(15, 41, 66, 0.92), rgba(15, 41, 66, 0.76)),
    radial-gradient(circle at 20% 10%, rgba(228, 93, 44, 0.6), transparent 30%);
  color: white;
  padding: clamp(34px, 6vw, 68px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.hero .eyebrow {
  color: #ffb089;
}

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

h1 {
  max-width: 770px;
  margin-bottom: 18px;
  font-size: clamp(2.45rem, 6vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin-bottom: 14px;
}

h3 {
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.hero-text {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.16rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

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

.button.primary {
  background: var(--accent);
  color: white;
}

.button.primary:hover {
  background: var(--accent-dark);
}

.button.subtle {
  background: #f3f6fa;
  border: 1px solid var(--line);
  color: var(--ink);
}

.button.subtle:hover {
  background: #eaf0f6;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: white;
}

.button.full {
  width: 100%;
  font-size: 1rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
}

.quote-card,
.lead-form,
.step,
.service-area {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}

.card-kicker {
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quote-card h2 {
  font-size: 1.7rem;
}

.quote-card ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 14px;
}

.quote-card li {
  padding-left: 30px;
  position: relative;
  color: var(--muted);
}

.quote-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: #eef7ef;
  color: #1c7a3e;
  font-size: 0.78rem;
  font-weight: 900;
}

.quote-card-bottom {
  display: grid;
  gap: 16px;
}

.mini-panel {
  padding: 16px;
  border-radius: 18px;
  background: #fff4ef;
  border: 1px solid #ffd9c8;
}

.mini-panel span {
  display: block;
  margin-bottom: 5px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-panel strong {
  display: block;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.35;
}

.simple-proof {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f8fafc;
}

.simple-proof p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.simple-proof p + p {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.simple-proof strong {
  color: var(--ink);
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 76px auto 0;
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: start;
}

.split > div:first-child p:not(.eyebrow),
.form-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.step {
  padding: 24px;
  box-shadow: none;
}

.step span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 11px;
  background: var(--navy);
  color: white;
  font-weight: 900;
}

.step p {
  margin-bottom: 0;
  color: var(--muted);
}

.form-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 34px;
  align-items: start;
}

.form-copy {
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-side-card {
  padding: 18px 20px;
  border-left: 4px solid var(--accent);
  background: #fff4ef;
  border-radius: 18px;
}

.form-side-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.form-side-card p + p {
  margin-top: 12px;
}

.form-side-card strong {
  color: var(--ink);
}

.form-side-label {
  margin-bottom: 8px !important;
  color: var(--accent-dark) !important;
  font-size: 0.76rem !important;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lead-form {
  padding: 28px;
}

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

label {
  display: grid;
  gap: 7px;
  margin-bottom: 18px;
  font-weight: 800;
  font-size: 0.92rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: white;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(228, 93, 44, 0.18);
  border-color: var(--accent);
}

.consent {
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-weight: 600;
}

.consent input {
  width: 18px;
  margin-top: 3px;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: #1c7a3e;
  font-weight: 700;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 24px;
}

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

.faq-grid details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 16px 44px rgba(15, 41, 66, 0.06);
}

.faq-grid summary {
  cursor: pointer;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.faq-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.service-area {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 26px;
  align-items: center;
  padding: 30px;
}

.service-area h2 {
  margin-bottom: 0;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
}

.service-area p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 52px auto 0;
  padding: 18px 0 26px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
  letter-spacing: -0.035em;
}

.footer-brand .brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 9px;
}

.footer-brand .brand-mark svg {
  width: 19px;
  height: 19px;
}

.footer-brand .brand-mark path {
  stroke-width: 2.5;
}

.footer-copy {
  text-align: right;
  font-size: 0.8rem;
  line-height: 1.45;
}

.site-footer p {
  margin: 0;
}

.footer-note {
  margin-top: 3px !important;
  font-size: 0.76rem;
}

@media (max-width: 920px) {
  .hero,
  .split,
  .form-section {
    grid-template-columns: 1fr;
  }

  .steps,
  .faq-grid,
  .service-area {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: center;
    flex-direction: row;
    gap: 14px;
  }

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

  .footer-copy {
    text-align: left;
  }

  .nav {
    width: auto;
    margin-left: auto;
    gap: 0;
  }

  .nav a:not(.nav-cta) {
    display: none;
  }

  .nav-cta {
    margin-top: 0;
    padding: 9px 14px;
    font-size: 0.84rem;
  }

  .hero {
    margin-top: 12px;
  }

  .hero-copy {
    padding: 32px 24px;
  }

  .hero-actions {
    display: grid;
  }

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

  .trust-row span {
    font-size: 0.84rem;
  }

  .quote-card,
  .lead-form,
  .service-area {
    padding: 24px;
  }

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

  .form-copy {
    position: static;
  }

  h1 {
    font-size: clamp(2.15rem, 12vw, 2.8rem);
    line-height: 1;
  }

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


.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}


.thank-you-section {
  width: min(880px, calc(100% - 32px));
  margin: 54px auto 0;
}

.thank-you-card {
  padding: clamp(34px, 6vw, 64px);
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.thank-you-card h1 {
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(2.3rem, 5vw, 4.35rem);
}

.thank-you-card > p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.12rem;
}

.thank-you-next {
  margin: 28px 0;
  padding: 22px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid var(--line);
}

.thank-you-next h2 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.thank-you-next ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.thank-you-next li + li {
  margin-top: 8px;
}

@media (max-width: 640px) {
  .thank-you-section {
    margin-top: 24px;
  }

  .thank-you-card h1 {
    font-size: clamp(2rem, 11vw, 2.75rem);
  }
}


.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-bottom: 8px;
  font-size: 0.78rem;
  font-weight: 750;
}

.footer-links a {
  color: var(--ink);
}

.footer-links a:hover,
.service-contact a,
.faq-grid a,
.policy-card a {
  color: var(--accent-dark);
}

.service-area > div:last-child {
  display: grid;
  gap: 10px;
}

.service-contact {
  font-size: 0.95rem !important;
  font-weight: 700;
}

.policy-section {
  width: min(880px, calc(100% - 32px));
  margin: 54px auto 0;
}

.policy-card {
  padding: clamp(34px, 6vw, 58px);
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.policy-card h1 {
  color: var(--ink);
  font-size: clamp(2.35rem, 5vw, 4.4rem);
}

.policy-card h2 {
  margin-top: 30px;
  font-size: 1.35rem;
}

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

.policy-updated {
  margin-top: -6px;
  font-size: 0.92rem;
  font-weight: 700;
}

@media (max-width: 640px) {
  .footer-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .policy-section {
    margin-top: 24px;
  }

  .policy-card h1 {
    font-size: clamp(2rem, 11vw, 2.75rem);
  }
}
