/* ============================================================
   Sprig Web Design — main.css  (light theme)
   ============================================================ */

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --bg:      #f7f9f5;
  --bg2:     #edf0e9;
  --bg3:     #e3e8de;
  --card:    #ffffff;
  --card-h:  #f9fbf7;
  --border:  rgba(0,0,0,0.09);
  --bdr-g:   rgba(58,125,68,0.32);
  --green:   #7BB56A;
  --gd:      #3A7D44;
  --gdd:     #1A3D2B;
  --gl:      #C8E8BE;
  --gbg:     rgba(58,125,68,0.08);
  --t1:      #1a2028;
  --t2:      #4a5568;
  --t3:      #718096;
  --font:    'Figtree', -apple-system, sans-serif;
  --ease:    cubic-bezier(0.4,0,0.2,1);
  --spring:  cubic-bezier(0.34,1.56,0.64,1);
  --r:       12px;
  --r2:      18px;
  --r3:      24px;
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; font-size: 16px; }
body { font-family: var(--font); background: var(--bg); color: var(--t1); overflow-x: hidden; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { font-family: var(--font); cursor: pointer; }

/* ─── SCROLLBAR ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(58,125,68,0.28); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: rgba(58,125,68,0.48); }
::selection { background: rgba(58,125,68,0.14); color: var(--t1); }

/* ─── PAGE TRANSITIONS ───────────────────────────────────── */
body { animation: pgIn .42s var(--ease) both; }
body.exiting { animation: pgOut .26s var(--ease) forwards !important; }
@keyframes pgIn  { from { opacity:0; transform:translateY(10px) } to { opacity:1; transform:none } }
@keyframes pgOut { to   { opacity:0; transform:translateY(-6px) } }
@keyframes fadeUp{ from { opacity:0; transform:translateY(22px) } to { opacity:1; transform:none } }
@keyframes blink { 0%,100%{ box-shadow:0 0 6px var(--green) } 50%{ box-shadow:0 0 14px var(--green) } }

/* ─── UTILITIES ──────────────────────────────────────────── */
.gt {
  background: linear-gradient(135deg, var(--gd) 0%, #5aac5a 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stag {
  display: inline-block;
  color: var(--gd); font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 16px;
}
.st  { font-size: clamp(30px,4vw,52px); font-weight: 900; letter-spacing: -.03em; line-height: 1.1; margin-bottom: 14px; }
.ss  { font-size: 16px; color: var(--t2); max-width: 500px; line-height: 1.72; }
.sh  { text-align: center; margin-bottom: 60px; }
.sh .ss { margin: 0 auto; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
section { padding: 100px 0; }
.sep { height: 1px; background: linear-gradient(90deg,transparent,var(--border) 25%,var(--border) 75%,transparent); margin: 0; }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font); font-size: 14px; font-weight: 600;
  padding: 12px 24px; border-radius: 100px; border: none;
  cursor: pointer; white-space: nowrap; position: relative; overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s, background .22s, color .22s, border-color .22s;
}
.btn::after {
  content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0); transition: background .2s;
}
.btn:hover::after { background: rgba(0,0,0,0.03); }
.btn svg { transition: transform .22s var(--spring); flex-shrink: 0; }
.btn:hover svg { transform: translateX(3px); }
.btn-p {
  background: linear-gradient(135deg,var(--gd),var(--green));
  color: #fff; box-shadow: 0 4px 20px rgba(58,125,68,.22);
}
.btn-p:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(58,125,68,.32); }
.btn-g {
  background: transparent; color: var(--t2); border: 1px solid var(--border);
}
.btn-g:hover { border-color: var(--green); color: var(--gd); background: var(--gbg); transform: translateY(-1px); }
.btn-w {
  background: rgba(0,0,0,.06); color: var(--t1); border: 1px solid rgba(0,0,0,.12);
}
.btn-w:hover { background: rgba(0,0,0,.1); transform: translateY(-1px); }

/* ─── NAVIGATION ─────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  transition: background .35s var(--ease), border-color .35s, box-shadow .35s;
}
.nav.on {
  background: rgba(247,249,245,.96); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border); box-shadow: 0 2px 16px rgba(0,0,0,.08);
}
.nav-in {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  height: 66px; display: flex; align-items: center; gap: 36px;
}

/* Logo */
.logo {
  display: flex; align-items: center; gap: 8px;
  font-size: 18px; font-weight: 800; letter-spacing: -.03em;
  flex-shrink: 0; color: var(--t1); transition: opacity .2s;
}
.logo:hover { opacity: .85; }
.logo-mark {
  width: 36px; height: 36px; flex-shrink: 0;
  transition: filter .35s;
  overflow: visible;
  will-change: transform;
}
.logo:hover .logo-mark {
  filter: drop-shadow(0 4px 10px rgba(58,125,68,.45));
}

/* Animated logo mark */
.logo-s-wrap {
  transform-box: fill-box;
  transform-origin: center;
  transform: translateZ(0);
}
.logo-s {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: s-draw 1.1s .1s cubic-bezier(.4,0,.2,1) both,
             s-breathe 4s 1.3s ease-in-out infinite;
  will-change: stroke-dashoffset;
}
@keyframes s-draw    { to { stroke-dashoffset: 0; } }
@keyframes s-breathe { 0%,100%{ opacity:1 } 50%{ opacity:.8 } }
@media (prefers-reduced-motion: reduce) {
  .logo-s    { animation: none !important; stroke-dashoffset: 0; }
}

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 1px; flex: 1; }
.nl {
  font-size: 14px; font-weight: 500; color: var(--t2);
  padding: 7px 12px; border-radius: 8px; transition: color .2s, background .2s;
  position: relative; white-space: nowrap; cursor: pointer;
}
.nl::after {
  content: ''; position: absolute; bottom: 3px; left: 12px; right: 12px;
  height: 1.5px; background: linear-gradient(90deg, var(--gd), var(--green));
  transform: scaleX(0); transform-origin: left; transition: transform .22s var(--ease);
  border-radius: 2px;
}
.nl:hover { color: var(--t1); background: rgba(0,0,0,.04); }
.nl:hover::after, .nl.active::after { transform: scaleX(1); }
.nl.active { color: var(--t1); }
.nl .ch { width: 12px; height: 12px; opacity: .5; transition: transform .22s; display: inline-block; vertical-align: middle; }
.nl.open .ch { transform: rotate(180deg); }

/* Dropdown */
.drop {
  position: fixed; top: 66px; left: 50%; transform: translateX(-50%) translateY(-8px);
  background: rgba(255,255,255,.98); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border); border-radius: 18px; padding: 18px;
  min-width: 540px; opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .22s var(--ease), transform .22s, visibility .22s;
  box-shadow: 0 16px 48px rgba(0,0,0,.12); z-index: 901;
}
.drop.show { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.drop-g { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.di {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px; border-radius: 10px; transition: background .18s; cursor: pointer;
}
.di:hover { background: var(--bg2); }
.di-ico {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--gbg); border: 1px solid rgba(58,125,68,.14);
  display: flex; align-items: center; justify-content: center; color: var(--gd);
  flex-shrink: 0; transition: background .18s, box-shadow .18s;
}
.di:hover .di-ico { background: rgba(58,125,68,.14); box-shadow: 0 0 10px rgba(58,125,68,.14); }
.di-ico svg { width: 14px; height: 14px; }
.di-t h4 { font-size: 12px; font-weight: 600; color: var(--t1); margin-bottom: 1px; }
.di-t p  { font-size: 11px; color: var(--t3); line-height: 1.4; }

/* Nav CTA */
.nav-cta { flex-shrink: 0; }

/* Mobile */
.burger {
  display: none; flex-direction: column; gap: 4px;
  background: none; border: none; padding: 8px; flex-shrink: 0;
}
.burger span { display: block; width: 20px; height: 1.5px; background: var(--t1); border-radius: 2px; transition: .25s; }
.burger.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.mob-nav {
  display: none; position: fixed; inset: 0; background: var(--bg);
  z-index: 899; flex-direction: column; padding: 84px 28px 40px; overflow-y: auto;
}
.mob-nav.open { display: flex; }
.mob-link { font-size: 20px; font-weight: 700; padding: 13px 0; border-bottom: 1px solid var(--border); color: var(--t2); transition: color .2s; display: block; }
.mob-link:hover, .mob-link.active { color: var(--t1); }

/* ─── HERO (home) ────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  justify-content: center; padding: 90px 0 72px; overflow: hidden; text-align: center;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(72px); will-change: transform; }
.o1 { width:700px;height:700px;top:-150px;left:-150px;background:radial-gradient(circle,rgba(58,125,68,.16),transparent 70%);animation:o1 22s ease-in-out infinite; }
.o2 { width:600px;height:600px;top:0;right:-150px;background:radial-gradient(circle,rgba(123,181,106,.12),transparent 70%);animation:o2 28s ease-in-out infinite; }
.o3 { width:400px;height:400px;bottom:-60px;left:38%;background:radial-gradient(circle,rgba(26,61,43,.1),transparent 70%);animation:o3 19s ease-in-out infinite; }
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,0,0,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(0,0,0,.05) 1px,transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%,black,transparent);
}
@keyframes o1{0%,100%{transform:translate(0,0) scale(1)}35%{transform:translate(65px,45px) scale(1.04)}70%{transform:translate(-30px,75px) scale(.96)}}
@keyframes o2{0%,100%{transform:translate(0,0)}45%{transform:translate(-80px,60px)}80%{transform:translate(40px,-40px)}}
@keyframes o3{0%,100%{transform:translate(0,0) scale(1)}50%{transform:translate(-45px,-32px) scale(1.08)}}

.hero-content { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
.hero h1 {
  font-size: clamp(44px,6.5vw,84px); font-weight: 900; letter-spacing: -.048em;
  line-height: 1.0; margin-bottom: 22px; animation: fadeUp .85s var(--ease) both;
}
.hero-sub { font-size: 18px; color: var(--t2); max-width: 520px; margin: 0 auto 36px; line-height: 1.72; animation: fadeUp .85s .1s var(--ease) both; }
.hero-btns { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 54px; animation: fadeUp .85s .2s var(--ease) both; }
.hero-stats {
  display: inline-flex; align-items: center; gap: 22px;
  padding: 16px 24px; background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r2); box-shadow: 0 4px 16px rgba(0,0,0,.06);
  flex-wrap: wrap; justify-content: center; animation: fadeUp .85s .3s var(--ease) both;
}
.hs { text-align: center; }
.hs strong { display: block; font-size: 20px; font-weight: 800; color: var(--gd); letter-spacing: -.02em; }
.hs span   { font-size: 11px; color: var(--t3); font-weight: 500; }
.hs-d { width: 1px; height: 28px; background: var(--border); }

/* ─── PAGE HERO (sub-pages) ──────────────────────────────── */
.ph {
  position: relative; padding: 136px 0 76px; overflow: hidden;
}
.ph-bg { position: absolute; inset: 0; pointer-events: none; }
.ph-o {
  position: absolute; border-radius: 50%; filter: blur(80px);
}
.ph-o1 { width:500px;height:500px;top:-100px;left:-80px;background:radial-gradient(circle,rgba(58,125,68,.14),transparent 70%); }
.ph-o2 { width:400px;height:400px;top:-80px;right:-80px;background:radial-gradient(circle,rgba(123,181,106,.1),transparent 70%); }
.ph-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,0,0,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(0,0,0,.04) 1px,transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse 90% 80% at 25% 50%,black,transparent);
}
.ph-c { position: relative; z-index: 1; max-width: 660px; }
.ph-c .stag { animation: fadeUp .7s var(--ease) both; }
.ph-c h1 { font-size: clamp(34px,5vw,64px); font-weight: 900; letter-spacing: -.04em; line-height: 1.06; margin-bottom: 18px; animation: fadeUp .7s .07s var(--ease) both; }
.ph-c p   { font-size: 17px; color: var(--t2); line-height: 1.7; margin-bottom: 28px; animation: fadeUp .7s .14s var(--ease) both; max-width: 520px; }
.ph-btns  { display: flex; gap: 12px; flex-wrap: wrap; animation: fadeUp .7s .2s var(--ease) both; }
.ph-sep { height: 1px; background: linear-gradient(90deg,rgba(0,0,0,.08),transparent 60%); }

/* ─── MARQUEE ────────────────────────────────────────────── */
.marquee-wrap { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg2); overflow: hidden; }
.marquee-t { display: flex; width: max-content; animation: mq 26s linear infinite; }
.mi { display: flex; align-items: center; gap: 12px; padding: 15px 32px; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--t3); white-space: nowrap; }
.md { width: 4px; height: 4px; background: var(--green); border-radius: 50%; }
@keyframes mq { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ─── SERVICE CARDS ──────────────────────────────────────── */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.svc-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r3);
  padding: 28px; transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
  position: relative; overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.svc-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg,rgba(58,125,68,.04),transparent 60%);
  opacity: 0; transition: opacity .3s;
}
.svc-card:hover { transform: translateY(-4px); border-color: var(--bdr-g); box-shadow: 0 12px 32px rgba(0,0,0,.08), 0 0 0 1px rgba(58,125,68,.1); }
.svc-card:hover::before { opacity: 1; }
.svc-ico {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--gbg); border: 1px solid rgba(58,125,68,.16);
  display: flex; align-items: center; justify-content: center;
  color: var(--gd); margin-bottom: 18px;
  transition: background .3s, box-shadow .3s, transform .3s var(--ease);
}
.svc-ico svg { width: 20px; height: 20px; }
.svc-card:hover .svc-ico { background: rgba(58,125,68,.12); box-shadow: 0 0 12px rgba(58,125,68,.14); transform: scale(1.05); }
.svc-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; letter-spacing: -.01em; }
.svc-card > p { font-size: 13px; color: var(--t2); margin-bottom: 16px; line-height: 1.65; }
.svc-list { display: flex; flex-direction: column; gap: 6px; }
.svc-list li { display: flex; align-items: center; gap: 7px; font-size: 12px; color: var(--t3); }
.svc-list li::before { content: ''; width: 4px; height: 4px; background: var(--green); border-radius: 50%; flex-shrink: 0; }

/* ─── PROCESS ────────────────────────────────────────────── */
.proc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.proc-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r2); padding: 26px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  transition: transform .28s var(--ease), border-color .28s, box-shadow .28s;
}
.proc-card:hover { border-color: rgba(58,125,68,.32); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.08); }
.pn {
  font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gd); margin-bottom: 14px; display: flex; align-items: center; gap: 10px;
}
.pn::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg,rgba(58,125,68,.32),transparent); }
.proc-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 7px; }
.proc-card p  { font-size: 13px; color: var(--t2); line-height: 1.65; }

/* ─── PORTFOLIO ──────────────────────────────────────────── */
.port-filter { display: flex; gap: 8px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; }
.pf {
  font-family: var(--font); font-size: 13px; font-weight: 600;
  padding: 7px 18px; border-radius: 100px;
  background: var(--card); border: 1px solid var(--border); color: var(--t2);
  cursor: pointer; transition: .22s var(--ease);
  box-shadow: 0 1px 3px rgba(0,0,0,.05);
}
.pf:hover, .pf.on { background: var(--gbg); border-color: rgba(58,125,68,.32); color: var(--gd); }

.port-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.pc {
  border-radius: var(--r2); overflow: hidden; position: relative; cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s; aspect-ratio: 4/3;
}
.pc:first-child { grid-column: span 2; aspect-ratio: 16/9; }
.pc:hover { transform: translateY(-5px) scale(1.008); box-shadow: 0 24px 52px rgba(0,0,0,.22); }

/* Browser mockup */
.mock { width: 100%; height: 100%; display: flex; flex-direction: column; }
.mock-bar {
  height: 22px; display: flex; align-items: center; gap: 5px; padding: 0 10px; flex-shrink: 0;
  background: rgba(0,0,0,.32); border-bottom: 1px solid rgba(255,255,255,.06);
}
.mock-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.28); }
.mock-url { flex: 1; height: 8px; background: rgba(255,255,255,.12); border-radius: 100px; margin: 0 8px; }
.mock-body { flex: 1; padding: 10px; display: flex; flex-direction: column; gap: 6px; overflow: hidden; }
.mock-nav-b { height: 14px; background: rgba(255,255,255,.18); border-radius: 4px; }
.mock-hero-b { flex: 2; background: rgba(255,255,255,.12); border-radius: 6px; min-height: 30px; }
.mock-rows  { display: flex; flex-direction: column; gap: 4px; }
.mock-row   { height: 6px; background: rgba(255,255,255,.14); border-radius: 100px; }
.mock-row.s { width: 62%; }
.mock-g3    { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; }
.mock-blk   { height: 22px; background: rgba(255,255,255,.12); border-radius: 4px; }

/* Gradient schemes (portfolio card backgrounds — keep dark/colorful) */
.pg1 { background: linear-gradient(145deg,#1a3d2b,#2c7042,#5aac60); }
.pg2 { background: linear-gradient(145deg,#0c1c3e,#1a3a7a,#2e60be); }
.pg3 { background: linear-gradient(145deg,#1e0e2c,#4a2280,#7c48cc); }
.pg4 { background: linear-gradient(145deg,#281400,#6a3e0e,#c08030); }
.pg5 { background: linear-gradient(145deg,#061a2a,#0e3c58,#1a7092); }
.pg6 { background: linear-gradient(145deg,#260010,#660024,#b81458); }

/* Hover overlay (over dark card backgrounds — keep dark gradient) */
.port-over {
  position: absolute; inset: 0;
  background: linear-gradient(to top,rgba(5,7,16,.96) 0%,rgba(5,7,16,.5) 55%,transparent 100%);
  opacity: 0; transition: opacity .3s; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 20px;
}
.pc:hover .port-over { opacity: 1; }
.port-over h3   { font-size: 16px; font-weight: 700; margin-bottom: 2px; color: #fff; }
.port-over span { font-size: 11px; color: rgba(255,255,255,.6); display: block; margin-bottom: 10px; }
.view-btn {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--green); color: #fff; font-family: var(--font);
  font-size: 11px; font-weight: 600; padding: 6px 13px; border-radius: 100px;
  width: fit-content; border: none; transition: background .2s, transform .2s;
}
.view-btn:hover { background: var(--gd); transform: translateY(-1px); }

/* ─── MODAL ──────────────────────────────────────────────── */
.modal-bg {
  position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center;
  justify-content: center; padding: 24px; opacity: 0; visibility: hidden;
  transition: opacity .3s, visibility .3s; background: rgba(15,20,15,.55);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.modal-bg.open { opacity: 1; visibility: visible; }
.modal {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r3);
  max-width: 700px; width: 100%; max-height: 90vh; overflow-y: auto;
  transform: translateY(22px) scale(.96); transition: transform .35s var(--ease);
  box-shadow: 0 32px 72px rgba(0,0,0,.18); position: relative;
}
.modal-bg.open .modal { transform: none; }
.modal-head { aspect-ratio: 16/9; border-radius: var(--r3) var(--r3) 0 0; overflow: hidden; flex-shrink: 0; position: relative; }
.modal-body { padding: 28px 32px 32px; }
.modal-cat   { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--gd); margin-bottom: 7px; }
.modal-body h2 { font-size: 26px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 12px; }
.modal-body p  { font-size: 14px; color: var(--t2); line-height: 1.7; margin-bottom: 20px; }
.modal-tags { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 26px; }
.mtag { font-size: 11px; font-weight: 600; padding: 4px 11px; border-radius: 100px; background: var(--gbg); border: 1px solid rgba(58,125,68,.2); color: var(--gd); }
.modal-acts { display: flex; gap: 10px; flex-wrap: wrap; }
.modal-x {
  position: absolute; top: 14px; right: 14px; width: 30px; height: 30px;
  background: rgba(0,0,0,.08); border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--t2); transition: .2s; z-index: 2;
}
.modal-x:hover { background: rgba(0,0,0,.14); color: var(--t1); }
.modal-x svg { width: 13px; height: 13px; }

/* ─── PRICING ────────────────────────────────────────────── */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; align-items: start; }
.price-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r2);
  padding: 32px; position: relative;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  transition: transform .28s var(--ease), box-shadow .28s, border-color .28s;
}
.price-card:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(0,0,0,.1); }
.price-card.hot {
  background: linear-gradient(155deg,rgba(58,125,68,.07),rgba(123,181,106,.04) 60%,rgba(200,232,190,.02));
  border-color: rgba(58,125,68,.35); box-shadow: 0 4px 24px rgba(58,125,68,.1);
  transform: scale(1.018);
}
.price-card.hot:hover { transform: scale(1.018) translateY(-5px); box-shadow: 0 24px 52px rgba(0,0,0,.1), 0 0 40px rgba(58,125,68,.1); }
.price-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg,var(--gd),var(--green)); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 4px 13px; border-radius: 100px; white-space: nowrap; }
.price-name { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--gd); margin-bottom: 7px; }
.price-val  { font-size: 44px; font-weight: 900; letter-spacing: -.04em; line-height: 1; margin-bottom: 4px; }
.price-val sup { font-size: 20px; vertical-align: super; letter-spacing: 0; }
.price-val sub { font-size: 13px; font-weight: 500; color: var(--t2); letter-spacing: 0; vertical-align: bottom; }
.price-quote {
  font-size: 22px; font-weight: 800; letter-spacing: -.02em; line-height: 1;
  color: var(--gd); margin-bottom: 4px;
}
.price-desc { font-size: 13px; color: var(--t2); margin-bottom: 20px; line-height: 1.55; }
.price-div  { height: 1px; background: var(--border); margin-bottom: 18px; }
.price-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.price-item { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--t2); }
.price-item svg { width: 14px; height: 14px; color: var(--gd); flex-shrink: 0; margin-top: 2px; }
.price-card .btn { width: 100%; justify-content: center; }

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; transition: border-color .22s; background: var(--card); box-shadow: 0 1px 3px rgba(0,0,0,.04); }
.faq-item.open { border-color: rgba(58,125,68,.32); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; font-family: var(--font); font-size: 15px;
  font-weight: 600; color: var(--t1); transition: color .2s; cursor: pointer;
}
.faq-q:hover { color: var(--gd); }
.faq-icon { width: 18px; height: 18px; flex-shrink: 0; color: var(--t3); transition: transform .25s, color .22s; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--gd); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .36s var(--ease); }
.faq-a p { padding: 0 20px 18px; font-size: 14px; color: var(--t2); line-height: 1.7; }

/* ─── TESTIMONIALS ───────────────────────────────────────── */
.test-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.test-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r2); padding: 24px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  transition: transform .28s var(--ease), border-color .28s, box-shadow .28s;
}
.test-card:hover { border-color: rgba(58,125,68,.3); transform: translateY(-4px); box-shadow: 0 14px 36px rgba(0,0,0,.09); }
.test-stars { display: flex; gap: 3px; color: var(--green); margin-bottom: 14px; }
.test-stars svg { width: 13px; height: 13px; }
.test-q { font-size: 14px; color: var(--t2); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.test-auth { display: flex; align-items: center; gap: 10px; }
.test-av { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg,var(--gd),var(--green)); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: #fff; flex-shrink: 0; }
.test-name { font-size: 13px; font-weight: 700; }
.test-role { font-size: 11px; color: var(--t3); }

/* ─── FEATURES / WHY US ──────────────────────────────────── */
.feat-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.feat-list { display: flex; flex-direction: column; gap: 20px; }
.feat-item { display: flex; gap: 13px; align-items: flex-start; }
.fi-ico {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--gbg); border: 1px solid rgba(58,125,68,.14);
  display: flex; align-items: center; justify-content: center;
  color: var(--gd); flex-shrink: 0; margin-top: 2px;
  transition: background .25s, box-shadow .25s, transform .25s var(--spring);
}
.feat-item:hover .fi-ico { background: rgba(58,125,68,.14); box-shadow: 0 0 12px rgba(58,125,68,.16); transform: scale(1.06); }
.fi-ico svg { width: 17px; height: 17px; }
.feat-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.feat-item p  { font-size: 13px; color: var(--t2); line-height: 1.6; }

/* ─── STATS ──────────────────────────────────────────────── */
.stats-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.stat-box {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r); padding: 22px;
  box-shadow: 0 1px 4px rgba(0,0,0,.05);
  transition: border-color .25s, transform .25s var(--ease);
}
.stat-box:hover { border-color: rgba(58,125,68,.32); transform: translateY(-3px); }
.stat-n { font-size: 38px; font-weight: 900; color: var(--gd); letter-spacing: -.04em; line-height: 1; margin-bottom: 4px; }
.stat-l { font-size: 13px; color: var(--t2); font-weight: 500; }

/* ─── CTA BANNER ─────────────────────────────────────────── */
.cta-band { padding: 72px 0; }
.cta-box {
  background: linear-gradient(145deg,#eaf5e8,#f3f9f1 60%);
  border: 1px solid rgba(58,125,68,.22); border-radius: var(--r3);
  padding: 60px 44px; text-align: center; position: relative; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%); width: 600px; height: 600px;
  background: radial-gradient(circle,rgba(58,125,68,.06),transparent 60%);
  animation: ctp 7s ease-in-out infinite;
}
@keyframes ctp { 0%,100%{transform:translate(-50%,-50%) scale(1);opacity:.5} 50%{transform:translate(-50%,-50%) scale(1.06);opacity:1} }
.cta-box h2 { font-size: clamp(26px,3.5vw,48px); font-weight: 900; letter-spacing: -.03em; margin-bottom: 12px; position: relative; color: var(--gdd); }
.cta-box p  { font-size: 16px; color: var(--t2); margin-bottom: 28px; position: relative; }
.cta-acts { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; position: relative; }

/* ─── CONTACT ────────────────────────────────────────────── */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.35fr; gap: 56px; align-items: start; }
.c-info h2 { font-size: clamp(26px,3.5vw,44px); font-weight: 900; letter-spacing: -.03em; margin-bottom: 14px; }
.c-info > p { font-size: 15px; color: var(--t2); line-height: 1.7; margin-bottom: 34px; }
.c-details { display: flex; flex-direction: column; gap: 16px; }
.c-row { display: flex; align-items: flex-start; gap: 13px; }
.c-ico {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--gbg); border: 1px solid rgba(58,125,68,.14);
  display: flex; align-items: center; justify-content: center;
  color: var(--gd); flex-shrink: 0; transition: .25s var(--spring);
}
.c-ico svg { width: 15px; height: 15px; }
.c-row:hover .c-ico { transform: scale(1.08) rotate(-5deg); box-shadow: 0 0 10px rgba(58,125,68,.16); }
.c-t h4 { font-size: 13px; font-weight: 600; margin-bottom: 2px; }
.c-t p  { font-size: 13px; color: var(--t2); }

.c-form { background: var(--card); border: 1px solid var(--border); border-radius: var(--r2); padding: 32px; box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.f-g  { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.f-g label { font-size: 11px; font-weight: 700; color: var(--t2); text-transform: uppercase; letter-spacing: .08em; }
.fi {
  font-family: var(--font); font-size: 14px; color: var(--t1);
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 15px; transition: .22s var(--ease); outline: none; width: 100%;
}
.fi:focus { border-color: rgba(58,125,68,.52); background: rgba(58,125,68,.03); box-shadow: 0 0 0 3px rgba(58,125,68,.09); }
.fi::placeholder { color: var(--t3); }
textarea.fi { resize: vertical; min-height: 120px; }
select.fi { cursor: pointer; -webkit-appearance: none; appearance: none; }
select.fi option { background: var(--card); color: var(--t1); }

/* ─── ABOUT PAGE ─────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-visual {
  background: linear-gradient(135deg,rgba(58,125,68,.08),rgba(123,181,106,.04));
  border: 1px solid rgba(58,125,68,.18); border-radius: var(--r2);
  padding: 40px; position: relative; overflow: hidden; min-height: 280px;
  display: flex; flex-direction: column; justify-content: center;
}
.about-visual::before {
  content: ''; position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse,rgba(58,125,68,.06),transparent 60%);
}
.about-visual > * { position: relative; }
.val-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-top: 36px; }
.val-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r); padding: 18px;
  box-shadow: 0 1px 3px rgba(0,0,0,.05);
  transition: border-color .25s, transform .25s;
}
.val-card:hover { border-color: rgba(58,125,68,.3); transform: translateY(-2px); }
.val-ico {
  width: 34px; height: 34px; border-radius: 8px; background: var(--gbg);
  border: 1px solid rgba(58,125,68,.14); display: flex; align-items: center;
  justify-content: center; color: var(--gd); margin-bottom: 10px;
}
.val-ico svg { width: 15px; height: 15px; }
.val-card h4 { font-size: 13px; font-weight: 700; margin-bottom: 3px; }
.val-card p  { font-size: 12px; color: var(--t2); line-height: 1.6; }

/* ─── FOOTER ─────────────────────────────────────────────── */
footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 68px 0 26px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 52px; }
.fb .logo { margin-bottom: 12px; }
.fb p { font-size: 13px; color: var(--t3); line-height: 1.7; max-width: 230px; margin-bottom: 18px; }
.socials { display: flex; gap: 7px; }
.soc {
  width: 30px; height: 30px; background: var(--card); border: 1px solid var(--border);
  border-radius: 7px; display: flex; align-items: center; justify-content: center;
  color: var(--t3); transition: color .22s, border-color .22s, transform .22s var(--spring);
}
.soc:hover { color: var(--gd); border-color: rgba(58,125,68,.32); transform: translateY(-2px); }
.soc svg { width: 13px; height: 13px; }
.fc h4 { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; color: var(--t1); }
.fc li { margin-bottom: 8px; }
.fc a { font-size: 13px; color: var(--t3); transition: color .2s; }
.fc a:hover { color: var(--t1); }
.foot-bot {
  border-top: 1px solid var(--border); padding-top: 22px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.foot-bot p { font-size: 12px; color: var(--t3); }
.foot-bot a { color: var(--gd); }

/* ─── REVEAL ─────────────────────────────────────────────── */
.rev { opacity: 0; transform: translateY(24px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.rev.in { opacity: 1; transform: none; }
.d1{transition-delay:.07s} .d2{transition-delay:.14s} .d3{transition-delay:.21s}
.d4{transition-delay:.28s} .d5{transition-delay:.35s} .d6{transition-delay:.42s}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media(max-width:1024px) {
  .feat-wrap   { grid-template-columns:1fr; gap:36px; }
  .price-grid  { grid-template-columns:1fr; max-width:520px; margin:0 auto; }
  .price-card.hot { transform:none; }
  .price-card.hot:hover { transform:translateY(-5px); }
  .about-grid  { grid-template-columns:1fr; gap:40px; }
  .contact-wrap{ grid-template-columns:1fr; gap:40px; }
  .foot-grid   { grid-template-columns:1fr 1fr; }
  .port-grid   { grid-template-columns:repeat(2,1fr); }
  .pc:first-child { grid-column:span 2; }
}
@media(max-width:768px) {
  section      { padding:72px 0; }
  .nav-links, .nav-cta { display:none; }
  .burger      { display:flex; }
  .svc-grid    { grid-template-columns:1fr; }
  .proc-grid   { grid-template-columns:1fr; }
  .test-grid   { grid-template-columns:1fr; }
  .f-row       { grid-template-columns:1fr; }
  .hero-stats  { gap:14px; }
  .hs-d        { display:none; }
  .cta-box     { padding:36px 20px; }
  .drop        { min-width:90vw; left:5vw; transform:translateX(0) translateY(0)!important; }
  .drop.show   { transform:translateX(0) translateY(0)!important; }
}
@media(max-width:560px) {
  .hero h1     { font-size:38px; }
  .hero-btns   { flex-direction:column; align-items:center; }
  .stats-2     { grid-template-columns:1fr 1fr; }
  .port-grid   { grid-template-columns:1fr; }
  .pc:first-child { grid-column:1; aspect-ratio:4/3; }
  .foot-grid   { grid-template-columns:1fr; }
  .val-grid    { grid-template-columns:1fr; }
  .ph-c h1     { font-size:32px; }
  .modal       { margin:12px; }
  .modal-body  { padding:20px; }
  .price-grid  { max-width:100%; }
  .price-card  { padding:24px 20px; }
}

/* ── Remove service icons site-wide ── */
.di-ico, .svc-ico, .fi-ico { display: none; }
.di { gap: 10px; }
.svc-card { padding-top: 24px; }
.feat-item { gap: 10px; }
