:root {
  --green: #75d94c;
  --green-dark: #3f9d27;
  --green-soft: #edf9e8;
  --yellow: #75d94c;
  --ink: #101812;
  --text: #3b473e;
  --muted: #6a746c;
  --cream: #f7f8f2;
  --white: #ffffff;
  --line: #dfe6dc;
  --shadow: 0 20px 55px rgba(16, 24, 18, 0.12);
  --radius: 22px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  background: var(--white);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(223, 230, 220, 0.8);
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 11px 14px;
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--green-soft);
  color: var(--green-dark);
}

.nav-links .nav-cta {
  margin-left: 8px;
  padding-inline: 20px;
  background: var(--ink);
  color: var(--white);
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus-visible {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 12px;
  background: var(--green-soft);
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  width: 22px;
  height: 2px;
  display: block;
  margin: 5px auto;
  border-radius: 99px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-button[aria-expanded="true"] span:nth-of-type(2) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-of-type(3) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-of-type(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 760px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(10, 20, 13, 0.92) 0%, rgba(10, 20, 13, 0.76) 46%, rgba(10, 20, 13, 0.2) 100%),
    url("../images/hero.webp") center / cover no-repeat;
  color: var(--white);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 210, 10, 0.3), transparent 24%),
    linear-gradient(180deg, transparent 72%, rgba(16, 24, 18, 0.35));
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  align-items: center;
  gap: 80px;
  padding-block: 110px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--yellow);
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.hero h1 {
  max-width: 700px;
  color: var(--white);
  font-size: clamp(3.2rem, 7vw, 6.1rem);
  line-height: 0.98;
}

.hero-text {
  max-width: 620px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--green);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(117, 217, 76, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #84e65d;
  box-shadow: 0 15px 32px rgba(117, 217, 76, 0.35);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.button-light:hover,
.button-light:focus-visible {
  background: rgba(255, 255, 255, 0.2);
}

.button-dark {
  margin-top: 28px;
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: #1e2d21;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 650;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 21px;
}

.hero-points li::before {
  position: absolute;
  top: 0.38em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--yellow);
  content: "";
}

.hero-logo-card {
  position: relative;
  justify-self: end;
  width: min(100%, 390px);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-logo-card::after {
  position: absolute;
  right: -28px;
  bottom: 4px;
  width: 110px;
  height: 110px;
  border: 12px solid var(--yellow);
  border-radius: 50%;
  content: "";
  opacity: 0.88;
}

.hero-logo-card img {
  width: 100%;
  border-radius: 50%;
}

.quick-info {
  position: relative;
  z-index: 4;
  margin-top: -58px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.quick-grid > div {
  min-height: 116px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 25px 34px;
}

.quick-grid > div + div {
  border-left: 1px solid var(--line);
}

.quick-number {
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.quick-label {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding-block: 110px;
}

.section-heading {
  max-width: 710px;
  margin-bottom: 54px;
}

.section-heading h2,
.payment-copy h2,
.about-copy h2,
.contact-copy h2 {
  font-size: clamp(2.35rem, 5vw, 4rem);
}

.section-heading > p:last-child,
.payment-copy > p,
.about-copy > p,
.contact-copy > p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.06rem;
}

.services {
  padding-top: 145px;
  background:
    radial-gradient(circle at 92% 4%, rgba(117, 217, 76, 0.12), transparent 24%),
    var(--white);
}

.service-group + .service-group {
  margin-top: 80px;
}

.group-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.group-heading .eyebrow {
  margin-bottom: 4px;
}

.group-heading h3 {
  font-size: 2rem;
}

.group-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--green-soft);
  font-size: 1.65rem;
}

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

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

.card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  border-color: rgba(63, 157, 39, 0.45);
  box-shadow: 0 18px 40px rgba(16, 24, 18, 0.09);
  transform: translateY(-5px);
}

.card h4 {
  font-size: 1.28rem;
}

.card p {
  margin-top: 15px;
  color: var(--muted);
  font-size: 0.96rem;
}

.price {
  width: fit-content;
  margin-top: auto;
  padding-top: 22px;
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 900;
}

.card-highlight {
  border: 0;
  background: var(--green);
}

.card-highlight p {
  color: rgba(16, 24, 18, 0.72);
}

.text-link {
  margin-top: auto;
  padding-top: 22px;
  color: var(--ink);
  font-weight: 900;
}

.payment {
  overflow: hidden;
  background: var(--yellow);
}

.payment-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 85px;
}

.payment-copy .eyebrow {
  color: rgba(16, 24, 18, 0.62);
}

.payment-copy > p {
  color: rgba(16, 24, 18, 0.72);
}

.payment-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.payment-card {
  min-height: 210px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(16, 24, 18, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
  text-align: center;
  backdrop-filter: blur(8px);
}

.payment-card span {
  font-size: 2.4rem;
}

.payment-card h3 {
  font-size: 1.2rem;
}

.about {
  background: var(--cream);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 90px;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-badge {
  position: absolute;
  right: -28px;
  bottom: 30px;
  max-width: 180px;
  padding: 20px 24px;
  border-radius: 18px;
  background: var(--green);
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 20px 38px rgba(16, 24, 18, 0.2);
}

.about-copy > p + p {
  margin-top: 16px;
}

.about-note {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
  padding: 19px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.about-note strong {
  flex: 0 0 auto;
  color: var(--green-dark);
}

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

.contact {
  background:
    radial-gradient(circle at 10% 10%, rgba(117, 217, 76, 0.16), transparent 26%),
    var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 75px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.contact-list a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px 18px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--cream);
  color: var(--ink);
  font-weight: 800;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  border-color: var(--green-dark);
  transform: translateX(4px);
}

.contact-list small {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
}

.contact-form {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--cream);
  box-shadow: 0 20px 50px rgba(16, 24, 18, 0.08);
}

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

.form-group + .form-group,
.form-row + .form-group {
  margin-top: 18px;
}

.form-row .form-group + .form-group {
  margin-top: 0;
}

label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #cfd8cc;
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  outline: none;
}

input,
select {
  min-height: 50px;
  padding: 10px 13px;
}

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

input:focus,
textarea:focus,
select:focus {
  border-color: var(--green-dark);
  box-shadow: 0 0 0 4px rgba(117, 217, 76, 0.2);
}

.form-button {
  width: 100%;
  margin-top: 20px;
  border: 0;
}

.form-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.site-footer {
  padding-block: 44px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  color: var(--white);
  font-size: 1.1rem;
}

.footer-brand span {
  font-size: 0.84rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 750;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: var(--green);
}

.site-footer p {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
}

@media (max-width: 1020px) {
  .hero {
    min-height: 680px;
  }

  .hero-content {
    grid-template-columns: 1fr 280px;
    gap: 35px;
  }

  .hero-logo-card {
    padding: 20px;
  }

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

  .payment-layout,
  .about-layout,
  .contact-layout {
    gap: 50px;
  }
}

@media (max-width: 820px) {
  .menu-button {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 82px;
    right: 0;
    left: 0;
    max-height: calc(100vh - 82px);
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 6px;
    overflow-y: auto;
    padding: 20px;
    border-top: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 25px 35px rgba(16, 24, 18, 0.12);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 16px;
  }

  .nav-links .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(10, 20, 13, 0.78), rgba(10, 20, 13, 0.9)),
      url("../images/hero.webp") center / cover no-repeat;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding-block: 90px 115px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero-logo-card {
    display: none;
  }

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

  .quick-grid > div {
    min-height: 94px;
  }

  .quick-grid > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .payment-layout,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .payment-options {
    order: -1;
  }

  .about-layout {
    gap: 55px;
  }

  .about-badge {
    right: 20px;
  }
}

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

  .brand img {
    width: 46px;
    height: 46px;
  }

  .nav-wrap {
    min-height: 72px;
  }

  .nav-links {
    top: 72px;
    max-height: calc(100vh - 72px);
  }

  .hero-content {
    padding-block: 75px 100px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 16vw, 4.4rem);
  }

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

  .hero-points {
    display: grid;
    gap: 10px;
  }

  .quick-info {
    margin-top: -38px;
  }

  .section {
    padding-block: 80px;
  }

  .services {
    padding-top: 110px;
  }

  .cards,
  .cards-four,
  .payment-options,
  .form-row {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: 220px;
  }

  .payment-card {
    min-height: 145px;
  }

  .about-badge {
    right: 14px;
    bottom: 14px;
    max-width: 150px;
    padding: 14px 17px;
    font-size: 0.86rem;
  }

  .about-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .contact-form {
    padding: 24px 18px;
  }

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

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
