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

:root {
  --coal:    #111318;
  --coal-m:  #1a1e26;
  --coal-lt: #242832;
  --green:   #1fc26a;
  --green-d: #17a358;
  --green-lt:#4dd68a;
  --white:   #ffffff;
  --off:     #f5f6f8;
  --light:   #eceef2;
  --text:    #0f1117;
  --muted:   #6e7585;
  --border:  rgba(255,255,255,0.07);
  --border-l: rgba(15,17,23,0.1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--coal);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4.5rem;
  background: rgba(17,19,24,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo-icon {
  width: 34px; height: 34px;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

.nav-logo-icon span {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--coal);
}

.nav-wordmark {
  font-family: 'Syne', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.nav-wordmark small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.56rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

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

.nav-links .n-cta a {
  color: var(--coal);
  background: var(--green);
  padding: 0.48rem 1.4rem;
  font-weight: 500;
  transition: background 0.2s;
}

.nav-links .n-cta a:hover { background: var(--green-lt); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding-top: 70px;
  background: var(--coal);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Radial glow */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(31,194,106,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(31,194,106,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Grid lines decoration */
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 4.5rem 3rem;
  position: relative;
  z-index: 2;
}

.hero-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(31,194,106,0.3);
  background: rgba(31,194,106,0.08);
  padding: 0.3rem 0.9rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 500;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.hero-location {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
}

/* Giant heading */
.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3rem, 7vw, 7.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 2.5rem;
  max-width: 900px;
}

.hero h1 .line-green { color: var(--green); display: block; }
.hero h1 .line-dim { color: rgba(255,255,255,0.25); display: block; }

.hero-bottom {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
}

.hero-bottom-desc {
  background: var(--coal-m);
  padding: 2.2rem 2.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}

.hero-bottom-desc p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.75;
  max-width: 380px;
}

.hero-bottom-desc-btns {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn-green {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--green);
  color: var(--coal);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: background 0.25s;
}

.btn-green:hover { background: var(--green-lt); }

.btn-outline-w {
  display: inline-block;
  padding: 0.75rem 2rem;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s;
}

.btn-outline-w:hover { border-color: rgba(255,255,255,0.4); color: var(--white); }

.hero-kpi {
  background: var(--coal-m);
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-left: 1px solid var(--border);
}

.kpi-val {
  font-family: 'Syne', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.kpi-val em { color: var(--green); font-style: normal; }

.kpi-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
  line-height: 1.4;
}

/* ── ABOUT ── */
#about {
  padding: 8rem 4.5rem;
  background: var(--off);
  color: var(--text);
}

.about-wrap {
  max-width: 1160px;
  margin: 0 auto;
}

.overtitle {
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--green-d);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.sec-h {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--coal);
  letter-spacing: -0.02em;
}

.rule {
  width: 32px; height: 3px;
  background: var(--green);
  margin: 1.2rem 0 2rem;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 4rem;
}

.about-body p {
  color: var(--muted);
  margin-bottom: 1.2rem;
  font-size: 0.97rem;
}

.about-body p strong { color: var(--text); font-weight: 500; }

.about-highlight {
  margin-top: 2rem;
  padding: 1.6rem 2rem;
  background: var(--coal);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.about-highlight::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--green);
}

.about-highlight p {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
  margin: 0;
}

/* About right — feature list */
.about-features {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.about-feat {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.6rem 1.8rem;
  background: var(--white);
  border: 1px solid var(--border-l);
  margin-bottom: 1px;
  transition: background 0.2s;
}

.about-feat:hover { background: var(--light); }

.feat-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  margin-top: 8px;
}

.about-feat h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--coal);
  margin-bottom: 0.2rem;
}

.about-feat p { font-size: 0.84rem; color: var(--muted); margin: 0; line-height: 1.6; }

/* ── SERVICES ── */
#services {
  padding: 8rem 4.5rem;
  background: var(--coal-m);
}

.services-wrap { max-width: 1160px; margin: 0 auto; }
.services-wrap .overtitle { color: var(--green); }
.services-wrap .sec-h { color: var(--white); }

.services-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: end;
  margin-bottom: 4rem;
}

.svc-note { font-size: 0.95rem; color: rgba(255,255,255,0.38); line-height: 1.8; align-self: end; }

/* Horizontal service rows */
.svc-rows { display: flex; flex-direction: column; gap: 1px; }

.svc-row-item {
  display: grid;
  grid-template-columns: 64px 1fr 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 2rem 2.4rem;
  background: var(--coal-lt);
  border: 1px solid var(--border);
  transition: background 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}

.svc-row-item::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: var(--green);
  transition: width 0.3s ease;
}

.svc-row-item:hover { background: rgba(31,194,106,0.04); border-color: rgba(31,194,106,0.2); }
.svc-row-item:hover::after { width: 2px; }

.svc-row-num {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: 0.1em;
}

.svc-row-title {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.svc-row-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.6;
}

.svc-row-tag {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid rgba(31,194,106,0.25);
  padding: 0.3rem 0.9rem;
  white-space: nowrap;
  text-align: center;
}

/* ── PROCESS ── */
#process {
  padding: 8rem 4.5rem;
  background: var(--coal);
  border-top: 1px solid var(--border);
}

.process-wrap { max-width: 1160px; margin: 0 auto; }
.process-wrap .overtitle { color: var(--green); }
.process-wrap .sec-h { color: var(--white); }

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 4rem;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 20px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(to right, var(--green), rgba(31,194,106,0.1));
}

.proc-step {
  padding: 0 2rem;
  position: relative;
}

.proc-step-dot {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--coal-lt);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.8rem;
  position: relative;
  z-index: 1;
  transition: border-color 0.25s, background 0.25s;
}

.proc-step:first-child .proc-step-dot,
.proc-step.active .proc-step-dot {
  background: var(--green);
  border-color: var(--green);
}

.proc-step-dot span {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  color: rgba(255,255,255,0.4);
}

.proc-step:first-child .proc-step-dot span,
.proc-step.active .proc-step-dot span {
  color: var(--coal);
}

.proc-step h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.proc-step p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}

/* ── REVIEWS ── */
#reviews {
  padding: 8rem 4.5rem;
  background: var(--off);
  color: var(--text);
}

.reviews-wrap { max-width: 1160px; margin: 0 auto; }
.reviews-wrap .overtitle { color: var(--green-d); }
.reviews-wrap .sec-h { color: var(--coal); }
.reviews-wrap .rule { background: var(--green); }

.reviews-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
}

.reviews-rating {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--coal);
  padding: 1rem 1.6rem;
  color: var(--white);
}

.rating-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.rating-stars { display: flex; gap: 3px; margin-bottom: 0.2rem; }

.star {
  width: 14px; height: 14px;
  background: var(--green);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.rating-label { font-size: 0.72rem; color: rgba(255,255,255,0.4); }

/* Masonry-like reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--border-l);
}

.rev-card {
  background: var(--white);
  padding: 2.4rem 2.2rem;
  border: 1px solid var(--border-l);
  position: relative;
}

.rev-card::before {
  content: '"';
  font-family: 'Syne', sans-serif;
  font-size: 5rem;
  font-weight: 800;
  color: var(--green);
  line-height: 0.8;
  display: block;
  margin-bottom: 1rem;
  opacity: 0.6;
}

.rev-text {
  font-size: 0.91rem;
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 1.6rem;
  font-style: italic;
}

.rev-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border-l);
}

.rev-av {
  width: 36px; height: 36px;
  background: var(--coal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
}

.rev-name { font-size: 0.88rem; font-weight: 600; color: var(--coal); }
.rev-role { font-size: 0.74rem; color: var(--muted); }

/* ── FAQ ── */
#faq {
  padding: 8rem 4.5rem;
  background: var(--coal-m);
}

.faq-wrap { max-width: 1160px; margin: 0 auto; }
.faq-wrap .overtitle { color: var(--green); }
.faq-wrap .sec-h { color: var(--white); }
.faq-wrap .rule { background: var(--green); }

.faq-intro-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  align-items: start;
  margin-top: 3rem;
}

.faq-side { position: sticky; top: 100px; }
.faq-side p { font-size: 0.93rem; color: rgba(255,255,255,0.38); line-height: 1.8; margin-top: 1rem; }

.faq-side-contact {
  margin-top: 2rem;
  padding: 1.6rem;
  background: rgba(31,194,106,0.08);
  border: 1px solid rgba(31,194,106,0.2);
}

.faq-side-contact p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin: 0 0 1rem;
}

.faq-list { list-style: none; }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
  width: 100%; background: none; border: none;
  padding: 1.5rem 0;
  display: flex; justify-content: space-between;
  align-items: center; gap: 1rem; cursor: pointer;
}

.faq-q-text {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  text-align: left;
  line-height: 1.4;
}

.faq-icon {
  width: 26px; height: 26px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}

.faq-icon svg {
  width: 11px; height: 11px;
  stroke: rgba(255,255,255,0.4); fill: none; stroke-width: 2;
  transition: transform 0.3s, stroke 0.2s;
}

.faq-item.open .faq-icon { background: var(--green); border-color: var(--green); }
.faq-item.open .faq-icon svg { stroke: var(--coal); transform: rotate(45deg); }

.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-item.open .faq-a { max-height: 300px; padding-bottom: 1.4rem; }
.faq-a p { font-size: 0.9rem; color: rgba(255,255,255,0.38); line-height: 1.75; }

/* ── CONTACT ── */
#contact {
  padding: 8rem 4.5rem;
  background: var(--coal);
  border-top: 1px solid var(--border);
}

.contact-wrap { max-width: 1160px; margin: 0 auto; }
.contact-wrap .overtitle { color: var(--green); }

/* Big typographic contact */
.contact-heading {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 4rem;
}

.contact-heading span { color: var(--green); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--border);
  margin-bottom: 3rem;
}

.contact-block {
  background: var(--coal-lt);
  padding: 2.8rem 2.6rem;
  border: 1px solid var(--border);
  position: relative;
  transition: background 0.25s;
}

.contact-block:hover { background: var(--coal-m); }

.contact-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: transparent;
  transition: background 0.25s;
}

.contact-block:hover::before { background: var(--green); }

.cb-icon {
  width: 48px; height: 48px;
  background: rgba(31,194,106,0.1);
  border: 1px solid rgba(31,194,106,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.6rem;
}

.cb-icon svg {
  width: 20px; height: 20px;
  stroke: var(--green); fill: none;
  stroke-width: 1.5; stroke-linecap: round;
}

.cb-label {
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cb-value {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
}

.cb-value a {
  color: inherit; text-decoration: none;
  transition: color 0.2s;
}

.cb-value a:hover { color: var(--green); }

.cb-sub {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.3);
  margin-top: 0.4rem;
  line-height: 1.4;
}

/* Map */
.contact-map {
  width: 100%; height: 300px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.contact-map iframe {
  width: 100%; height: 100%; border: 0;
  filter: grayscale(1) invert(1) brightness(0.6) contrast(1.3) hue-rotate(90deg);
  opacity: 0.7;
}

/* ── FOOTER ── */
footer {
  background: var(--coal);
  border-top: 1px solid var(--border);
  padding: 2rem 4.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-icon {
  width: 26px; height: 26px;
  background: var(--green);
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  display: flex; align-items: center; justify-content: center;
}

.footer-icon span {
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--coal);
}

.footer-name {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
}

footer p { font-size: 0.73rem; color: rgba(255,255,255,0.2); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .hero-main { padding: 3rem 1.5rem 2rem; }
  .hero-bottom { grid-template-columns: 1fr 1fr; }
  .hero-bottom-desc { grid-column: span 2; }
  #about, #services, #process, #reviews, #faq, #contact { padding: 5rem 1.5rem; }
  .about-layout { grid-template-columns: 1fr; gap: 3rem; }
  .services-head { grid-template-columns: 1fr; gap: 2rem; }
  .svc-row-item { grid-template-columns: 40px 1fr; }
  .svc-row-desc, .svc-row-tag { display: none; }
  .process-timeline { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .process-timeline::before { display: none; }
  .reviews-top { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .faq-intro-row { grid-template-columns: 1fr; gap: 3rem; }
  .faq-side { position: static; }
  .contact-heading { font-size: clamp(2rem, 8vw, 3.5rem); }
  .contact-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 0.6rem; text-align: center; padding: 1.5rem; }
}
