:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-soft: #fff8ef;
  --text: #17263f;
  --muted: #5f6f88;
  --line: #dbe3f0;
  --primary: #1f4e8c;
  --primary-dark: #163b68;
  --cta: #f27c0f;
  --cta-dark: #cc6507;
  --ok: #cc6507;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-sm: 0 6px 16px rgba(23, 38, 63, 0.08);
  --shadow-md: 0 14px 34px rgba(23, 38, 63, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 90% 8%, rgba(242, 124, 15, 0.14), transparent 26%),
    radial-gradient(circle at 5% 16%, rgba(31, 78, 140, 0.1), transparent 24%),
    var(--bg);
  font-family: "Source Sans 3", sans-serif;
  line-height: 1.55;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: radial-gradient(#000 0.3px, transparent 0.3px);
  background-size: 3px 3px;
}

.shell {
  width: min(1160px, calc(100% - 2rem));
  margin-inline: auto;
}

a {
  color: inherit;
}

h1,
h2,
h3 {
  margin: 0 0 0.65rem;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

h1 {
  font-size: clamp(2rem, 4.4vw, 3.8rem);
}

h2 {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

h3 {
  font-size: 1.17rem;
}

p {
  margin: 0 0 0.8rem;
}

.kicker {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--primary);
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(245, 247, 251, 0.92);
  border-bottom: 1px solid transparent;
}

.header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 22px rgba(23, 38, 63, 0.08);
}

.topline {
  background: linear-gradient(90deg, #fff2df, #fff9f1);
  border-bottom: 1px solid #efd9be;
  color: #695844;
  font-size: 0.92rem;
}

.topline-wrap {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sep {
  margin: 0 0.45rem;
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  text-decoration: none;
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

.brand-dot {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  transform: rotate(12deg);
  background: linear-gradient(135deg, var(--cta), #ffb165);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav a {
  text-decoration: none;
  font-weight: 600;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-btn span {
  width: 18px;
  height: 2px;
  background: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(130deg, var(--cta), #ff9c37);
  box-shadow: var(--shadow-md);
}

.btn-soft {
  color: var(--primary-dark);
  background: #fff;
  border-color: var(--line);
}

.btn-nav {
  color: #fff;
  background: linear-gradient(130deg, var(--cta), #ff9c37);
}

.hero {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 0.9rem;
  padding-top: 3.2rem;
  padding-bottom: 2.4rem;
}

.hero-copy {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.hero-lead {
  color: var(--muted);
  max-width: 56ch;
  font-size: 1.1rem;
}

.hero-cta {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-checks {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.36rem;
  color: var(--muted);
}

.hero-checks li::before {
  content: "+";
  margin-right: 0.44rem;
  color: var(--ok);
}

.hero-side {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, #fff, #f3f8ff);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
}

.trust-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 0.75rem;
  min-height: 180px;
  border: 1px solid var(--line);
}

.trust-image img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  display: block;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.metric-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 0.86rem;
}

.metric-value {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.52rem;
  font-weight: 700;
  color: var(--primary);
}

.metric-label {
  margin: 0;
  color: var(--muted);
}

.proof {
  border-block: 1px solid #efddc8;
  background: linear-gradient(115deg, #fff6ea, #fff);
}

.proof-wrap {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.proof-wrap > p {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-weight: 600;
}

.proof-wrap > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.proof-wrap span {
  padding: 0.3rem 0.68rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 0.9rem;
}

.section {
  padding-block: 3rem;
}

.section-head {
  margin-bottom: 1rem;
}

.section-head h2 {
  max-width: 24ch;
}

.service-grid,
.steps,
.pricing-grid,
.review-grid,
.faq-grid {
  display: grid;
  gap: 0.85rem;
}

.service-grid,
.pricing-grid,
.review-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

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

.service-card,
.steps article,
.price-card,
.review-grid article,
.faq-grid article {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.service-card p,
.steps article p:last-child,
.price-card ul,
.faq-grid p,
.author {
  color: var(--muted);
}

.step-no {
  margin: 0 0 0.38rem;
  font-family: "Sora", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
}

.price-card {
  background: linear-gradient(160deg, #fff, #f7fbff);
}

.featured {
  border-width: 2px;
  border-color: var(--cta);
  box-shadow: var(--shadow-md);
}

.ribbon {
  margin: 0 0 0.35rem;
  display: inline-flex;
  padding: 0.24rem 0.6rem;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(130deg, var(--cta), #ff9c37);
  font-size: 0.74rem;
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

.plan {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

.price {
  margin: 0.2rem 0 0.7rem;
  font-family: "Sora", sans-serif;
  font-size: 2rem;
  font-weight: 800;
}

.price span {
  font-size: 1rem;
}

.review-grid article {
  position: relative;
}

.review-grid article::before {
  content: "\"";
  position: absolute;
  top: 0.1rem;
  right: 0.7rem;
  font-family: "Sora", sans-serif;
  font-size: 2rem;
  color: rgba(242, 124, 15, 0.2);
}

.author {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.final-cta {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--surface-soft), #fff);
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 1rem;
}

.contact-lines {
  margin-top: 1rem;
  display: grid;
  gap: 0.3rem;
}

.contact-lines a {
  text-decoration: none;
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

.cta-image-row {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.cta-image-row img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.lead-form {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  display: grid;
  gap: 0.75rem;
}

label {
  display: grid;
  gap: 0.32rem;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  padding: 0.67rem 0.78rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
  background: #fff;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(242, 124, 15, 0.24);
  border-color: var(--cta);
}

.form-note {
  margin: 0.2rem 0 0;
  min-height: 1.3em;
  color: var(--cta-dark);
  font-weight: 700;
}

.sticky-call {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  padding: 0.75rem 1.05rem;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(130deg, var(--cta-dark), var(--cta));
  box-shadow: var(--shadow-md);
  font-family: "Sora", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.sticky-call.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.footer {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(255, 248, 238, 0.85));
}

.footer-wrap {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .hero,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .steps,
  .pricing-grid,
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 4.8rem;
  }

  .topline {
    display: none;
  }

  .menu-btn {
    display: inline-flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: 74px;
    left: 1rem;
    right: 1rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--shadow-md);
    padding: 0.9rem;
    flex-direction: column;
    align-items: stretch;
  }

  .nav.open {
    display: flex;
  }

  .btn-nav {
    text-align: center;
  }

  .hero {
    padding-top: 2.1rem;
    gap: 0.9rem;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .section {
    padding-block: 2.25rem;
  }

  .service-grid,
  .steps,
  .pricing-grid,
  .review-grid,
  .faq-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .cta-image-row {
    grid-template-columns: 1fr;
  }

  .proof-wrap {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0.7rem 0;
  }

  .footer-wrap {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 0.6rem 0;
  }

  .sticky-call {
    left: 1rem;
    right: 1rem;
    text-align: center;
    min-height: 48px;
  }
}
