:root {
  --ink: #0e1110;
  --ink-2: #171c18;
  --green: #1f5f28;
  --green-2: #2d7a32;
  --yellow: #ffc400;
  --yellow-2: #f4af00;
  --white: #ffffff;
  --paper: #f7f7f1;
  --muted: #606860;
  --line: #d7ddd2;
  --shadow: 0 20px 55px rgba(0, 0, 0, 0.18);
  --radius: 8px;
  --max: 1180px;
  --font-display: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  line-height: 1.5;
}

img {
  display: block;
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 30;
  transform: translateY(-140%);
  border-radius: 4px;
  background: var(--yellow);
  color: var(--ink);
  padding: 10px 14px;
  font-weight: 800;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 52px);
  background: rgba(14, 17, 16, 0.94);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  background: var(--yellow);
  border-radius: 9px;
  color: var(--ink);
  flex: 0 0 auto;
}

.brand-mark i {
  font-size: 2rem;
  line-height: 1;
}

.brand-copy {
  display: grid;
  gap: 0;
  text-transform: uppercase;
  line-height: 0.92;
}

.brand-copy span {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 1000;
  letter-spacing: 0;
}

.brand-copy strong {
  display: inline-block;
  width: max-content;
  margin-top: 5px;
  padding: 5px 12px 4px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
  line-height: 1;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  padding: 12px 0;
}

.nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  content: "";
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 1000;
  white-space: nowrap;
}

.header-phone i {
  width: 22px;
  font-size: 1.05rem;
  line-height: 1;
  text-align: center;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: transparent;
  color: var(--white);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 690px;
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.78) 35%, rgba(0, 0, 0, 0.18) 72%, rgba(0, 0, 0, 0.1) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0) 32%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 690px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 118px clamp(20px, 4vw, 44px) 82px;
}

.hero-content {
  width: min(620px, 100%);
}

.hero h1,
.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 1000;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 610px;
  font-size: clamp(4rem, 9vw, 7.4rem);
}

.hero h1::first-line {
  color: var(--white);
}

.hero h1 {
  color: var(--yellow);
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.hero p {
  max-width: 550px;
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.38rem);
  font-weight: 700;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  border: 0;
  border-radius: 6px;
  padding: 14px 22px;
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 1000;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button i {
  width: 22px;
  font-size: 1rem;
  line-height: 1;
  text-align: center;
}

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

.button-primary {
  background: var(--green-2);
  color: var(--white);
  box-shadow: 0 15px 30px rgba(31, 95, 40, 0.32);
}

.button-secondary,
.button-submit {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 15px 30px rgba(255, 196, 0, 0.26);
}

.trust-row {
  margin-top: 34px;
}

.trust-row div {
  display: inline-grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-width: 150px;
}

.trust-row i {
  color: #75c650;
  font-size: 2rem;
  line-height: 1;
  text-align: center;
}

.trust-row span {
  font-family: var(--font-display);
  font-weight: 1000;
  text-transform: uppercase;
  line-height: 1;
}

.service-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(26px, 5vw, 60px);
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px clamp(20px, 4vw, 44px);
  background: var(--white);
}

.strip-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.strip-item i {
  color: var(--green);
  font-size: 3rem;
  line-height: 1;
  text-align: center;
}

.strip-item h2 {
  margin: 0;
  color: var(--green);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 1000;
  line-height: 0.95;
  text-transform: uppercase;
}

.strip-item p {
  margin: 8px 0 0;
  color: var(--ink-2);
  font-weight: 650;
}

.strip-divider {
  width: 1px;
  background: var(--line);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 54px clamp(20px, 4vw, 44px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(30px, 1fr) auto minmax(30px, 1fr);
  align-items: center;
  gap: clamp(14px, 3vw, 26px);
  margin-bottom: 28px;
  text-align: center;
}

.section-heading span {
  height: 3px;
  background: var(--green);
}

.section-heading h2 {
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.section-heading p {
  margin: 4px 0 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 1000;
  text-transform: uppercase;
}

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

.service-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(31, 95, 40, 0.07), rgba(31, 95, 40, 0)),
    var(--white);
  padding: 22px 14px 20px;
  text-align: center;
  box-shadow: 0 12px 22px rgba(14, 17, 16, 0.05);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.service-card i {
  display: block;
  margin: 0 auto 14px;
  color: var(--green);
  font-size: 2.5rem;
  line-height: 1;
}

.service-card h3 {
  margin: 0;
  color: var(--green);
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 1000;
  line-height: 1;
  text-transform: uppercase;
}

.service-card p {
  margin: 10px 0 0;
  color: #2c332e;
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.35;
}

.service-card:hover,
.service-card:focus-within {
  border-color: var(--green);
  background: linear-gradient(180deg, var(--green-2), var(--green));
  box-shadow: 0 18px 34px rgba(31, 95, 40, 0.2);
  transform: translateY(-3px);
}

.service-card:hover i,
.service-card:focus-within i,
.service-card:hover h3,
.service-card:focus-within h3 {
  color: var(--yellow);
}

.service-card:hover p,
.service-card:focus-within p {
  color: var(--white);
}

.how-it-works,
.contact-section,
.site-footer {
  background:
    radial-gradient(circle at 16px 16px, rgba(255, 255, 255, 0.06) 1px, transparent 1.5px) 0 0 / 26px 26px,
    linear-gradient(135deg, #121512, #0a0c0b);
  color: var(--white);
}

.how-it-works {
  padding: 56px clamp(20px, 4vw, 44px) 62px;
}

.how-it-works > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.section-heading-dark span {
  background: var(--yellow);
}

.section-heading-dark h2 {
  color: var(--white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 3vw, 38px);
  text-align: center;
}

.steps article {
  position: relative;
  padding: 8px 12px 0;
}

.steps strong {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 1000;
}

.steps i {
  display: block;
  margin: 0 auto 12px;
  color: var(--white);
  font-size: 3rem;
  line-height: 1;
}

.steps h3 {
  margin: 0;
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.steps p {
  max-width: 190px;
  margin: 8px auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 650;
}

.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 245px;
  gap: 18px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.price-card,
.fee-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 32px rgba(14, 17, 16, 0.07);
}

.price-card {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: center;
  padding: 22px 12px;
  text-align: center;
}

.price-visual {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-height: 72px;
  margin-bottom: 14px;
  color: var(--green);
}

.price-visual i {
  font-size: 2.35rem;
  line-height: 1;
}

.load-meter {
  display: grid;
  grid-template-columns: repeat(4, 18px);
  gap: 4px;
}

.load-meter b {
  display: block;
  height: 10px;
  border: 1px solid rgba(31, 95, 40, 0.5);
  border-radius: 2px;
  background: rgba(31, 95, 40, 0.08);
}

.load-1 b:nth-child(-n + 1),
.load-2 b:nth-child(-n + 2),
.load-3 b:nth-child(-n + 3),
.load-4 b:nth-child(-n + 4) {
  background: var(--green);
}

.price-card > span {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.17rem;
  font-weight: 1000;
  line-height: 1.02;
  text-transform: uppercase;
}

.price-card strong {
  margin-top: 14px;
  color: var(--green);
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 1000;
  line-height: 1;
}

.fee-card {
  padding: 22px 20px;
}

.fee-card h3 {
  margin: 0 0 16px;
  color: var(--green);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 1000;
  line-height: 1.02;
  text-transform: uppercase;
}

.fee-card dl,
.fee-card dd {
  margin: 0;
}

.fee-card div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.fee-card dt {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 1000;
  text-transform: uppercase;
}

.fee-card dt i {
  color: var(--green);
  font-size: 1.1rem;
  text-align: center;
}

.fee-card dd {
  color: var(--green);
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 1000;
}

.match-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 26px 0 0;
  color: var(--ink);
  font-weight: 800;
  text-align: center;
}

.match-note span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--green);
  border-radius: 999px;
  color: var(--green);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 1000;
}

.match-note i {
  font-size: 1.05rem;
  line-height: 1;
}

.about-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  max-width: 1480px;
  margin: 0 auto;
  background: var(--paper);
}

.about-photo {
  min-height: 390px;
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 71% center;
}

.about-copy {
  align-self: center;
  padding: clamp(34px, 6vw, 72px);
}

.about-copy h2 {
  color: var(--green);
  font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.about-copy p {
  max-width: 650px;
  margin: 16px 0 0;
  color: var(--ink-2);
  font-size: 1.05rem;
  font-weight: 650;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.about-points div {
  display: grid;
  gap: 10px;
  align-content: start;
  color: var(--green);
}

.about-points i {
  font-size: 2.25rem;
  line-height: 1;
}

.about-points span {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 1000;
  line-height: 1.1;
  text-transform: uppercase;
}

.signature {
  color: var(--green) !important;
  font-style: italic;
}

.contact-section {
  padding: 56px clamp(20px, 4vw, 44px);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(28px, 6vw, 76px);
  max-width: var(--max);
  margin: 0 auto;
  align-items: start;
}

.contact-copy h2 {
  color: var(--white);
  font-size: clamp(2.3rem, 5vw, 4rem);
}

.contact-list {
  display: grid;
  gap: 16px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 800;
}

.contact-list i {
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
  text-align: center;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  color: var(--yellow);
}

.quote-form {
  display: grid;
  gap: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.quote-form label {
  display: grid;
  gap: 6px;
}

.quote-form label span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  padding: 14px 14px;
  outline: none;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 196, 0, 0.22);
}

.button-submit {
  width: 100%;
  margin-top: 2px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--yellow);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(20px, 4vw, 44px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  font-weight: 700;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .nav {
    order: 4;
    grid-column: 1 / -1;
  }

  .hero-media img {
    object-position: 62% center;
  }

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

  .pricing-layout {
    grid-template-columns: 1fr;
  }

  .price-grid {
    grid-template-columns: repeat(5, minmax(130px, 1fr));
    overflow-x: auto;
    padding-bottom: 8px;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
    min-height: 68px;
  }

  .brand-copy span {
    font-size: 2rem;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 7px;
  }

  .brand-mark i {
    font-size: 1.45rem;
  }

  .brand-copy strong {
    margin-top: 3px;
    padding: 3px 7px;
    font-size: 0.68rem;
    letter-spacing: 0.07em;
  }

  .menu-toggle {
    display: block;
  }

  .header-phone {
    display: none;
  }

  .nav {
    display: none;
    grid-column: 1 / -1;
    justify-content: start;
    flex-direction: column;
    gap: 4px;
    padding: 10px 0 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

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

  .nav a {
    padding: 10px 0;
  }

  .hero,
  .hero-inner {
    min-height: 650px;
  }

  .hero-inner {
    padding-top: 100px;
    align-items: end;
  }

  .hero-media img {
    object-position: 66% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.72) 48%, rgba(0, 0, 0, 0.2) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.08));
  }

  .hero h1 {
    font-size: clamp(3.25rem, 15vw, 5.3rem);
  }

  .button {
    width: 100%;
  }

  .trust-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .service-strip {
    grid-template-columns: 1fr;
  }

  .strip-divider {
    width: auto;
    height: 1px;
  }

  .service-grid,
  .steps,
  .about-points,
  .form-row {
    grid-template-columns: 1fr;
  }

  .steps article {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    grid-template-areas:
      "num icon"
      "num title"
      "num text";
    gap: 4px 14px;
    text-align: left;
  }

  .steps strong {
    grid-area: num;
    margin: 0;
  }

  .steps i {
    grid-area: icon;
    margin: 0;
    font-size: 2.25rem;
  }

  .steps h3 {
    grid-area: title;
  }

  .steps p {
    grid-area: text;
    max-width: none;
    margin: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading span {
    display: none;
  }

  .price-grid {
    grid-template-columns: 1fr 1fr;
    overflow: visible;
  }

  .about-band,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .about-photo {
    min-height: 330px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .price-grid {
    grid-template-columns: 1fr;
  }

  .strip-item {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .strip-item i {
    font-size: 2.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
