/* === Синтез Групп — Landing styles === */

:root {
  --green: #2F9E44;
  --green-deep: #2C8A3F;
  --green-dark: #248138;
  --green-soft: #E8F5EC;
  --green-bg: #338F44;
  --green-bg-deep: #2A7A38;
  --ink: #0E1714;
  --ink-soft: #1A2520;
  --muted: #6B7280;
  --muted-2: #94A3B8;
  --bg: #FFFFFF;
  --bg-soft: #FAFAF7;
  --border: #E7EAE8;
  --border-soft: #F1F3F2;

  --shadow-sm: 0 1px 2px rgba(15,23,20,.04), 0 1px 0 rgba(15,23,20,.02);
  --shadow-md: 0 4px 12px rgba(15,23,20,.05), 0 1px 3px rgba(15,23,20,.04);
  --shadow-lg: 0 24px 48px -16px rgba(15,23,20,.18), 0 8px 24px -8px rgba(15,23,20,.08);
  --shadow-green: 0 16px 40px -12px rgba(47,158,68,.45), 0 4px 12px -4px rgba(47,158,68,.25);

  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  --ease: cubic-bezier(.2,.7,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --ease-soft: cubic-bezier(.4,0,.2,1);

  --font: "Onest", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Onest", "Inter", system-ui, sans-serif;

  --container: 1480px;
  --gutter: 32px;
  --section-py: 120px;
}

*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  font-feature-settings: "ss01" 1, "cv11" 1;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  cursor: auto;
}
.cursor-dot, .cursor-ring { display: none !important; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--green); color: #fff; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============= Scroll progress ============= */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--green), #6FCF7C);
  z-index: 200;
  box-shadow: 0 0 14px rgba(47,158,68,.5);
  transition: width .08s linear;
}

/* ============= Custom cursor ============= */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  will-change: transform;
  mix-blend-mode: difference;
  opacity: 0;
  transform: translate(-9999px, -9999px);
}
.cursor-dot.is-active, .cursor-ring.is-active { opacity: 1; }
.cursor-dot {
  width: 6px; height: 6px;
  background: #fff;
  transform: translate(-50%,-50%);
  transition: width .2s var(--ease), height .2s var(--ease), opacity .2s;
}
.cursor-ring {
  width: 34px; height: 34px;
  border: 1.5px solid #fff;
  transform: translate(-50%,-50%);
  transition: width .25s var(--ease), height .25s var(--ease), border-color .25s, opacity .25s, background .25s;
}
.cursor-ring.is-hover {
  width: 58px; height: 58px;
  background: rgba(255,255,255,.08);
}
.cursor-dot.is-hover { opacity: 0; }

/* ============= Header ============= */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: padding .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease);
}
.header.is-scrolled {
  padding: 12px 0;
  background: rgba(255,255,255,.75);
  backdrop-filter: saturate(140%) blur(18px);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
  box-shadow: 0 1px 0 rgba(15,23,20,.06);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
}
/* Show burger at wider tablet breakpoint, not just narrow mobile */
@media (max-width: 1100px) {
  .header { padding: 14px 0 !important; }
  .header__inner { gap: 12px; justify-content: space-between; }
  .header .nav { display: none; }
  .header .header__cta { display: none; }
  .header .burger { display: inline-flex; }
}
@media (max-width: 760px) {
  .header { padding: 12px 0 !important; }
}

/* Burger */
.burger {
  display: none;
  width: 44px; height: 44px;
  background: var(--green-soft);
  border: 1px solid rgba(47,158,68,.18);
  border-radius: 12px;
  align-items: center; justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 0;
  cursor: pointer;
  transition: background .25s var(--ease);
}
.burger span {
  display: block;
  width: 18px; height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s var(--ease);
}
.burger:hover { background: #DDEEE0; }
.burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0;
  z-index: 150;
  pointer-events: none;
}
.mobile-menu.is-open { pointer-events: auto; }
.mobile-menu__backdrop {
  position: absolute; inset: 0;
  background: rgba(14,23,20,.6);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.mobile-menu.is-open .mobile-menu__backdrop { opacity: 1; }
.mobile-menu__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 88vw);
  background: #fff;
  padding: 24px 28px;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .45s var(--ease-out);
  overflow-y: auto;
}
.mobile-menu.is-open .mobile-menu__panel { transform: none; }
.mobile-menu__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 32px;
}
.mobile-menu__close {
  width: 40px; height: 40px;
  background: var(--green-soft);
  border: 0;
  border-radius: 10px;
  display: grid; place-items: center;
  color: var(--green-dark);
  cursor: pointer;
}
.mobile-menu__list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column;
  border-top: 1px solid var(--border-soft);
}
.mobile-menu__list li {
  border-bottom: 1px solid var(--border-soft);
}
.mobile-menu__list a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 4px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--ink);
  transition: color .25s var(--ease), padding .35s var(--ease);
}
.mobile-menu__list a span {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--muted-2);
  font-weight: 400;
}
.mobile-menu__list a:hover {
  color: var(--green-dark);
  padding-left: 12px;
}
.mobile-menu__foot {
  margin-top: auto;
  padding-top: 28px;
}
.mobile-menu__contact {
  margin-top: 24px;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 14px;
  color: var(--muted);
}
.mobile-menu__contact a {
  color: var(--ink); font-weight: 500;
}
.logo {
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 700; font-size: 18px;
  letter-spacing: .02em;
  color: var(--green-dark);
}
.logo__mark {
  width: 38px; height: 38px;
  display: inline-block;
}
.logo__mark svg { width: 100%; height: 100%; display: block; }
.logo:hover .logo__mark { animation: spin 6s linear infinite; }
.logo--wordmark img { display: block; height: 26px; width: auto; transition: transform .4s var(--ease); }
.logo--wordmark .logo__mark-only { display: none; height: 32px; }
.logo--wordmark:hover .logo__wordmark { transform: scale(1.02); }
.logo--wordmark:hover .logo__mark-only { transform: rotate(8deg); }
@media (max-width: 760px) {
  .logo--wordmark .logo__wordmark { display: none; }
  .logo--wordmark .logo__mark-only { display: block; }
}
.footer-logo { color: #fff; font-size: 18px; font-weight: 700; letter-spacing: .03em; }
.footer-logo img { width: 32px; height: 32px; }

/* atom in hero */
.hero__atom { position: relative; overflow: visible; }
.atom-orbits {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  overflow: visible;
}
.atom-mark {
  position: absolute; inset: 0;
  width: 56%; height: auto;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  filter: drop-shadow(0 30px 60px rgba(44,138,63,.35));
  animation: floatY 7s var(--ease-soft) infinite alternate;
}
@keyframes floatY {
  0%   { transform: translate(-50%,-52%); }
  100% { transform: translate(-50%,-48%); }
}

/* placeholder visuals — paper-like card */
.about__visual--placeholder {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #1f3a25, #2F9E44 60%, #1a4f25);
  position: relative;
  transition: transform .6s var(--ease-out), box-shadow .6s var(--ease-out);
  transform-style: preserve-3d;
  cursor: pointer;
}
.about__visual--placeholder::before {
  /* paper-grain noise */
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='.7' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .035 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  pointer-events: none;
  opacity: .8;
  z-index: 1;
}
.about__visual--placeholder:hover {
  transform: translateY(-6px) rotate(-1.2deg);
  box-shadow:
    0 30px 60px -16px rgba(15,23,20,.35),
    0 12px 24px -8px rgba(15,23,20,.18);
}

/* Page-peel corner that appears on hover */
.about__visual--placeholder .paper-corner {
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 0;
  background:
    linear-gradient(225deg, transparent 49%, rgba(0,0,0,.18) 49%, rgba(0,0,0,.18) 51%, transparent 51%),
    linear-gradient(225deg, #f7faf7 0%, #d9e8dc 70%, #b7d1bd 100%);
  background-blend-mode: multiply, normal;
  transition: width .55s var(--ease-out), height .55s var(--ease-out);
  pointer-events: none;
  z-index: 3;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  box-shadow: -2px 2px 6px -2px rgba(0,0,0,.2);
}
.about__visual--placeholder:hover .paper-corner {
  width: 64px;
  height: 64px;
}

/* Paper grid shifts subtly on hover */
.placeholder-art {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: .7;
  transition: transform 1.2s var(--ease-out), opacity .5s var(--ease);
  z-index: 2;
}
.about__visual--placeholder:hover .placeholder-art {
  transform: translate(6px, -4px) scale(1.02);
  opacity: 1;
}

/* Dashed label — paper stamp feel */
.placeholder-label {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  padding: 10px 18px;
  border: 1px dashed rgba(255,255,255,.4);
  border-radius: 999px;
  background: rgba(0,0,0,.12);
  backdrop-filter: blur(2px);
  z-index: 3;
  transition: transform .55s var(--ease-out), letter-spacing .55s var(--ease-out), background .35s var(--ease);
}
.about__visual--placeholder:hover .placeholder-label {
  transform: translate(-50%,-50%) rotate(-2deg) scale(1.05);
  letter-spacing: .18em;
  background: rgba(0,0,0,.22);
}

.project__img--placeholder { display: grid; place-items: center; }

.nav {
  display: flex; align-items: center; gap: 36px;
  font-size: 15px; color: var(--ink-soft);
  font-weight: 500;
  white-space: nowrap;
}
.nav a { white-space: nowrap; }
.nav a {
  position: relative;
  padding: 6px 0;
  transition: color .2s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--green);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.nav a:hover { color: var(--green-dark); }
.nav a:hover::after { transform: scaleX(1); }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  background: var(--green);
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s var(--ease);
  box-shadow: var(--shadow-green);
  isolation: isolate;
}
.btn::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #3FB857 0%, #2F9E44 60%, #248138 100%);
  opacity: 0; transition: opacity .35s var(--ease);
  z-index: -1;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 24px 56px -16px rgba(47,158,68,.6), 0 8px 20px -6px rgba(47,158,68,.3); }
.btn:hover::before { opacity: 1; }
.btn:active { transform: translateY(0); }
.btn svg { transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
  box-shadow: none;
}
.btn--ghost::before { display: none; }
.btn--ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); box-shadow: 0 10px 28px -10px rgba(0,0,0,.4); }

/* ============= Hero ============= */
.hero {
  position: relative;
  min-height: 92vh;
  padding: 110px 0 120px;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: -2;
  background:
    radial-gradient(60% 70% at 8% 30%, rgba(47,158,68,.10), transparent 60%),
    radial-gradient(45% 55% at 95% 25%, rgba(47,158,68,.10), transparent 60%),
    radial-gradient(50% 60% at 95% 75%, rgba(47,158,68,.16), transparent 60%),
    linear-gradient(180deg, #F4F8F2 0%, #F8FAF6 60%);
}
.hero__grid {
  position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(rgba(47,158,68,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47,158,68,.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(70% 70% at 50% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(70% 70% at 50% 40%, #000 30%, transparent 80%);
  opacity: .55;
}
.hero__noise {
  position: absolute; inset: 0; z-index: -1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence baseFrequency='.9' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .04 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: .8;
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 13px; font-weight: 500;
  border: 1px solid rgba(47,158,68,.18);
  margin-bottom: 28px;
}
.hero__eyebrow .pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  position: relative;
}
.hero__eyebrow .pulse::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  background: var(--green); opacity: .4;
  animation: ping 2s var(--ease-out) infinite;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.6vw, 96px);
  font-weight: 600;
  line-height: .96;
  letter-spacing: -.03em;
  margin: 0 0 28px;
  color: var(--ink);
}
.hero h1 .accent {
  color: var(--green);
  font-style: italic;
  font-weight: 600;
  position: relative;
  display: inline-block;
}
.hero h1 .accent svg.scribble {
  position: absolute;
  left: 0; right: 0; bottom: -.08em;
  width: 100%; height: .25em;
  overflow: visible;
  pointer-events: none;
}
.hero h1 .accent svg.scribble path {
  fill: none;
  stroke: var(--green);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: drawline 1.6s var(--ease-out) .6s forwards;
}
@keyframes drawline { to { stroke-dashoffset: 0; } }
.hero p.lead {
  max-width: 540px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 40px;
}
.hero__cta-row {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.hero__stats {
  display: flex; align-items: center; gap: 40px;
  margin-top: 64px;
  flex-wrap: wrap;
}
.stat__num {
  font-size: 40px; font-weight: 600; letter-spacing: -.02em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.stat__num .plus { color: var(--green); margin-left: 2px; }
.stat__label {
  font-size: 13px; color: var(--muted);
  margin-top: 4px;
  max-width: 140px;
  line-height: 1.4;
}

/* ============= Atom ============= */
.hero__atom {
  position: relative;
  width: 100%; aspect-ratio: 1/1;
  max-width: 520px;
  margin: 0 auto;
  overflow: visible;
}
.atom { width: 100%; height: 100%; overflow: visible; }
.atom-orbit { transform-origin: 50% 50%; transform-box: view-box; }
.atom-orbit.o1 { animation: spin0 24s linear infinite; }
.atom-orbit.o2 { animation: spin60 36s linear infinite reverse; }
.atom-orbit.o3 { animation: spinNeg60 18s linear infinite; }
.atom-electron { animation: pulse-soft 3s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
.atom-leaf {
  transform-origin: center;
  transform-box: fill-box;
  animation: sway 6s var(--ease-soft) infinite;
}
.atom-glow {
  filter: blur(40px);
  opacity: .5;
  animation: glow 5s ease-in-out infinite alternate;
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spin0    { from { transform: rotate(0deg);    } to { transform: rotate(360deg);  } }
@keyframes spin60   { from { transform: rotate(60deg);   } to { transform: rotate(420deg);  } }
@keyframes spinNeg60{ from { transform: rotate(-60deg);  } to { transform: rotate(300deg);  } }
@keyframes pulse-soft { 0%,100%{ transform: scale(1); opacity: 1;} 50%{ transform: scale(1.15); opacity: .8;} }
@keyframes sway { 0%,100%{ transform: rotate(-3deg);} 50%{ transform: rotate(3deg);} }
@keyframes glow { 0%{ opacity: .4;} 100%{ opacity: .75; } }
@keyframes ping { 0%{ transform: scale(1); opacity: .5;} 80%,100%{ transform: scale(2.4); opacity: 0;} }

/* ============= Section heading ============= */
.section {
  padding: var(--section-py) 0;
  position: relative;
}
.section__head {
  margin-bottom: 64px;
  text-align: left;
  max-width: 820px;
}
.section__head--center { text-align: center; margin-inline: auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 22px; height: 1px; background: var(--green);
}
.eyebrow.no-line::before { display: none; }
.section__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.4vw, 60px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -.025em;
  margin: 0 0 18px;
}
.section__desc {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 720px;
  margin: 0;
}

/* ============= Services (bento) ============= */
.services {
  background: linear-gradient(180deg, #FFF 0%, #F7F9F6 100%);
}
.services__bento {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.svc {
  position: relative;
  padding: 26px 26px 24px;
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  transition: transform .5s var(--ease-out), border-color .35s var(--ease), box-shadow .5s var(--ease-out);
  min-height: 226px;
}
.svc::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(47,158,68,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47,158,68,.05) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(120% 100% at 100% 0%, #000, transparent 70%);
  -webkit-mask-image: radial-gradient(120% 100% at 100% 0%, #000, transparent 70%);
  opacity: 0;
  transition: opacity .45s var(--ease);
  pointer-events: none;
  z-index: -1;
}
.svc:hover {
  transform: translateY(-6px);
  border-color: rgba(47,158,68,.35);
  box-shadow: var(--shadow-lg);
}
.svc:hover::after { opacity: 1; }

.svc__num {
  position: absolute;
  top: 22px; right: 26px;
  font-family: "JetBrains Mono", "SF Mono", ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--muted-2);
  font-weight: 500;
  transition: color .3s var(--ease);
}
.svc:hover .svc__num { color: var(--green); }

.svc__icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ECF6EE 0%, #D9EDDD 100%);
  display: grid; place-items: center;
  color: var(--green-dark);
  margin-bottom: 22px;
  position: relative;
  transition: transform .5s var(--ease-out), background .4s var(--ease);
}
.svc__icon::before {
  content: "";
  position: absolute; inset: -4px;
  border-radius: 16px;
  background: radial-gradient(50% 60% at 50% 50%, rgba(47,158,68,.25), transparent 70%);
  opacity: 0;
  transition: opacity .45s var(--ease);
  z-index: -1;
}
.svc:hover .svc__icon {
  transform: rotate(-4deg) scale(1.06);
  background: linear-gradient(135deg, #DCF0E1 0%, #C5E5CD 100%);
}
.svc:hover .svc__icon::before { opacity: 1; }

.svc__title {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -.01em;
  margin: 0 0 10px;
  color: var(--ink);
  line-height: 1.18;
}
.svc__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.svc__more {
  margin-top: 18px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--green-dark);
  letter-spacing: .01em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), gap .35s var(--ease);
  align-self: flex-start;
}
.svc:hover .svc__more { opacity: 1; transform: none; gap: 10px; }

/* Featured card */
.svc--feat {
  grid-row: span 2;
  background: linear-gradient(180deg, #FFFFFF 0%, #F4FAF5 100%);
  border: 1px solid rgba(47,158,68,.25);
  padding: 30px 30px 30px;
  min-height: 480px;
  box-shadow: 0 22px 48px -22px rgba(47,158,68,.28), 0 4px 12px -4px rgba(47,158,68,.08);
}
.svc--feat::after { display: none; }
.svc__visual {
  position: relative;
  margin: -30px -30px 24px;
  padding: 0;
  height: 220px;
  overflow: hidden;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  background: linear-gradient(180deg, #F4FAF5 0%, #E7F3EA 100%);
  border-bottom: 1px solid rgba(47,158,68,.15);
}
.svc__visual svg { width: 100%; height: 100%; display: block; }
.svc--feat:hover .svc__visual { transform: none; }

.svc__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.svc--feat .svc__num {
  position: static;
  font-size: 13px;
  color: var(--green-dark);
}
.svc__badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: rgba(47,158,68,.12);
  padding: 5px 10px;
  border-radius: var(--r-pill);
}
.svc__icon--lg {
  width: 56px; height: 56px;
  border-radius: 14px;
  margin-bottom: 18px;
}
.svc--feat .svc__title {
  font-size: 26px;
  line-height: 1.12;
  margin-bottom: 12px;
}
.svc--feat .svc__desc { font-size: 15px; margin-bottom: 18px; }

.svc__bullets {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex; flex-direction: column;
  gap: 8px;
}
.svc__bullets li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.bullet-dot {
  flex: 0 0 16px;
  width: 16px; height: 16px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--green-soft);
  position: relative;
}
.bullet-dot::after {
  content: "";
  position: absolute; left: 50%; top: 50%;
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  transform: translate(-50%,-50%);
}

.svc__cta {
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start;
  margin-top: auto;
  font-size: 14px;
  font-weight: 600;
  color: var(--green-dark);
  padding: 10px 16px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(47,158,68,.3);
  background: #fff;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), gap .35s var(--ease);
}
.svc__cta:hover { background: var(--green); color: #fff; border-color: var(--green); gap: 12px; }

.services__cta { margin-top: 56px; text-align: center; }

/* ============= About ============= */
.about {
  background: #fff;
}
.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: start;
}
.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
  margin-top: 56px;
}
.feature {
  display: flex; gap: 16px;
}
.feature__icon {
  flex: 0 0 44px;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--green-soft);
  display: grid; place-items: center;
  color: var(--green-dark);
  transition: transform .35s var(--ease);
}
.feature:hover .feature__icon { transform: scale(1.08) rotate(-4deg); }
.feature__title {
  font-size: 17px; font-weight: 600;
  margin: 4px 0 6px;
}
.feature__desc {
  font-size: 14px; color: var(--muted); line-height: 1.55;
  margin: 0;
}
.feature__link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--green-dark);
  font-size: 13px; font-weight: 500;
  margin-top: 10px;
  text-decoration: none;
  border-bottom: 1px solid rgba(47,158,68,.4);
  padding-bottom: 2px;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.feature__link:hover { color: var(--green); border-color: var(--green); }

.about__visual {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #1f3a25, #2F9E44);
  box-shadow: var(--shadow-lg);
}
.about__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.95) contrast(1.05);
  transition: transform 1.2s var(--ease-out);
}
.about__visual:hover img { transform: scale(1.04); }
.about__visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(14,23,20,.55));
}
.about__badge {
  position: absolute;
  left: 24px; bottom: 24px; right: 24px;
  z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-md);
}
.about__badge-num {
  font-size: 28px; font-weight: 600;
  color: var(--green-dark);
  font-variant-numeric: tabular-nums;
}
.about__badge-label {
  font-size: 13px; color: var(--muted);
  max-width: 180px; line-height: 1.4;
}

.about__floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.float-card {
  position: absolute;
  background: #fff;
  border-radius: var(--r-md);
  padding: 12px 14px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500;
  color: var(--ink);
  animation: float 6s var(--ease-soft) infinite alternate;
}
.float-card svg { color: var(--green); }
.float-card.f1 { top: 8%; left: -32px; }
.float-card.f2 { top: 38%; right: -24px; animation-delay: -2s; }
.float-card.f3 { bottom: 18%; left: -16px; animation-delay: -4s; }

@keyframes float {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-14px); }
}

/* ============= Projects ============= */
.projects {
  background: #FAFAF7;
  overflow: hidden;
}
.projects__head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}
.projects__head .btn--ghost { justify-self: end; }
.projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.project {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
  display: flex; flex-direction: column;
}
.project:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.project__img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, #E5EDE6, #D8E3DA);
}
.project__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.project:hover .project__img img { transform: scale(1.06); }
.project__tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  color: var(--green-dark);
  font-size: 12px; font-weight: 600;
  padding: 6px 10px; border-radius: var(--r-pill);
  letter-spacing: .02em;
  z-index: 2;
}
.project__body {
  padding: 22px 22px 24px;
}
.project__cat {
  font-size: 12px;
  color: var(--green-dark);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.project__title {
  font-size: 20px; font-weight: 600; letter-spacing: -.01em;
  margin: 0 0 6px;
}
.project__loc {
  font-size: 14px; color: var(--muted); margin: 0;
}
.project__open {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--ink);
  transform: translateY(-4px); opacity: 0;
  transition: transform .35s var(--ease), opacity .35s var(--ease);
  z-index: 2;
}
.project:hover .project__open { transform: translateY(0); opacity: 1; }

/* SG monogram decorative pattern (luxury style) */
.sg-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'><g fill='none' stroke='white' stroke-width='.8' opacity='.5'><circle cx='100' cy='100' r='32'/><circle cx='100' cy='100' r='22'/></g><g fill='white' opacity='.18' font-family='Georgia, serif' font-style='italic' font-weight='700'><text x='100' y='112' text-anchor='middle' font-size='32'>SG</text></g><g fill='white' opacity='.22'><circle cx='100' cy='40' r='1.8'/><circle cx='100' cy='160' r='1.8'/><circle cx='40' cy='100' r='1.8'/><circle cx='160' cy='100' r='1.8'/><circle cx='58' cy='58' r='1.2'/><circle cx='142' cy='58' r='1.2'/><circle cx='58' cy='142' r='1.2'/><circle cx='142' cy='142' r='1.2'/></g><g fill='none' stroke='white' stroke-width='.4' opacity='.3'><path d='M100 68 L132 100 L100 132 L68 100 Z'/></g></svg>");
  background-size: 180px 180px;
  background-repeat: repeat;
  mix-blend-mode: overlay;
  opacity: .55;
}
.reviews .sg-pattern { opacity: .25; }
.footer .sg-pattern { opacity: .2; }
.contact .sg-pattern { display: none; }

/* ============= Reviews ============= */
.reviews {
  background: linear-gradient(180deg, var(--green-bg) 0%, var(--green-bg-deep) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.reviews::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(40% 50% at 10% 0%, rgba(255,255,255,.12), transparent 60%),
    radial-gradient(50% 60% at 90% 100%, rgba(0,0,0,.18), transparent 60%);
  pointer-events: none;
}
.reviews .section__head { text-align: center; margin-inline: auto; }
.reviews .eyebrow { color: rgba(255,255,255,.85); }
.reviews .eyebrow::before { background: rgba(255,255,255,.4); }
.reviews .section__title { color: #fff; }
.reviews .section__desc { color: rgba(255,255,255,.75); margin-inline: auto; }

.reviews__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.review {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-lg);
  padding: 30px;
  backdrop-filter: blur(8px);
  position: relative;
  transition: transform .5s var(--ease-out), background .35s var(--ease);
  min-height: 200px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.review:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.12);
}
.review__quote {
  font-size: 17px;
  line-height: 1.5;
  color: rgba(255,255,255,.95);
  margin: 0 0 28px;
  letter-spacing: -.005em;
}
.review__quote-mark {
  position: absolute; top: 24px; right: 30px;
  font-family: Georgia, serif;
  font-size: 80px; line-height: 1;
  color: rgba(255,255,255,.12);
  pointer-events: none;
  user-select: none;
}
.review__person {
  display: flex; align-items: center; gap: 12px;
}
.review__avatar {
  position: relative;
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #cdd6cd, #a0aea2);
  flex: 0 0 40px;
  overflow: hidden;
  display: grid; place-items: center;
  color: rgba(255,255,255,.6);
  font-weight: 600;
}
.review__avatar::after {
  content: "";
  position: absolute; bottom: 0; right: 0;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #4FD16E;
  border: 2px solid var(--green-bg);
}
.review__name {
  display: flex; align-items: center; gap: 6px;
  font-weight: 600;
  font-size: 15px;
}
.verified {
  width: 16px; height: 16px;
  color: #5CC0FF;
  flex: 0 0 16px;
}
.review__org {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  margin-top: 2px;
}

/* ============= Contact ============= */
.contact {
  background: #fff;
}
.contact__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.contact__info {
  padding: 8px 0;
}
.contact__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.4vw, 44px);
  font-weight: 600;
  letter-spacing: -.025em;
  margin: 0 0 16px;
}
.contact__desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 36px;
  max-width: 380px;
}
.contact__items {
  display: flex; flex-direction: column;
  gap: 22px;
}
.cinfo {
  display: flex; gap: 14px;
  align-items: flex-start;
}
.cinfo__ico {
  flex: 0 0 40px;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--green-soft);
  color: var(--green-dark);
  display: grid; place-items: center;
}
.cinfo__label {
  font-size: 15px; font-weight: 600;
  margin: 4px 0 2px;
}
.cinfo__sub {
  font-size: 13px; color: var(--muted);
  margin: 0 0 6px;
}
.cinfo__val {
  font-size: 15px; font-weight: 600;
  color: var(--green-dark);
  margin: 0;
}
.cinfo__val a:hover { text-decoration: underline; }

.contact__form {
  background: #FAFAF7;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.contact__form::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: var(--r-xl);
  padding: 1px;
  background: linear-gradient(180deg, rgba(47,158,68,.25), transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
}
.field { display: flex; flex-direction: column; gap: 8px; position: relative; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 13px; font-weight: 500; color: var(--ink);
}
.field label .req { color: var(--green); }
.field input, .field textarea {
  appearance: none;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 10px;
  padding: 12px 14px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  font-family: inherit;
}
.field input:hover, .field textarea:hover { border-color: #c8d2cb; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(47,158,68,.12);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: #B4BDB7; }
.field.has-error input, .field.has-error textarea {
  border-color: #d9534f;
  box-shadow: 0 0 0 4px rgba(217,83,79,.12);
}
.field.has-error label { color: #d9534f; }
.form-check.has-error label { color: #d9534f; }
.form-check.has-error input { outline: 2px solid #d9534f; outline-offset: 2px; }

/* ============= Toast ============= */
.toast-stack {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9000;
  pointer-events: none;
}
.toast {
  pointer-events: auto;
  min-width: 280px;
  max-width: 380px;
  padding: 14px 18px 14px 16px;
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 12px 36px rgba(15,23,20,.18), 0 2px 6px rgba(15,23,20,.08);
  font-size: 14px;
  line-height: 1.45;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-left: 4px solid var(--green);
  transform: translateX(120%);
  opacity: 0;
  transition: transform .35s var(--ease), opacity .25s var(--ease);
}
.toast.is-show { transform: translateX(0); opacity: 1; }
.toast.is-hide { transform: translateX(120%); opacity: 0; }
.toast--success { border-left-color: #1f7a2d; }
.toast--error   { border-left-color: #a02929; }
.toast--warn    { border-left-color: #b35900; }
.toast__icon {
  flex: 0 0 22px; width: 22px; height: 22px; margin-top: 1px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
}
.toast--success .toast__icon { background: #DDF3E0; color: #1f7a2d; }
.toast--error   .toast__icon { background: #FBE2E2; color: #a02929; }
.toast--warn    .toast__icon { background: #FBEBD2; color: #b35900; }
.toast__title { font-weight: 600; margin: 0 0 2px; font-size: 14px; }
.toast__desc  { margin: 0; color: var(--muted); font-size: 13px; }
.toast__close {
  margin-left: auto; background: none; border: 0; cursor: pointer;
  color: var(--muted); font-size: 20px; line-height: 1; padding: 0 4px;
}
.toast__close:hover { color: var(--ink); }
@media (max-width: 600px) {
  .toast-stack { right: 12px; left: 12px; bottom: 12px; }
  .toast { min-width: 0; max-width: 100%; }
}

.form-check {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--muted);
  margin-top: 8px;
}
.form-check input { width: 16px; height: 16px; accent-color: var(--green); }
.form-check a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--green); }
.contact__submit {
  width: 100%;
  justify-content: center;
  padding: 16px 24px;
  font-size: 15px;
  margin-top: 16px;
}

/* ============= Footer ============= */
.footer {
  background: linear-gradient(180deg, var(--green-bg) 0%, var(--green-bg-deep) 100%);
  color: #fff;
  padding: 40px 0 24px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 70% at 0% 0%, rgba(255,255,255,.08), transparent 60%);
  pointer-events: none;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  margin-bottom: 24px;
  position: relative;
}
.footer__brand .logo { color: #fff; font-size: 22px; }
.footer__brand .logo__mark svg .leaf { fill: #fff; }
.footer__brand .logo__mark svg .ring { stroke: #fff; }
.footer__brand .logo__mark svg .dot { fill: #fff; }
.footer__brand-desc {
  max-width: 360px;
  margin: 18px 0 0;
  font-size: 14px;
  color: rgba(255,255,255,.78);
  line-height: 1.55;
}
.footer__nav {
  display: flex; gap: 44px;
  font-size: 15px;
}
.footer__nav a {
  color: rgba(255,255,255,.85);
  transition: color .25s var(--ease);
}
.footer__nav a:hover { color: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.18);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,.7);
  flex-wrap: wrap; gap: 12px;
  position: relative;
}
.footer__legal { display: flex; gap: 20px; }
.footer__giant {
  position: absolute;
  bottom: -80px; right: -32px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 180px;
  line-height: 1;
  letter-spacing: -.06em;
  color: rgba(255,255,255,.05);
  pointer-events: none;
  user-select: none;
}

/* Universal photo placeholder */
.photo-ph {
  position: relative;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #1f3a25 0%, #2F9E44 60%, #1a4f25 100%);
  overflow: hidden;
}
.photo-ph::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(70% 70% at 50% 50%, #000, transparent 85%);
  -webkit-mask-image: radial-gradient(70% 70% at 50% 50%, #000, transparent 85%);
}
.photo-ph::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 60% at 30% 20%, rgba(255,255,255,.12), transparent 60%),
    radial-gradient(40% 50% at 80% 80%, rgba(0,0,0,.2), transparent 60%);
  pointer-events: none;
}
.photo-ph__label {
  position: relative;
  z-index: 2;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  padding: 9px 16px;
  border: 1px dashed rgba(255,255,255,.4);
  border-radius: 999px;
  font-weight: 500;
  background: rgba(0,0,0,.15);
  backdrop-filter: blur(2px);
  text-align: center;
  max-width: 80%;
}

/* ============= Reveal animations ============= */
.reveal { transition: opacity .8s var(--ease-out), transform .9s var(--ease-out); }
body.js-ready .reveal:not(.in) {
  opacity: 0;
  transform: translateY(28px);
}
body.js-ready .reveal.in {
  opacity: 1 !important;
  transform: none !important;
}
.reveal[data-delay="1"] { transition-delay: 60ms; }
.reveal[data-delay="2"] { transition-delay: 120ms; }
.reveal[data-delay="3"] { transition-delay: 180ms; }
.reveal[data-delay="4"] { transition-delay: 240ms; }
.reveal[data-delay="5"] { transition-delay: 300ms; }
.reveal[data-delay="6"] { transition-delay: 360ms; }
.reveal[data-delay="7"] { transition-delay: 420ms; }

/* word reveal */
.word-reveal { display: inline-block; overflow: hidden; vertical-align: bottom; }
.word-reveal > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1s var(--ease-out);
}
.word-reveal.in > span { transform: none; }

/* ============= Marquee ============= */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: inline-flex;
  gap: 56px;
  animation: marquee 32s linear infinite;
  align-items: center;
}
.marquee__item {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 500;
}
.marquee__item .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex: 0 0 6px;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============= Responsive ============= */
@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr .85fr; gap: 32px; }
  .hero__atom { max-width: 380px; margin: 0; aspect-ratio: 1/1; }
  .atom-mark { width: 52%; }
  .services__bento {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto auto;
  }
  .svc--feat { grid-column: 1 / -1; grid-row: auto; min-height: auto; }
  .svc--feat .svc__visual { height: 180px; }
  .about__grid { grid-template-columns: 1fr; gap: 56px; }
  .reviews__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .projects__head { grid-template-columns: 1fr; }
  .projects__head .btn--ghost { justify-self: start; }
  .projects__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  :root { --section-py: 80px; }
  .header { padding: 14px 0; }
  .nav { display: none; }
  .hero { padding: 96px 0 80px; min-height: auto; }
  .hero__inner { align-items: start; }
  .hero__inner { grid-template-columns: 1fr; gap: 24px; }
  .hero__atom {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 1/1;
    margin: 8px auto 0;
  }
  .atom-mark { width: 50%; }
  .hero__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 28px;
    margin-top: 48px;
  }
  .stat__num { font-size: 34px; }
  .services__bento { grid-template-columns: 1fr 1fr; }
  .projects__grid { grid-template-columns: 1fr; }
  .about__features { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .contact__form { padding: 24px; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__nav { flex-wrap: wrap; gap: 20px 28px; }
  .footer__giant { font-size: 140px; bottom: -56px; }
  .float-card { display: none; }
}
