:root {
  --forest: #11352b;
  --forest-deep: #0b241d;
  --ink: #101715;
  --muted: #58645f;
  --paper: #f6f7f2;
  --lime: #b8e052;
  --lime-dark: #8aac35;
  --soft: #dde3dd;
  --white: #ffffff;
  --danger: #a43c31;
  --success: #1f6f47;
  --shadow-sm: 0 12px 34px rgba(16, 23, 21, 0.08);
  --shadow-lg: 0 28px 70px rgba(16, 23, 21, 0.16);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --container: 1180px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

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

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

:focus-visible {
  outline: 3px solid #5d7f13;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 10px;
  z-index: 1000;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--lime);
  color: var(--ink);
  padding: 10px 16px;
  font-weight: 800;
  transition: transform 180ms ease;
}

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

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

.section {
  padding: 104px 0;
}

.section-sm {
  padding: 72px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  background: var(--lime-dark);
  content: "";
}

.eyebrow-light {
  color: var(--lime);
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(3.5rem, 6.5vw, 6.45rem);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.55rem, 4.5vw, 4.35rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
  line-height: 1.25;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.7;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 48px;
}

.section-heading > :last-child {
  margin-bottom: 4px;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 11px;
  padding: 13px 22px;
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.btn-primary {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(184, 224, 82, 0.2);
}

.btn-primary:hover {
  background: #c5eb63;
  box-shadow: 0 16px 34px rgba(184, 224, 82, 0.26);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.13);
}

.btn-dark {
  background: var(--forest);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--forest-deep);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  font-size: 0.9rem;
  font-weight: 800;
}

.btn-link svg {
  transition: transform 180ms ease;
}

.btn-link:hover svg {
  transform: translateX(4px);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(246, 247, 242, 0.92);
  backdrop-filter: blur(14px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(17, 53, 43, 0.1);
  box-shadow: 0 9px 32px rgba(16, 23, 21, 0.06);
}

.header-inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  font-size: 0.96rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.brand-mark {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
}

.brand-name span {
  display: block;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.desktop-nav > a:not(.btn),
.header-phone {
  position: relative;
  font-size: 0.89rem;
  font-weight: 750;
}

.desktop-nav > a:not(.btn)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--lime-dark);
  content: "";
  transition: transform 180ms ease;
}

.desktop-nav > a[aria-current="page"]::after,
.desktop-nav > a:not(.btn):hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-phone {
  color: var(--forest);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 53, 43, 0.14);
  border-radius: 10px;
  background: var(--white);
  color: var(--forest);
  cursor: pointer;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 154px 0 70px;
  overflow: hidden;
  background: var(--forest-deep);
  color: var(--white);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(11, 36, 29, 0.98) 0%, rgba(11, 36, 29, 0.9) 44%, rgba(11, 36, 29, 0.28) 72%, rgba(11, 36, 29, 0.18) 100%);
  content: "";
}

.hero-image {
  position: absolute;
  inset: 0 0 0 44%;
  width: 56%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  filter: saturate(0.82) contrast(1.02);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(330px, 0.38fr);
  align-items: end;
  gap: 72px;
}

.hero-copy {
  padding-top: 24px;
}

.hero h1 {
  max-width: 800px;
}

.hero .lead {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.75);
}

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

.availability {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.availability-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(184, 224, 82, 0.12);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.hero-proof li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.86rem;
  font-weight: 650;
}

.hero-proof svg {
  color: var(--lime);
}

.hero-card {
  margin-bottom: -12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-md);
  background: rgba(246, 247, 242, 0.95);
  box-shadow: var(--shadow-lg);
  color: var(--ink);
  overflow: hidden;
}

.hero-card-top {
  padding: 23px 24px 18px;
  background: var(--lime);
}

.hero-card-top span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-card-top strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.15;
}

.hero-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  padding: 22px 24px 24px;
}

.hero-form .field-wide,
.hero-form .form-message,
.hero-form button {
  grid-column: 1 / -1;
}

.trust-strip {
  position: relative;
  z-index: 3;
  border-bottom: 1px solid rgba(17, 53, 43, 0.11);
  background: var(--white);
}

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

.trust-item {
  display: flex;
  min-height: 104px;
  align-items: center;
  gap: 13px;
  border-right: 1px solid rgba(17, 53, 43, 0.11);
  padding: 22px 26px;
  color: var(--forest);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.3;
}

.trust-item:first-child {
  border-left: 1px solid rgba(17, 53, 43, 0.11);
}

.trust-icon,
.service-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 11px;
  background: rgba(184, 224, 82, 0.22);
  color: var(--forest);
}

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

.service-card {
  position: relative;
  min-height: 268px;
  border: 1px solid rgba(17, 53, 43, 0.12);
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 28px;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-card::after {
  position: absolute;
  right: -56px;
  bottom: -70px;
  width: 150px;
  height: 150px;
  border: 22px solid rgba(184, 224, 82, 0.12);
  border-radius: 50%;
  content: "";
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(17, 53, 43, 0.28);
  box-shadow: var(--shadow-sm);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
}

.service-card p {
  max-width: 33ch;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.93rem;
}

.service-card .btn-link {
  position: relative;
  z-index: 1;
}

.approach {
  background: var(--white);
}

.approach-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: stretch;
  gap: 76px;
}

.approach-media {
  position: relative;
  min-height: 610px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--soft);
}

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

.media-note {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 14px;
  background: rgba(11, 36, 29, 0.92);
  padding: 17px 19px;
  color: var(--white);
  backdrop-filter: blur(10px);
}

.media-note svg {
  flex: 0 0 auto;
  color: var(--lime);
}

.media-note p {
  margin: 0;
  font-size: 0.87rem;
  line-height: 1.45;
}

.approach-copy {
  align-self: center;
}

.approach-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 30px;
  margin-top: 36px;
}

.approach-item {
  border-top: 1px solid rgba(17, 53, 43, 0.15);
  padding-top: 18px;
}

.approach-item span {
  display: inline-flex;
  margin-bottom: 11px;
  color: var(--lime-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.approach-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.process {
  background: var(--forest);
  color: var(--white);
}

.process .section-heading .lead {
  color: rgba(255, 255, 255, 0.68);
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.process-grid::before {
  position: absolute;
  top: 34px;
  right: 16.5%;
  left: 16.5%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  content: "";
}

.process-step {
  position: relative;
  z-index: 1;
}

.step-number {
  display: grid;
  width: 68px;
  height: 68px;
  margin-bottom: 25px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: var(--forest);
  color: var(--lime);
  font-family: var(--serif);
  font-size: 1.55rem;
}

.process-step p {
  max-width: 34ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1.35fr);
  gap: 74px;
}

.faq-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-list {
  border-top: 1px solid rgba(17, 53, 43, 0.16);
}

.faq-item {
  border-bottom: 1px solid rgba(17, 53, 43, 0.16);
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  background: transparent;
  padding: 20px 0;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  font-weight: 800;
}

.faq-question span:last-child {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(184, 224, 82, 0.25);
  color: var(--forest);
  transition: transform 220ms ease, background-color 220ms ease;
}

.faq-question[aria-expanded="true"] span:last-child {
  transform: rotate(45deg);
  background: var(--lime);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 260ms ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  max-width: 70ch;
  margin: 0;
  padding: 0 46px 24px 0;
  color: var(--muted);
}

.faq-question[aria-expanded="true"] + .faq-answer {
  grid-template-rows: 1fr;
}

.cta-panel {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--forest-deep);
  color: var(--white);
  overflow: hidden;
}

.cta-panel::after {
  position: absolute;
  right: -130px;
  bottom: -200px;
  width: 500px;
  height: 500px;
  border: 70px solid rgba(184, 224, 82, 0.08);
  border-radius: 50%;
  content: "";
}

.cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.62fr);
  gap: 70px;
  padding: 70px;
}

.cta-copy h2 {
  max-width: 690px;
}

.cta-copy .lead {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.7);
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
}

.area-list li {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 7px 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.79rem;
  font-weight: 700;
}

.cta-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  font-weight: 700;
}

.cta-form,
.contact-form {
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--ink);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}

.cta-form h3,
.contact-form h2 {
  margin-bottom: 8px;
}

.form-intro {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.88rem;
}

.field {
  min-width: 0;
}

.field label,
.fieldset-label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 0.77rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 49px;
  border: 1px solid #cbd3cd;
  border-radius: 9px;
  background: #fbfcf9;
  color: var(--ink);
  padding: 11px 13px;
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

.field textarea {
  min-height: 118px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--forest);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(184, 224, 82, 0.35);
}

.field [aria-invalid="true"] {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(164, 60, 49, 0.1);
}

.field-error {
  min-height: 18px;
  margin: 5px 0 0;
  color: var(--danger);
  font-size: 0.74rem;
  line-height: 1.35;
}

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

.form-grid .field-wide,
.form-grid .form-message,
.form-grid .form-actions {
  grid-column: 1 / -1;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.radio-option {
  position: relative;
}

.radio-option input {
  position: absolute;
  opacity: 0;
}

.radio-option label {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border: 1px solid #cbd3cd;
  border-radius: 999px;
  padding: 9px 14px;
  cursor: pointer;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 750;
}

.radio-option input:checked + label {
  border-color: var(--forest);
  background: rgba(184, 224, 82, 0.25);
  color: var(--forest);
}

.radio-option input:focus-visible + label {
  outline: 3px solid #5d7f13;
  outline-offset: 3px;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.45;
}

.form-message {
  display: none;
  border-radius: 9px;
  padding: 12px 14px;
  font-size: 0.82rem;
  font-weight: 650;
}

.form-message.is-visible {
  display: block;
}

.form-message.is-success {
  background: #e4f3e8;
  color: var(--success);
}

.form-message.is-error {
  background: #f7e8e5;
  color: var(--danger);
}

.form-message.is-info {
  background: #edf0e8;
  color: var(--forest);
}

.site-footer {
  margin-top: 104px;
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.75fr 0.75fr 1fr;
  gap: 54px;
  padding: 70px 0 58px;
}

.footer-brand .brand {
  margin-bottom: 22px;
}

.footer-brand .brand-name span,
.footer-copy,
.footer-links a,
.footer-contact p,
.footer-contact a {
  color: rgba(255, 255, 255, 0.62);
}

.footer-copy {
  max-width: 40ch;
  font-size: 0.86rem;
}

.footer-title {
  margin-bottom: 17px;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 11px;
}

.footer-links a,
.footer-contact p,
.footer-contact a {
  margin: 0;
  font-size: 0.85rem;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--lime);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0 92px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.75rem;
}

.page-hero {
  padding: 180px 0 84px;
  background: var(--forest-deep);
  color: var(--white);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 0.4fr);
  align-items: end;
  gap: 70px;
}

.page-hero h1 {
  max-width: 850px;
  margin-bottom: 0;
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.7);
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.service-detail {
  border: 1px solid rgba(17, 53, 43, 0.12);
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 34px;
}

.service-detail-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 23px;
}

.service-detail-head .service-icon {
  margin: 0;
}

.service-detail h2 {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.35rem;
  font-weight: 850;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.detail-block {
  border-top: 1px solid rgba(17, 53, 43, 0.12);
  padding: 17px 0;
}

.detail-block strong {
  display: block;
  margin-bottom: 6px;
  color: var(--forest);
  font-size: 0.75rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.detail-block p {
  margin: 0;
  color: var(--muted);
  font-size: 0.89rem;
}

.pest-id {
  background: var(--soft);
}

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

.id-card {
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.66);
  padding: 24px;
}

.id-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--lime-dark);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.id-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
  gap: 70px;
}

.contact-sidebar {
  align-self: start;
}

.contact-sidebar h2 {
  font-size: clamp(2.2rem, 3.5vw, 3.35rem);
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(17, 53, 43, 0.12);
  border-radius: var(--radius-sm);
  background: var(--white);
  padding: 16px;
}

.contact-card svg {
  flex: 0 0 auto;
  color: var(--forest);
}

.contact-card span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-card strong,
.contact-card a {
  display: block;
  margin-top: 2px;
  font-size: 0.91rem;
}

.expectation-note {
  margin-top: 20px;
  border-left: 3px solid var(--lime-dark);
  background: rgba(221, 227, 221, 0.55);
  padding: 16px 18px;
  color: var(--muted);
  font-size: 0.84rem;
}

.privacy-content {
  max-width: 820px;
}

.privacy-content h2 {
  margin-top: 54px;
  font-family: var(--sans);
  font-size: 1.6rem;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.privacy-content p,
.privacy-content li {
  color: var(--muted);
}

.mobile-conversion-bar {
  display: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.services-grid [data-reveal]:nth-child(2),
.process-grid [data-reveal]:nth-child(2) {
  transition-delay: 80ms;
}

.services-grid [data-reveal]:nth-child(3),
.process-grid [data-reveal]:nth-child(3) {
  transition-delay: 160ms;
}

.services-grid [data-reveal]:nth-child(4) {
  transition-delay: 80ms;
}

.services-grid [data-reveal]:nth-child(5) {
  transition-delay: 160ms;
}

.services-grid [data-reveal]:nth-child(6) {
  transition-delay: 240ms;
}

@media (max-width: 1080px) {
  .desktop-nav,
  .header-actions .header-phone {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-nav {
    position: fixed;
    inset: 84px 0 0;
    z-index: 99;
    display: grid;
    align-content: start;
    gap: 4px;
    transform: translateX(100%);
    background: var(--paper);
    padding: 28px 20px 120px;
    opacity: 0;
    visibility: hidden;
    transition: transform 240ms ease, opacity 180ms ease, visibility 180ms ease;
  }

  .mobile-nav.is-open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .mobile-nav a:not(.btn) {
    border-bottom: 1px solid rgba(17, 53, 43, 0.11);
    padding: 18px 4px;
    font-size: 1.15rem;
    font-weight: 800;
  }

  .mobile-nav .btn {
    margin-top: 18px;
  }

  .hero-grid,
  .page-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.45fr);
    gap: 44px;
  }

  .hero-image {
    left: 36%;
    width: 64%;
  }

  .approach-grid {
    gap: 48px;
  }

  .cta-grid {
    gap: 44px;
    padding: 54px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .section {
    padding: 82px 0;
  }

  .section-heading,
  .hero-grid,
  .page-hero-grid,
  .approach-grid,
  .faq-grid,
  .cta-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 8px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 52px;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(11, 36, 29, 0.98) 0%, rgba(11, 36, 29, 0.88) 56%, rgba(11, 36, 29, 0.4) 100%);
  }

  .hero-image {
    inset: 0;
    width: 100%;
  }

  .hero-card {
    max-width: 560px;
    margin: 0;
  }

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

  .trust-item:nth-child(2) {
    border-right: 1px solid rgba(17, 53, 43, 0.11);
  }

  .services-grid,
  .id-grid {
    grid-template-columns: 1fr 1fr;
  }

  .approach-media {
    min-height: 520px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .process-grid::before {
    top: 34px;
    right: auto;
    bottom: 34px;
    left: 34px;
    width: 1px;
    height: auto;
  }

  .process-step {
    min-height: 80px;
    padding-left: 92px;
  }

  .step-number {
    position: absolute;
    top: 0;
    left: 0;
  }

  .faq-intro {
    position: static;
  }

  .cta-grid {
    padding: 50px;
  }

  .cta-form {
    max-width: 600px;
  }

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

  .contact-layout {
    gap: 40px;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 80px;
  }

  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 68px 0;
  }

  .section-sm {
    padding: 52px 0;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  h2 {
    font-size: clamp(2.3rem, 11vw, 3.25rem);
  }

  .header-inner {
    min-height: 74px;
  }

  .brand-mark {
    width: 35px;
    height: 35px;
    flex-basis: 35px;
  }

  .header-actions .btn {
    display: none;
  }

  .mobile-nav {
    top: 74px;
  }

  .hero {
    padding: 122px 0 38px;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-copy {
    padding-top: 0;
  }

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

  .hero-proof {
    display: grid;
    gap: 12px;
  }

  .hero-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .hero-form > * {
    grid-column: 1 !important;
  }

  .trust-grid,
  .services-grid,
  .id-grid,
  .approach-list,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:first-child {
    min-height: 76px;
    border-right: 1px solid rgba(17, 53, 43, 0.11);
    border-bottom: 1px solid rgba(17, 53, 43, 0.11);
    border-left: 1px solid rgba(17, 53, 43, 0.11);
    padding: 16px 18px;
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .service-card {
    min-height: 248px;
  }

  .approach-media {
    min-height: 430px;
  }

  .approach-media img {
    object-position: 58% center;
  }

  .process-step {
    padding-left: 82px;
  }

  .page-hero {
    padding: 132px 0 64px;
  }

  .page-hero-grid {
    gap: 26px;
  }

  .cta-panel {
    border-radius: var(--radius-md);
  }

  .cta-grid {
    gap: 34px;
    padding: 32px 20px;
  }

  .cta-contact {
    display: grid;
    gap: 8px;
  }

  .cta-form,
  .contact-form {
    padding: 22px 18px;
  }

  .form-grid > * {
    grid-column: 1 !important;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .service-detail {
    padding: 26px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 28px;
  }

  .footer-brand,
  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 28px;
  }

  .mobile-conversion-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 110;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 8px;
    border-top: 1px solid rgba(17, 53, 43, 0.14);
    background: rgba(246, 247, 242, 0.96);
    padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
    backdrop-filter: blur(12px);
  }

  .mobile-conversion-bar .btn {
    min-height: 52px;
    padding-inline: 12px;
    font-size: 0.84rem;
  }
}

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

  .brand-name {
    font-size: 0.86rem;
  }

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

  .hero-form,
  .cta-form,
  .contact-form {
    padding: 18px 15px;
  }

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

  .footer-links,
  .footer-brand,
  .footer-contact {
    grid-column: 1;
  }
}

@media (min-width: 1600px) {
  :root {
    --container: 1280px;
  }

  .hero {
    min-height: 800px;
  }
}

@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;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
