@font-face {
  font-family: "Benzin";
  src: url("./assets/fonts/Benzin-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Benzin";
  src: url("./assets/fonts/Benzin-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Benzin";
  src: url("./assets/fonts/Benzin-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Benzin";
  src: url("./assets/fonts/Benzin-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --green: #19312D;
  --green-2: #1F3D38;
  --green-3: #275048;
  --emerald: #19312D;
  --emerald-dark: #102622;
  --emerald-mid: #1F3D38;
  --charcoal: #19312D;
  --cream: #F5F1E8;
  --cream-2: #FBF8F1;
  --ink: #1B2A22;
  --muted: #7E8B82;
  --line: #DAD4C7;
  --accent: #7FE26C;
  --accent-2: #B6F542;
  --white: #ffffff;
  --radius: 8px;
  --shell: 1380px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--cream);
  font-family: "Benzin", Arial, sans-serif;
  line-height: 1.35;
  overflow-x: hidden;
}

.js .animate-in {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  filter: blur(8px);
  transition:
    opacity 760ms var(--ease-out),
    transform 760ms var(--ease-out),
    filter 760ms var(--ease-out);
  transition-delay: var(--delay, 0ms);
  will-change: opacity, transform, filter;
}

.js .animate-in.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.js .fx-title .char {
  display: inline-block;
  color: inherit;
  opacity: 0.16;
  transform: translate3d(0, 0.58em, 0) rotate(1.2deg);
  transition:
    opacity 520ms var(--ease-out),
    transform 620ms var(--ease-out);
  transition-delay: calc(var(--char-index) * 18ms);
  will-change: opacity, transform;
}

.js .fx-title .word {
  display: inline-block;
  white-space: nowrap;
}

.js .fx-title.is-visible .char {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0deg);
}

body,
button,
input {
  letter-spacing: 0;
}

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

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding-top: 8px;
}

.header-shell {
  width: min(var(--shell), calc(100% - 48px));
  min-height: 56px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 0 8px 0 24px;
  color: var(--cream-2);
  background: var(--green);
  border-radius: 6px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.brand img {
  width: 172px;
  height: auto;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 44px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.nav a {
  opacity: 0.96;
}

.nav a:hover {
  color: var(--accent);
}

.header-cta {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 6px;
  color: var(--cream-2);
  background: rgba(255, 255, 255, 0.09);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  transition:
    transform 220ms ease,
    background-color 220ms ease;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
}

.menu-toggle span + span {
  margin-top: 5px;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--cream-2);
  background:
    radial-gradient(ellipse at 75% 35%, rgba(127, 226, 108, 0.05), transparent 55%),
    linear-gradient(180deg, #102622 0%, #19312D 55%, #19312D 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 900' preserveAspectRatio='xMidYMid slice'><defs><linearGradient id='dL' x1='0' y1='0' x2='1' y2='1'><stop offset='0%' stop-color='%23F2EFE3' stop-opacity='0.18'/><stop offset='40%' stop-color='%23DDE7DA' stop-opacity='0.10'/><stop offset='100%' stop-color='%23DDE7DA' stop-opacity='0'/></linearGradient><linearGradient id='dR' x1='1' y1='0' x2='0' y2='1'><stop offset='0%' stop-color='%23EFE9D6' stop-opacity='0.14'/><stop offset='100%' stop-color='%23EFE9D6' stop-opacity='0'/></linearGradient><linearGradient id='hi' x1='0' y1='0' x2='1' y2='0'><stop offset='0%' stop-color='%23ffffff' stop-opacity='0'/><stop offset='30%' stop-color='%23ffffff' stop-opacity='0.35'/><stop offset='70%' stop-color='%23ffffff' stop-opacity='0.32'/><stop offset='100%' stop-color='%23ffffff' stop-opacity='0'/></linearGradient><linearGradient id='gr' x1='0' y1='0' x2='0' y2='1'><stop offset='0%' stop-color='%237FE26C' stop-opacity='0'/><stop offset='100%' stop-color='%237FE26C' stop-opacity='0.05'/></linearGradient><filter id='b1'><feGaussianBlur stdDeviation='2'/></filter><filter id='b2'><feGaussianBlur stdDeviation='8'/></filter></defs><path d='M-120,640 C140,420 360,760 700,500 C1020,260 1280,600 1720,360 L1720,960 L-120,960 Z' fill='url(%23dL)' filter='url(%23b2)'/><path d='M-120,640 C140,420 360,760 700,500 C1020,260 1280,600 1720,360' fill='none' stroke='url(%23hi)' stroke-width='3' filter='url(%23b1)'/><path d='M-120,650 C140,430 360,770 700,510 C1020,270 1280,610 1720,370' fill='none' stroke='url(%23hi)' stroke-width='1.5' stroke-opacity='0.6'/><path d='M-100,420 C220,260 480,520 880,340 C1180,200 1380,440 1720,300 L1720,0 L-100,0 Z' fill='url(%23dR)' filter='url(%23b2)'/><path d='M-100,420 C220,260 480,520 880,340 C1180,200 1380,440 1720,300' fill='none' stroke='url(%23hi)' stroke-width='2.4' stroke-opacity='0.75' filter='url(%23b1)'/><path d='M-100,560 C260,490 540,630 880,520 C1180,420 1380,560 1720,500' fill='none' stroke='%23ffffff' stroke-opacity='0.10' stroke-width='1' filter='url(%23b1)'/><rect x='-120' y='560' width='1840' height='400' fill='url(%23gr)'/></svg>") center / cover no-repeat;
}
.dark-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.55;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 900' preserveAspectRatio='xMidYMid slice'><defs><linearGradient id='dL' x1='0' y1='0' x2='1' y2='1'><stop offset='0%' stop-color='%23F2EFE3' stop-opacity='0.18'/><stop offset='40%' stop-color='%23DDE7DA' stop-opacity='0.10'/><stop offset='100%' stop-color='%23DDE7DA' stop-opacity='0'/></linearGradient><linearGradient id='dR' x1='1' y1='0' x2='0' y2='1'><stop offset='0%' stop-color='%23EFE9D6' stop-opacity='0.14'/><stop offset='100%' stop-color='%23EFE9D6' stop-opacity='0'/></linearGradient><linearGradient id='hi' x1='0' y1='0' x2='1' y2='0'><stop offset='0%' stop-color='%23ffffff' stop-opacity='0'/><stop offset='30%' stop-color='%23ffffff' stop-opacity='0.35'/><stop offset='70%' stop-color='%23ffffff' stop-opacity='0.32'/><stop offset='100%' stop-color='%23ffffff' stop-opacity='0'/></linearGradient><linearGradient id='gr' x1='0' y1='0' x2='0' y2='1'><stop offset='0%' stop-color='%237FE26C' stop-opacity='0'/><stop offset='100%' stop-color='%237FE26C' stop-opacity='0.05'/></linearGradient><filter id='b1'><feGaussianBlur stdDeviation='2'/></filter><filter id='b2'><feGaussianBlur stdDeviation='8'/></filter></defs><path d='M-120,640 C140,420 360,760 700,500 C1020,260 1280,600 1720,360 L1720,960 L-120,960 Z' fill='url(%23dL)' filter='url(%23b2)'/><path d='M-120,640 C140,420 360,760 700,500 C1020,260 1280,600 1720,360' fill='none' stroke='url(%23hi)' stroke-width='3' filter='url(%23b1)'/><path d='M-120,650 C140,430 360,770 700,510 C1020,270 1280,610 1720,370' fill='none' stroke='url(%23hi)' stroke-width='1.5' stroke-opacity='0.6'/><path d='M-100,420 C220,260 480,520 880,340 C1180,200 1380,440 1720,300 L1720,0 L-100,0 Z' fill='url(%23dR)' filter='url(%23b2)'/><path d='M-100,420 C220,260 480,520 880,340 C1180,200 1380,440 1720,300' fill='none' stroke='url(%23hi)' stroke-width='2.4' stroke-opacity='0.75' filter='url(%23b1)'/><path d='M-100,560 C260,490 540,630 880,520 C1180,420 1380,560 1720,500' fill='none' stroke='%23ffffff' stroke-opacity='0.10' stroke-width='1' filter='url(%23b1)'/><rect x='-120' y='560' width='1840' height='400' fill='url(%23gr)'/></svg>") center / cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(180deg, transparent 55%, rgba(16, 38, 34, 0.55) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 84px;
  text-align: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 36px;
  padding: 9px 18px;
  border: 1px solid rgba(238, 231, 221, 0.22);
  border-radius: 100px;
  color: rgba(247, 242, 234, 0.82);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255,255,255,0.05);
}

.hero-kicker::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-2);
  flex-shrink: 0;
}

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

h1 {
  max-width: 1050px;
  margin: 0 auto;
  font-size: 64px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

h1 .accent-line {
  color: var(--accent);
}

h1 .hero-dash {
  color: var(--cream-2);
}

mark {
  position: relative;
  display: inline-block;
  z-index: 0;
  padding: 0 9px 5px;
  color: var(--green);
  background: transparent;
  white-space: nowrap;
}

.hero-copy {
  max-width: 620px;
  margin: 28px auto 0;
  color: rgba(247, 242, 234, 0.74);
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 54px;
}

.btn {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 38px;
  border: 0;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}

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

.btn-primary:hover {
  box-shadow: 0 14px 42px rgba(199, 255, 24, 0.2);
}

.btn-secondary:hover,
.header-cta:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn-primary {
  color: var(--green);
  background: var(--accent);
}

.btn-secondary {
  color: var(--cream-2);
  background: rgba(255, 255, 255, 0.1);
}

.hero-benefits {
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  border-top: 1px solid rgba(238, 231, 221, 0.22);
}

.benefit-line {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--cream);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.benefit-line span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 12px;
  border-radius: 50%;
  background: var(--accent-2);
  vertical-align: 1px;
}

.section {
  padding: 96px 0;
  scroll-margin-top: 88px;
}

.light-section,
.services,
.packages,
.faq,
.catalog-index,
.catalog-section.muted {
  background: var(--cream-2);
}

.section-tag {
  margin: 0 0 28px;
  color: var(--emerald);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.section-tag.light {
  color: var(--cream);
}

.split-heading {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 44px;
  align-items: start;
  margin-bottom: 56px;
}

h2 {
  max-width: 850px;
  margin: 0;
  font-size: 54px;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.018em;
}

h2 mark {
  transform: rotate(-0.8deg) translateY(2px);
}

mark::before {
  content: "";
  position: absolute;
  inset: 10% -4% 4% -4%;
  z-index: -1;
  background: #19d995;
  clip-path: polygon(0 18%, 98% 0, 100% 78%, 13% 100%, 0 86%);
}

.split-heading:nth-of-type(even) mark::before,
.faq mark::before {
  clip-path: polygon(2% 4%, 100% 18%, 94% 100%, 0 84%);
}

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

.proof-grid article,
.service-grid article,
.package-grid article {
  min-height: 260px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream-2);
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.proof-grid article:hover,
.service-grid article:hover,
.package-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(24, 52, 40, 0.3);
  box-shadow: 0 20px 54px rgba(24, 52, 40, 0.08);
}

.proof-grid strong,
.service-grid span,
.package-grid span,
.problem-list span,
.product-list span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.proof-grid h3,
.service-grid h3,
.package-grid h3,
.problem-list h3,
.product-list h3 {
  margin: 40px 0 16px;
  font-size: 24px;
  line-height: 1.18;
  font-weight: 500;
}

.proof-grid p,
.service-grid p,
.package-grid p,
.problem-list p,
.product-list p,
.case-content p,
.faq-list p,
.contact p,
.lead-form p {
  margin-bottom: 0;
  color: #62675d;
  font-family: Arial, sans-serif;
  font-size: 17px;
  line-height: 1.35;
}

.dark-section {
  position: relative;
  background: linear-gradient(180deg, #19312D 0%, #1F3D38 100%);
  color: var(--cream-2);
  overflow: hidden;
}

.dark-section > * {
  position: relative;
  z-index: 2;
}

.problems-grid,
.products-layout,
.contact-layout,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: 80px;
}

.dark-section h2 {
  color: var(--cream-2);
}

.problem-list,
.product-list,
.faq-list {
  display: grid;
  gap: 0;
}

.problem-list article,
.product-list article,
.faq-list details {
  padding: 28px 0;
  border-top: 1px solid rgba(238, 231, 221, 0.22);
}

.problem-list h3,
.product-list h3 {
  margin-top: 16px;
  color: var(--cream-2);
}

.problem-list p,
.product-list p {
  color: rgba(247, 242, 234, 0.72);
}

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

.service-grid article {
  display: flex;
  flex-direction: column;
  min-height: 330px;
}

.service-grid article strong,
.package-grid article strong {
  display: block;
  margin-top: auto;
  padding-top: 22px;
  color: var(--green);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
}

.service-catalog-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 40px;
  padding: 28px 32px;
  border: 1px solid rgba(24, 52, 40, 0.22);
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: 0 8px 28px rgba(24, 52, 40, 0.06);
}

.service-catalog-link p {
  max-width: 820px;
  margin: 0;
  color: #62675d;
  font-family: Arial, sans-serif;
  font-size: 17px;
  line-height: 1.35;
}

.catalog-page {
  background: var(--cream);
}

.catalog-hero {
  position: relative;
  overflow: hidden;
  padding: 130px 0 64px;
  color: var(--ink);
  background:
    linear-gradient(103deg, var(--cream) 0 66%, var(--green) 66% 100%);
}

.catalog-hero::after {
  display: none;
}

.catalog-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 380px);
  gap: 46px;
  align-items: stretch;
}

.catalog-hero h1 {
  max-width: 760px;
  margin: 24px 0;
  color: var(--ink);
  font-size: clamp(44px, 4.8vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.catalog-hero-panel {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border: 1px solid rgba(247, 242, 234, 0.26);
  border-radius: var(--radius);
  background: rgba(247, 242, 234, 0.08);
  backdrop-filter: blur(18px);
}

.catalog-hero-panel span {
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 6px;
}

.catalog-hero-panel strong {
  display: block;
  margin: 28px 0 20px;
  font-size: 42px;
  line-height: 1.02;
  font-weight: 500;
}

.catalog-hero-panel p {
  margin: 0;
  color: rgba(247, 242, 234, 0.74);
  font-family: Arial, sans-serif;
  font-size: 17px;
  line-height: 1.4;
}

.catalog-index {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(24, 52, 40, 0.12);
}

.catalog-index-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  overflow: visible;
  padding: 14px 0;
  scrollbar-width: none;
}

.catalog-index-grid::-webkit-scrollbar {
  display: none;
}

.catalog-index-grid a {
  flex: 0 0 auto;
  padding: 10px 14px;
  border: 1px solid rgba(24, 52, 40, 0.14);
  border-radius: 6px;
  color: var(--green);
  background: rgba(238, 231, 221, 0.55);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.catalog-section {
  padding: 88px 0;
  scroll-margin-top: 78px;
}

.catalog-section-grid {
  display: grid;
  grid-template-columns: minmax(270px, 360px) minmax(0, 1fr);
  gap: 60px;
  align-items: start;
}

.catalog-section-title {
  position: sticky;
  top: 92px;
}

.catalog-section-title h2 {
  font-size: 42px;
}

.catalog-section-title p:not(.section-tag) {
  max-width: 430px;
  margin: 22px 0 0;
  color: #62675d;
  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1.45;
}

.catalog-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.catalog-list details {
  border: 1px solid rgba(24, 52, 40, 0.14);
  border-radius: var(--radius);
  background: rgba(247, 242, 234, 0.72);
  overflow: hidden;
}

.catalog-section.muted .catalog-list details {
  background: var(--cream);
}

.catalog-list summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 22px 24px;
  cursor: pointer;
  list-style: none;
}

.catalog-list summary::-webkit-details-marker {
  display: none;
}

.catalog-list summary span {
  color: var(--green);
  font-size: 22px;
  line-height: 1.18;
  font-weight: 500;
}

.catalog-list summary strong {
  padding: 8px 11px;
  border-radius: 6px;
  color: var(--green);
  background: rgba(199, 255, 24, 0.42);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.catalog-list details > p,
.catalog-list details > ul {
  margin: 0 24px;
}

.catalog-list details > p {
  max-width: 760px;
  color: #62675d;
  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1.45;
}

.catalog-list details > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 18px 0 24px;
  list-style: none;
}

.catalog-list details li {
  padding: 8px 10px;
  border: 1px solid rgba(24, 52, 40, 0.12);
  border-radius: 6px;
  color: rgba(48, 50, 45, 0.78);
  font-family: Arial, sans-serif;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.35);
}

.catalog-cta .case-cta-panel {
  margin: 0 auto;
}

.catalog-cta .case-cta-panel > div:last-child {
  display: grid;
  gap: 28px;
  justify-items: start;
}

.cases {
  background: var(--cream-2);
}

.case-grid {
  display: grid;
  gap: 14px;
}

.case-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 16px;
  align-items: stretch;
  transition: transform 280ms ease;
}

.case-card:hover {
  transform: translateX(4px);
}

.case-image {
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream-2);
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 360ms ease;
}

.case-image:hover img {
  transform: scale(1.03);
}

.case-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream-2);
}

.case-content span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.case-content h3 {
  margin: 30px 0 18px;
  font-size: 40px;
  line-height: 1;
  font-weight: 600;
}

.case-link {
  width: fit-content;
  margin-top: 28px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.case-link::after {
  content: "";
  display: inline-block;
  width: 34px;
  height: 2px;
  margin-left: 12px;
  background: var(--accent-2);
  vertical-align: 4px;
  transition: width 220ms ease;
}

.case-link:hover::after {
  width: 54px;
}

.case-page {
  background: var(--cream-2);
}

.case-hero {
  position: relative;
  overflow: hidden;
  padding: 142px 0 86px;
  color: var(--cream-2);
  background:
    radial-gradient(ellipse at 78% 14%, rgba(199, 255, 24, 0.08), transparent 30%),
    radial-gradient(ellipse at 34% 54%, rgba(63, 122, 94, 0.28), transparent 38%),
    linear-gradient(180deg, var(--emerald-dark) 0%, var(--emerald) 100%);
}

.case-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) 380px;
  gap: 54px;
  align-items: end;
}

.case-back {
  display: inline-flex;
  margin-bottom: 48px;
  color: rgba(247, 242, 234, 0.76);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.case-hero h1 {
  max-width: 100%;
  margin: 0;
  text-align: left;
  font-size: clamp(48px, 4vw, 72px);
  line-height: 0.94;
  overflow-wrap: anywhere;
}

.case-lead {
  max-width: 720px;
  margin: 32px 0 0;
  color: rgba(247, 242, 234, 0.72);
  font-family: Arial, sans-serif;
  font-size: 22px;
  line-height: 1.35;
}

.case-hero .hero-actions {
  justify-content: flex-start;
  margin-top: 34px;
}

.case-meta-card {
  display: grid;
  gap: 0;
  border: 1px solid rgba(238, 231, 221, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.075);
}

.case-meta-card div {
  display: grid;
  gap: 8px;
  padding: 22px;
  border-top: 1px solid rgba(238, 231, 221, 0.16);
}

.case-meta-card div:first-child {
  border-top: 0;
}

.case-meta-card span {
  color: rgba(238, 231, 221, 0.58);
  font-size: 11px;
  text-transform: uppercase;
}

.case-meta-card strong {
  color: var(--cream-2);
  font-size: 16px;
  line-height: 1.22;
}

.case-hero-media {
  position: relative;
  z-index: 2;
  width: min(var(--shell), calc(100% - 48px));
  height: min(56vw, 690px);
  min-height: 420px;
  margin: -34px auto 0;
  overflow: hidden;
  border: 1px solid rgba(238, 231, 221, 0.2);
  border-radius: var(--radius);
  background: var(--green);
}

.case-hero-media img,
.case-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-section {
  padding: 96px 0;
  scroll-margin-top: 88px;
}

.case-section.dark-section {
  background:
    radial-gradient(ellipse at 16% 20%, rgba(199, 255, 24, 0.07), transparent 28%),
    linear-gradient(180deg, var(--green) 0%, #102d22 100%);
}

.case-intro-grid,
.case-work-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 74px;
  align-items: start;
}

.case-text {
  display: grid;
  gap: 20px;
  color: #62675d;
  font-family: Arial, sans-serif;
  font-size: 20px;
  line-height: 1.42;
}

.case-text p {
  margin: 0;
}

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

.case-fact {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.case-fact strong {
  color: var(--green);
  font-size: clamp(42px, 5vw, 76px);
  line-height: 0.95;
  font-weight: 800;
}

.case-fact span {
  color: #62675d;
  font-family: Arial, sans-serif;
  font-size: 17px;
  line-height: 1.35;
}

.case-gallery {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 14px;
}

.case-gallery figure {
  min-height: 430px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  margin: 0;
  overflow: visible;
  border-radius: var(--radius);
  background: transparent;
}

.case-gallery figure:nth-child(2) {
  min-height: 250px;
}

.case-gallery figure:nth-child(3) {
  min-height: 250px;
}

.case-gallery figcaption {
  padding: 14px 0 0;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.case-gallery img {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green);
}

.case-work-list {
  display: grid;
  gap: 0;
}

.case-work-list article {
  padding: 26px 0;
  border-top: 1px solid rgba(238, 231, 221, 0.22);
}

.case-work-list span {
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 700;
}

.case-work-list h3 {
  margin: 14px 0 12px;
  color: var(--cream-2);
  font-size: 25px;
  font-weight: 500;
}

.case-work-list p {
  margin: 0;
  color: rgba(247, 242, 234, 0.72);
  font-family: Arial, sans-serif;
  font-size: 17px;
  line-height: 1.36;
}

.case-next {
  background: var(--cream);
}

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

.case-next a {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream-2);
}

.case-next span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.case-next strong {
  color: var(--green);
  font-size: 24px;
  line-height: 1.1;
}

.case-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.case-story-card {
  min-height: 320px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.case-story-card h3 {
  margin: 0 0 22px;
  color: var(--green);
  font-size: 28px;
  line-height: 1.12;
  font-weight: 600;
}

.case-story-card p,
.case-story-card li,
.case-result-list li,
.case-cta-panel p {
  color: #62675d;
  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1.42;
}

.case-story-card p {
  margin: 0 0 16px;
}

.case-story-card ul,
.case-result-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.case-story-card li,
.case-result-list li {
  position: relative;
  padding-left: 22px;
}

.case-story-card li::before,
.case-result-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--accent-2);
}

.case-result-panel,
.case-cta-panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.case-result-panel h2,
.case-cta-panel h2 {
  max-width: 760px;
  margin-bottom: 26px;
}

.case-result-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 34px;
}

.case-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  color: var(--cream-2);
  background:
    radial-gradient(ellipse at 80% 20%, rgba(199, 255, 24, 0.12), transparent 30%),
    linear-gradient(180deg, var(--green) 0%, #102d22 100%);
  border-color: rgba(238, 231, 221, 0.16);
}

.case-cta-panel h2 {
  color: var(--cream-2);
}

.case-cta-panel p {
  max-width: 680px;
  margin: 0;
  color: rgba(247, 242, 234, 0.72);
}

.package-grid article {
  min-height: 360px;
  display: flex;
  flex-direction: column;
}

.package-featured {
  color: var(--cream-2);
  background: var(--green) !important;
  border-color: var(--green) !important;
}

.package-featured p {
  color: rgba(247, 242, 234, 0.72);
}

.package-featured strong {
  color: var(--accent-2);
}

.package-grid a {
  margin-top: 18px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.package-featured a {
  color: var(--accent-2);
}

summary {
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.22;
}

summary::-webkit-details-marker {
  display: none;
}

.faq-list details {
  border-color: var(--line);
}

.faq-list p {
  padding-top: 14px;
}

.contact {
  background:
    radial-gradient(ellipse at 26% 20%, rgba(199, 255, 24, 0.08), transparent 30%),
    radial-gradient(ellipse at 82% 70%, rgba(238, 231, 221, 0.06), transparent 32%),
    linear-gradient(180deg, var(--emerald) 0%, var(--emerald-dark) 100%);
  padding-bottom: 118px;
}

.contact-shape {
  display: none;
}

.contact h2 {
  margin-bottom: 24px;
}

.contact p {
  max-width: 620px;
  color: rgba(247, 242, 234, 0.72);
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 34px;
  color: var(--accent-2);
  font-size: 15px;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid rgba(238, 231, 221, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--cream);
  font-size: 13px;
  text-transform: uppercase;
}

.lead-form input {
  min-height: 56px;
  border: 1px solid rgba(238, 231, 221, 0.2);
  border-radius: 6px;
  padding: 0 16px;
  color: var(--cream-2);
  background: rgba(0, 0, 0, 0.16);
  outline: none;
}

.lead-form input:focus {
  border-color: var(--accent-2);
}

.lead-form p {
  color: rgba(247, 242, 234, 0.58);
  font-size: 13px;
}

.footer {
  color: var(--cream-2);
  background: var(--charcoal);
}

.footer-inner {
  min-height: 240px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
  padding: 44px 0 32px;
}

.footer-logo {
  width: min(560px, 100%);
  height: auto;
}

.footer-nav {
  display: grid;
  gap: 12px;
  font-size: 13px;
  text-transform: uppercase;
}

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

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

  .animate-in,
  .fx-title .char {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

@media (max-width: 1100px) {
  .header-shell {
    grid-template-columns: auto 1fr auto;
  }

  .nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    justify-self: end;
  }

  .mobile-menu {
    width: min(var(--shell), calc(100% - 48px));
    margin: 8px auto 0;
    padding: 18px;
    border-radius: 8px;
    color: var(--cream-2);
    background: rgba(24, 52, 40, 0.98);
  }

  .mobile-menu.is-open {
    display: grid;
    gap: 16px;
  }

  h1 {
    font-size: 48px;
    text-align: left;
  }

  .hero-inner {
    text-align: left;
  }

  .hero-copy {
    margin-left: 0;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .benefit-line {
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 16px 0;
  }

  .split-heading,
  .problems-grid,
  .products-layout,
  .contact-layout,
  .faq-layout,
  .case-hero-grid,
  .case-intro-grid,
  .case-work-grid,
  .case-cta-panel,
  .case-card,
  .catalog-hero-grid,
  .catalog-section-grid,
  .service-catalog-link {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .proof-grid,
  .case-fact-grid,
  .case-next-grid,
  .case-story-grid,
  .case-result-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-hero {
    padding-top: 124px;
  }

  .case-hero-media {
    min-height: 360px;
  }

  .catalog-hero {
    padding: 126px 0 76px;
  }

  .catalog-hero-panel {
    min-height: 260px;
  }

  .catalog-section-title {
    position: static;
  }
}

@media (max-width: 720px) {
  .shell,
  .header-shell,
  .mobile-menu {
    width: calc(100% - 32px);
  }

  .header-shell {
    min-height: 64px;
    padding-left: 16px;
  }

  .brand img {
    width: 154px;
  }

  .hero {
    min-height: 100svh;
    padding-top: 74px;
    align-items: start;
  }

  .hero-inner {
    padding-top: 38px;
  }

  .hero-kicker {
    max-width: 330px;
    margin-bottom: 24px;
    font-size: 16px;
  }

  h1 {
    font-size: 28px;
    line-height: 1.18;
  }

  h1 .hero-dash {
    display: none;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    margin-top: 36px;
  }

  .btn {
    width: 100%;
  }

  .hero-benefits {
    position: relative;
    margin-top: 22px;
  }

  .benefit-line {
    display: grid;
    min-height: auto;
  }

  .section {
    padding: 70px 0;
  }

  .catalog-hero {
    padding: 104px 0 62px;
  }

  .catalog-hero h1 {
    font-size: 40px;
    line-height: 1;
  }

  .catalog-hero-grid {
    gap: 32px;
  }

  .catalog-hero-panel {
    min-height: 220px;
    padding: 22px;
  }

  .catalog-hero-panel strong {
    font-size: 34px;
  }

  .catalog-index {
    position: relative;
  }

  .catalog-section {
    padding: 64px 0;
  }

  .catalog-section-grid {
    gap: 28px;
  }

  .catalog-section-title h2 {
    font-size: 32px;
  }

  .catalog-list summary {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px;
  }

  .catalog-list summary span {
    font-size: 19px;
  }

  .catalog-list summary strong {
    justify-self: start;
    white-space: normal;
  }

  .catalog-list details > p,
  .catalog-list details > ul {
    margin-right: 20px;
    margin-left: 20px;
  }

  .catalog-list details > p {
    font-size: 16px;
  }

  .service-catalog-link {
    padding: 22px;
  }

  .split-heading {
    gap: 12px;
  }

  h2 {
    font-size: 34px;
    line-height: 1.14;
  }

  h2 mark {
    white-space: normal;
  }

  mark {
    max-width: 100%;
    padding-right: 4px;
    padding-left: 4px;
  }

  mark::before {
    right: 0;
    left: 0;
  }

  .js h2.fx-title .word,
  .js .case-hero h1.fx-title .word {
    white-space: normal;
  }

  .proof-grid,
  .service-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid article,
  .service-grid article,
  .package-grid article {
    min-height: auto;
    padding: 22px;
  }

  .proof-grid h3,
  .service-grid h3,
  .package-grid h3 {
    margin-top: 34px;
  }

  .problems-grid,
  .products-layout,
  .contact-layout,
  .faq-layout {
    gap: 32px;
  }

  .case-image {
    min-height: 245px;
  }

  .case-content {
    padding: 24px;
  }

  .case-content h3 {
    font-size: 26px;
    overflow-wrap: anywhere;
  }

  .case-card > * {
    min-width: 0;
  }

  .case-hero {
    padding: 108px 0 58px;
  }

  .case-back {
    margin-bottom: 30px;
  }

  .case-hero h1 {
    font-size: clamp(30px, 9.5vw, 38px);
    line-height: 1.02;
  }

  .case-hero h1 .word {
    white-space: normal;
  }

  .case-lead {
    font-size: 18px;
  }

  .case-meta-card div {
    padding: 18px;
  }

  .case-meta-card strong,
  .section-tag {
    overflow-wrap: anywhere;
  }

  .case-meta-card strong {
    font-size: 14px;
  }

  .case-hero-media {
    width: calc(100% - 32px);
    height: 62vw;
    min-height: 260px;
    margin-top: -22px;
  }

  .case-section {
    padding: 70px 0;
  }

  .case-text {
    font-size: 18px;
  }

  .case-fact-grid,
  .case-gallery,
  .case-story-grid,
  .case-result-list,
  .case-next-grid {
    grid-template-columns: 1fr;
  }

  .case-fact {
    min-height: 180px;
    padding: 22px;
  }

  .case-gallery figure,
  .case-gallery figure:nth-child(2),
  .case-gallery figure:nth-child(3) {
    min-height: 250px;
  }

  .case-story-card,
  .case-result-panel,
  .case-cta-panel {
    padding: 22px;
  }

  .case-story-card {
    min-height: auto;
  }

  .case-story-card h3 {
    font-size: 23px;
  }

  .case-story-card p,
  .case-story-card li,
  .case-result-list li,
  .case-cta-panel p {
    font-size: 17px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    min-height: 220px;
  }

  .footer-logo {
    width: 280px;
  }
}


/* ============================================================
   METRICS STRIP
   ============================================================ */

.metrics-strip {
  background: var(--emerald);
  border-top: 1px solid rgba(238, 231, 221, 0.08);
  border-bottom: 1px solid rgba(238, 231, 221, 0.08);
}

.metrics-row {
  display: flex;
  align-items: stretch;
}

.metric-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 34px 20px;
  text-align: center;
  gap: 10px;
}

.metric-item strong {
  font-size: 54px;
  line-height: 1;
  font-weight: 700;
  color: var(--cream-2);
}

.metric-item span {
  font-size: 11px;
  color: rgba(238, 231, 221, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.10em;
}

.metric-sep {
  width: 1px;
  background: rgba(238, 231, 221, 0.12);
  margin: 18px 0;
  flex-shrink: 0;
}

/* ============================================================
   REVIEWS
   ============================================================ */

.reviews {
  background: var(--cream-2);
}

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

.review-card {
  display: flex;
  flex-direction: column;
  padding: 36px 34px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 280ms var(--ease-out), box-shadow 280ms var(--ease-out), border-color 240ms ease;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(24, 52, 40, 0.20);
  box-shadow: 0 18px 50px rgba(24, 52, 40, 0.08);
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 22px;
  font-size: 16px;
  letter-spacing: 1px;
  color: #2b514a;
}

.review-quote { display: none; }

.review-text {
  flex: 1;
  color: #4a4f46;
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.62;
  margin: 0 0 28px;
  letter-spacing: 0;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.review-avatar {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--emerald);
  color: var(--cream);
  font-family: "Benzin", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  flex-shrink: 0;
}

.review-author strong {
  display: block;
  color: var(--ink);
  font-family: "Benzin", Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.005em;
}

.review-author span {
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 13px;
  line-height: 1.4;
}

/* ============================================================
   CASE TAGS
   ============================================================ */

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
}

.case-tag {
  padding: 5px 11px;
  border: 1px solid rgba(24, 52, 40, 0.16);
  border-radius: 5px;
  color: rgba(48, 50, 45, 0.72);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(24, 52, 40, 0.04);
}

/* Fix case-content: p grows, tags+link stick to bottom */
.case-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.case-content p {
  flex: 1;
}

.case-link {
  margin-top: 24px;
}

/* ============================================================
   MOBILE: new sections
   ============================================================ */

@media (max-width: 1100px) {
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .metrics-row {
    flex-wrap: wrap;
  }
  .metric-item {
    flex: 0 0 50%;
    border-right: 1px solid rgba(238, 231, 221, 0.1);
    border-bottom: 1px solid rgba(238, 231, 221, 0.1);
    padding: 26px 16px;
  }
  .metric-item:nth-child(2n) {
    border-right: none;
  }
  .metric-sep {
    display: none;
  }
  .metric-item strong {
    font-size: 40px;
  }
  .review-grid {
    grid-template-columns: 1fr;
  }
  .review-card {
    padding: 26px;
  }
  .hero-kicker {
    font-size: 11px;
    padding: 8px 14px;
  }
}

/* Metric item hover */
.metric-item {
  transition: background 220ms ease;
}

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

/* Review section - make background consistent with cream sections */
.reviews {
  background: var(--cream);
}
