:root {
  --ink: #12342a;
  --ink-2: #244840;
  --green: #5aa032;
  --green-2: #7fbd3d;
  --green-dark: #0b332a;
  --muted: #64736e;
  --line: #e2e8e4;
  --paper: #ffffff;
  --soft: #f5f8f2;
  --shadow: 0 18px 45px rgba(21, 53, 43, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

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

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

.container {
  width: min(100% - 64px, 1200px);
  margin-inline: auto;
}

/* ── Topbar ── */
.topbar {
  color: #ffffff;
  background: linear-gradient(90deg, #0b3229, #073127);
  font-size: 12px;
}

.topbar__inner,
.topbar__group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.topbar__inner {
  min-height: 36px;
}

.topbar a,
.topbar span {
  position: relative;
  opacity: 0.92;
}

.topbar a::before,
.topbar span::before {
  margin-right: 7px;
  color: var(--green-2);
}

.topbar a:first-child::before { content: "✉"; }
.topbar a:last-child::before  { content: "☎"; }
.topbar span::before           { content: "✓"; }

/* ── Navbar ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(18, 52, 42, 0.07);
  box-shadow: 0 4px 24px rgba(21, 53, 43, 0.07);
  backdrop-filter: blur(20px);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 140px;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand__logo {
  height: 130px;
  width: auto;
  display: block;
}

.brand__logo--footer {
  height: 130px;
  background: #ffffff;
  border-radius: 10px;
  padding: 8px 18px;
}

.section-copy h2 span,
.hero h1 span,
.cta h2 span {
  color: var(--green);
  font-style: normal;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #1e2d29;
  font-size: 14px;
  font-weight: 500;
}

.nav-menu > a:not(.btn) {
  position: relative;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 160ms ease, color 160ms ease;
}

.nav-menu > a:not(.btn):hover {
  background: var(--soft);
  color: var(--green);
}

.nav-caret {
  margin-left: 3px;
  font-size: 11px;
}

.nav-menu > a.is-active {
  color: var(--green);
  font-weight: 600;
}

.nav-cta {
  margin-left: 12px;
}

.nav-toggle,
.nav-toggle-btn {
  display: none;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 26px;
  border: 1.5px solid transparent;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  white-space: nowrap;
}

.btn::after {
  content: "→";
  font-weight: 900;
}

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

.btn--primary {
  color: #ffffff;
  background: linear-gradient(170deg, #67ad38 0%, #4a8e28 100%);
  box-shadow: 0 8px 24px rgba(82, 151, 45, 0.32);
}

.btn--primary:hover {
  box-shadow: 0 14px 32px rgba(82, 151, 45, 0.38);
}

.btn--secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(18, 52, 42, 0.2);
  box-shadow: 0 4px 16px rgba(18, 52, 42, 0.08);
}

.btn--secondary::after {
  display: none;
}

.leaf {
  color: var(--green);
  font-size: 15px;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  background: #edf1eb;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg,
      rgba(255,255,255,0.98) 0%,
      rgba(255,255,255,0.93) 30%,
      rgba(255,255,255,0.55) 52%,
      rgba(255,255,255,0.0)  68%),
    linear-gradient(180deg, rgba(255,255,255,0) 65%, rgba(238,243,236,0.6) 100%);
  content: "";
}

.hero__image {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero-house.jpg");
  background-position: right center;
  background-size: cover;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 580px;
}

.hero__copy {
  width: min(100%, 520px);
  padding-block: 80px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.07;
  letter-spacing: -0.5px;
}

.hero p {
  width: min(100%, 400px);
  margin: 22px 0 32px;
  color: #2b4038;
  font-size: 15px;
  line-height: 1.7;
}

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

/* ── Feature bar ── */
.feature-bar {
  position: relative;
  z-index: 4;
  margin-top: -56px;
}

.feature-bar .container {
  width: min(100% - 64px, 1200px);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  min-height: 96px;
  color: #ffffff;
  background: linear-gradient(135deg, #0a382e 0%, #082c25 100%);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background 180ms ease;
}

.feature-item:last-child {
  border-right: 0;
}

.feature-item:hover {
  background: rgba(255,255,255,0.04);
}

.feature-icon,
.card-icon,
.stat span,
.cta__icon {
  color: var(--green-2);
  font-size: 36px;
  line-height: 1;
  flex-shrink: 0;
}

.feature-item h2 {
  margin: 0 0 3px;
  font-size: 14px;
  line-height: 1.2;
}

.feature-item p {
  margin: 0;
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  line-height: 1.45;
}

/* ── Sections ── */
.section {
  padding-block: 88px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.section-copy h2,
.benefits h2,
.cta h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.3px;
}

.section-copy p {
  margin: 20px 0 30px;
  color: #3d5049;
  font-size: 15px;
  line-height: 1.75;
}

/* ── Services ── */
.services__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}

.services__header h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.3px;
}

.services__header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.services__header-right p {
  margin: 0;
  color: #3d5049;
  font-size: 15px;
  line-height: 1.75;
}

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

.service-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(18, 52, 42, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(18, 52, 42, 0.13);
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-card__body {
  position: relative;
  padding: 38px 22px 24px;
}

.service-card__body .card-icon {
  position: absolute;
  top: -26px;
  left: 22px;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(18, 52, 42, 0.14);
  font-size: 24px;
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.25;
}

.service-card p {
  min-height: 60px;
  margin: 0 0 20px;
  color: #47574f;
  font-size: 14px;
  line-height: 1.6;
}

.service-card a {
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.service-card a::after {
  content: " →";
}

/* ── Benefits ── */
.benefits {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #ffffff;
  padding-block: 72px;
  background: var(--green-dark);
}

.benefits__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("assets/benefits-bg.jpg");
  background-position: center;
  background-size: cover;
  opacity: 0.35;
}

.benefits::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(105deg, rgba(8,45,37,0.97) 0%, rgba(8,45,37,0.88) 100%);
  content: "";
}

.benefits__grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 48px;
  align-items: center;
}

.benefits h2 {
  max-width: 440px;
  font-size: clamp(26px, 2.4vw, 32px);
  line-height: 1.2;
}

.benefits > .container > div:first-child p {
  margin: 16px 0 0;
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  line-height: 1.7;
}

.stat {
  text-align: center;
  padding: 24px 12px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
}

.stat span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 10px;
  background: rgba(127, 189, 61, 0.15);
  border-radius: 50%;
  font-size: 22px;
}

.stat strong {
  display: block;
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
}

.stat p {
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
}

/* ── About ── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 24px 60px rgba(18,52,42,0.15);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 32px;
  padding: 0;
  color: #344540;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

.check-list li::before {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: rgba(90, 160, 50, 0.12);
  border-radius: 50%;
  color: var(--green);
  content: "✓";
  font-size: 12px;
  font-weight: 900;
}

/* ── CTA ── */
.cta {
  background: linear-gradient(100deg, #edf5e6 0%, #f7faf4 50%, #ffffff 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.anchor-target {
  display: block;
  height: 0;
  scroll-margin-top: 120px;
}

.cta__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr auto;
  gap: 48px;
  align-items: center;
  padding-block: 52px;
}

.cta__title {
  display: flex;
  align-items: center;
  gap: 22px;
}

.cta__icon {
  display: grid;
  flex: 0 0 56px;
  place-items: center;
  width: 56px;
  height: 56px;
  background: rgba(90, 160, 50, 0.1);
  border: 2px solid var(--green);
  border-radius: 50%;
  font-size: 28px;
}

.cta h2 {
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.2;
}

.cta p {
  margin: 0;
  color: #3d5049;
  font-size: 15px;
  line-height: 1.6;
}

/* ── Footer ── */
.footer {
  color: #ffffff;
  background: #082d25;
  padding-block: 52px 42px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 64px;
}

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

.footer > .container > div:first-child > p {
  margin: 0;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  max-width: 260px;
  line-height: 1.7;
}

.footer h3 {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.footer a:not(.brand) {
  display: block;
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  line-height: 2;
  transition: color 140ms ease;
}

.footer a:not(.brand):hover {
  color: var(--green-2);
}

.footer span {
  display: block;
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  line-height: 2;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.socials a {
  display: grid !important;
  place-items: center;
  width: 34px !important;
  height: 34px;
  color: var(--ink) !important;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  font-size: 12px !important;
  font-weight: 900;
  transition: background 160ms ease, transform 160ms ease;
}

.socials a:hover {
  background: var(--green-2);
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* ── Responsive: tablet ── */
@media (max-width: 1100px) {
  .container {
    width: min(100% - 48px, 960px);
  }

  .feature-bar .container {
    width: min(100% - 48px, 960px);
  }

  .services__header {
    gap: 36px;
  }

  .benefits__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .benefits__grid > div:first-child {
    grid-column: 1 / -1;
  }

  .about__grid {
    gap: 52px;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 44px;
  }
}

@media (max-width: 900px) {
  .navbar__inner {
    min-height: 90px;
  }

  .brand__logo {
    height: 74px;
  }

  .brand__logo--footer {
    height: 74px;
  }

  .nav-toggle-btn {
    position: relative;
    z-index: 31;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 7px;
    cursor: pointer;
  }

  .nav-toggle-btn span,
  .nav-toggle-btn::before,
  .nav-toggle-btn::after {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
    content: "";
    transition: 180ms ease;
  }

  .nav-toggle-btn::before {
    position: absolute;
    transform: translateY(-7px);
  }

  .nav-toggle-btn::after {
    position: absolute;
    transform: translateY(7px);
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    right: 24px;
    left: 24px;
    display: grid;
    gap: 0;
    overflow: hidden;
    max-height: 0;
    padding: 0 18px;
    background: #ffffff;
    border: 1px solid transparent;
    border-radius: 10px;
    box-shadow: 0 22px 52px rgba(18, 52, 42, 0.14);
    transition: max-height 220ms ease, padding 220ms ease, border-color 220ms ease;
  }

  .nav-menu a {
    padding: 14px 8px;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
  }

  .nav-menu .nav-cta {
    margin-block: 14px 6px;
    border-bottom: 0;
  }

  .nav-toggle:checked ~ .nav-menu {
    max-height: 540px;
    padding: 8px 18px 18px;
    border-color: var(--line);
  }

  .nav-toggle:checked + .nav-toggle-btn span {
    opacity: 0;
  }

  .nav-toggle:checked + .nav-toggle-btn::before {
    transform: rotate(45deg);
  }

  .nav-toggle:checked + .nav-toggle-btn::after {
    transform: rotate(-45deg);
  }

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

  .feature-item:nth-child(2) {
    border-right: 0;
  }

  .feature-item:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .services__header,
  .about__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-copy {
    max-width: 600px;
  }

  .cta__inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-block: 36px;
  }
}

/* ── Responsive: mobile ── */
@media (max-width: 720px) {
  body {
    font-size: 15px;
  }

  .container,
  .feature-bar .container {
    width: min(100% - 32px, 600px);
  }

  .topbar__inner {
    justify-content: center;
    min-height: auto;
    padding-block: 7px;
  }

  .topbar {
    font-size: 11px;
  }

  .topbar__trust {
    display: none;
  }

  .topbar__group {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 16px;
  }

  .navbar__inner {
    min-height: 68px;
  }

  .brand__logo {
    height: 56px;
  }

  .brand__logo--footer {
    height: 56px;
  }

  .hero {
    min-height: 520px;
  }

  .hero::before {
    background: linear-gradient(
      160deg,
      rgba(8, 44, 34, 0.62) 0%,
      rgba(8, 44, 34, 0.80) 100%
    );
  }

  .hero__image {
    background-position: center 20%;
  }

  .hero__content {
    min-height: 520px;
    padding-top: 0;
    align-items: center;
    justify-content: center;
  }

  .hero__copy {
    width: 100%;
    text-align: center;
    padding-block: 52px;
  }

  .hero h1 {
    color: #ffffff;
    font-size: 36px;
    letter-spacing: -0.3px;
  }

  .hero p {
    width: 100%;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    margin: 18px 0 32px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero .btn--secondary {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
  }

  .feature-bar {
    margin-top: 0;
    background: #082c25;
  }

  .feature-bar .container {
    width: 100%;
    max-width: none;
    margin-inline: 0;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    border-radius: 0;
    box-shadow: none;
    width: 100%;
  }

  .feature-item {
    padding: 20px 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

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

  .section {
    padding-block: 60px;
  }

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

  .service-card p {
    min-height: 0;
  }

  .benefits {
    padding-block: 56px;
  }

  .benefits__grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .about img {
    min-height: 260px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 24px, 440px);
  }

  .feature-bar .container {
    width: 100%;
    max-width: none;
    margin-inline: 0;
  }

  .hero h1 {
    font-size: 32px;
  }

  .section-copy h2,
  .benefits h2,
  .cta h2 {
    font-size: 27px;
  }

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

  .stat {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
  }

  .stat span {
    margin: 0;
    flex-shrink: 0;
  }
}

/* ── Page hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--soft) 0%, #e8f0e5 100%);
  border-bottom: 1px solid var(--line);
  padding-block: 72px 64px;
}

.page-hero__inner {
  max-width: 680px;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.page-hero p {
  margin: 18px 0 0;
  color: #3d5049;
  font-size: 16px;
  line-height: 1.7;
}

/* ── Section header (centered) ── */
.section-header {
  max-width: 600px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-header p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
}

/* ── Service detail (diensten page) ── */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.service-detail--reverse {
  direction: rtl;
}

.service-detail--reverse > * {
  direction: ltr;
}

.service-detail__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 20px 56px rgba(18, 52, 42, 0.13);
}

.service-detail__copy h2 {
  margin: 0 0 16px;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
}

.service-detail__copy p {
  margin: 0 0 22px;
  color: #3d5049;
  font-size: 15px;
  line-height: 1.75;
}

/* ── Steps (over-ons page) ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 52px;
}

.step {
  position: relative;
  padding: 32px 24px 28px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(18, 52, 42, 0.06);
}

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #67ad38, #4a8e28);
  border-radius: 50%;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
}

.step h3 {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.3;
}

.step p {
  margin: 0;
  color: #47574f;
  font-size: 14px;
  line-height: 1.65;
}

/* ── Projects grid ── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.project-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(18, 52, 42, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(18, 52, 42, 0.13);
}

.project-card__image {
  position: relative;
  overflow: hidden;
}

.project-card__image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 320ms ease;
}

.project-card:hover .project-card__image img {
  transform: scale(1.04);
}

.project-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 12px;
  background: var(--green);
  border-radius: 999px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.project-card__body {
  padding: 24px 22px 22px;
}

.project-card__body h3 {
  margin: 0 0 10px;
  font-size: 17px;
}

.project-card__body p {
  margin: 0 0 18px;
  color: #47574f;
  font-size: 14px;
  line-height: 1.6;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin: 0;
  padding: 14px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  font-size: 12px;
  color: var(--muted);
}

.project-meta span {
  font-weight: 700;
  color: var(--ink);
  margin-right: 4px;
}

/* ── FAQ ── */
.faq-layout {
  max-width: 820px;
  margin-inline: auto;
}

.faq-group {
  margin-bottom: 52px;
}

.faq-group__title {
  margin: 0 0 20px;
  font-size: 20px;
  color: var(--ink);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--green);
  display: inline-block;
}

.faq-list {
  display: grid;
  gap: 8px;
}

.faq-toggle {
  display: none;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  user-select: none;
  transition: background 160ms ease;
}

.faq-question:hover {
  background: var(--soft);
}

.faq-question::after {
  content: "+";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--soft);
  color: var(--green);
  font-size: 18px;
  font-weight: 400;
  transition: transform 200ms ease, background 160ms ease;
}

.faq-toggle:checked ~ .faq-question::after {
  content: "−";
  background: var(--green);
  color: #ffffff;
  transform: rotate(0deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease, padding 260ms ease;
}

.faq-toggle:checked ~ .faq-answer {
  max-height: 400px;
}

.faq-answer p {
  margin: 0;
  padding: 0 22px 20px;
  color: #3d5049;
  font-size: 15px;
  line-height: 1.75;
}

/* ── Contact page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  margin: 0 0 16px;
  font-size: clamp(26px, 2.8vw, 36px);
  line-height: 1.15;
}

.contact-info > p {
  margin: 0 0 36px;
  color: #3d5049;
  font-size: 15px;
  line-height: 1.75;
}

.contact-blocks {
  display: grid;
  gap: 18px;
}

.contact-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--soft);
  border-radius: 8px;
  border: 1px solid var(--line);
}

.contact-block__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(90, 160, 50, 0.12);
  border-radius: 50%;
  color: var(--green);
  font-size: 16px;
}

.contact-block strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted);
  margin-bottom: 3px;
}

.contact-block a,
.contact-block span {
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
}

.contact-form-wrap h2 {
  margin: 0 0 28px;
  font-size: clamp(24px, 2.5vw, 32px);
  line-height: 1.15;
}

.contact-form {
  display: grid;
  gap: 18px;
}

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

.form-field {
  display: grid;
  gap: 7px;
}

.form-field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-2);
  letter-spacing: 0.2px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: 7px;
  background: #ffffff;
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
  outline: none;
  appearance: none;
}

.form-field select {
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364736e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(90, 160, 50, 0.12);
}

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

.contact-form .btn {
  justify-self: start;
  min-width: 200px;
}

/* ── Responsive additions ── */
@media (max-width: 1100px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .service-detail {
    gap: 48px;
  }

  .contact-grid {
    gap: 52px;
  }
}

@media (max-width: 900px) {
  .service-detail,
  .service-detail--reverse,
  .contact-grid {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 40px;
  }

  .contact-grid {
    gap: 52px;
  }
}

@media (max-width: 720px) {
  .page-hero {
    padding-block: 52px 44px;
  }

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

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

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