/* ============================================================
   DIVIN DESIGN & EXHIBITS — Design System
   Palette: Silver-Gray + Green (Emerald/Forest)
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Green scale */
  --green-950: #041b13;
  --green-900: #052e26;
  --green-800: #064e3b;
  --green-700: #0b6b4f;
  --green-600: #109067;
  --green-500: #17b083;
  --green-400: #34d399;
  --green-300: #6ee7b7;
  --green-200: #a7f3d0;
  --mint: #d1fae5;

  /* Silver / slate-gray scale */
  --silver-25: #fbfcfc;
  --silver-50: #f5f7f7;
  --silver-100: #eceff0;
  --silver-200: #dde2e3;
  --silver-300: #c3cbcd;
  --silver-400: #96a2a5;
  --silver-500: #6a777a;
  --silver-600: #4b585b;
  --silver-700: #333d3f;
  --silver-800: #212a2b;
  --silver-900: #131a1b;

  /* Semantic */
  --ink: #0d1413;
  --bg: #ffffff;
  --bg-soft: var(--silver-50);
  --surface: #ffffff;
  --line: var(--silver-200);
  --muted: var(--silver-500);
  --accent: var(--green-600);
  --accent-bright: var(--green-400);

  /* Effects */
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --shadow-sm: 0 2px 10px rgba(13, 26, 22, .06);
  --shadow: 0 20px 45px -20px rgba(13, 45, 34, .25);
  --shadow-lg: 0 40px 80px -30px rgba(6, 78, 59, .35);
  --ring: 0 0 0 1px var(--line);

  --grad-green: linear-gradient(135deg, var(--green-800), var(--green-500) 55%, var(--green-300));
  --grad-dark: linear-gradient(160deg, var(--green-950), var(--silver-900) 60%, #0a1f18);
  --grad-silver: linear-gradient(135deg, var(--silver-100), var(--silver-300));

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --ease: cubic-bezier(.22, 1, .36, 1);

  --font-display: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
}

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

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; letter-spacing: -.02em; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 140px); position: relative; }
.section--tight { padding-block: clamp(48px, 6vw, 90px); }
.center { text-align: center; }
.narrow { max-width: 720px; margin-inline: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: .78rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--green-700);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--green-500); border-radius: 2px;
}
.eyebrow--center { justify-content: center; }
.eyebrow--light { color: var(--green-300); }
.eyebrow--light::before { background: var(--green-400); }

.h-xl { font-size: clamp(2.4rem, 6vw, 4.6rem); }
.h-lg { font-size: clamp(2rem, 4.5vw, 3.4rem); }
.h-md { font-size: clamp(1.5rem, 3vw, 2.2rem); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--silver-600); }

.text-accent { color: var(--green-600); }
.text-grad {
  background: linear-gradient(120deg, var(--green-700), var(--green-400));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.section-head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head.center { margin-inline: auto; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head p { margin-top: 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  padding: 15px 28px; border-radius: 100px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn--primary {
  background: var(--green-600); color: #fff;
  box-shadow: 0 14px 30px -12px rgba(16, 144, 103, .8);
}
.btn--primary:hover { background: var(--green-700); transform: translateY(-3px); box-shadow: 0 22px 40px -14px rgba(16, 144, 103, .9); }
.btn--ghost { border: 1.5px solid var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--green-500); color: var(--green-700); transform: translateY(-3px); }
.btn--light { background: #fff; color: var(--green-900); }
.btn--light:hover { transform: translateY(-3px); box-shadow: 0 22px 40px -16px rgba(0,0,0,.4); }
.btn--outline-light { border: 1.5px solid rgba(255,255,255,.35); color: #fff; }
.btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); transform: translateY(-3px); }
.btn--lg { padding: 18px 34px; font-size: 1rem; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  padding-block: 20px;
}
.site-header.scrolled {
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 1px 0 var(--line), 0 12px 30px -20px rgba(13,45,34,.3);
  padding-block: 12px;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-display); }
/* Real logo image */
.brand__logo { height:55px; width: auto; display: block; border-radius: 7px; transition: height .4s var(--ease); }
.site-header.scrolled .brand__logo { height:50px; }
.site-footer .brand__logo { height: 56px; }
.brand__fallback { display: none; align-items: center; gap: 12px; }
.brand.logo-missing .brand__logo { display: none; }
.brand.logo-missing .brand__fallback { display: inline-flex; }
.brand__mark {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: var(--grad-green); color: #fff; flex-shrink: 0;
  box-shadow: 0 10px 24px -10px rgba(16,144,103,.9);
}
.brand__mark svg { width: 24px; height: 24px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
/* Default = header sits over the dark hero, so brand text is light */
.brand__name { font-weight: 700; font-size: 1.15rem; letter-spacing: -.01em; color: #fff; }
.brand__sub { font-size: .62rem; letter-spacing: .28em; text-transform: uppercase; color: var(--silver-300); font-weight: 500; }
/* Scrolled = header turns light/glass, so brand text turns dark */
.site-header.scrolled .brand__name { color: var(--ink); }
.site-header.scrolled .brand__sub { color: var(--silver-500); }

.nav__menu { display: flex; align-items: center; gap: 4px; }
.nav__link {
  position: relative; font-family: var(--font-display); font-weight: 500; font-size: .92rem;
  padding: 9px 15px; border-radius: 100px; color: rgba(255,255,255,.86);
  transition: color .25s, background .25s;
}
/* Default (over dark hero) */
.nav__link:hover { color: var(--green-900); background: var(--green-200); }
.nav__link.active { color: #fff; }
/* Scrolled (over light header) */
.site-header.scrolled .nav__link { color: var(--silver-700); }
.site-header.scrolled .nav__link:hover { color: var(--green-700); background: var(--green-200); }
.site-header.scrolled .nav__link.active { color: var(--green-700); }
.nav__link.active::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 3px; height: 2px;
  background: var(--green-500); border-radius: 2px;
}
.nav__actions { display: flex; align-items: center; gap: 12px; }

/* Dropdown */
.nav__item--has-drop { position: relative; }
.nav__drop {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(10px);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 10px; min-width: 260px;
  opacity: 0; visibility: hidden; transition: all .25s var(--ease); z-index: 20;
}
.nav__item--has-drop:hover .nav__drop { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav__drop a {
  display: flex; align-items: center; gap: 12px; padding: 11px 13px; border-radius: 12px;
  font-size: .9rem; color: var(--silver-700); transition: background .2s, color .2s;
}
.nav__drop a:hover { background: var(--green-200); color: var(--green-800); }
.nav__drop a svg { width: 18px; height: 18px; color: var(--green-600); flex-shrink: 0; }
.nav__link--drop::after { content: "▾"; font-size: .7em; margin-left: 4px; opacity: .6; }

/* Hamburger */
.nav__toggle { display: none; width: 44px; height: 44px; border-radius: 12px; }
.nav__toggle span { display: block; width: 22px; height: 2px; background: #fff; margin: 5px auto; border-radius: 2px; transition: .3s var(--ease); }
.site-header.scrolled .nav__toggle span { background: var(--ink); }
body.menu-open .nav__toggle span { background: var(--ink); }
body.menu-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav__toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; padding-top: clamp(140px, 20vh, 200px); padding-bottom: clamp(60px, 9vw, 120px);
  background: var(--grad-dark); color: #fff; overflow: hidden;
  --brand-color: #fff; --brand-sub-color: var(--silver-300); --nav-color: rgba(255,255,255,.85);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__orb {
  position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55;
}
.hero__orb--1 { width: 520px; height: 520px; background: var(--green-600); top: -140px; right: -80px; animation: float1 14s ease-in-out infinite; }
.hero__orb--2 { width: 420px; height: 420px; background: var(--green-800); bottom: -160px; left: -90px; animation: float2 16s ease-in-out infinite; }
.hero__orb--3 { width: 300px; height: 300px; background: var(--silver-500); top: 30%; left: 45%; opacity: .25; animation: float1 20s ease-in-out infinite; }
.hero__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 75%);
}
.hero .container { position: relative; z-index: 2; }
.hero__inner { max-width: 900px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; border-radius: 100px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); backdrop-filter: blur(10px);
  font-size: .8rem; font-family: var(--font-display); letter-spacing: .04em; margin-bottom: 28px;
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-400); box-shadow: 0 0 12px var(--green-400); }
.hero h1 { font-size: clamp(2.6rem, 7vw, 5.4rem); letter-spacing: -.03em; }
.hero h1 .text-grad { background: linear-gradient(120deg, var(--green-300), var(--green-500)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__sub { margin-top: 26px; font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--silver-300); max-width: 620px; }
.hero__cta { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 16px; }
.hero__stats { margin-top: 64px; display: flex; flex-wrap: wrap; gap: clamp(28px, 5vw, 64px); }
.hero__stat .num { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; color: #fff; }
.hero__stat .num .suffix { color: var(--green-400); }
.hero__stat .label { font-size: .82rem; color: var(--silver-400); letter-spacing: .04em; text-transform: uppercase; }

/* Page hero (inner pages) */
.page-hero {
  position: relative; padding-top: clamp(150px, 22vh, 220px); padding-bottom: clamp(60px, 8vw, 100px);
  background: var(--grad-dark); color: #fff; overflow: hidden;
  --brand-color: #fff; --brand-sub-color: var(--silver-300); --nav-color: rgba(255,255,255,.85);
}
.page-hero .hero__bg { z-index: 0; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero__inner { max-width: 780px; }
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); margin-top: 18px; }
.page-hero p { margin-top: 20px; font-size: clamp(1.02rem, 1.4vw, 1.2rem); color: var(--silver-300); max-width: 600px; }
.breadcrumb { display: flex; gap: 10px; align-items: center; font-size: .82rem; color: var(--silver-400); font-family: var(--font-display); }
.breadcrumb a:hover { color: var(--green-300); }
.breadcrumb span { color: var(--green-400); }

/* ============================================================
   MARQUEE (clients strip)
   ============================================================ */
.marquee { overflow: hidden; padding-block: 34px; border-block: 1px solid var(--line); background: var(--bg-soft); }
.marquee__label { text-align: center; font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 22px; font-family: var(--font-display); }
.marquee__track { display: flex; align-items: center; gap: 60px; width: max-content; animation: scroll-x 40s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--silver-400); white-space: nowrap; letter-spacing: -.01em; transition: color .3s; display: flex; align-items: center; }
.marquee__item:hover { color: var(--green-600); }
.marquee__item img { height: 50px; width: auto; max-width: 160px; object-fit: contain; display: block; opacity: .85; transition: opacity .3s; }
.marquee__item:hover img { opacity: 1; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; scroll-behavior: auto; }
}

/* ============================================================
   BENTO / SERVICE CARDS
   ============================================================ */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.bento .card { grid-column: span 4; }
.bento .card--wide { grid-column: span 8; }
.bento .card--tall { grid-row: span 2; }

.card {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 34px; overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--green-300); }
.card__icon {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  background: var(--green-200); color: var(--green-700); margin-bottom: 22px;
  transition: background .4s var(--ease), color .4s;
}
.card:hover .card__icon { background: var(--green-600); color: #fff; }
.card__icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.card p { color: var(--silver-600); font-size: .96rem; }
.card__link { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; font-family: var(--font-display); font-weight: 600; font-size: .88rem; color: var(--green-700); }
.card__link svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.card__link:hover svg { transform: translateX(4px); }
.card__num { position: absolute; top: 22px; right: 26px; font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--silver-300); }

/* Feature card — dark variant */
.card--dark { background: var(--grad-dark); color: #fff; border-color: transparent; }
.card--dark p { color: var(--silver-300); }
.card--dark .card__icon { background: rgba(255,255,255,.1); color: var(--green-300); }
.card--dark:hover .card__icon { background: var(--green-500); color: #fff; }

/* ============================================================
   ABOUT / SPLIT SECTIONS
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.split--media-right .split__media { order: 2; }
.split__media { position: relative; }
.media-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3;
  background: var(--grad-green); box-shadow: var(--shadow-lg);
}
.media-frame--tall { aspect-ratio: 3/4; }
.media-frame__pattern { position: absolute; inset: 0; opacity: .9; }
.media-badge {
  position: absolute; background: #fff; border-radius: var(--radius); padding: 20px 24px; box-shadow: var(--shadow);
}
.media-badge--br { right: -18px; bottom: -22px; }
.media-badge--bl { left: -18px; bottom: 30px; }
.media-badge .num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--green-700); line-height: 1; }
.media-badge .label { font-size: .8rem; color: var(--silver-500); margin-top: 4px; }

.check-list { display: grid; gap: 14px; margin-top: 28px; }
.check-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 1rem; color: var(--silver-700); }
.check-list li svg { width: 22px; height: 22px; color: var(--green-600); flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band { background: var(--grad-dark); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-item { padding: 20px; }
.stat-item .num { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
.stat-item .num .suffix { color: var(--green-400); }
.stat-item .label { color: var(--silver-400); font-size: .92rem; letter-spacing: .03em; margin-top: 6px; }
.stat-item + .stat-item { border-left: 1px solid rgba(255,255,255,.08); }

/* ============================================================
   PROCESS / STEPS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step {
  position: relative; padding: 32px 26px; border-radius: var(--radius-lg);
  background: var(--surface); border: 1px solid var(--line); transition: transform .4s var(--ease), box-shadow .4s;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.step__num {
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  background: var(--green-200); color: var(--green-800); margin-bottom: 20px;
}
.step h3 { font-size: 1.18rem; margin-bottom: 8px; }
.step p { color: var(--silver-600); font-size: .93rem; }
.step__line { position: absolute; top: 56px; right: -12px; width: 24px; height: 2px; background: var(--line); }

/* ============================================================
   PORTFOLIO GRID
   ============================================================ */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.project {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3;
  background: var(--grad-green); cursor: pointer; box-shadow: var(--shadow-sm);
}
.project--tall { aspect-ratio: 3/4; }
.project__pattern { position: absolute; inset: 0; transition: transform .7s var(--ease); }
.project:hover .project__pattern { transform: scale(1.08); }
.project__overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px; background: linear-gradient(to top, rgba(4,27,19,.9) 5%, rgba(4,27,19,.15) 55%, transparent);
  color: #fff; transform: translateY(14px); opacity: .92; transition: transform .5s var(--ease), opacity .5s;
}
.project:hover .project__overlay { transform: translateY(0); opacity: 1; }
.project__tag { align-self: flex-start; font-size: .72rem; font-family: var(--font-display); letter-spacing: .12em; text-transform: uppercase; padding: 6px 12px; border-radius: 100px; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25); backdrop-filter: blur(8px); margin-bottom: 12px; }
.project h3 { font-size: 1.35rem; }
.project__meta { font-size: .88rem; color: var(--silver-300); margin-top: 4px; display: flex; gap: 8px; align-items: center; }
.project__view { position: absolute; top: 22px; right: 22px; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); backdrop-filter: blur(8px); display: grid; place-items: center; color: #fff; opacity: 0; transform: scale(.8) rotate(-30deg); transition: all .45s var(--ease); }
.project:hover .project__view { opacity: 1; transform: scale(1) rotate(0); }
.project__view svg { width: 18px; height: 18px; }

/* Portfolio filters */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 42px; justify-content: center; }
.filter-btn {
  font-family: var(--font-display); font-weight: 500; font-size: .9rem; padding: 10px 20px; border-radius: 100px;
  border: 1.5px solid var(--line); color: var(--silver-600); transition: all .3s var(--ease);
}
.filter-btn:hover { border-color: var(--green-400); color: var(--green-700); }
.filter-btn.active { background: var(--green-600); border-color: var(--green-600); color: #fff; }
.project { cursor: pointer; }

/* ============================================================
   LIGHTBOX / MODAL GALLERY
   ============================================================ */
.lightbox { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 20px; }
.lightbox.open { display: flex; }
.lightbox__backdrop { position: absolute; inset: 0; background: rgba(4, 27, 19, .82); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.lightbox__dialog {
  position: relative; z-index: 2; width: min(960px, 94vw); max-height: 92vh; overflow: auto;
  background: var(--green-950); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); transform: scale(.94); opacity: 0; transition: transform .4s var(--ease), opacity .4s;
}
.lightbox.open .lightbox__dialog { transform: none; opacity: 1; }
.lightbox__close {
  position: absolute; top: 14px; right: 14px; z-index: 5; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.14); color: #fff; display: grid; place-items: center; transition: background .25s, transform .35s var(--ease);
}
.lightbox__close:hover { background: var(--green-600); transform: rotate(90deg); }
.lightbox__close svg { width: 22px; height: 22px; }
.lightbox__stage { position: relative; aspect-ratio: 16/10; background: #02150e; overflow: hidden; }
.lightbox__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .35s var(--ease); }
.lightbox__img.show { opacity: 1; }
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%;
  background: rgba(0,0,0,.4); border: 1px solid rgba(255,255,255,.25); color: #fff; display: grid; place-items: center;
  transition: background .25s; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.lightbox__nav:hover { background: var(--green-600); }
.lightbox__nav svg { width: 24px; height: 24px; }
.lightbox__nav--prev { left: 16px; }
.lightbox__nav--next { right: 16px; }
.lightbox__counter { position: absolute; bottom: 14px; right: 16px; background: rgba(0,0,0,.55); color: #fff; font-family: var(--font-display); font-size: .82rem; padding: 5px 12px; border-radius: 100px; backdrop-filter: blur(6px); }
.lightbox__body { padding: 24px 26px 28px; color: #fff; }
.lightbox__tag { display: inline-block; font-family: var(--font-display); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--green-950); background: var(--green-300); padding: 5px 12px; border-radius: 100px; margin-bottom: 12px; }
.lightbox__title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; line-height: 1.15; }
.lightbox__meta { color: var(--silver-400); margin-top: 5px; font-size: .95rem; }
.lightbox__thumbs { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.lightbox__thumb { width: 88px; height: 62px; border-radius: 10px; overflow: hidden; cursor: pointer; border: 2px solid transparent; opacity: .5; transition: opacity .25s, border-color .25s; padding: 0; }
.lightbox__thumb img { width: 100%; height: 100%; object-fit: cover; }
.lightbox__thumb:hover { opacity: .85; }
.lightbox__thumb.active { opacity: 1; border-color: var(--green-400); }
.lightbox__cta { margin-top: 24px; }
body.lightbox-open { overflow: hidden; }
@media (max-width: 560px) {
  .lightbox__nav { width: 40px; height: 40px; }
  .lightbox__title { font-size: 1.3rem; }
  .lightbox__thumb { width: 68px; height: 48px; }
}

/* Plain (image-only) lightbox variant */
.lightbox__dialog--plain { width: auto; max-width: 94vw; max-height: 92vh; background: transparent; border: none; box-shadow: none; overflow: visible; }
.lightbox--plain .lightbox__stage { aspect-ratio: auto; background: transparent; }
.lightbox--plain .lightbox__img { position: static; inset: auto; width: auto; height: auto; max-width: 94vw; max-height: 84vh; object-fit: contain; border-radius: var(--radius); box-shadow: var(--shadow-lg); }

/* ============================================================
   IMAGE GALLERY GRID (hover-zoom cards → modal)
   ============================================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.gallery-card {
  position: relative; display: block; padding: 0; margin: 0; border: none; cursor: pointer;
  overflow: hidden; border-radius: var(--radius-lg); aspect-ratio: 4/3; background: var(--silver-200);
  box-shadow: var(--shadow-sm); transition: box-shadow .4s var(--ease);
}
.gallery-card:hover { box-shadow: var(--shadow); }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s var(--ease); }
.gallery-card:hover img { transform: scale(1.14); }
.gallery-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(4,27,19,.4), transparent 55%); opacity: 0; transition: opacity .4s var(--ease); }
.gallery-card:hover::after { opacity: 1; }
.gallery-card__zoom {
  position: absolute; top: 14px; right: 14px; z-index: 2; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.9); color: var(--green-800); display: grid; place-items: center;
  opacity: 0; transform: scale(.6) rotate(-20deg); transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.gallery-card:hover .gallery-card__zoom { opacity: 1; transform: scale(1) rotate(0); }
.gallery-card__zoom svg { width: 20px; height: 20px; }
@media (max-width: 1024px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px;
  transition: transform .4s var(--ease), box-shadow .4s;
}
.testi:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.testi__stars { color: var(--green-500); letter-spacing: 3px; margin-bottom: 16px; }
.testi__quote { font-size: 1.05rem; color: var(--silver-700); line-height: 1.7; }
.testi__quote::before { content: "\201C"; font-family: var(--font-display); font-size: 3rem; color: var(--green-300); line-height: 0; display: block; margin-bottom: 6px; }
.testi__author { display: flex; align-items: center; gap: 14px; margin-top: 24px; }
.testi__avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--grad-green); display: grid; place-items: center; color: #fff; font-family: var(--font-display); font-weight: 700; }
.testi__name { font-family: var(--font-display); font-weight: 600; font-size: .96rem; }
.testi__role { font-size: .82rem; color: var(--muted); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { position: relative; overflow: hidden; }
.cta-box {
  position: relative; background: var(--grad-green); border-radius: var(--radius-xl); padding: clamp(44px, 7vw, 84px);
  color: #fff; overflow: hidden; box-shadow: var(--shadow-lg);
}
.cta-box__orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; }
.cta-box__orb--1 { width: 340px; height: 340px; background: var(--green-300); top: -120px; right: -60px; }
.cta-box__orb--2 { width: 300px; height: 300px; background: var(--green-900); bottom: -140px; left: -40px; }
.cta-box__inner { position: relative; z-index: 2; max-width: 640px; }
.cta-box h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
.cta-box p { margin-top: 18px; font-size: 1.15rem; color: rgba(255,255,255,.9); }
.cta-box__actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 5vw, 60px); align-items: start; }
.contact-info { display: grid; gap: 18px; }
.contact-card { display: flex; gap: 18px; align-items: flex-start; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); transition: border-color .3s, transform .3s var(--ease); }
.contact-card:hover { border-color: var(--green-300); transform: translateX(4px); }
.contact-card__icon { width: 52px; height: 52px; border-radius: 14px; background: var(--green-200); color: var(--green-700); display: grid; place-items: center; flex-shrink: 0; }
.contact-card__icon svg { width: 24px; height: 24px; }
.contact-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.contact-card p, .contact-card a { color: var(--silver-600); font-size: .95rem; }
.contact-card a:hover { color: var(--green-700); }

.form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-family: var(--font-display); font-weight: 500; font-size: .86rem; margin-bottom: 8px; color: var(--silver-700); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: inherit; font-size: .96rem; color: var(--ink); background: var(--silver-25); transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green-500); box-shadow: 0 0 0 4px var(--green-200); background: #fff; }
.field textarea { resize: vertical; min-height: 130px; }
.form__note { font-size: .82rem; color: var(--muted); margin-top: 14px; }
.form-success { display: none; padding: 16px 18px; border-radius: 12px; background: var(--green-200); color: var(--green-800); font-weight: 500; margin-top: 16px; }
.form-success.show { display: block; }

/* ============================================================
   VALUE / ICON LISTS
   ============================================================ */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value {
  padding: 34px; border-radius: var(--radius-lg); border: 1px solid var(--line); background: var(--surface);
  transition: transform .4s var(--ease), box-shadow .4s, background .4s;
}
.value:hover { transform: translateY(-6px); box-shadow: var(--shadow); background: var(--green-900); }
.value:hover h3, .value:hover p { color: #fff; }
.value:hover p { color: var(--silver-300); }
.value__icon { width: 54px; height: 54px; border-radius: 14px; background: var(--green-200); color: var(--green-700); display: grid; place-items: center; margin-bottom: 20px; transition: background .4s, color .4s; }
.value:hover .value__icon { background: var(--green-500); color: #fff; }
.value h3 { font-size: 1.2rem; margin-bottom: 10px; transition: color .4s; }
.value p { color: var(--silver-600); font-size: .95rem; transition: color .4s; }

/* Info list (service detail features) */
.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.feature-item { display: flex; gap: 14px; padding: 20px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--surface); transition: border-color .3s, transform .3s var(--ease); }
.feature-item:hover { border-color: var(--green-300); transform: translateY(-3px); }
.feature-item__icon { width: 44px; height: 44px; border-radius: 12px; background: var(--green-200); color: var(--green-700); display: grid; place-items: center; flex-shrink: 0; }
.feature-item__icon svg { width: 22px; height: 22px; }
.feature-item h4 { font-family: var(--font-display); font-size: 1.02rem; margin-bottom: 4px; }
.feature-item p { font-size: .9rem; color: var(--silver-600); }

/* ============================================================
   FAQ / ACCORDION
   ============================================================ */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 26px 4px; font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: var(--ink); }
.faq-q__icon { flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%; background: var(--green-200); color: var(--green-700); display: grid; place-items: center; transition: transform .35s var(--ease), background .3s, color .3s; }
.faq-item.open .faq-q__icon { transform: rotate(45deg); background: var(--green-600); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a__inner { padding: 0 4px 26px; color: var(--silver-600); }

/* ============================================================
   CLIENT LOGO GRID
   ============================================================ */
.logo-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.logo-cell {
  min-height: 116px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; transition: all .35s var(--ease); text-align: center; padding: 20px 24px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--silver-400);
}
.logo-cell img { max-width: 100%; max-height: 56px; width: auto; height: auto; object-fit: contain; }
.logo-cell:hover { border-color: var(--green-300); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
@media (max-width: 640px) { .logo-cell { min-height: 96px; } .logo-cell img { max-height: 48px; } .site-header.scrolled .brand__logo {background:#444951; } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--grad-dark); color: var(--silver-300); padding-top: clamp(60px, 8vw, 100px); overflow: hidden; position: relative; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 56px; }
.footer-brand .brand__name { color: #fff; }
.footer-brand .brand__sub { color: var(--silver-400); }
.footer-about { margin-top: 22px; max-width: 320px; font-size: .95rem; color: var(--silver-400); }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.06); display: grid; place-items: center; color: var(--silver-300); transition: all .3s var(--ease); }
.footer-social a:hover { background: var(--green-500); color: #fff; transform: translateY(-3px); }
.footer-social svg { width: 20px; height: 20px; }
.footer-col h4 { font-family: var(--font-display); font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; color: #fff; margin-bottom: 20px; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { color: var(--silver-400); font-size: .93rem; transition: color .25s, padding .25s; }
.footer-col a:hover { color: var(--green-300); padding-left: 5px; }
.footer-newsletter p { font-size: .93rem; color: var(--silver-400); margin-bottom: 16px; }
.footer-newsletter form { display: flex; gap: 8px; }
.footer-newsletter input { flex: 1; padding: 13px 16px; border-radius: 100px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.05); color: #fff; font-family: inherit; font-size: .9rem; }
.footer-newsletter input::placeholder { color: var(--silver-500); }
.footer-newsletter input:focus { outline: none; border-color: var(--green-400); }
.footer-newsletter button { width: 48px; height: 48px; border-radius: 50%; background: var(--green-500); color: #fff; display: grid; place-items: center; flex-shrink: 0; transition: background .3s, transform .3s; }
.footer-newsletter button:hover { background: var(--green-400); transform: translateY(-2px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-block: 26px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: .86rem; color: var(--silver-500); }
.footer-bottom a:hover { color: var(--green-300); }

/* ============================================================
   BACK TO TOP + MISC
   ============================================================ */
.to-top {
  position: fixed; right: 24px; bottom: 24px; width: 50px; height: 50px; border-radius: 50%;
  background: var(--green-600); color: #fff; display: grid; place-items: center; z-index: 90;
  box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(20px); transition: all .4s var(--ease);
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--green-700); transform: translateY(-4px); }

/* Floating contact buttons (WhatsApp + Call), fixed bottom-left, all pages */
.float-contact { position: fixed; left: 22px; bottom: 22px; z-index: 95; display: flex; flex-direction: column; gap: 14px; }
.float-btn {
  position: relative; width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; color: #fff;
  box-shadow: 0 12px 28px -8px rgba(0,0,0,.45); transition: transform .3s var(--ease), box-shadow .3s;
}
.float-btn:hover { transform: translateY(-4px) scale(1.06); box-shadow: 0 18px 34px -10px rgba(0,0,0,.5); }
.float-btn svg { width: 28px; height: 28px; }
.float-btn--wa { background: #25d366; }
.float-btn--call { background: var(--green-800); }
.float-btn--call svg { width: 24px; height: 24px; }
.float-btn--wa::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%; animation: fpulse 2.4s ease-out infinite; pointer-events: none;
}
@keyframes fpulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.55); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
@media (max-width: 640px) {
  .float-contact { left: 16px; bottom: 16px; gap: 12px; }
  .float-btn { width: 52px; height: 52px; }
}

.divider { height: 1px; background: var(--line); border: none; }

/* Pattern helpers for gradient media */
.pat-dots { background-image: radial-gradient(rgba(255,255,255,.35) 1.5px, transparent 1.5px); background-size: 22px 22px; }
.pat-grid { background-image: linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px); background-size: 40px 40px; }
.pat-diag { background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.1) 0 2px, transparent 2px 14px); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes float1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(30px,-40px); } }
@keyframes float2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-30px,30px); } }
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .bento .card, .bento .card--wide { grid-column: span 6; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step__line { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(3) { border-left: none; }
  .portfolio-grid, .testi-grid, .value-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 860px) {
  .nav__menu { position: fixed;height:100vh; inset: 0 0 0 auto; width: min(88vw, 360px); background: #fff; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 4px; padding: 100px 22px 40px; box-shadow: var(--shadow-lg); transform: translateX(100%); transition: transform .4s var(--ease); overflow-y: auto; }
  body.menu-open .nav__menu { transform: none; }
  /* Mobile slide-in menu is white, so links must be dark regardless of scroll state */
  .nav__menu { gap: 2px; }
  .nav__link, .site-header .nav__link { display: block; width: 100%; padding: 13px 16px; font-size: 1.05rem; border-radius: 12px; color: var(--silver-700); }
  .nav__link--drop { display: flex; align-items: center; justify-content: space-between; }
  .nav__link.active::after { display: none; }
  .nav__link.active, .site-header .nav__link.active { background: var(--green-200); color: var(--green-800); }
  .nav__link:hover, .site-header .nav__link:hover { color: var(--green-800); background: var(--green-200); }
  .nav__toggle { display: block; z-index: 60; }
  /* Dropdown flows inline under its parent; reset ALL desktop popover positioning (incl. hover transform) */
  .nav__drop,
  .nav__item--has-drop:hover .nav__drop {
    position: static; left: auto; top: auto; transform: none; opacity: 1; visibility: visible;
    box-shadow: none; border: none; border-left: 2px solid var(--green-200); border-radius: 0;
    margin: 2px 0 8px 16px; padding: 0; min-width: 0;
  }
  .nav__drop a { padding: 11px 14px; }
  .nav__item--has-drop .nav__drop { display: none; }
  .nav__item--has-drop.open .nav__drop { display: block; }
  .nav__actions .btn { display: none; }
  body.menu-open::after { content: ""; position: fixed; inset: 0; background: rgba(4,27,19,.4); z-index: 40; backdrop-filter: blur(2px); }
  .split { grid-template-columns: 1fr; }
  .split--media-right .split__media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .bento .card, .bento .card--wide { grid-column: span 12; }
  .portfolio-grid, .testi-grid, .value-grid, .steps, .stats-grid, .feature-list, .form-row { grid-template-columns: 1fr; }
  .stat-item + .stat-item { border-left: none; border-top: 1px solid rgba(255,255,255,.08); }
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .hero__stats { gap: 24px 40px; }
  .media-badge--br { right: 10px; }
  .cta-box__actions { flex-direction: column; }
  .cta-box__actions .btn { justify-content: center; }
}

/* ============================================================
   CREATIVE ENHANCEMENTS
   - styles for the Owl client carousel
   - subtle hero / button / card polish
   ============================================================ */

.clients-carousel {
  padding-block: 36px; 
  background: linear-gradient(90deg, rgba(23,176,131,0.04), rgba(16,144,103,0.02));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.clients-carousel__label { text-align: center; font-size: .78rem; letter-spacing: .2em; color: var(--muted); font-weight: 700; margin-bottom: 12px; }
.client-carousel .client-item {
  display: grid;
  place-items: center;
  min-height: 96px;
  padding: 18px 16px;
  border-radius: 22px;
  background: rgba(255,255,255,.86);
  filter: grayscale(.12) contrast(1.04);
  transition: transform .36s var(--ease), filter .36s, box-shadow .36s, background .36s;
}
.client-carousel .client-item img {
  max-height: 58px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  opacity: .95;
  transition: transform .36s var(--ease), opacity .36s, filter .36s;
}
.client-carousel .client-item:hover {
  transform: translateY(-4px) scale(1.01);
  filter: grayscale(0) contrast(1.08);
  box-shadow: 0 16px 32px -16px rgba(6,78,59,0.18);
  background: #fff;
}
.client-carousel .client-item:hover img {
  opacity: 1;
  transform: scale(1.06);
}

/* Owl controls (if enabled later) */
.owl-theme .owl-dots { margin-top: 8px; }
.owl-theme .owl-dots .owl-dot span { width: 8px; height: 8px; background: var(--line); display: block; border-radius: 6px; transition: background .25s; }
.owl-theme .owl-dots .owl-dot.active span { background: var(--green-600); }

/* Hero refinements: subtle glow under the gradient text and soft vignette */
.hero h1 { text-shadow: 0 10px 30px rgba(6,78,59,0.12); }
.hero::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.06) 100%); mix-blend-mode: multiply; z-index: 1; }

/* Button accent glow */
.btn--primary { box-shadow: 0 12px 40px -14px rgba(16,144,103,0.6), 0 2px 8px rgba(16,144,103,0.12); }
.btn--primary:before { content: ""; position: absolute; inset: 0; border-radius: 100px; pointer-events: none; transition: opacity .3s; }
.btn--primary:hover { transform: translateY(-4px); }

/* Card tilt + shine */
.card { transform-origin: center; will-change: transform; }
.card::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(120deg, rgba(255,255,255,0.02), rgba(255,255,255,0)); mix-blend-mode: overlay; opacity: .9; border-radius: inherit; }

/* Slight parallax on media badges */
.media-badge { transition: transform .6s var(--ease), box-shadow .4s; }
.media-frame:hover .media-badge { transform: translateY(-6px) translateX(6px); box-shadow: 0 20px 40px -18px rgba(6,78,59,0.18); }

/* Decorative focus state for interactive elements */
.btn:focus, .card:focus-within, a:focus { outline: none; box-shadow: 0 0 0 4px rgba(23,176,131,0.08); }

/* Responsive tweaks for carousel spacing */
@media (max-width: 720px) {
  .client-carousel .client-item { padding: 12px; }
  .hero__stats { gap: 18px; }
}
