:root {
  --page: #ffffff;
  --ink: #0d1220;
  --muted: #566174;
  --soft: #f5f8fb;
  --soft-green: #eef9f0;
  --brand: #07872f;
  --brand-dark: #056b26;
  --blue: #1267d8;
  --amber: #c9820e;
  --line: #dce5ee;
  --line-strong: #b9c8d7;
  --shadow: 0 24px 70px rgba(13, 18, 32, 0.12);
  --shadow-soft: 0 14px 36px rgba(13, 18, 32, 0.08);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--page);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: geometricPrecision;
}

body,
button,
input,
textarea {
  letter-spacing: 0;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(220, 229, 238, 0.86);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

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

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  color: #161c2b;
  font-size: 15px;
  font-weight: 700;
}

.nav-links a {
  padding: 8px 0;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  color: #ffffff;
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 14px 26px rgba(7, 135, 47, 0.2);
}

.button-primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.button-secondary {
  color: var(--brand);
  background: #ffffff;
  border-color: var(--brand);
}

.button-secondary:hover {
  background: var(--soft-green);
}

.button-blue {
  color: #ffffff;
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 14px 26px rgba(18, 103, 216, 0.18);
}

.button-blue:hover {
  background: #0e56b4;
  border-color: #0e56b4;
}

.button-amber {
  color: #ffffff;
  background: var(--amber);
  border-color: var(--amber);
  box-shadow: 0 14px 26px rgba(201, 130, 14, 0.16);
}

.button-amber:hover {
  background: #a76a0b;
  border-color: #a76a0b;
}

.button-full {
  width: 100%;
}

.hero {
  padding: 58px 0 44px;
  background:
    linear-gradient(180deg, rgba(245, 248, 251, 0.92) 0%, #ffffff 30%, #ffffff 100%);
  border-bottom: 1px solid var(--line);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  align-items: center;
  gap: 32px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero h1 {
  max-width: 590px;
  margin: 0;
  font-size: 70px;
  line-height: 1.04;
  font-weight: 900;
}

.hero-lede {
  max-width: 560px;
  margin: 24px 0 0;
  color: #273044;
  font-size: 20px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.hero-visual {
  position: relative;
  margin: 0 -42px 0 0;
}

.hero-visual img {
  width: 100%;
  min-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 28px 32px rgba(13, 18, 32, 0.08));
}

.status-card {
  position: absolute;
  right: 44px;
  bottom: 30px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0 16px;
  border: 1px solid rgba(185, 200, 215, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: #1d2738;
  font-size: 14px;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.status-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 5px rgba(7, 135, 47, 0.16);
}

.section {
  padding: 78px 0;
}

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

.section-heading.align-left {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.section-heading h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.14;
  font-weight: 900;
}

.section-heading p {
  max-width: 620px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 18px;
}

.section-heading.align-left p {
  margin-left: 0;
}

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

.service-item {
  min-width: 0;
  padding-top: 4px;
  text-align: center;
}

.service-item svg {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  color: var(--brand);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.service-item h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.25;
}

.service-item p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.process {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.process-steps article {
  position: relative;
  min-height: 238px;
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(13, 18, 32, 0.05);
}

.process-steps article::after {
  content: "";
  position: absolute;
  top: 55px;
  right: -24px;
  width: 20px;
  height: 12px;
  background:
    linear-gradient(var(--line-strong), var(--line-strong)) left 50% / 100% 2px no-repeat;
}

.process-steps article:last-child::after {
  display: none;
}

.step-number {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--blue);
  color: #ffffff;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(18, 103, 216, 0.2);
}

.process-steps h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.28;
}

.process-steps p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.pricing {
  background: #ffffff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  align-items: stretch;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 548px;
  padding: 32px;
  border: 2px solid var(--brand);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.plan h3 {
  margin: 0;
  color: var(--brand);
  font-size: 28px;
  line-height: 1.1;
}

.plan-featured {
  border-color: var(--blue);
}

.plan-featured h3 {
  color: var(--blue);
}

.plan-care {
  border-color: var(--amber);
}

.plan-care h3 {
  color: var(--amber);
}

.plan-marker {
  position: absolute;
  top: -17px;
  left: 50%;
  min-width: 148px;
  margin: 0;
  padding: 6px 14px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: var(--blue);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.price {
  margin: 20px 0 0;
  color: var(--ink);
  font-size: 48px;
  line-height: 1;
  font-weight: 900;
}

.price span {
  margin-left: 4px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 800;
}

.plan-summary {
  min-height: 54px;
  margin: 18px 0 24px;
  color: var(--muted);
  font-size: 15px;
}

.plan ul {
  display: grid;
  gap: 12px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.plan li {
  position: relative;
  padding-left: 26px;
  color: #233045;
  font-size: 15px;
}

.plan li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 14px;
  height: 8px;
  border-bottom: 2px solid var(--brand);
  border-left: 2px solid var(--brand);
  transform: rotate(-45deg);
}

.plan-featured li::before {
  border-color: var(--blue);
}

.plan-care li::before {
  border-color: var(--amber);
}

.plan .button {
  margin-top: auto;
}

.pricing-note {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.faq-contact {
  padding-top: 66px;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 50%, #f8fafc 50%, #f8fafc 100%);
  border-top: 1px solid var(--line);
}

.faq-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  gap: 72px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.faq-list summary {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 18px;
  color: #1b2538;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  width: 18px;
  flex: 0 0 auto;
  color: var(--brand);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 15px;
}

.contact-panel {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.contact-panel h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.14;
}

.contact-panel p {
  margin: 12px 0 24px;
  color: var(--muted);
}

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

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

label {
  display: grid;
  gap: 7px;
  color: #263247;
  font-size: 13px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cbd8e3;
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.4;
}

input {
  min-height: 46px;
  padding: 0 13px;
}

.tier-field {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.tier-field legend {
  margin: 0 0 2px;
  padding: 0;
  color: #263247;
  font-size: 13px;
  font-weight: 800;
}

.tier-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.tier-options label {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 12px;
  border: 1px solid #cbd8e3;
  border-radius: var(--radius);
  background: #ffffff;
  color: #263247;
  font-size: 14px;
  cursor: pointer;
}

.tier-options input {
  width: 16px;
  height: 16px;
  min-height: 0;
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  accent-color: var(--brand);
}

.tier-options label:has(input:checked) {
  border-color: var(--brand);
  background: var(--soft-green);
  color: var(--brand-dark);
}

.tier-options label:has(input:focus-visible) {
  outline: 3px solid rgba(7, 135, 47, 0.16);
  border-color: var(--brand);
}

textarea {
  min-height: 120px;
  padding: 12px 13px;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(7, 135, 47, 0.16);
  border-color: var(--brand);
}

.footer {
  padding: 42px 0 28px;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(230px, 1.5fr) repeat(3, minmax(150px, 1fr));
  gap: 34px;
}

.footer-brand img {
  width: 128px;
}

.footer h2 {
  margin: 0 0 12px;
  color: #1a2437;
  font-size: 14px;
  text-transform: uppercase;
}

.footer p,
.footer a {
  color: var(--muted);
  font-size: 14px;
}

.footer p {
  margin: 12px 0 0;
}

.footer a {
  display: block;
  margin-top: 8px;
}

.footer a:hover {
  color: var(--brand);
}

.copyright {
  margin: 30px auto 0;
  color: #748094;
  font-size: 13px;
  text-align: center;
}

@media (max-width: 1060px) {
  .hero {
    padding-top: 44px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero h1 {
    max-width: 720px;
    font-size: 58px;
  }

  .hero-lede {
    max-width: 700px;
  }

  .hero-visual {
    margin: 6px auto 0;
    width: min(100%, 820px);
  }

  .hero-visual img {
    min-height: 0;
  }

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

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

  .process-steps article:nth-child(2)::after {
    display: none;
  }

  .faq-contact {
    background: #ffffff;
  }

  .faq-contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .nav {
    min-height: 68px;
    gap: 14px;
  }

  .brand img {
    width: 116px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    min-height: 42px;
    padding: 0 15px;
    font-size: 14px;
  }

  .hero {
    padding: 34px 0 36px;
  }

  .hero h1 {
    font-size: 43px;
    line-height: 1.08;
  }

  .hero-lede {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.55;
  }

  .hero-actions {
    gap: 12px;
    margin-top: 26px;
  }

  .hero-actions .button {
    flex: 1 1 160px;
  }

  .hero-visual {
    width: 100%;
    margin-left: 0;
  }

  .status-card {
    right: 24px;
    bottom: 18px;
    font-size: 12px;
  }

  .section {
    padding: 58px 0;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-heading h2,
  .contact-panel h2 {
    font-size: 32px;
  }

  .section-heading p {
    font-size: 16px;
  }

  .service-grid,
  .process-steps,
  .pricing-grid,
  .form-row,
  .tier-options,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-grid {
    gap: 26px;
  }

  .service-item {
    text-align: left;
  }

  .service-item svg {
    margin-left: 0;
  }

  .process-steps article {
    min-height: 0;
  }

  .process-steps article::after {
    display: none;
  }

  .plan {
    min-height: 0;
    padding: 28px 24px;
  }

  .faq-contact {
    padding-top: 50px;
  }

  .contact-panel {
    padding: 24px;
  }
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: 38px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

@media (max-width: 430px) {
  .brand img {
    width: 108px;
  }

  .button {
    min-height: 46px;
    padding: 0 16px;
    font-size: 15px;
  }

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

  .status-card {
    position: static;
    margin: -12px auto 0;
    width: max-content;
    max-width: calc(100% - 28px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
