:root {
  --ink: #111827;
  --muted: #5b6472;
  --paper: #f7f5ef;
  --surface: #ffffff;
  --line: #ddd7ca;
  --green: #79b842;
  --green-dark: #315f27;
  --coral: #ef6f4d;
  --blue: #2f6f9f;
  --shadow: 0 20px 55px rgba(17, 24, 39, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 64px);
  background: rgba(247, 245, 239, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
}

.brand-logo {
  width: 118px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--surface);
  color: var(--ink);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle i {
  position: relative;
  display: block;
  width: 22px;
  height: 16px;
}

.nav-toggle i::before,
.nav-toggle i::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.nav-toggle i::before {
  top: 0;
  box-shadow: 0 7px 0 currentColor;
}

.nav-toggle i::after {
  bottom: 0;
}

.section {
  padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 64px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.72fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
  min-height: calc(100vh - 70px);
  padding-top: clamp(42px, 7vw, 86px);
  padding-bottom: clamp(34px, 6vw, 76px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: 5.8rem;
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 3.8rem;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
  line-height: 1.2;
}

.hero-text {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-content,
.hero-visual,
.section-heading,
.service-card,
.work-card,
.steps article,
.price-card,
.contact-copy,
.contact-form {
  min-width: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.button i,
.service-card i,
.contact-list i {
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border: 2px solid currentColor;
  border-radius: 6px;
}

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

.button-primary {
  background: var(--ink);
  color: var(--surface);
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.2);
}

.button-secondary {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line);
}

.hero-visual {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.browser-bar {
  display: flex;
  gap: 7px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--coral);
}

.browser-bar span:nth-child(2) {
  background: #f2c14e;
}

.browser-bar span:nth-child(3) {
  background: var(--green);
}

.mockup-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  padding: 16px;
}

.mockup-panel {
  min-height: 154px;
  overflow: hidden;
  background: #eef1ed;
  border-radius: 8px;
}

.mockup-panel-wide {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  justify-content: flex-end;
  grid-row: span 2;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.34), rgba(49, 95, 39, 0.2)),
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.75) 0 10%, transparent 11%),
    radial-gradient(circle at 78% 18%, rgba(239, 111, 77, 0.85) 0 14%, transparent 15%),
    linear-gradient(135deg, #315f27, #2f6f9f 48%, #ef6f4d);
}

.mockup-line {
  display: block;
  width: 82%;
  height: 13px;
  margin-top: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
}

.mockup-line.short {
  width: 46%;
  height: 34px;
}

.mockup-button {
  display: block;
  width: 110px;
  height: 34px;
  margin-top: 18px;
  border-radius: 8px;
  background: var(--green);
}

.mockup-panel img {
  height: 100%;
  object-fit: cover;
}

.stat-panel {
  display: grid;
  place-items: center;
  align-content: center;
  padding: 18px;
  background: var(--ink);
  color: var(--surface);
  text-align: center;
}

.stat-panel strong {
  font-size: 3rem;
  line-height: 1;
}

.stat-panel span {
  color: #d9e5d3;
  font-weight: 700;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.trust-band div {
  padding: 24px clamp(18px, 5vw, 64px);
  background: var(--surface);
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band span {
  color: var(--muted);
}

.section-heading {
  display: grid;
  max-width: 980px;
  margin-bottom: 34px;
  gap: 0;
}

.service-grid,
.work-grid,
.steps,
.pricing-grid {
  display: grid;
  gap: 18px;
}

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

.service-card,
.steps article,
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card {
  padding: 22px;
}

.service-card svg {
  width: 30px;
  height: 30px;
  margin-bottom: 18px;
  color: var(--blue);
}

.service-card p,
.steps p,
.work-card p,
.price-card li,
.contact-copy p,
.form-note {
  color: var(--muted);
}

.work-section {
  background: #e8eee7;
}

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

.work-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid #cfd8cd;
  border-radius: 8px;
}

.work-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #eef1ed;
}

.work-card div {
  padding: 20px;
}

.work-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.steps {
  grid-template-columns: repeat(4, 1fr);
  counter-reset: step;
}

.steps article {
  padding: 22px;
}

.steps span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--coral);
  font-weight: 800;
}

.pricing-section {
  background: var(--ink);
  color: var(--surface);
}

.pricing-section .eyebrow {
  color: #a5df85;
}

.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 390px));
}

.price-card {
  position: relative;
  display: flex;
  min-height: 420px;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  color: var(--ink);
}

.price-card.featured {
  border-color: var(--green);
  box-shadow: 0 0 0 2px rgba(121, 184, 66, 0.2);
}

.popular {
  margin-bottom: 14px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.price {
  margin-bottom: 22px;
  font-size: 2.5rem;
  font-weight: 800;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding-left: 18px;
}

.price-card .button {
  margin-top: auto;
  width: 100%;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.85fr minmax(320px, 520px);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
}

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

.contact-list a {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-list svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--green-dark);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  outline: 3px solid rgba(121, 184, 66, 0.22);
}

.form-note {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--ink);
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 1200px) {
  h1 {
    font-size: 4.8rem;
  }

  h2 {
    font-size: 3.2rem;
  }
}

@media (max-width: 980px) {
  .hero,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    max-width: 640px;
  }

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

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

@media (max-width: 720px) {
  .site-header {
    align-items: center;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

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

  h1 {
    font-size: 3.2rem;
    line-height: 1;
  }

  h2 {
    font-size: 2.25rem;
    line-height: 1.05;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-visual {
    margin-inline: -2px;
  }

  .mockup-grid,
  .service-grid,
  .steps,
  .pricing-grid,
  .trust-band {
    grid-template-columns: 1fr;
  }

  .mockup-panel-wide {
    min-height: 220px;
    grid-row: auto;
  }

  .mockup-panel {
    min-height: 132px;
  }

  .trust-band div {
    padding: 20px 18px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.95rem;
  }

  .section {
    padding-inline: 16px;
  }

  .contact-form,
  .price-card,
  .service-card,
  .steps article {
    padding: 18px;
  }
}
