@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --bg: #0b0f0e;
  --bg2: #111815;
  --bg3: #172118;
  --bg4: #1e2b21;
  --surface: #1a2420;
  --surface2: #223028;

  --gold: #f0c040;
  --gold2: #d4a520;
  --green: #3ddc84;
  --green2: #2ab86a;
  --green3: #1a8a4a;

  --text: #f0ede8;
  --text2: #c0d0c0;
  --text3: #8a9a8a;
  --border: rgba(255, 255, 255, .07);
  --border2: rgba(255, 255, 255, .13);

  --font: 'Plus Jakarta Sans', sans-serif;
  --serif: 'Playfair Display', serif;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 36px;

  --ease: cubic-bezier(.25, .46, .45, .94);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font-family: var(--font);
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

/* ── SCROLLBAR ──────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--green3);
  border-radius: 99px;
}

/* ── NOISE OVERLAY ──────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ── NAVBAR ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 800;
  height: 68px;
  display: flex;
  align-items: center;
  padding: 0 40px;
  transition: background .4s var(--ease), border-color .4s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(11, 15, 14, .9);
  border-color: var(--border);
  backdrop-filter: blur(16px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -1px;
  flex-shrink: 0;
  color: #F77F00;
}

.nav-logo .zo {
  color: var(--gold);
}

.nav-logo .vo {
  color: var(--text);
}

.nav-logo .dot {
  color: var(--green);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 36px;
}

.nav-a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text2);
  padding: 7px 14px;
  border-radius: 8px;
  transition: color .2s, background .2s;
}

.nav-a:hover,
.nav-a.active {
  color: var(--text);
  background: rgba(255, 255, 255, .06);
}

.nav-a.active {
  color: var(--green);
}

/* dropdown */
.nav-drop {
  position: relative;
}

.nav-drop-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: var(--r-md);
  padding: 8px;
  min-width: 240px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .6);
  opacity: 0;
  visibility: hidden;
  transition: all .25s var(--ease);
}

.nav-drop:hover .nav-drop-menu,
.nav-drop.open .nav-drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.drop-section {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text3);
  padding: 8px 12px 4px;
}

.drop-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text2);
  transition: background .15s, color .15s;
}

.drop-item:hover {
  background: var(--surface);
  color: var(--text);
}

.drop-ico {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  flex-shrink: 0;
}

.drop-ico,
.drawer-ico,
.feat-ico,
.faq-ico,
.ci-ico,
.float {
  line-height: 1;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}

.drop-sep {
  height: 1px;
  background: var(--border);
  margin: 6px 0;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.nav-toggle {
  width: 42px;
  height: 24px;
  border-radius: 99px;
  background: var(--surface2);
  position: relative;
  transition: background .3s;
  flex-shrink: 0;
}

.nav-toggle-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  position: absolute;
  top: 3px;
  left: 3px;
  transition: transform .3s var(--ease);
}

body.light .nav-toggle {
  background: #c8ddf5;
}

body.light .nav-toggle-dot {
  transform: translateX(18px);
  background: #2563eb;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  border-radius: 8px;
  background: var(--green);
  color: #0b0f0e;
  font-size: 13.5px;
  font-weight: 700;
  transition: background .2s, transform .2s;
}

.nav-cta:hover {
  background: var(--green2);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border-radius: 8px;
}

.hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* mobile drawer */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .7);
  z-index: 850;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
  backdrop-filter: blur(4px);
}

.overlay.open {
  opacity: 1;
  visibility: visible;
}

.drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  max-width: 88vw;
  height: 100vh;
  background: var(--bg2);
  border-left: 1px solid var(--border2);
  z-index: 860;
  display: flex;
  flex-direction: column;
  transition: right .35s var(--ease);
  overflow-y: auto;
}

.drawer.open {
  right: 0;
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.drawer-x {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface);
  font-size: 17px;
  color: var(--text2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.drawer-x:hover {
  background: var(--surface2);
  color: var(--text);
}

.drawer-body {
  flex: 1;
  padding: 10px;
}

.drawer-sec {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text3);
  padding: 12px 12px 4px;
}

.drawer-a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text2);
  transition: background .15s, color .15s;
  margin-bottom: 1px;
}

.drawer-a:hover {
  background: var(--surface);
  color: var(--text);
}

.drawer-ico {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.drawer-cta {
  display: block;
  margin: 12px;
  background: var(--green);
  color: #0b0f0e;
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  transition: background .2s;
}

.drawer-cta:hover {
  background: var(--green2);
}

/* ── HERO ──────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  filter: brightness(0.65);
}

.hero-bg-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 0%, var(--bg) 90%);
}

.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .25;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #1a8a4a, transparent);
  top: -100px;
  right: -100px;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #f0c040, transparent);
  bottom: 0;
  left: -80px;
  opacity: .1;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #3ddc84, transparent);
  top: 40%;
  left: 40%;
  opacity: .08;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
}

.hero-inner {
  position: relative;
  z-index: 10;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(61, 220, 132, .3);
  background: rgba(61, 220, 132, .07);
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 28px;
  letter-spacing: .4px;
}

.hero-chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .3
  }
}

.hero h1 {
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -3px;
  color: var(--text);
  margin-bottom: 24px;
}

.hero h1 em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  letter-spacing: -2px;
}

.hero-sub {
  font-size: 17px;
  color: var(--text2);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 30px;
  border-radius: var(--r-md);
  background: var(--green);
  color: #0b0f0e;
  font-size: 15px;
  font-weight: 700;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 0 0 0 rgba(61, 220, 132, .4);
}

.btn-green:hover {
  background: var(--green2);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(61, 220, 132, .3);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 30px;
  border-radius: var(--r-md);
  background: transparent;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  border: 1px solid var(--border2);
  transition: background .2s, border-color .2s, transform .2s;
}

.btn-ghost:hover {
  background: var(--surface);
  border-color: var(--border2);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--bg2);
  width: fit-content;
  overflow: hidden;
}

.hero-stat {
  padding: 20px 36px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat-n {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 3px;
}

.hero-stat-n span {
  color: var(--green);
}

.hero-stat-l {
  font-size: 11px;
  color: var(--text3);
  font-weight: 500;
  letter-spacing: .3px;
}

/* ── SECTION BASE ──────────────────────────────────────── */
.sec {
  padding: 100px 40px;
}

.sec-alt {
  background: var(--bg2);
}

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

.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}

.sec-eyebrow::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--green);
  display: block;
}

.sec-h {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 14px;
}

.sec-h em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
}

.sec-p {
  font-size: 16px;
  color: var(--text2);
  max-width: 520px;
  line-height: 1.75;
}

/* ── SERVICES ──────────────────────────────────────────── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 52px;
}

.svc-card {
  background: var(--bg2);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background .25s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}

.svc-card:hover {
  background: var(--surface);
}

.svc-card:hover::after {
  transform: scaleX(1);
}

.svc-img-wrap {
  width: 100%;
  height: 160px;
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--surface2);
}

.svc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.svc-card:hover .svc-img {
  transform: scale(1.1);
}

.svc-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.3px;
}

.svc-desc {
  font-size: 13.5px;
  color: var(--text2);
  line-height: 1.65;
  flex: 1;
}

.svc-btns {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.svc-btn-wa {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  border-radius: 8px;
  background: rgba(37, 211, 102, .12);
  color: #25d366;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(37, 211, 102, .2);
  transition: background .2s, border-color .2s;
}

.svc-btn-wa:hover {
  background: rgba(37, 211, 102, .2);
  border-color: rgba(37, 211, 102, .4);
}

.svc-btn-more {
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--surface);
  color: var(--text2);
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--border);
  transition: background .2s, color .2s;
}

.svc-btn-more:hover {
  background: var(--surface2);
  color: var(--text);
}

/* ── HOW IT WORKS ──────────────────────────────────────── */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.how-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
}

.how-card::before {
  content: attr(data-n);
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 96px;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  font-family: var(--font);
  pointer-events: none;
  transition: color .3s;
}

.how-card:hover::before {
  color: rgba(61, 220, 132, .08);
}

.how-n {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(61, 220, 132, .3);
  background: rgba(61, 220, 132, .07);
  color: var(--green);
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.how-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.how-desc {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
}

/* ── FEATURES ──────────────────────────────────────────── */
.feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 56px;
}

.feat-card {
  background: var(--bg2);
  padding: 40px 36px;
  display: flex;
  gap: 24px;
  transition: background .25s;
}

.feat-card:hover {
  background: var(--surface);
}

.feat-ico {
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  transition: transform .25s;
}

.feat-card:hover .feat-ico {
  transform: rotate(-6deg) scale(1.1);
}

.feat-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.feat-desc {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
}

/* ── TESTIMONIALS ──────────────────────────────────────── */
.testi-track-wrap {
  overflow: hidden;
  margin-top: 52px;
}

.testi-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: slide 40s linear infinite;
}

.testi-track:hover {
  animation-play-state: paused;
}

@keyframes slide {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.testi-card {
  width: 300px;
  flex-shrink: 0;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
}

.testi-stars {
  color: var(--gold);
  font-size: 12px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testi-text {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.testi-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text3);
}

/* ── CTA BAND ──────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--bg3) 0%, var(--bg4) 100%);
  border: 1px solid rgba(61, 220, 132, .15);
  border-radius: var(--r-xl);
  padding: 72px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(61, 220, 132, .15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-band>* {
  position: relative;
  z-index: 1;
}

.cta-h {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.1;
}

.cta-h em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
}

.cta-p {
  font-size: 16px;
  color: var(--text2);
  max-width: 440px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 30px;
  border-radius: var(--r-md);
  background: #25d366;
  color: #0b0f0e;
  font-size: 15px;
  font-weight: 700;
  transition: background .2s, transform .2s;
}

.btn-wa:hover {
  background: #1fb759;
  transform: translateY(-2px);
}

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 30px;
  border-radius: var(--r-md);
  background: var(--surface2);
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  border: 1px solid var(--border2);
  transition: background .2s, transform .2s;
}

.btn-call:hover {
  background: var(--surface);
  transform: translateY(-2px);
}

.cta-note {
  font-size: 12px;
  color: var(--text3);
  margin-top: 18px;
}

/* ── FAQ ───────────────────────────────────────────────── */
.faq-wrap {
  max-width: 720px;
  margin: 52px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

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

.faq-q {
  width: 100%;
  text-align: left;
  padding: 20px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  gap: 16px;
  cursor: pointer;
  transition: color .2s;
}

.faq-q:hover {
  color: var(--green);
}

.faq-ico {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text3);
  transition: transform .3s, background .2s;
}

.faq-item.open .faq-ico {
  transform: rotate(45deg);
  background: var(--surface2);
  color: var(--green);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  font-size: 14.5px;
  color: var(--text2);
  line-height: 1.75;
  transition: max-height .4s var(--ease), padding .3s;
  padding: 0 4px;
}

.faq-item.open .faq-body {
  max-height: 300px;
  padding-bottom: 20px;
}

/* ── SERVICE PAGE ──────────────────────────────────────── */
.svc-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}

.svc-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(61, 220, 132, .12) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.svc-hero-inner {
  position: relative;
  z-index: 10;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.svc-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--text);
  line-height: 1.05;
  margin-bottom: 16px;
}

.svc-hero h1 em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
}

.svc-hero-lead {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.75;
  margin-bottom: 28px;
}

.svc-hero-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.svc-order-card {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: var(--r-xl);
  padding: 36px;
}

.soc-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(61, 220, 132, .1);
  border: 1px solid rgba(61, 220, 132, .25);
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 20px;
}

.soc-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 1.5s infinite;
}

.soc-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.soc-sub {
  font-size: 13.5px;
  color: var(--text2);
  margin-bottom: 24px;
}

.soc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  padding: 14px;
  border-radius: var(--r-md);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all .2s;
}

.soc-btn-wa {
  background: #25d366;
  color: #0b0f0e;
}

.soc-btn-wa:hover {
  background: #1fb759;
  transform: translateY(-1px);
}

.soc-btn-call {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border2);
}

.soc-btn-call:hover {
  background: var(--surface2);
  transform: translateY(-1px);
}

.soc-footer {
  text-align: center;
  font-size: 12.5px;
  color: var(--text3);
  margin-top: 14px;
  line-height: 1.6;
}

.svc-details {
  padding: 80px 40px;
}

.svc-details-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
}

.svc-detail-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
}

.svc-detail-text {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 14px;
}

.svc-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

.svc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-radius: var(--r-sm);
  background: var(--bg2);
  border: 1px solid var(--border);
  font-size: 14px;
  color: var(--text2);
  transition: border-color .2s, color .2s;
}

.svc-item:hover {
  border-color: rgba(61, 220, 132, .3);
  color: var(--text);
}

.svc-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.svc-sidebar-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  position: sticky;
  top: 88px;
}

.svc-sidebar-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.svc-sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.svc-sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13.5px;
  color: var(--text2);
  transition: background .15s, color .15s;
}

.svc-sidebar-link:hover,
.svc-sidebar-link.active {
  background: var(--surface);
  color: var(--text);
}

.svc-sidebar-link.active {
  color: var(--green);
}

/* ── ABOUT PAGE ────────────────────────────────────────── */
.about-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(240, 192, 64, .06) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(61, 220, 132, .1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 2;
}

.about-hero-inner {
  position: relative;
  z-index: 10;
  max-width: 760px;
  margin: 0 auto;
}

.about-hero h1 {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--text);
  line-height: 1.05;
  margin-bottom: 20px;
}

.about-hero h1 em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
}

.about-hero p {
  font-size: 18px;
  color: var(--text2);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 56px;
}

.val-card {
  background: var(--bg2);
  padding: 40px 36px;
  transition: background .25s;
}

.val-card:hover {
  background: var(--surface);
}

.val-n {
  font-size: 64px;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  margin-bottom: 14px;
  font-variant-numeric: tabular-nums;
  transition: color .3s;
}

.val-card:hover .val-n {
  color: rgba(61, 220, 132, .15);
}

.val-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.val-text {
  font-size: 14.5px;
  color: var(--text2);
  line-height: 1.75;
}

.zones-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.zone-pill {
  padding: 8px 18px;
  border-radius: 99px;
  background: var(--bg2);
  border: 1px solid var(--border);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text2);
  transition: border-color .2s, color .2s, background .2s;
}

.zone-pill:hover {
  border-color: rgba(61, 220, 132, .4);
  color: var(--green);
  background: rgba(61, 220, 132, .06);
}

/* ── CONTACT PAGE ──────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 56px;
  align-items: start;
}

.ci {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: var(--bg2);
  margin-bottom: 12px;
  transition: border-color .2s;
}

.ci:hover {
  border-color: rgba(61, 220, 132, .3);
}

.ci-ico {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.ci-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 4px;
}

.ci-val {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.ci-val a {
  color: var(--green);
}

.form-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px;
}

.form-label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 7px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--font);
  font-size: 14.5px;
  color: var(--text);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  margin-bottom: 16px;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: rgba(61, 220, 132, .5);
  box-shadow: 0 0 0 3px rgba(61, 220, 132, .1);
}

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

.form-select option {
  background: var(--bg2);
}

.form-btn {
  width: 100%;
  padding: 15px;
  background: var(--green);
  color: #0b0f0e;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--r-md);
  cursor: pointer;
  transition: background .2s, transform .2s;
}

.form-btn:hover {
  background: var(--green2);
  transform: translateY(-1px);
}

/* ── SEO BLOCK ─────────────────────────────────────────── */
.seo-block {
  padding: 64px 40px;
  background: var(--bg2);
}

.seo-content {
  max-width: 900px;
  margin: 0 auto;
  columns: 2;
  column-gap: 44px;
}

.seo-content p {
  font-size: 14px;
  color: var(--text3);
  line-height: 1.85;
  margin-bottom: 12px;
  break-inside: avoid;
}

.seo-content strong {
  color: var(--text2);
  font-weight: 600;
}

/* ── MAP ───────────────────────────────────────────────── */
.map-box {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 320px;
  margin-top: 40px;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(100%) invert(90%) contrast(80%);
}

/* ── FLOATING ──────────────────────────────────────────── */
.floats {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 700;
}

.float {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .4);
  transition: transform .2s, box-shadow .2s;
}

.float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .5);
}

.float-wa {
  background: #25d366;
}

.float-ph {
  background: var(--green3);
}

/* ── FOOTER ────────────────────────────────────────────── */
.footer {
  padding: 72px 40px 36px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1160px;
  margin: 0 auto 52px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
  color: #F77F00;
}

.footer-logo .zo {
  color: var(--gold);
}

.footer-logo .vo {
  color: var(--text);
}

.footer-logo .dot {
  color: var(--green);
}

.footer-desc {
  font-size: 14px;
  color: var(--text3);
  line-height: 1.75;
  max-width: 260px;
  margin-bottom: 22px;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text3);
  font-size: 15px;
  transition: background .2s, color .2s, border-color .2s;
}

.footer-social:hover {
  background: var(--surface2);
  color: var(--text);
  border-color: var(--border2);
}

.footer-col-h {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text2);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 13.5px;
  color: var(--text3);
  transition: color .2s;
}

.footer-link:hover {
  color: var(--green);
}

.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: var(--text3);
}

.footer-bottom a {
  color: var(--text3);
  transition: color .2s;
}

.footer-bottom a:hover {
  color: var(--green);
}

/* ── ANIMATIONS ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: .1s;
}

.reveal-delay-2 {
  transition-delay: .2s;
}

.reveal-delay-3 {
  transition-delay: .3s;
}

/* ── LIGHT MODE ────────────────────────────────────────── */
body.light {
  --bg: #f8f7f4;
  --bg2: #ffffff;
  --bg3: #f0ede8;
  --bg4: #e8f5ee;
  --surface: #f0ede8;
  --surface2: #e6e2dc;
  --text: #0f1a14;
  --text2: #4a5e52;
  --text3: #8a9e92;
  --border: rgba(0, 0, 0, .08);
  --border2: rgba(0, 0, 0, .14);
  --green: #0a7a3c;
  --green2: #0e9048;
  --green3: #0d6535;
  --gold: #c08a00;
  --gold2: #a07200;
}

body.light .map-box iframe {
  filter: none;
}

body.light .nav.scrolled {
  background: rgba(248, 247, 244, .92);
}

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero {
    padding: 100px 24px 64px;
  }

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

  .svc-details-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 900px) {
  .nav {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

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

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

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

  .sec {
    padding: 72px 24px;
  }

  .seo-content {
    columns: 1;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    letter-spacing: -2px;
  }

  .hero-stats {
    flex-direction: column;
    border-radius: var(--r-md);
  }

  .hero-stat {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .hero-stat:last-child {
    border-bottom: none;
  }

  .cta-band {
    padding: 48px 24px;
  }

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

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

/* ── COOKIE BANNER ─────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 24px 40px;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.2);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: bottom 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
  bottom: 0;
}

.cookie-content {
  flex: 1;
}

.cookie-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.cookie-text {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.6;
}

.cookie-text a {
  color: var(--green);
  text-decoration: underline;
}

.cookie-btns {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all 0.2s;
}

.cookie-btn.accept {
  background: var(--green);
  color: #0b0f0e;
}

.cookie-btn.accept:hover {
  background: var(--green2);
}

.cookie-btn.decline {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border2);
}

.cookie-btn.decline:hover {
  background: var(--surface2);
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
  }
  .cookie-btns {
    flex-direction: column;
  }
}