:root {
  --green: #0aa64b;
  --green-dark: #067d38;
  --green-deep: #064d2b;
  --green-soft: #edf8f1;
  --ink: #18222f;
  --muted: #5d6875;
  --line: #dfe6e2;
  --white: #ffffff;
  --off-white: #f8faf9;
  --shadow: 0 20px 55px rgba(15, 43, 29, 0.1);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.035em;
}
h1 {
  margin-bottom: 1.3rem;
  font-size: clamp(2.65rem, 10vw, 5.35rem);
}
h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 7vw, 3.6rem);
}
h3 {
  margin-bottom: 0.65rem;
  font-size: 1.28rem;
}
p {
  margin-bottom: 1rem;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}
.section {
  padding: 5rem 0;
}
.section-heading {
  max-width: 790px;
  margin-bottom: 2.5rem;
}
.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}
.eyebrow {
  margin-bottom: 0.75rem;
  color: var(--green-dark);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.lead {
  color: var(--muted);
  font-size: 1.12rem;
}
.skip-link {
  position: fixed;
  top: -5rem;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: white;
}
.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(24, 34, 47, 0.07);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
}
.header-inner {
  position: relative;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
}
.brand img {
  width: 160px;
  max-height: 54px;
  object-fit: contain;
  object-position: left center;
}
.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.nav-toggle-label {
  display: grid;
  width: 44px;
  height: 44px;
  place-content: center;
  gap: 5px;
  border-radius: 50%;
  background: var(--green-soft);
  cursor: pointer;
}
.nav-toggle-label span {
  display: block;
  width: 21px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: 0.2s ease;
}
.main-nav {
  position: absolute;
  top: 76px;
  right: 0;
  left: 0;
  display: grid;
  max-height: 0;
  overflow: hidden;
  background: white;
  box-shadow: 0 18px 35px rgba(24, 34, 47, 0.08);
  transition: max-height 0.25s ease;
}
.main-nav a {
  padding: 1rem;
  border-top: 1px solid var(--line);
  font-weight: 700;
}
.main-nav a[aria-current="page"] {
  color: var(--green-dark);
}
.nav-toggle:checked ~ .main-nav {
  max-height: 320px;
}
.nav-toggle:checked + .nav-toggle-label span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle:checked + .nav-toggle-label span:nth-child(2) {
  opacity: 0;
}
.nav-toggle:checked + .nav-toggle-label span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary {
  background: var(--green);
  color: white;
  box-shadow: 0 13px 30px rgba(10, 166, 75, 0.25);
}
.button-primary:hover {
  background: var(--green-dark);
}
.button-secondary {
  border-color: var(--green);
  color: var(--green-dark);
}
.button-secondary:hover {
  background: var(--green-soft);
}
.text-link {
  color: var(--green-dark);
  font-weight: 800;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 5rem;
  background: white;
}
.hero::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  top: -210px;
  right: -210px;
  border: 78px solid rgba(10, 166, 75, 0.055);
  border-radius: 50%;
}
.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero h1 span {
  color: var(--green);
}
.hero-copy {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.16rem;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  margin-top: 1.8rem;
}
.promise-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 2rem;
}
.promise-row span {
  padding: 0.45rem 0.78rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  font-size: 0.78rem;
  font-weight: 750;
}
.hero-photo {
  position: relative;
  min-height: 365px;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 365px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.hero-speed-card {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  max-width: 220px;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 13px 30px rgba(24, 34, 47, 0.15);
}
.hero-speed-card strong {
  display: block;
  color: var(--green-dark);
  font-size: 1.6rem;
  line-height: 1;
}
.hero-speed-card span {
  color: var(--muted);
  font-size: 0.83rem;
}

.objections {
  background: var(--off-white);
}
.objection-grid {
  display: grid;
  gap: 1rem;
}
.objection-card {
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
}
.objection-number {
  display: grid;
  width: 44px;
  height: 44px;
  place-content: center;
  margin-bottom: 1.2rem;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 850;
}
.objection-card p {
  margin: 0;
  color: var(--muted);
}

.fast-section {
  background: var(--green-deep);
  color: #eaf5ee;
}
.fast-section h2,
.fast-section h3 {
  color: white;
}
.fast-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
.fast-copy p {
  color: #cfe1d5;
}
.timeline {
  display: grid;
  gap: 0.9rem;
}
.timeline-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1rem;
  padding: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
}
.timeline-step span {
  display: grid;
  width: 44px;
  height: 44px;
  place-content: center;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-weight: 850;
}
.timeline-step p {
  margin: 0;
  color: #cfe1d5;
}

.image-copy {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
.image-frame {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.image-frame img {
  width: 100%;
  min-height: 340px;
  object-fit: cover;
}
.check-list {
  display: grid;
  gap: 0.8rem;
}
.check-list li {
  position: relative;
  padding-left: 1.85rem;
  color: var(--muted);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

.cta-section {
  padding: 4.5rem 0;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: white;
}
.cta-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.cta-section h2 {
  color: white;
}
.cta-section p {
  max-width: 650px;
}
.cta-note {
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 4.3rem 0;
  background: white;
}
.page-hero::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  top: -170px;
  right: -120px;
  border: 58px solid rgba(10, 166, 75, 0.055);
  border-radius: 50%;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  max-width: 920px;
  font-size: clamp(2.55rem, 9vw, 4.8rem);
}
.page-hero .lead {
  max-width: 780px;
}

.billing-toggle {
  width: 100%;
  margin: 2.1rem 0 2.6rem;
}
.billing-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.toggle-shell {
  display: grid;
  max-width: 500px;
  margin-inline: auto;
  grid-template-columns: 1fr 1fr;
  padding: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  box-shadow: 0 9px 25px rgba(24, 34, 47, 0.07);
}
.toggle-shell label {
  padding: 0.72rem 0.6rem;
  border-radius: 999px;
  cursor: pointer;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}
#monthly:checked ~ .toggle-shell label[for="monthly"],
#quarterly:checked ~ .toggle-shell label[for="quarterly"] {
  background: var(--green-soft);
  color: var(--green-dark);
}
.pricing-grid {
  display: grid;
  gap: 1rem;
}
.price-card {
  display: flex;
  flex-direction: column;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: 0 10px 34px rgba(24, 34, 47, 0.055);
}
.price-card-head {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 1rem;
  align-items: center;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
}
.plan-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-content: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 1.25rem;
  font-weight: 850;
}
.price-card-head h2 {
  margin-bottom: 0.2rem;
  color: var(--green-dark);
  font-size: 1.3rem;
}
.price-card-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.price-area {
  padding: 1.35rem 0;
}
.price-area .label {
  margin-bottom: 0.2rem;
  font-size: 0.78rem;
  font-weight: 750;
}
.price {
  margin: 0;
  color: var(--ink);
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}
.price .period {
  font-size: 1em;
  font-weight: 900;
}
.price-sub {
  color: var(--muted);
  font-size: 0.86rem;
}
.monthly-price,
.quarterly-price {
  display: none;
}
#monthly:checked ~ .pricing-grid .monthly-price {
  display: block;
}
#quarterly:checked ~ .pricing-grid .quarterly-price {
  display: block;
}
.plan-features {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.3rem;
}
.plan-features li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.91rem;
}
.plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}
.value-tag {
  display: inline-block;
  margin-left: 0.25rem;
  padding: 0.12rem 0.44rem;
  border-radius: 7px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.7rem;
  white-space: nowrap;
}
.setup-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: var(--green-soft);
  font-size: 0.84rem;
}
.setup-row strong {
  color: var(--ink);
}
.assurance-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.4rem;
}
.assurance-item {
  padding: 1rem;
  border-top: 1px solid var(--line);
}
.assurance-item strong {
  display: block;
}
.assurance-item span {
  color: var(--muted);
  font-size: 0.84rem;
}

.story-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
.story-image {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.story-image img {
  width: 100%;
  min-height: 340px;
  object-fit: cover;
}
.quote-panel {
  margin-top: 3rem;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--green-deep);
  color: #d8eade;
}
.quote-panel h2 {
  color: white;
}

.site-footer {
  padding: 3rem 0;
  background: #11261b;
  color: #c7d5cc;
}
.footer-grid {
  display: grid;
  gap: 2rem;
}
.footer-brand img {
  width: 180px;
  max-height: 66px;
  object-fit: contain;
  object-position: left center;
  filter: none;
  mix-blend-mode: normal;
}
.footer-brand p {
  margin: 0.7rem 0 0;
}
.site-footer nav {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.site-footer a:hover {
  color: white;
}
.copyright {
  margin: 0;
  font-size: 0.84rem;
}

@media (min-width: 620px) {
  .container {
    width: min(100% - 3rem, var(--container));
  }
  .hero-actions {
    flex-direction: row;
    align-items: center;
  }
  .objection-grid,
  .assurance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1.5fr 1fr;
  }
  .copyright {
    grid-column: 1 / -1;
  }
}
@media (min-width: 860px) {
  .section {
    padding: 7rem 0;
  }
  .header-inner {
    min-height: 90px;
  }
  .nav-toggle-label {
    display: none;
  }
  .main-nav {
    position: static;
    display: flex;
    max-height: none;
    align-items: center;
    gap: 1.7rem;
    overflow: visible;
    background: transparent;
    box-shadow: none;
  }
  .main-nav a {
    padding: 0.6rem 0;
    border: 0;
    font-size: 0.9rem;
  }
  .main-nav .nav-cta {
    padding: 0.75rem 1.1rem;
    border-radius: 999px;
    background: var(--green);
    color: white;
  }
  .hero {
    min-height: calc(100vh - 90px);
    display: grid;
    align-items: center;
    padding: 5rem 0;
  }
  .hero-grid {
    grid-template-columns: 1.02fr 0.98fr;
    gap: 4.6rem;
  }
  .hero-photo {
    min-height: 560px;
  }
  .hero-photo img {
    min-height: 560px;
  }
  .objection-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .fast-grid,
  .image-copy,
  .story-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
  .cta-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
  }
  .page-hero {
    padding: 6rem 0 3rem;
  }
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .price-card {
    padding: 1.45rem;
  }
  .assurance-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1.5fr 1fr auto;
    align-items: end;
  }
  .copyright {
    grid-column: auto;
    text-align: right;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* Contact and legal pages */
.main-nav a[aria-current="page"] {
  color: var(--green-dark);
}
.contact-hero .lead,
.legal-hero .lead {
  max-width: 780px;
}
.contact-section {
  background: var(--off-white);
}
.contact-page-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}
.contact-intro {
  max-width: 560px;
}
.contact-promise {
  display: grid;
  gap: 0.35rem;
  margin-top: 2rem;
  padding: 1.25rem;
  border-left: 4px solid var(--green);
  border-radius: 0 16px 16px 0;
  background: var(--green-soft);
}
.contact-promise strong {
  color: var(--green-dark);
}
.contact-promise span {
  color: var(--muted);
}
.contact-list {
  display: grid;
  gap: 0.85rem;
}
.contact-card {
  position: relative;
  display: grid;
  gap: 0.25rem;
  padding: 1.25rem 3.5rem 1.25rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(10, 166, 75, 0.45);
  box-shadow: 0 12px 28px rgba(15, 43, 29, 0.08);
}
.contact-label {
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.contact-card strong {
  font-size: clamp(1.05rem, 4.6vw, 1.45rem);
  overflow-wrap: anywhere;
}
.contact-arrow {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  color: var(--green);
  font-size: 1.35rem;
  transform: translateY(-50%);
}
.email-card {
  background: var(--green-deep);
  color: white;
}
.email-card .contact-label,
.email-card .contact-arrow {
  color: #91e5b3;
}
.legal-section {
  background: var(--off-white);
}
.legal-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}
.legal-sidebar {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: var(--green-deep);
  color: #d8eade;
}
.legal-sidebar h2 {
  color: white;
  font-size: 1.65rem;
}
.legal-sidebar p:last-child {
  margin-bottom: 0;
}
.legal-content {
  min-width: 0;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: 0 10px 34px rgba(24, 34, 47, 0.045);
}
.legal-content h2 {
  margin-top: 2.3rem;
  font-size: clamp(1.45rem, 5vw, 2.1rem);
}
.legal-content h2:first-of-type {
  margin-top: 0.4rem;
}
.legal-content h3 {
  margin-top: 1.8rem;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}
.legal-content p,
.legal-content li {
  color: #485561;
}
.legal-content ul {
  display: grid;
  gap: 0.45rem;
  margin: 1rem 0 1.5rem;
  padding-left: 1.25rem;
  list-style: disc;
}
.legal-content a {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}
.legal-content small {
  color: var(--muted);
}

@media (min-width: 860px) {
  .contact-page-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 5rem;
  }
  .legal-layout {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 3rem;
  }
  .legal-sidebar {
    position: sticky;
    top: 120px;
  }
  .legal-content {
    padding: 2.4rem;
  }
}

/* Language switcher */
.language-switcher {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 800;
}
.language-switcher a {
  padding: 0.2rem !important;
  border: 0 !important;
  color: var(--muted);
}
.language-switcher a.active {
  color: var(--green-dark);
}
.language-switcher > span {
  color: var(--line);
}
@media (min-width: 860px) {
  .language-switcher {
    padding: 0;
    border: 0;
    gap: 0.35rem;
  }
  .language-switcher a {
    font-size: 0.76rem !important;
  }
}
