/* ═══════════════════════════════════════════════════════════════════
   TOKENS
═══════════════════════════════════════════════════════════════════ */
:root {
  --lime: #c8ff00;
  --lime-hover: #d4ff33;
  --lime-soft: rgba(200, 255, 0, 0.12);
  --lime-faint: rgba(200, 255, 0, 0.05);

  --dark: #0b0b0b;
  --dark-2: #141414;
  --dark-3: #1d1d1d;

  --white: #fafafa;
  --cream: #f4f4f0;
  --off-white: #f0f0ee;
  --surface: #f7f7f4;
  --surface-2: #eeeeea;

  --text-primary: #111;
  --text-secondary: #555;
  --text-muted: #8a8a85;
  --text-faint: #b5b5b0;

  --border: rgba(17, 17, 17, 0.08);
  --border-strong: rgba(17, 17, 17, 0.14);

  --red: #e74c3c;

  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 100px;

  --font-display: 'Clash Display', sans-serif;
  --font-body: 'Satoshi', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 32px 80px rgba(0, 0, 0, 0.12);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}
a { text-decoration: none; color: inherit; }
button { border: none; background: none; color: inherit; font-family: inherit; cursor: pointer; outline: none; }
img, video { max-width: 100%; display: block; }
::selection { background: var(--lime); color: var(--dark); }

/* Grain */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 50; opacity: 0.4;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
}

/* Reveal */
.rv { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.rv.vis { opacity: 1; transform: translateY(0); }
.stg .rv:nth-child(1) { transition-delay: 0s; }
.stg .rv:nth-child(2) { transition-delay: 0.08s; }
.stg .rv:nth-child(3) { transition-delay: 0.16s; }
.stg .rv:nth-child(4) { transition-delay: 0.24s; }
.stg .rv:nth-child(5) { transition-delay: 0.32s; }
.stg .rv:nth-child(6) { transition-delay: 0.4s; }

/* Universal section tag */
.section-tag { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.section-tag-line { width: 24px; height: 2px; background: var(--lime); border-radius: 2px; }
.section-tag-text { font-family: var(--font-body); font-size: 11.5px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════════════════
   FLOATING PILL HEADER
═══════════════════════════════════════════════════════════════════ */
.header-wrapper {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: auto;
  max-width: fit-content;
  animation: headerDrop 0.8s var(--ease-out) 0.2s both;
}
@keyframes headerDrop {
  from { opacity: 0; transform: translateX(-50%) translateY(-20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 8px 8px 8px;
  background: var(--dark);
  border-radius: var(--r-pill);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
}
.logo { display: flex; align-items: center; flex-shrink: 0; padding: 2px 4px; }
.logo img { height: 20px; width: auto; object-fit: contain; display: block; }
nav { display: flex; align-items: center; gap: 2px; }
nav a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  padding: 8px 12px;
  border-radius: var(--r-pill);
  transition: all 0.25s ease;
  white-space: nowrap;
}
nav a:hover { color: white; background: rgba(255, 255, 255, 0.06); }
.nav-cta {
  background: var(--lime);
  color: var(--dark) !important;
  font-weight: 700 !important;
  padding: 10px 20px !important;
  font-size: 13px !important;
  letter-spacing: 0.2px;
  transition: all 0.3s var(--ease-spring) !important;
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
}
.nav-cta:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 20px rgba(200, 255, 0, 0.35);
  background: var(--lime-hover) !important;
}
.nav-cta .arr { transition: transform 0.3s ease; display: inline-block; }
.nav-cta:hover .arr { transform: translate(2px, -2px); }
.menu-toggle { display: none; padding: 10px; background: rgba(255,255,255,0.06); border-radius: 50%; width: 40px; height: 40px; flex-direction: column; align-items: center; justify-content: center; gap: 4px; }
.menu-toggle span { display: block; width: 16px; height: 1.5px; background: white; border-radius: 1px; transition: all 0.3s ease; }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* ═══════════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 110px 48px 60px;
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--lime-soft) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 132, 255, 0.06) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}
.hero-split {
  position: relative; z-index: 2;
  max-width: 1240px; width: 100%;
  display: grid; grid-template-columns: 1fr 0.75fr;
  align-items: center; gap: 64px;
}
.hero-text { text-align: left; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 24px; opacity: 0; animation: fadeUp 0.7s var(--ease-out) 0.5s forwards; }
.eyebrow-line { width: 28px; height: 2px; background: var(--lime); border-radius: 2px; }
.hero-eyebrow-text { font-size: 11.5px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-muted); }
.hero-eyebrow-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  background: var(--lime-soft);
  border: 1px solid rgba(200, 255, 0, 0.25);
  border-radius: var(--r-pill);
  margin-left: 4px;
}
.hero-eyebrow-badge-dot { width: 5px; height: 5px; background: #8fb800; border-radius: 50%; animation: blink 2s ease-in-out infinite; }
.hero-eyebrow-badge span { font-size: 10px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: #6b8f00; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero-h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(38px, 5.2vw, 68px);
  line-height: 1.05;
  letter-spacing: -1.8px;
  color: var(--dark);
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.7s forwards;
}
.hero-h1 em {
  font-style: normal;
  position: relative;
  white-space: nowrap;
  display: inline-block;
}
.hero-h1 em::after {
  content: '';
  position: absolute;
  bottom: 4px; left: -4px; right: -4px;
  height: 32%;
  background: var(--lime);
  z-index: -1;
  border-radius: 4px;
  transform: scaleX(0);
  transform-origin: left;
  animation: swipeIn 0.6s var(--ease-out) 1.5s forwards;
}
@keyframes swipeIn { to { transform: scaleX(1); } }

.hero-p {
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 500px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.9s forwards;
}
.hero-p strong { color: var(--dark); font-weight: 600; }

.hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; opacity: 0; animation: fadeUp 0.9s var(--ease-out) 1.1s forwards; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 30px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--r-pill);
  transition: all 0.35s var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
}
.btn-dark { background: var(--dark); color: white; }
.btn-dark:hover { background: var(--dark-3); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18); }
.btn-dark svg { transition: transform 0.3s ease; }
.btn-dark:hover svg { transform: translateX(3px); }
.btn-ghost { background: transparent; color: var(--dark); border: 1.5px solid var(--border-strong); }
.btn-ghost:hover { border-color: var(--dark); background: var(--off-white); transform: translateY(-2px); }

.hero-proof { display: flex; align-items: center; gap: 24px; opacity: 0; animation: fadeUp 0.9s var(--ease-out) 1.3s forwards; }
.proof-item { display: flex; flex-direction: column; gap: 2px; }
.proof-number { font-family: var(--font-display); font-weight: 600; font-size: 26px; color: var(--dark); letter-spacing: -0.5px; line-height: 1; }
.proof-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.2px; font-weight: 500; margin-top: 4px; }
.proof-sep { width: 1px; height: 36px; background: var(--border); }

/* Hero video */
.hero-video-wrap { position: relative; opacity: 0; animation: fadeUp 1s var(--ease-out) 0.8s forwards; }
.hero-video-wrap::before {
  content: '';
  position: absolute;
  inset: -24px;
  border-radius: 40px;
  background: radial-gradient(ellipse at center, var(--lime-soft) 0%, transparent 70%);
  z-index: -1;
  filter: blur(24px);
}
.hero-video-container {
  position: relative;
  width: 100%;
  max-height: 620px;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--dark);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0, 0, 0, 0.04);
}
.hero-video-container video {
  width: 100%; height: 100%;
  max-height: 620px;
  object-fit: cover; object-position: center top;
}
.video-badge {
  position: absolute; bottom: 16px; left: 16px;
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  border-radius: var(--r-pill);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.video-badge-dot { width: 6px; height: 6px; background: var(--lime); border-radius: 50%; animation: badgePulse 2s ease-in-out infinite; }
@keyframes badgePulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(200, 255, 0, 0.4); } 50% { box-shadow: 0 0 0 6px rgba(200, 255, 0, 0); } }
.video-badge span { font-size: 11px; font-weight: 600; color: rgba(255, 255, 255, 0.8); letter-spacing: 0.5px; text-transform: uppercase; }
.video-unmute {
  position: absolute; bottom: 16px; right: 16px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease-spring);
}
.video-unmute:hover { background: var(--lime); border-color: var(--lime); transform: scale(1.08); }
.video-unmute svg { width: 16px; height: 16px; fill: none; stroke: rgba(255, 255, 255, 0.85); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.video-unmute:hover svg { stroke: var(--dark); }
.video-unmute .icon-mute { display: none; }
.video-unmute.is-playing .icon-unmute { display: none; }
.video-unmute.is-playing .icon-mute { display: block; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ═══════════════════════════════════════════════════════════════════
   LEAD FORM — inline sticky card below hero on mobile; sidebar on desktop
═══════════════════════════════════════════════════════════════════ */
.lead-form-section {
  padding: 80px 24px 60px;
  background: var(--white);
}
.lead-form-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.lead-form-left h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(28px, 3.5vw, 42px);
  letter-spacing: -1px; line-height: 1.15;
  color: var(--dark); margin-bottom: 14px;
}
.lead-form-left h2 em { font-style: normal; color: #6b8f00; position: relative; display: inline-block; }
.lead-form-left h2 em::after { content: ''; position: absolute; bottom: 2px; left: -2px; right: -2px; height: 28%; background: var(--lime); z-index: -1; border-radius: 4px; }
.lead-form-left p { font-size: 16px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 28px; max-width: 440px; }

.lead-form-benefits { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.lfb-item { display: flex; align-items: flex-start; gap: 12px; }
.lfb-check {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--lime); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.lfb-check svg { width: 12px; height: 12px; stroke: var(--dark); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.lfb-text { font-size: 14.5px; color: var(--dark); font-weight: 500; }
.lfb-text strong { font-weight: 700; }

.lead-form-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.lead-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lime), #00ffd5, var(--lime));
  background-size: 200% 100%;
  animation: gradSlide 4s ease infinite;
}
@keyframes gradSlide { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

.form-header { margin-bottom: 24px; }
.form-header h3 { font-family: var(--font-display); font-weight: 600; font-size: 22px; color: var(--dark); margin-bottom: 6px; letter-spacing: -0.3px; }
.form-header p { font-size: 13.5px; color: var(--text-secondary); line-height: 1.55; }

.form-group { margin-bottom: 14px; }
.form-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.form-input, .form-select {
  width: 100%; padding: 13px 14px;
  background: var(--surface);
  border: 1.5px solid transparent;
  border-radius: var(--r-sm);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 14.5px;
  transition: all 0.25s ease;
  outline: none;
}
.form-input::placeholder { color: var(--text-faint); }
.form-input:focus, .form-select:focus { background: white; border-color: var(--lime); box-shadow: 0 0 0 4px var(--lime-soft); }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%238a8a85' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form-submit {
  width: 100%; padding: 15px;
  background: var(--dark); color: white;
  font-family: var(--font-body); font-weight: 700; font-size: 14px;
  letter-spacing: 0.3px;
  border-radius: var(--r-pill);
  margin-top: 8px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: all 0.3s var(--ease-spring);
}
.form-submit:hover { background: var(--dark-3); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18); }
.form-submit svg { transition: transform 0.3s ease; }
.form-submit:hover svg { transform: translateX(3px); }

.form-trust { display: flex; align-items: center; gap: 6px; margin-top: 12px; font-size: 12px; color: var(--text-muted); }
.form-trust svg { flex-shrink: 0; stroke: var(--text-muted); }

.form-urgency {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: rgba(231, 76, 60, 0.06);
  border: 1px solid rgba(231, 76, 60, 0.15);
  border-radius: var(--r-sm);
  margin-top: 12px;
}
.form-urgency-dot { width: 6px; height: 6px; background: var(--red); border-radius: 50%; animation: blink 1.2s ease-in-out infinite; }
.form-urgency span { font-size: 12px; color: #a03527; }
.form-urgency strong { color: #722419; font-weight: 700; }

/* ═══════════════════════════════════════════════════════════════════
   TRUST MARQUEE
═══════════════════════════════════════════════════════════════════ */
.trust-strip { padding: 24px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; background: var(--white); }
.trust-track { display: flex; width: max-content; animation: scroll 28s linear infinite; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.trust-item { padding: 0 32px; font-family: var(--font-display); font-weight: 500; font-size: 13px; letter-spacing: 1.3px; text-transform: uppercase; color: var(--text-muted); white-space: nowrap; display: flex; align-items: center; gap: 12px; }
.trust-dot { width: 5px; height: 5px; background: var(--lime); border-radius: 50%; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════════════
   PROBLEM SECTION
═══════════════════════════════════════════════════════════════════ */
.problem-section { padding: 100px 24px; background: var(--white); }
.problem-inner { max-width: 1200px; margin: 0 auto; }
.problem-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.problem-title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1; letter-spacing: -1.2px;
  color: var(--dark); margin-bottom: 20px;
}
.problem-title em { font-style: normal; color: #6b8f00; position: relative; display: inline-block; }
.problem-title em::after { content: ''; position: absolute; bottom: 2px; left: -3px; right: -3px; height: 28%; background: var(--lime); z-index: -1; border-radius: 4px; }
.problem-desc { font-size: 16px; line-height: 1.7; color: var(--text-secondary); max-width: 460px; }
.problem-desc strong { color: var(--dark); font-weight: 600; }

.pain-cards { display: flex; flex-direction: column; gap: 12px; }
.pain-card {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 22px 24px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.pain-card:hover {
  transform: translateX(6px);
  border-color: rgba(231, 76, 60, 0.2);
  box-shadow: var(--shadow-md);
}
.pain-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--red);
  opacity: 0;
  transition: opacity 0.3s;
}
.pain-card:hover::before { opacity: 1; }
.pain-card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(231, 76, 60, 0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.35s var(--ease-out);
}
.pain-card-icon svg {
  width: 20px; height: 20px;
  stroke: var(--red); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.35s var(--ease-out);
}
.pain-card:hover .pain-card-icon { background: rgba(231, 76, 60, 0.12); }
.pain-card:hover .pain-card-icon svg { transform: scale(1.08); }
.pain-card h4 { font-family: var(--font-display); font-weight: 600; font-size: 16.5px; color: var(--dark); margin-bottom: 4px; letter-spacing: -0.2px; }
.pain-card p { font-size: 13.5px; color: var(--text-secondary); line-height: 1.55; }

/* ═══════════════════════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════════════════════ */
.services-section { padding: 100px 24px; background: var(--cream); position: relative; }
.services-inner { max-width: 1200px; margin: 0 auto; }
.services-header { text-align: center; margin-bottom: 56px; }
.services-header .section-tag { justify-content: center; margin-left: auto; margin-right: auto; }
.services-title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(32px, 4.5vw, 52px);
  letter-spacing: -1.3px; line-height: 1.1;
  color: var(--dark); margin-bottom: 14px;
}
.services-title em { font-style: normal; color: #6b8f00; position: relative; display: inline-block; }
.services-title em::after { content: ''; position: absolute; bottom: 2px; left: -3px; right: -3px; height: 28%; background: var(--lime); z-index: -1; border-radius: 4px; }
.services-sub { font-size: 16px; color: var(--text-secondary); max-width: 560px; margin: 0 auto; line-height: 1.65; }

/* Primary service — featured */
.service-primary {
  display: grid; grid-template-columns: 1fr 1fr;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--dark);
  margin-bottom: 20px;
  box-shadow: var(--shadow-lg);
}
.service-primary-visual {
  position: relative; min-height: 500px;
  background: linear-gradient(135deg, #0a0f0a 0%, #1a2d1a 50%, #0a140a 100%);
  overflow: hidden;
}
.service-primary-visual canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.service-primary-badge {
  position: absolute; top: 20px; left: 20px; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: var(--lime-soft);
  border: 1px solid rgba(200, 255, 0, 0.25);
  border-radius: var(--r-pill);
  font-family: var(--font-mono); font-size: 10px; font-weight: 500;
  letter-spacing: 1.2px; text-transform: uppercase; color: var(--lime);
}
.service-primary-content { padding: 52px; display: flex; flex-direction: column; justify-content: center; color: white; }
.service-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255, 255, 255, 0.4); margin-bottom: 14px; }
.service-primary-content h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(26px, 3vw, 36px); line-height: 1.15; letter-spacing: -0.8px; margin-bottom: 16px; }
.service-primary-content h3 em { font-style: normal; color: var(--lime); }
.service-primary-content > p { font-size: 15px; line-height: 1.7; color: rgba(255, 255, 255, 0.65); margin-bottom: 28px; }
.service-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.service-feature { display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: rgba(255, 255, 255, 0.85); }
.service-feature-check { width: 22px; height: 22px; border-radius: 50%; background: rgba(200, 255, 0, 0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.service-feature-check svg { width: 11px; height: 11px; stroke: var(--lime); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.service-cta-lime {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: var(--lime); color: var(--dark);
  font-family: var(--font-body); font-weight: 700; font-size: 14px;
  border-radius: var(--r-pill);
  width: fit-content;
  transition: all 0.3s var(--ease-spring);
}
.service-cta-lime:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 12px 32px rgba(200, 255, 0, 0.3); }
.service-cta-lime svg { transition: transform 0.3s ease; }
.service-cta-lime:hover svg { transform: translateX(3px); }

/* Secondary services */
.service-secondary-header { text-align: center; margin: 52px 0 24px; }
.service-secondary-header .service-label { color: var(--text-muted); }
.service-secondary-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.s-card {
  padding: 36px 32px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  cursor: default;
}
.s-card:hover {
  background: var(--dark);
  border-color: rgba(255, 255, 255, 0.04);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.s-card:hover .s-card-num, .s-card:hover .s-card-title, .s-card:hover .s-card-desc { color: white; }
.s-card:hover .s-card-arrow { color: var(--lime); transform: translate(4px, -4px); }
.s-card:hover .s-card-icon { background: rgba(200, 255, 0, 0.12); }
.s-card:hover .s-card-icon svg { stroke: var(--lime); }
.s-card-num { font-family: var(--font-mono); font-weight: 500; font-size: 12px; color: var(--text-muted); margin-bottom: 16px; transition: color 0.4s; }
.s-card-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--surface-2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: all 0.4s;
}
.s-card-icon svg { width: 22px; height: 22px; stroke: var(--dark); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.4s; }
.s-card-title { font-family: var(--font-display); font-weight: 600; font-size: 20px; color: var(--dark); margin-bottom: 8px; letter-spacing: -0.3px; transition: color 0.4s; }
.s-card-desc { font-size: 13.5px; line-height: 1.6; color: var(--text-secondary); transition: color 0.4s; }
.s-card-arrow { position: absolute; top: 32px; right: 32px; font-size: 18px; color: var(--text-muted); transition: all 0.35s; }

/* ═══════════════════════════════════════════════════════════════════
   METRICS
═══════════════════════════════════════════════════════════════════ */
.metrics-row { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--dark); }
.metric-cell {
  padding: 48px 32px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.3s;
  position: relative;
}
.metric-cell:last-child { border-right: none; }
.metric-cell:hover { background: rgba(200, 255, 0, 0.04); }
.metric-cell::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--lime); transform: scaleX(0); transition: transform 0.5s var(--ease-out);
}
.metric-cell:hover::before { transform: scaleX(1); }
.metric-val { font-family: var(--font-display); font-weight: 600; font-size: clamp(30px, 3.5vw, 44px); color: var(--lime); letter-spacing: -1px; line-height: 1; }
.metric-desc { font-size: 11.5px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255, 255, 255, 0.45); margin-top: 10px; font-weight: 500; }

/* ═══════════════════════════════════════════════════════════════════
   UGC VIDEO SHOWCASE
═══════════════════════════════════════════════════════════════════ */
.video-section { padding: 100px 24px; background: var(--white); }
.video-inner { max-width: 1200px; margin: 0 auto; }
.video-header { text-align: center; margin-bottom: 52px; }
.video-header .section-tag { justify-content: center; margin-left: auto; margin-right: auto; }
.video-title { font-family: var(--font-display); font-weight: 600; font-size: clamp(30px, 4vw, 48px); letter-spacing: -1.2px; line-height: 1.1; color: var(--dark); margin-bottom: 14px; }
.video-title em { font-style: normal; color: #6b8f00; position: relative; display: inline-block; }
.video-title em::after { content: ''; position: absolute; bottom: 2px; left: -3px; right: -3px; height: 28%; background: var(--lime); z-index: -1; border-radius: 4px; }
.video-sub { font-size: 15.5px; color: var(--text-secondary); max-width: 520px; margin: 0 auto; line-height: 1.65; }

.video-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }

.vcard {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--dark);
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease-out);
}
.vcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--border-strong); }

.vcard-video-wrap { position: relative; aspect-ratio: 9/16; background: var(--dark); overflow: hidden; }
.vcard-video-wrap video { width: 100%; height: 100%; object-fit: cover; }
.vcard-video-wrap::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 90px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  pointer-events: none; z-index: 1;
}

.vcard-controls { position: absolute; bottom: 0; left: 0; right: 0; z-index: 3; padding: 0 10px 10px; display: flex; flex-direction: column; gap: 6px; }
.vcard-timeline {
  width: 100%; height: 3px; appearance: none; -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.15); border-radius: 2px; outline: none;
  cursor: pointer; transition: height 0.2s;
}
.vcard-timeline:hover { height: 5px; }
.vcard-timeline::-webkit-slider-thumb {
  -webkit-appearance: none; width: 12px; height: 12px; border-radius: 50%;
  background: var(--lime); border: none; cursor: pointer;
  box-shadow: 0 0 8px rgba(200, 255, 0, 0.4);
}
.vcard-timeline::-moz-range-thumb {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--lime); border: none; cursor: pointer;
  box-shadow: 0 0 8px rgba(200, 255, 0, 0.4);
}
.vcard-btns { display: flex; align-items: center; gap: 6px; }
.vcard-btn {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s; color: white; flex-shrink: 0;
}
.vcard-btn:hover { background: rgba(200, 255, 0, 0.2); transform: scale(1.08); }
.vcard-btn svg { width: 13px; height: 13px; }
.vcard-btn.unmute-btn { background: var(--lime); color: var(--dark); animation: unmutePulse 2.5s ease-in-out infinite; }
.vcard-btn.unmute-btn:hover { background: var(--lime-hover); }
.vcard-btn.unmute-btn.is-unmuted { background: rgba(255, 255, 255, 0.1); color: white; animation: none; }
.vcard-btn.unmute-btn.is-unmuted:hover { background: rgba(200, 255, 0, 0.2); }
@keyframes unmutePulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(200, 255, 0, 0.35); } 50% { box-shadow: 0 0 0 8px rgba(200, 255, 0, 0); } }
.vcard-time { font-family: var(--font-mono); font-size: 10px; color: rgba(255, 255, 255, 0.55); margin-left: auto; letter-spacing: 0.3px; }

.vcard-tag {
  position: absolute; top: 10px; left: 10px; z-index: 4;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(200, 255, 0, 0.15);
  border-radius: var(--r-pill);
}
.vcard-tag-dot { width: 5px; height: 5px; background: var(--lime); border-radius: 50%; }
.vcard-tag span { font-family: var(--font-mono); font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: var(--lime); font-weight: 500; }

/* Fullscreen overlay */
.voverlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(30px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}
.voverlay.active { opacity: 1; visibility: visible; }
.voverlay-inner {
  position: relative; width: min(380px, 85vw); aspect-ratio: 9/16;
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid rgba(200, 255, 0, 0.15);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  transform: scale(0.92); transition: transform 0.45s var(--ease-out);
}
.voverlay.active .voverlay-inner { transform: scale(1); }
.voverlay-inner video { width: 100%; height: 100%; object-fit: cover; }
.voverlay-inner::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 100px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  pointer-events: none; z-index: 1;
}
.voverlay-controls { position: absolute; bottom: 0; left: 0; right: 0; z-index: 3; padding: 0 16px 16px; display: flex; flex-direction: column; gap: 8px; }
.voverlay-controls .vcard-timeline { height: 4px; }
.voverlay-controls .vcard-btn { width: 36px; height: 36px; }
.voverlay-controls .vcard-btn svg { width: 15px; height: 15px; }
.voverlay-controls .vcard-time { font-size: 12px; }
.voverlay-close {
  position: absolute; top: 16px; right: 16px; z-index: 5;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.08); backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex; align-items: center; justify-content: center;
  color: white; transition: all 0.25s;
}
.voverlay-close:hover { background: rgba(231, 76, 60, 0.2); border-color: rgba(231, 76, 60, 0.3); transform: scale(1.08); }
.voverlay-close svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }

/* ═══════════════════════════════════════════════════════════════════
   ADS GALLERY
═══════════════════════════════════════════════════════════════════ */
.adgallery-section { padding: 100px 24px; background: var(--cream); position: relative; overflow: hidden; }
.adgallery-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }

.adgallery-header { text-align: center; margin-bottom: 28px; }
.adgallery-header .section-tag { justify-content: center; margin-left: auto; margin-right: auto; }
.adgallery-title { font-family: var(--font-display); font-weight: 600; font-size: clamp(30px, 4vw, 48px); letter-spacing: -1.2px; line-height: 1.1; color: var(--dark); margin-bottom: 14px; }
.adgallery-title em { font-style: normal; color: #6b8f00; position: relative; display: inline-block; }
.adgallery-title em::after { content: ''; position: absolute; bottom: 2px; left: -3px; right: -3px; height: 28%; background: var(--lime); z-index: -1; border-radius: 4px; }
.adgallery-sub { font-size: 15.5px; color: var(--text-secondary); max-width: 520px; margin: 0 auto; line-height: 1.65; }

.adgallery-stats { display: flex; align-items: center; justify-content: center; gap: 36px; margin-top: 36px; margin-bottom: 32px; flex-wrap: wrap; }
.adgallery-stat { display: flex; flex-direction: column; align-items: center; }
.adgallery-stat-val { font-family: var(--font-display); font-weight: 600; font-size: 28px; color: var(--dark); letter-spacing: -0.8px; line-height: 1; }
.adgallery-stat-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-top: 6px; font-weight: 500; }
.adgallery-stat-divider { width: 1px; height: 32px; background: var(--border-strong); }

.adgallery-filters { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 40px; flex-wrap: wrap; }
.adgallery-pill {
  padding: 9px 20px;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--r-pill);
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  letter-spacing: 0.8px; text-transform: uppercase;
  color: var(--text-secondary); background: white;
  transition: all 0.3s var(--ease-out); user-select: none;
}
.adgallery-pill:hover { border-color: var(--dark); color: var(--dark); background: var(--off-white); }
.adgallery-pill.active { background: var(--dark); color: white; border-color: var(--dark); }

.adgallery-masonry { columns: 4; column-gap: 12px; }
.adgallery-item {
  break-inside: avoid; margin-bottom: 12px;
  border-radius: var(--r-md); overflow: hidden;
  background: white; border: 1px solid var(--border);
  cursor: pointer;
  opacity: 0; transform: translateY(24px) scale(0.98);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out), box-shadow 0.4s;
}
.adgallery-item.vis { opacity: 1; transform: translateY(0) scale(1); }
.adgallery-item:hover { box-shadow: var(--shadow-lg); border-color: var(--border-strong); }
.adgallery-item-img { position: relative; overflow: hidden; }
.adgallery-item-img img { width: 100%; display: block; transition: transform 0.7s var(--ease-out); }
.adgallery-item:hover .adgallery-item-img img { transform: scale(1.04); }
.adgallery-item-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(200, 255, 0, 0.12) 50%, transparent 60%);
  transform: translateX(-120%); transition: transform 0.6s var(--ease-out); pointer-events: none;
}
.adgallery-item:hover .adgallery-item-img::after { transform: translateX(120%); }
.adgallery-item-bar { display: flex; align-items: center; justify-content: space-between; padding: 10px 12px; background: white; border-top: 1px solid var(--border); }
.adgallery-item-bar-left { display: flex; align-items: center; gap: 6px; }
.adgallery-item-bar-left svg { width: 13px; height: 13px; flex-shrink: 0; }
.adgallery-item-bar-left span { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.8px; text-transform: uppercase; color: var(--text-muted); font-weight: 500; }
.adgallery-item-bar-expand {
  width: 24px; height: 24px; border-radius: 6px;
  background: var(--surface-2);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s;
}
.adgallery-item:hover .adgallery-item-bar-expand { background: var(--lime); }
.adgallery-item-bar-expand svg { width: 11px; height: 11px; color: var(--text-muted); }
.adgallery-item:hover .adgallery-item-bar-expand svg { color: var(--dark); }

/* Lightbox */
.adg-lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0, 0, 0, 0.94);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}
.adg-lightbox.active { opacity: 1; visibility: visible; }
.adg-lb-close {
  position: absolute; top: 20px; right: 20px; z-index: 10;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex; align-items: center; justify-content: center;
  color: white; transition: all 0.25s;
}
.adg-lb-close:hover { background: rgba(231, 76, 60, 0.15); border-color: rgba(231, 76, 60, 0.3); transform: scale(1.08); }
.adg-lb-close svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }
.adg-lb-image-area { flex: 1; display: flex; align-items: center; justify-content: center; width: 100%; padding: 60px 32px 16px; min-height: 0; }
.adg-lb-image-area img {
  max-width: min(90vw, 1000px); max-height: 70vh;
  object-fit: contain; border-radius: var(--r-md);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.5);
  transform: scale(0.94); opacity: 0;
  transition: transform 0.45s var(--ease-out), opacity 0.3s;
}
.adg-lightbox.active .adg-lb-image-area img { transform: scale(1); opacity: 1; }
.adg-lb-image-area img.swapping { transform: scale(0.97); opacity: 0; transition: transform 0.15s ease, opacity 0.15s ease; }
.adg-lb-controls { flex-shrink: 0; width: 100%; display: flex; align-items: center; justify-content: center; gap: 14px; padding: 20px 32px 32px; }
.adg-lb-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex; align-items: center; justify-content: center;
  color: white; transition: all 0.25s var(--ease-out);
}
.adg-lb-btn:hover { background: rgba(200, 255, 0, 0.12); border-color: rgba(200, 255, 0, 0.3); transform: scale(1.06); }
.adg-lb-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.adg-lb-counter { font-family: var(--font-mono); font-size: 12px; letter-spacing: 1.5px; color: rgba(255, 255, 255, 0.55); min-width: 60px; text-align: center; user-select: none; }
.adg-lb-platform { display: flex; align-items: center; gap: 6px; padding: 6px 12px; background: var(--lime-soft); border: 1px solid rgba(200, 255, 0, 0.2); border-radius: var(--r-pill); margin-left: 4px; }
.adg-lb-platform svg { width: 11px; height: 11px; }
.adg-lb-platform span { font-family: var(--font-mono); font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: var(--lime); font-weight: 500; }

/* ═══════════════════════════════════════════════════════════════════
   PORTFOLIO
═══════════════════════════════════════════════════════════════════ */
.webfolio-section { padding: 100px 24px 0; background: var(--white); position: relative; overflow: hidden; }
.webfolio-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }

.webfolio-header { text-align: center; margin-bottom: 28px; }
.webfolio-header .section-tag { justify-content: center; margin-left: auto; margin-right: auto; }
.webfolio-title { font-family: var(--font-display); font-weight: 600; font-size: clamp(30px, 4vw, 48px); letter-spacing: -1.2px; line-height: 1.1; color: var(--dark); margin-bottom: 14px; }
.webfolio-title em { font-style: normal; color: #6b8f00; position: relative; display: inline-block; }
.webfolio-title em::after { content: ''; position: absolute; bottom: 2px; left: -3px; right: -3px; height: 28%; background: var(--lime); z-index: -1; border-radius: 4px; }
.webfolio-sub { font-size: 15.5px; color: var(--text-secondary); max-width: 540px; margin: 0 auto; line-height: 1.65; }

.webfolio-industries { display: flex; align-items: center; justify-content: center; gap: 24px; margin: 36px 0 48px; flex-wrap: wrap; }
.webfolio-ind { display: flex; align-items: center; gap: 8px; padding: 8px 14px; background: white; border: 1px solid var(--border); border-radius: var(--r-pill); }
.webfolio-ind-dot { width: 8px; height: 8px; border-radius: 2px; }
.webfolio-ind-dot.c-re { background: #6b8f00; }
.webfolio-ind-dot.c-hosp { background: #ff6b35; }
.webfolio-ind-dot.c-ecom { background: #0a84ff; }
.webfolio-ind-dot.c-food { background: #d4a017; }
.webfolio-ind-dot.c-pg { background: #8b6fd6; }
.webfolio-ind-label { font-family: var(--font-body); font-size: 11.5px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-secondary); font-weight: 600; }
.webfolio-ind-count { font-weight: 700; color: var(--dark); font-size: 11px; }

.webfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 100px; }
.wf-card {
  border-radius: var(--r-lg); overflow: hidden;
  background: white; border: 1px solid var(--border);
  transition: all 0.45s var(--ease-out);
  opacity: 0; transform: translateY(28px);
  position: relative;
}
.wf-card.vis { opacity: 1; transform: translateY(0); }
.wf-card:hover { transform: translateY(-6px) !important; box-shadow: var(--shadow-xl); border-color: var(--border-strong); }

.wf-card-chrome { display: flex; align-items: center; gap: 8px; padding: 10px 14px; background: var(--surface); border-bottom: 1px solid var(--border); }
.wf-card-dots { display: flex; gap: 5px; }
.wf-card-dots span { width: 9px; height: 9px; border-radius: 50%; }
.wf-card-dots span:nth-child(1) { background: #ff5f57; }
.wf-card-dots span:nth-child(2) { background: #febc2e; }
.wf-card-dots span:nth-child(3) { background: #28c840; }
.wf-card-url { flex: 1; margin-left: 6px; padding: 5px 12px; background: white; border-radius: var(--r-pill); border: 1px solid var(--border); display: flex; align-items: center; gap: 6px; }
.wf-card-url svg { width: 10px; height: 10px; color: var(--text-muted); flex-shrink: 0; }
.wf-card-url span { font-family: var(--font-mono); font-size: 11px; color: var(--text-secondary); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.wf-card-preview { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--surface); }
.wf-card-preview img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.7s var(--ease-out); }
.wf-card:hover .wf-card-preview img { transform: scale(1.04); }
.wf-card-hover {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.35s;
}
.wf-card:hover .wf-card-hover { opacity: 1; }
.wf-card-visit {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  background: var(--lime); color: var(--dark);
  font-family: var(--font-body); font-weight: 700; font-size: 13px;
  letter-spacing: 0.4px;
  border-radius: var(--r-pill);
  transition: all 0.25s var(--ease-spring);
}
.wf-card-visit:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 8px 28px rgba(200, 255, 0, 0.35); }
.wf-card-visit .arr { transition: transform 0.25s; }
.wf-card-visit:hover .arr { transform: translate(2px, -2px); }

.wf-card-info { padding: 20px 22px; display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; border-top: 1px solid var(--border); }
.wf-card-info-left { flex: 1; min-width: 0; }
.wf-card-name { font-family: var(--font-display); font-size: 17px; font-weight: 600; color: var(--dark); margin-bottom: 3px; transition: color 0.3s; letter-spacing: -0.2px; }
.wf-card:hover .wf-card-name { color: #6b8f00; }
.wf-card-desc { font-size: 12.5px; color: var(--text-secondary); line-height: 1.5; }
.wf-card-tag {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 10px;
  border-radius: var(--r-pill);
  font-family: var(--font-mono); font-size: 9.5px; font-weight: 500;
  letter-spacing: 1px; text-transform: uppercase;
  flex-shrink: 0; white-space: nowrap;
}
.wf-card-tag.t-re { color: #4a6100; background: var(--lime-faint); border: 1px solid rgba(200, 255, 0, 0.3); }
.wf-card-tag.t-hosp { color: #b8420a; background: rgba(255, 107, 53, 0.06); border: 1px solid rgba(255, 107, 53, 0.2); }
.wf-card-tag.t-ecom { color: #0a5aaa; background: rgba(10, 132, 255, 0.06); border: 1px solid rgba(10, 132, 255, 0.2); }
.wf-card-tag.t-food { color: #8a6509; background: rgba(212, 160, 23, 0.08); border: 1px solid rgba(212, 160, 23, 0.25); }
.wf-card-tag.t-pg { color: #5b3fa6; background: rgba(139, 111, 214, 0.08); border: 1px solid rgba(139, 111, 214, 0.25); }
.wf-card-tag-dot { width: 5px; height: 5px; border-radius: 50%; }
.wf-card-tag.t-re .wf-card-tag-dot { background: #6b8f00; }
.wf-card-tag.t-hosp .wf-card-tag-dot { background: #ff6b35; }
.wf-card-tag.t-ecom .wf-card-tag-dot { background: #0a84ff; }
.wf-card-tag.t-food .wf-card-tag-dot { background: #d4a017; }
.wf-card-tag.t-pg .wf-card-tag-dot { background: #8b6fd6; }

/* ═══════════════════════════════════════════════════════════════════
   MICROSITES
═══════════════════════════════════════════════════════════════════ */
.microsites-block { padding: 100px 24px; background: var(--cream); position: relative; border-top: 1px solid var(--border); }
.microsites-inner { max-width: 1200px; margin: 0 auto; }
.microsites-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; }
.microsites-header-left { max-width: 520px; }
.microsites-header h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(26px, 3.5vw, 40px); letter-spacing: -1.1px; line-height: 1.15; color: var(--dark); margin-bottom: 10px; }
.microsites-header h2 em { font-style: normal; color: #6b8f00; position: relative; display: inline-block; }
.microsites-header h2 em::after { content: ''; position: absolute; bottom: 2px; left: -3px; right: -3px; height: 28%; background: var(--lime); z-index: -1; border-radius: 4px; }
.microsites-header p { font-size: 15px; color: var(--text-secondary); line-height: 1.65; }
.microsites-count { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); flex-shrink: 0; font-weight: 500; }

.microsites-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.ms-card {
  border-radius: var(--r-md); overflow: hidden;
  background: white; border: 1px solid var(--border);
  transition: all 0.45s var(--ease-out);
  opacity: 0; transform: translateY(24px);
}
.ms-card.vis { opacity: 1; transform: translateY(0); }
.ms-card:hover { transform: translateY(-5px) !important; box-shadow: var(--shadow-lg); border-color: var(--border-strong); }

.ms-card-preview { position: relative; aspect-ratio: 9/14; overflow: hidden; background: var(--dark); }
.ms-card-preview iframe { width: 300%; height: 300%; border: none; transform: scale(0.3334); transform-origin: top left; pointer-events: none; }
.ms-card-live {
  position: absolute; top: 10px; left: 10px; z-index: 3;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(200, 255, 0, 0.3);
  border-radius: var(--r-pill);
}
.ms-card-live-dot { width: 5px; height: 5px; background: #6b8f00; border-radius: 50%; animation: blink 2s ease-in-out infinite; }
.ms-card-live span { font-family: var(--font-mono); font-size: 9px; letter-spacing: 1.3px; text-transform: uppercase; color: #4a6100; font-weight: 600; }
.ms-card-hover {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.35s; z-index: 2;
}
.ms-card:hover .ms-card-hover { opacity: 1; }

.ms-card-info { padding: 14px 16px; border-top: 1px solid var(--border); }
.ms-card-info-name { font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 3px; letter-spacing: -0.2px; transition: color 0.3s; }
.ms-card:hover .ms-card-info-name { color: #6b8f00; }
.ms-card-info-url { font-family: var(--font-mono); font-size: 10.5px; color: var(--text-muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ms-card-info-type { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 1px; text-transform: uppercase; color: #6b8f00; margin-top: 6px; font-weight: 600; }

/* ═══════════════════════════════════════════════════════════════════
   TEST MAIL BUTTON (hidden admin helper)
═══════════════════════════════════════════════════════════════════ */
.test-mail-btn {
  position: fixed; bottom: 20px; left: 20px; z-index: 998;
  padding: 10px 18px;
  background: var(--red); color: white;
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.8px; text-transform: uppercase;
  border-radius: var(--r-pill);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
  transition: all 0.25s;
}
.test-mail-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(231, 76, 60, 0.4); }
.test-mail-btn:disabled { opacity: 0.5; pointer-events: none; }

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-split { grid-template-columns: 1fr; gap: 48px; }
  .hero-video-container { max-height: 480px; }
  .hero-video-container video { max-height: 480px; }
  .service-primary { grid-template-columns: 1fr; }
  .service-primary-visual { min-height: 300px; }
  .service-secondary-grid { grid-template-columns: repeat(2, 1fr); }
  .adgallery-masonry { columns: 3; }
  .webfolio-grid, .microsites-grid { grid-template-columns: repeat(2, 1fr); }
  .lead-form-inner { grid-template-columns: 1fr; gap: 40px; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header-wrapper { left: 16px; right: 16px; transform: none; max-width: none; }
  @keyframes headerDrop { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
  header { padding: 6px 6px 6px 16px; }
  nav {
    position: fixed; inset: 0; background: var(--dark);
    flex-direction: column; justify-content: center; gap: 8px;
    opacity: 0; pointer-events: none;
    transition: opacity 0.35s; z-index: 999;
  }
  nav.open { opacity: 1; pointer-events: all; }
  nav a { font-size: 24px; font-family: var(--font-display); font-weight: 600; color: white; padding: 12px 24px; }
  .nav-cta { font-size: 15px !important; margin-top: 12px; }
  .menu-toggle { display: flex; }

  .hero { padding: 100px 20px 50px; min-height: auto; }
  .hero-proof { gap: 18px; flex-wrap: wrap; }
  .proof-sep { height: 32px; }

  .lead-form-section { padding: 56px 20px; }
  .lead-form-card { padding: 24px; }

  .problem-section { padding: 64px 20px; }
  .problem-grid { grid-template-columns: 1fr; gap: 40px; }

  .services-section { padding: 64px 20px; }
  .service-primary-content { padding: 36px 28px; }
  .service-secondary-grid { grid-template-columns: 1fr; }

  .metrics-row { grid-template-columns: repeat(2, 1fr); }
  .metric-cell:nth-child(2) { border-right: none; }
  .metric-cell:nth-child(1), .metric-cell:nth-child(2) { border-bottom: 1px solid rgba(255, 255, 255, 0.05); }

  .video-section { padding: 64px 20px; }
  .video-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .vcard-btn { width: 28px; height: 28px; }

  .adgallery-section { padding: 64px 20px; }
  .adgallery-masonry { columns: 2; column-gap: 10px; }
  .adgallery-item { margin-bottom: 10px; }
  .adgallery-stats { gap: 20px; }

  .webfolio-section { padding: 64px 20px 0; }
  .webfolio-grid { grid-template-columns: 1fr; margin-bottom: 56px; }
  .webfolio-industries { gap: 12px; }

  .microsites-block { padding: 64px 20px; }
  .microsites-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .microsites-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .ms-card-preview { aspect-ratio: 9/16; }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .metrics-row { grid-template-columns: 1fr; }
  .metric-cell { border-right: none !important; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
  .metric-cell:last-child { border-bottom: none; }
  .adgallery-masonry { columns: 2; column-gap: 8px; }
  .microsites-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
}


@media (min-width: 769px) {
  .webfolio-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
.mobile-audit-btn { display: none; }
@media (max-width: 768px) {
  .menu-toggle { display: none !important; }
  nav#nav { display: none !important; }
  .mobile-audit-btn {
    display: inline-flex !important;
    align-items: center;
    padding: 10px 18px;
    background: #c8ff00;
    color: #0b0b0b;
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 13px;
    border-radius: 100px;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.2px;
  }
}
.video-unmute {
  background: var(--lime) !important;
  border-color: var(--lime) !important;
  color: var(--dark) !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  width: auto !important;
  height: auto !important;
  border-radius: 100px !important;
  padding: 8px 14px !important;
  font-family: 'Satoshi', sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
}
.video-unmute svg {
  stroke: var(--dark) !important;
}
.video-unmute .unmute-label { display: inline; }
.video-unmute.is-playing .unmute-label { display: none; }
.video-unmute.is-playing::after {
  content: 'Mute';
  font-family: 'Satoshi', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
      .myowner-about-section {
        padding: 0 16px !important;
        margin: 28px 0 !important;
      }

      .myowner-inner {
        padding: 36px 28px !important;
        flex-direction: column !important;
        gap: 28px !important;
        align-items: flex-start !important;
      }

      .myowner-divider {
        display: none !important;
      }

      .myowner-left {
        width: 100% !important;
        gap: 20px !important;
      }

      .myowner-stats {
        flex-direction: row !important;
        gap: 0 !important;
        width: 100% !important;
      }

      .myowner-stats>div {
        flex: 1;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 2px !important;
        padding-right: 16px !important;
        border-right: 1px solid rgba(255, 255, 255, 0.07) !important;
        margin-right: 16px !important;
      }

      .myowner-stats>div:last-child {
        border-right: none !important;
        margin-right: 0 !important;
        padding-right: 0 !important;
      }

      .myowner-stats>div>span:first-child {
        font-size: 24px !important;
        display: block;
        line-height: 1 !important;
      }

      .myowner-stats>div>span:last-child {
        font-size: 9px !important;
      }
    }

    .metrics-row-wrap {
      padding: 0 24px;
      margin: 40px 0;
    }

    .metrics-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      background: var(--dark);
      border-radius: var(--r-xl);
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.06);
      box-shadow: var(--shadow-lg);
      max-width: 1200px;
      margin: 0 auto;
    }

    .metric-cell {
      padding: 48px 32px;
      text-align: center;
      border-right: 1px solid rgba(255, 255, 255, 0.05);
      transition: background 0.3s;
      position: relative;
    }

    .metric-cell:last-child {
      border-right: none;
    }

    .metric-cell:hover {
      background: rgba(200, 255, 0, 0.04);
    }

    .metric-cell::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--lime);
      transform: scaleX(0);
      transition: transform 0.5s var(--ease-out);
    }

    .metric-cell:hover::before {
      transform: scaleX(1);
    }

    .metric-val {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: clamp(30px, 3.5vw, 44px);
      color: var(--lime);
      letter-spacing: -1px;
      line-height: 1;
    }

    .metric-desc {
      font-size: 11.5px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.45);
      margin-top: 10px;
      font-weight: 500;
    }

    /* ── Mobile: single horizontal row, compact ── */
    @media (max-width: 768px) {
      .metrics-row-wrap {
        padding: 0 16px;
        margin: 28px 0;
      }

      .metrics-row {
        grid-template-columns: repeat(4, 1fr);
        border-radius: var(--r-lg);
      }

      .metric-cell {
        padding: 18px 8px;
        border-right: 1px solid rgba(255, 255, 255, 0.05);
      }

      .metric-val {
        font-size: 18px;
        letter-spacing: -0.5px;
      }

      .metric-desc {
        font-size: 8px;
        letter-spacing: 0.5px;
        margin-top: 5px;
        line-height: 1.3;
      }
    }

    @media (max-width: 400px) {
      .metric-val {
        font-size: 15px;
      }

      .metric-desc {
        font-size: 7px;
      }

      .metric-cell {
        padding: 14px 5px;
      }
    }

    .metrics-row-wrap {
      padding: 0 24px;
      margin: 0;
    }

    .metrics-row-wrap {
      padding: 0 24px;
      margin: 0;
    }

    /* kill any section padding bleeding into metrics */
    .metrics-row-wrap+section,
    section+.metrics-row-wrap {
      margin-top: 0;
      padding-top: 0;
    }
      /* ═══════════ TESTIMONIAL SECTION ═══════════ */
    .testi-section {
      padding: 50px 24px;
      background: var(--cream);
      position: relative;
      overflow: hidden;
    }

    .testi-section::before {
      content: '';
      position: absolute;
      top: -200px;
      left: -200px;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, var(--lime-soft) 0%, transparent 60%);
      filter: blur(80px);
      pointer-events: none;
    }

    .testi-section::after {
      content: '';
      position: absolute;
      bottom: -200px;
      right: -200px;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(139, 111, 214, 0.08) 0%, transparent 60%);
      filter: blur(80px);
      pointer-events: none;
    }

    .testi-inner {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .testi-container {
      background: white;
      border: 1px solid var(--border);
      border-radius: var(--r-xl);
      padding: 64px 72px;
      display: grid;
      grid-template-columns: 1fr 498px;
      gap: 72px;
      align-items: center;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.03);
      position: relative;
      overflow: hidden;
    }

    .testi-container::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--lime), #00ffd5, var(--lime));
      background-size: 200% 100%;
      animation: gradSlide 4s ease infinite;
    }

    /* Giant decorative quote */
    .testi-quote-mark {
      position: absolute;
      top: -20px;
      left: 32px;
      font-family: var(--font-display);
      font-size: 240px;
      font-weight: 700;
      color: var(--lime);
      opacity: 0.15;
      line-height: 1;
      pointer-events: none;
      user-select: none;
      font-style: italic;
    }

    /* ── Left: Text ── */
    .testi-left {
      position: relative;
      z-index: 1;
    }

    .testi-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      background: var(--lime-soft);
      border: 1px solid rgba(200, 255, 0, 0.3);
      border-radius: var(--r-pill);
      margin-bottom: 24px;
    }

    .testi-eyebrow-dot {
      width: 6px;
      height: 6px;
      background: #6b8f00;
      border-radius: 50%;
      animation: blink 2s ease-in-out infinite;
    }

    .testi-eyebrow span {
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: #4a6100;
    }

    .testi-title {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: clamp(34px, 4vw, 52px);
      line-height: 1.05;
      letter-spacing: -1.5px;
      color: var(--dark);
      margin-bottom: 22px;
    }

    .testi-title em {
      font-style: normal;
      color: #6b8f00;
      position: relative;
      display: inline-block;
    }

    .testi-title em::after {
      content: '';
      position: absolute;
      bottom: 2px;
      left: -4px;
      right: -4px;
      height: 32%;
      background: var(--lime);
      z-index: -1;
      border-radius: 4px;
    }

    .testi-desc {
      font-size: 16px;
      line-height: 1.7;
      color: var(--text-secondary);
      max-width: 460px;
      margin-bottom: 32px;
    }

    /* Social proof row */
    .testi-social-proof {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 28px;
      padding-bottom: 28px;
      border-bottom: 1px dashed var(--border-strong);
    }

    .testi-avatars {
      display: flex;
    }

    .testi-avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 3px solid white;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--dark);
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 14px;
      margin-left: -12px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s var(--ease-spring);
    }

    .testi-avatar:first-child {
      margin-left: 0;
    }

    .testi-avatar:hover {
      transform: translateY(-4px) scale(1.1);
      z-index: 2;
    }

    .testi-avatar-more {
      background: var(--dark) !important;
      color: var(--lime);
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.5px;
    }

    .testi-rating {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .testi-stars {
      display: flex;
      gap: 2px;
    }

    .testi-stars svg {
      width: 14px;
      height: 14px;
    }

    .testi-rating-text {
      font-size: 12.5px;
      color: var(--text-secondary);
      line-height: 1.2;
    }

    .testi-rating-text strong {
      color: var(--dark);
      font-weight: 700;
    }

    /* Pull quote */
    .testi-pullquote {
      padding: 22px 24px;
      background: linear-gradient(135deg, #fafafa 0%, #f4f7e8 100%);
      border-left: 3px solid var(--lime);
      border-radius: 0 var(--r-md) var(--r-md) 0;
      margin-bottom: 32px;
      position: relative;
    }

    .testi-pullquote p {
      font-family: var(--font-display);
      font-size: 16px;
      font-weight: 500;
      font-style: italic;
      line-height: 1.5;
      color: var(--dark);
      margin-bottom: 10px;
      letter-spacing: -0.2px;
    }

    .testi-pullquote-author {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .testi-pullquote-dot {
      width: 5px;
      height: 5px;
      background: #6b8f00;
      border-radius: 50%;
    }

    .testi-pullquote-author span {
      font-family: var(--font-mono);
      font-size: 10.5px;
      letter-spacing: 1.3px;
      text-transform: uppercase;
      color: var(--text-muted);
      font-weight: 500;
    }

    /* CTA */
    .testi-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      background: var(--dark);
      color: white;
      font-family: var(--font-body);
      font-weight: 700;
      font-size: 14px;
      letter-spacing: 0.3px;
      border-radius: var(--r-pill);
      transition: all 0.3s var(--ease-spring);
      width: fit-content;
    }

    .testi-cta:hover {
      background: var(--lime);
      color: var(--dark);
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(200, 255, 0, 0.4);
    }

    .testi-cta svg {
      transition: transform 0.3s ease;
    }

    .testi-cta:hover svg {
      transform: translateX(4px);
    }

    /* ── Right: Video ── */
    .testi-right {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1;
    }

    /* Floating stat cards */
    .testi-stat-float {
      position: absolute;
      background: white;
      border: 1px solid var(--border);
      border-radius: var(--r-md);
      padding: 14px 18px;
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.02);
      z-index: 3;
      display: flex;
      align-items: center;
      gap: 12px;
      animation: floatCard 3.5s ease-in-out infinite;
    }

    .testi-stat-float-1 {
      top: 24px;
      left: -24px;
      animation-delay: 0s;
    }

    .testi-stat-float-2 {
      bottom: 40px;
      right: -28px;
      animation-delay: 1.5s;
    }

    @keyframes floatCard {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-8px);
      }
    }

    .testi-stat-float-val {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 26px;
      color: var(--dark);
      letter-spacing: -0.6px;
      line-height: 1;
    }

    .testi-stat-float-val-sm {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 14px;
      color: var(--dark);
      line-height: 1.1;
    }

    .testi-stat-float-label {
      font-family: var(--font-mono);
      font-size: 9.5px;
      letter-spacing: 1.3px;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-top: 4px;
      font-weight: 500;
    }

    .testi-stat-float-icon {
      width: 32px;
      height: 32px;
      background: var(--lime);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .testi-stat-float-icon svg {
      width: 16px;
      height: 16px;
      stroke: var(--dark);
    }

    /* Video wrap */
    .testi-video-wrap {
      position: relative;
      width: 498px;
      height: 480px;
      border-radius: var(--r-lg);
      overflow: hidden;
      background: var(--dark);
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.04);
    }

    .testi-video-wrap::before {
      content: '';
      position: absolute;
      inset: -16px;
      border-radius: 36px;
      background: radial-gradient(ellipse at center, rgba(200, 255, 0, 0.25) 0%, transparent 70%);
      z-index: -1;
      filter: blur(24px);
    }

    .testi-video-wrap video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .testi-video-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 140px;
      background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
      pointer-events: none;
      z-index: 1;
    }

    .testi-video-top {
      position: absolute;
      top: 16px;
      left: 16px;
      right: 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      z-index: 2;
    }

    .testi-video-live {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 7px 12px;
      background: rgba(0, 0, 0, 0.55);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(200, 255, 0, 0.25);
      border-radius: var(--r-pill);
    }

    .testi-video-live-dot {
      width: 6px;
      height: 6px;
      background: var(--lime);
      border-radius: 50%;
      animation: badgePulse 2s ease-in-out infinite;
    }

    .testi-video-live span {
      font-family: var(--font-mono);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 1.3px;
      text-transform: uppercase;
      color: var(--lime);
    }

    .testi-video-count {
      padding: 6px 12px;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: var(--r-pill);
      font-family: var(--font-mono);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: white;
    }

    .testi-video-bottom {
      position: absolute;
      bottom: 16px;
      left: 16px;
      right: 16px;
      z-index: 2;
      display: flex;
      justify-content: flex-end;
    }

    .testi-unmute-btn {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 18px;
      background: var(--lime);
      color: var(--dark);
      border-radius: var(--r-pill);
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      transition: all 0.3s var(--ease-spring);
      box-shadow: 0 6px 20px rgba(200, 255, 0, 0.4);
      animation: unmutePulse 2.5s ease-in-out infinite;
    }

    @keyframes unmutePulse {

      0%,
      100% {
        box-shadow: 0 6px 20px rgba(200, 255, 0, 0.4), 0 0 0 0 rgba(200, 255, 0, 0.5);
      }

      50% {
        box-shadow: 0 6px 20px rgba(200, 255, 0, 0.4), 0 0 0 12px rgba(200, 255, 0, 0);
      }
    }

    .testi-unmute-btn:hover {
      background: var(--lime-hover);
      transform: scale(1.05);
    }

    .testi-unmute-btn svg {
      stroke: var(--dark);
    }

    .testi-unmute-btn.is-playing {
      animation: none;
    }

    .testi-unmute-btn .testi-unmute-label {
      display: inline;
    }

    .testi-unmute-btn.is-playing .testi-unmute-label {
      display: none;
    }

    .testi-unmute-btn.is-playing::after {
      content: 'Tap to Mute';
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }

    /* ── Responsive ── */
    @media (max-width: 1100px) {
      .testi-container {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 48px 40px;
      }

      .testi-right {
        order: -1;
      }

      .testi-video-wrap {
        width: 100%;
        max-width: 498px;
        height: auto;
        aspect-ratio: 498 / 480;
        margin: 0 auto;
      }

      .testi-stat-float-1 {
        top: 16px;
        left: 8px;
      }

      .testi-stat-float-2 {
        bottom: 32px;
        right: 8px;
      }

      .testi-quote-mark {
        font-size: 180px;
        top: -10px;
        left: 24px;
      }
    }

    @media (max-width: 768px) {
      .testi-section {
        padding: 64px 20px;
      }

      .testi-container {
        padding: 36px 24px;
        gap: 36px;
      }

      .testi-title {
        font-size: 30px;
        letter-spacing: -1px;
      }

      .testi-desc {
        font-size: 15px;
        margin-bottom: 24px;
      }

      .testi-social-proof {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding-bottom: 22px;
        margin-bottom: 22px;
      }

      .testi-pullquote {
        padding: 18px 20px;
        margin-bottom: 24px;
      }

      .testi-pullquote p {
        font-size: 14.5px;
      }

      .testi-stat-float {
        padding: 10px 14px;
      }

      .testi-stat-float-val {
        font-size: 20px;
      }

      .testi-stat-float-val-sm {
        font-size: 12px;
      }

      .testi-stat-float-label {
        font-size: 8.5px;
      }

      .testi-stat-float-1 {
        top: 12px;
        left: 4px;
      }

      .testi-stat-float-2 {
        bottom: 28px;
        right: 4px;
      }

      .testi-quote-mark {
        font-size: 140px;
        top: 0;
        left: 16px;
      }

      .testi-unmute-btn {
        padding: 8px 14px;
        font-size: 11px;
      }
    }

    @media (max-width: 480px) {
      .testi-container {
        padding: 28px 18px;
      }

      .testi-avatar {
        width: 36px;
        height: 36px;
        font-size: 12px;
      }

      .testi-stat-float {
        display: none;
      }
    }

    /* ── Responsive ── */
    @media (max-width: 1100px) {
      .testi-container {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 48px 40px;
      }

      .testi-video-wrap {
        width: 100%;
        max-width: 498px;
        height: auto;
        aspect-ratio: 498 / 480;
        margin: 0 auto;
      }

      .testi-stat-float-1 {
        top: 16px;
        left: 8px;
      }

      .testi-stat-float-2 {
        bottom: 32px;
        right: 8px;
      }

      .testi-quote-mark {
        font-size: 180px;
        top: -10px;
        left: 24px;
      }
    }

    @media (max-width: 768px) {
      .testi-section {
        padding: 64px 20px;
      }

      /* Container becomes a flex column to allow custom ordering */
      .testi-container {
        display: flex;
        flex-direction: column;
        padding: 36px 24px;
        gap: 0;
      }

      /* Left text splits into two parts: eyebrow+title go first, rest goes last */
      .testi-left {
        display: contents;
        /* lets children participate in parent's flex order */
      }

      /* 1️⃣ First: eyebrow + title */
      .testi-eyebrow {
        order: 1;
        margin-bottom: 18px;
      }

      .testi-title {
        order: 2;
        font-size: 30px;
        letter-spacing: -1px;
        margin-bottom: 28px;
      }

      /* 2️⃣ Middle: video */
      .testi-right {
        order: 3;
        margin-bottom: 32px;
      }

      /* 3️⃣ Bottom: description, social proof, pull quote, CTA */
      .testi-desc {
        order: 4;
        font-size: 15px;
        margin-bottom: 24px;
      }

      .testi-social-proof {
        order: 5;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding-bottom: 22px;
        margin-bottom: 22px;
      }

      .testi-pullquote {
        order: 6;
        padding: 18px 20px;
        margin-bottom: 24px;
      }

      .testi-pullquote p {
        font-size: 14.5px;
      }

      .testi-cta {
  order: 7;
}
.testi-cta-row {
  order: 7;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  width: 100%;
}
.testi-cta-row a {
  width: 100%;
  justify-content: center;
  box-sizing: border-box;
}

      /* Floating stat cards stay pinned to the video */
      .testi-stat-float {
        padding: 10px 14px;
      }

      .testi-stat-float-val {
        font-size: 20px;
      }

      .testi-stat-float-val-sm {
        font-size: 12px;
      }

      .testi-stat-float-label {
        font-size: 8.5px;
      }

      .testi-stat-float-1 {
        top: 12px;
        left: 4px;
      }

      .testi-stat-float-2 {
        bottom: 28px;
        right: 4px;
      }

      .testi-quote-mark {
        font-size: 140px;
        top: 0;
        left: 16px;
      }

      .testi-unmute-btn {
        padding: 8px 14px;
        font-size: 11px;
      }
    }

    @media (max-width: 480px) {
      .testi-container {
        padding: 28px 18px;
      }

      .testi-avatar {
        width: 36px;
        height: 36px;
        font-size: 12px;
      }

      .testi-stat-float {
        display: none;
      }
    }
    /* Hide old hover overlay */
    .wf-card-hover {
      display: none !important;
    }

    /* Permanent Visit Site pill — bottom right of preview */
    .wf-visit-pill {
      position: absolute;
      bottom: 14px;
      right: 14px;
      z-index: 10;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 9px 16px;
      background: var(--lime);
      color: var(--dark);
      font-family: var(--font-body);
      font-weight: 700;
      font-size: 12px;
      letter-spacing: 0.3px;
      border-radius: var(--r-pill);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
      transition: all 0.25s var(--ease-spring);
      text-decoration: none;
      white-space: nowrap;
    }

    .wf-visit-pill:hover {
      background: var(--lime-hover);
      transform: translateY(-2px) scale(1.05);
      box-shadow: 0 8px 28px rgba(200, 255, 0, 0.45);
    }

    .wf-visit-pill svg {
      stroke: var(--dark);
      transition: transform 0.25s ease;
    }

    .wf-visit-pill:hover svg {
      transform: translate(2px, -2px);
    }
     /* Override old iframe preview — use image instead */
    .ms-card-preview {
      position: relative;
      aspect-ratio: 9 / 16;
      overflow: hidden;
      background: var(--dark);
      border-radius: 0;
      /* card handles rounding */
    }

    .ms-card-preview img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      display: block;
      transition: transform 0.7s var(--ease-out);
    }

    .ms-card:hover .ms-card-preview img {
      transform: scale(1.04);
    }

    /* Remove old iframe styles */
    .ms-card-preview iframe {
      display: none !important;
    }

    .ms-card-hover {
      display: none !important;
    }

    /* Visit Site button — below the card info */
    .ms-visit-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      width: 100%;
      padding: 11px 16px;
      background: var(--lime);
      color: var(--dark);
      font-family: var(--font-body);
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 0.3px;
      border-top: 1px solid rgba(200, 255, 0, 0.3);
      text-decoration: none;
      transition: all 0.25s var(--ease-spring);
    }

    .ms-visit-btn:hover {
      background: var(--lime-hover);
      gap: 10px;
    }

    .ms-visit-btn svg {
      stroke: var(--dark);
      flex-shrink: 0;
      transition: transform 0.25s ease;
    }

    .ms-visit-btn:hover svg {
      transform: translate(2px, -2px);
    }
    /* ═══════════ FAQ SECTION ═══════════ */
    .faq-section {
      padding: 100px 24px;
      background: linear-gradient(180deg, #f9faf4 0%, var(--white) 100%);
      position: relative;
      overflow: hidden;
    }

    .faq-section::before {
      content: '';
      position: absolute;
      top: -150px;
      right: -150px;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, var(--lime-soft) 0%, transparent 60%);
      filter: blur(80px);
      pointer-events: none;
    }

    .faq-inner {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    /* Header */
    .faq-header {
      text-align: center;
      margin-bottom: 56px;
    }

    .faq-header .section-tag {
      justify-content: center;
      margin-left: auto;
      margin-right: auto;
    }

    .faq-title {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: clamp(32px, 4.5vw, 52px);
      letter-spacing: -1.4px;
      line-height: 1.1;
      color: var(--dark);
      margin-bottom: 14px;
    }

    .faq-title em {
      font-style: normal;
      color: #6b8f00;
      position: relative;
      display: inline-block;
    }

    .faq-title em::after {
      content: '';
      position: absolute;
      bottom: 2px;
      left: -4px;
      right: -4px;
      height: 30%;
      background: var(--lime);
      z-index: -1;
      border-radius: 4px;
    }

    .faq-sub {
      font-size: 16px;
      color: var(--text-secondary);
      max-width: 540px;
      margin: 0 auto;
      line-height: 1.65;
    }

    /* Wrap */
    .faq-wrap {
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      gap: 24px;
      align-items: start;
    }

    /* ── Side Panel ── */
    .faq-side {
      position: sticky;
      top: 100px;
      background: var(--dark);
      color: white;
      border-radius: var(--r-xl);
      padding: 44px 36px;
      overflow: hidden;
      position: relative;
      box-shadow: var(--shadow-lg);
    }

    .faq-side::after {
      content: '';
      position: absolute;
      bottom: -100px;
      right: -100px;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(200, 255, 0, 0.08) 0%, transparent 70%);
      pointer-events: none;
    }

    .faq-side-inner {
      position: relative;
      z-index: 1;
    }

    .faq-side-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 6px 13px;
      background: var(--lime-soft);
      border: 1px solid rgba(200, 255, 0, 0.3);
      border-radius: var(--r-pill);
      margin-bottom: 22px;
    }

    .faq-side-badge-dot {
      width: 6px;
      height: 6px;
      background: var(--lime);
      border-radius: 50%;
      animation: blink 2s ease-in-out infinite;
    }

    .faq-side-badge span {
      font-family: var(--font-mono);
      font-size: 10.5px;
      font-weight: 600;
      letter-spacing: 1.4px;
      text-transform: uppercase;
      color: var(--lime);
    }

    .faq-side-title {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 30px;
      line-height: 1.15;
      letter-spacing: -0.8px;
      margin-bottom: 14px;
    }

    .faq-side-title em {
      font-style: normal;
      color: var(--lime);
    }

    .faq-side-desc {
      font-size: 14.5px;
      line-height: 1.65;
      color: rgba(255, 255, 255, 0.6);
      margin-bottom: 28px;
    }

    .faq-side-actions {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 24px;
    }

    .faq-side-wa,
    .faq-side-call {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 13px 20px;
      border-radius: var(--r-pill);
      font-family: var(--font-body);
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 0.3px;
      transition: all 0.3s var(--ease-spring);
    }

    .faq-side-wa {
      background: var(--lime);
      color: var(--dark);
    }

    .faq-side-wa:hover {
      background: var(--lime-hover);
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(200, 255, 0, 0.35);
    }

    .faq-side-call {
      background: rgba(255, 255, 255, 0.06);
      color: white;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .faq-side-call:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.2);
      transform: translateY(-2px);
    }

    .faq-side-trust {
      display: flex;
      align-items: center;
      gap: 8px;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .faq-side-trust-dot {
      width: 6px;
      height: 6px;
      background: var(--lime);
      border-radius: 50%;
      animation: blink 1.5s ease-in-out infinite;
    }

    .faq-side-trust span {
      font-family: var(--font-mono);
      font-size: 11px;
      color: rgba(255, 255, 255, 0.5);
      letter-spacing: 0.5px;
    }

    .faq-side-trust strong {
      color: white;
      font-weight: 700;
    }

    /* ── FAQ List ── */
    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .faq-item {
      background: white;
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      overflow: hidden;
      transition: all 0.35s var(--ease-out);
    }

    .faq-item:hover {
      border-color: var(--border-strong);
      box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
    }

    .faq-item.is-open {
      background: white;
      border-color: rgba(200, 255, 0, 0.5);
      box-shadow: 0 12px 36px rgba(200, 255, 0, 0.12), 0 0 0 1px rgba(200, 255, 0, 0.25);
    }

    .faq-item.is-open::before {
      content: '';
      position: absolute;
    }

    .faq-q {
      display: flex;
      align-items: center;
      gap: 18px;
      width: 100%;
      padding: 22px 26px;
      background: transparent;
      text-align: left;
      cursor: pointer;
      transition: all 0.3s;
    }

    .faq-q-num {
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      color: var(--text-muted);
      flex-shrink: 0;
      transition: color 0.3s;
    }

    .faq-item.is-open .faq-q-num {
      color: #6b8f00;
    }

    .faq-q-text {
      flex: 1;
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 16.5px;
      color: var(--dark);
      letter-spacing: -0.2px;
      line-height: 1.35;
    }

    .faq-q-icon {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--surface);
      flex-shrink: 0;
      position: relative;
      transition: all 0.35s var(--ease-spring);
    }

    .faq-q-icon span {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 12px;
      height: 2px;
      background: var(--dark);
      border-radius: 2px;
      transform: translate(-50%, -50%);
      transition: all 0.35s var(--ease-spring);
    }

    .faq-q-icon span:last-child {
      transform: translate(-50%, -50%) rotate(90deg);
    }

    .faq-item.is-open .faq-q-icon {
      background: var(--lime);
      transform: rotate(180deg);
    }

    .faq-item.is-open .faq-q-icon span:last-child {
      opacity: 0;
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.45s var(--ease-out);
    }

    .faq-item.is-open .faq-a {
      max-height: 800px;
    }

    .faq-a-inner {
      padding: 4px 26px 26px 66px;
      opacity: 0;
      transform: translateY(-8px);
      transition: opacity 0.3s 0.15s ease, transform 0.35s 0.15s var(--ease-out);
    }

    .faq-item.is-open .faq-a-inner {
      opacity: 1;
      transform: translateY(0);
    }

    .faq-a-inner p {
      font-size: 14.5px;
      line-height: 1.7;
      color: var(--text-secondary);
      margin-bottom: 12px;
    }

    .faq-a-inner p:last-child {
      margin-bottom: 0;
    }

    .faq-a-inner strong {
      color: var(--dark);
      font-weight: 600;
    }

    .faq-a-inner ul {
      list-style: none;
      padding: 0;
      margin: 14px 0 16px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .faq-a-inner ul li {
      position: relative;
      padding-left: 22px;
      font-size: 14px;
      line-height: 1.65;
      color: var(--text-secondary);
    }

    .faq-a-inner ul li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 8px;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--lime);
      box-shadow: 0 0 0 3px var(--lime-soft);
    }

    .faq-a-inner ul li strong {
      color: var(--dark);
      font-weight: 600;
    }

    /* ── Responsive ── */
    @media (max-width: 1100px) {
      .faq-wrap {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .faq-side {
        position: static;
        padding: 36px 32px;
      }

      .faq-side-title {
        font-size: 26px;
      }
    }

    @media (max-width: 768px) {
      .faq-section {
        padding: 64px 20px;
      }

      .faq-header {
        margin-bottom: 40px;
      }

      .faq-wrap {
        gap: 24px;
      }

      .faq-side {
        padding: 32px 24px;
        border-radius: var(--r-lg);
      }

      .faq-side-title {
        font-size: 24px;
      }

      .faq-side-desc {
        font-size: 14px;
        margin-bottom: 22px;
      }

      .faq-q {
        padding: 18px 20px;
        gap: 14px;
      }

      .faq-q-text {
        font-size: 14.5px;
      }

      .faq-q-num {
        font-size: 10px;
      }

      .faq-q-icon {
        width: 28px;
        height: 28px;
      }

      .faq-q-icon span {
        width: 10px;
      }

      .faq-a-inner {
        padding: 2px 20px 22px 50px;
      }

      .faq-a-inner p {
        font-size: 14px;
      }

      .faq-a-inner ul li {
        font-size: 13.5px;
        padding-left: 20px;
      }

      .faq-a-inner ul li::before {
        width: 8px;
        height: 8px;
        top: 7px;
      }
    }

    @media (max-width: 480px) {
      .faq-q {
        padding: 16px 16px;
        gap: 10px;
      }

      .faq-q-num {
        display: none;
      }

      .faq-a-inner {
        padding: 2px 16px 18px 16px;
      }
    }
      /* ═══ PRICING ═══ */
    .pricing-section {
      padding: 100px 24px;
      background: var(--white);
      position: relative;
      overflow: hidden;
    }

    .pricing-section::before {
      content: '';
      position: absolute;
      top: -150px;
      right: -150px;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, var(--lime-soft) 0%, transparent 60%);
      filter: blur(60px);
      pointer-events: none;
    }

    .pricing-inner {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .pricing-header {
      text-align: center;
      margin-bottom: 52px;
    }

    .pricing-header .section-tag {
      justify-content: center;
      margin-left: auto;
      margin-right: auto;
    }

    .pricing-title {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: clamp(30px, 4vw, 48px);
      letter-spacing: -1.2px;
      line-height: 1.1;
      color: var(--dark);
      margin-bottom: 14px;
    }

    .pricing-title em {
      font-style: normal;
      color: #6b8f00;
      position: relative;
      display: inline-block;
    }

    .pricing-title em::after {
      content: '';
      position: absolute;
      bottom: 2px;
      left: -3px;
      right: -3px;
      height: 28%;
      background: var(--lime);
      z-index: -1;
      border-radius: 4px;
    }

    .pricing-sub {
      font-size: 15.5px;
      color: var(--text-secondary);
      max-width: 540px;
      margin: 0 auto;
      line-height: 1.65;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      gap: 20px;
      align-items: stretch;
    }

    /* ── Starter Pack Card ── */
    .starter-card {
      background: var(--dark);
      color: white;
      border-radius: var(--r-xl);
      padding: 40px 36px 36px;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      box-shadow: var(--shadow-lg);
    }

    .starter-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--lime), #00ffd5, var(--lime));
      background-size: 200% 100%;
      animation: gradSlide 4s ease infinite;
    }

    .starter-card::after {
      content: '';
      position: absolute;
      bottom: -60px;
      right: -60px;
      width: 260px;
      height: 260px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(200, 255, 0, 0.08) 0%, transparent 70%);
      pointer-events: none;
    }

    .starter-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 12px;
      background: var(--lime-soft);
      border: 1px solid rgba(200, 255, 0, 0.25);
      border-radius: var(--r-pill);
      font-family: var(--font-mono);
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--lime);
      width: fit-content;
      margin-bottom: 20px;
    }

    .starter-badge-dot {
      width: 5px;
      height: 5px;
      background: var(--lime);
      border-radius: 50%;
    }

    .starter-label {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.4);
      margin-bottom: 10px;
      position: relative;
      z-index: 1;
    }

    .starter-name {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 30px;
      letter-spacing: -0.8px;
      line-height: 1.1;
      margin-bottom: 10px;
      position: relative;
      z-index: 1;
    }

    .starter-desc {
      font-size: 14px;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.6);
      margin-bottom: 24px;
      position: relative;
      z-index: 1;
    }

    .starter-price {
      display: flex;
      align-items: baseline;
      gap: 4px;
      margin-bottom: 8px;
      position: relative;
      z-index: 1;
    }

    .starter-price-cur {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.5);
    }

    .starter-price-val {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 52px;
      color: var(--lime);
      letter-spacing: -2px;
      line-height: 1;
    }

    .starter-price-per {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.4);
      margin-left: 4px;
    }

    .starter-price-note {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.35);
      margin-bottom: 24px;
      position: relative;
      z-index: 1;
    }

    .starter-divider {
      height: 1px;
      background: rgba(255, 255, 255, 0.08);
      margin: 0 0 22px;
      position: relative;
      z-index: 1;
    }

    .starter-features {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-bottom: 28px;
      position: relative;
      z-index: 1;
    }

    .starter-feat {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }

    .starter-feat-check {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: rgba(200, 255, 0, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .starter-feat-check svg {
      width: 11px;
      height: 11px;
      stroke: var(--lime);
      fill: none;
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .starter-feat-text {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.85);
      line-height: 1.5;
    }

    .starter-feat-text strong {
      color: white;
      font-weight: 600;
    }

    .starter-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      padding: 15px;
      background: var(--lime);
      color: var(--dark);
      font-family: var(--font-body);
      font-weight: 700;
      font-size: 14px;
      letter-spacing: 0.3px;
      border-radius: var(--r-pill);
      transition: all 0.3s var(--ease-spring);
      margin-top: auto;
      position: relative;
      z-index: 1;
    }

    .starter-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(200, 255, 0, 0.3);
      background: var(--lime-hover);
    }

    .starter-cta svg {
      transition: transform 0.3s;
    }

    .starter-cta:hover svg {
      transform: translateX(3px);
    }

    /* ── Calculator Card ── */
    .calc-card {
      background: white;
      border: 1px solid var(--border);
      border-radius: var(--r-xl);
      padding: 40px 36px 36px;
      display: flex;
      flex-direction: column;
      box-shadow: var(--shadow-md);
      position: relative;
      overflow: hidden;
    }

    .calc-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 20px;
    }

    .calc-head-left {
      flex: 1;
    }

    .calc-label {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 10px;
    }

    .calc-title {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 30px;
      letter-spacing: -0.8px;
      line-height: 1.1;
      color: var(--dark);
      margin-bottom: 8px;
    }

    .calc-title em {
      font-style: normal;
      color: #6b8f00;
      position: relative;
      display: inline-block;
    }

    .calc-title em::after {
      content: '';
      position: absolute;
      bottom: 2px;
      left: -3px;
      right: -3px;
      height: 28%;
      background: var(--lime);
      z-index: -1;
      border-radius: 4px;
    }

    .calc-desc {
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.6;
    }

    .calc-icon {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      background: var(--lime);
      color: var(--dark);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .calc-icon svg {
      width: 22px;
      height: 22px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .calc-subhead {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--text-muted);
      margin: 8px 0 14px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .calc-subhead::before {
      content: '';
      flex: 0 0 18px;
      height: 2px;
      background: var(--lime);
      border-radius: 2px;
    }

    .calc-services {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-bottom: 24px;
    }

    .calc-option {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 16px;
      background: var(--surface);
      border: 1.5px solid transparent;
      border-radius: var(--r-md);
      cursor: pointer;
      transition: all 0.25s var(--ease-out);
      user-select: none;
      position: relative;
    }

    .calc-option:hover {
      background: var(--off-white);
      border-color: var(--border-strong);
    }

    .calc-option input {
      position: absolute;
      opacity: 0;
      pointer-events: none;
    }

    .calc-option-check {
      width: 22px;
      height: 22px;
      border-radius: 7px;
      border: 1.5px solid var(--border-strong);
      background: white;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: all 0.2s var(--ease-out);
    }

    .calc-option-check svg {
      width: 12px;
      height: 12px;
      stroke: var(--dark);
      fill: none;
      stroke-width: 3;
      stroke-linecap: round;
      stroke-linejoin: round;
      opacity: 0;
      transform: scale(0.6);
      transition: all 0.2s var(--ease-spring);
    }

    .calc-option-label {
      font-size: 13.5px;
      font-weight: 500;
      color: var(--dark);
      line-height: 1.35;
    }

    .calc-option.is-checked {
      background: var(--dark);
      border-color: var(--dark);
    }

    .calc-option.is-checked .calc-option-check {
      background: var(--lime);
      border-color: var(--lime);
    }

    .calc-option.is-checked .calc-option-check svg {
      opacity: 1;
      transform: scale(1);
    }

    .calc-option.is-checked .calc-option-label {
      color: white;
    }

    .calc-total-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 20px;
      background: var(--surface);
      border-radius: var(--r-md);
      margin-bottom: 16px;
      border: 1px dashed var(--border-strong);
      transition: all 0.3s var(--ease-out);
    }

    .calc-total-row.has-value {
      background: var(--dark);
      border-color: var(--dark);
      border-style: solid;
    }

    .calc-total-label {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--text-muted);
      font-weight: 500;
    }

    .calc-total-row.has-value .calc-total-label {
      color: rgba(255, 255, 255, 0.5);
    }

    .calc-total-value {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 28px;
      letter-spacing: -0.6px;
      color: var(--text-faint);
      line-height: 1;
    }

    .calc-total-row.has-value .calc-total-value {
      color: var(--lime);
    }

    .calc-total-count {
      font-size: 11px;
      color: var(--text-muted);
      margin-top: 4px;
    }

    .calc-total-row.has-value .calc-total-count {
      color: rgba(255, 255, 255, 0.5);
    }

    .calc-submit {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      padding: 15px;
      background: var(--dark);
      color: white;
      font-family: var(--font-body);
      font-weight: 700;
      font-size: 14px;
      letter-spacing: 0.3px;
      border-radius: var(--r-pill);
      transition: all 0.3s var(--ease-spring);
      margin-top: auto;
    }

    .calc-submit:hover:not(:disabled) {
      background: var(--dark-3);
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
    }

    .calc-submit:disabled {
      background: var(--text-faint);
      cursor: not-allowed;
      opacity: 0.6;
    }

    .calc-submit svg {
      transition: transform 0.3s;
    }

    .calc-submit:hover:not(:disabled) svg {
      transform: translateX(3px);
    }

    .calc-note {
      font-size: 11.5px;
      color: var(--text-muted);
      text-align: center;
      margin-top: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
    }

    .calc-note svg {
      stroke: var(--text-muted);
    }

    /* ═══ CALCULATOR MODAL ═══ */
    .calc-modal {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: rgba(11, 11, 11, 0.7);
      backdrop-filter: blur(12px);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.35s var(--ease-out), visibility 0.35s;
    }

    .calc-modal.active {
      opacity: 1;
      visibility: visible;
    }

    .calc-modal-card {
      width: 100%;
      max-width: 460px;
      background: white;
      border-radius: var(--r-xl);
      padding: 36px 32px 32px;
      position: relative;
      transform: scale(0.92) translateY(20px);
      transition: transform 0.45s var(--ease-spring);
      box-shadow: var(--shadow-xl);
    }

    .calc-modal.active .calc-modal-card {
      transform: scale(1) translateY(0);
    }

    .calc-modal-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: var(--surface);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.25s;
    }

    .calc-modal-close:hover {
      background: var(--surface-2);
      transform: scale(1.06);
    }

    .calc-modal-close svg {
      width: 14px;
      height: 14px;
      stroke: var(--dark);
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
    }

    .calc-modal-header {
      margin-bottom: 24px;
      padding-right: 40px;
    }

    .calc-modal-title {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 22px;
      letter-spacing: -0.4px;
      line-height: 1.2;
      color: var(--dark);
      margin-bottom: 6px;
    }

    .calc-modal-subtitle {
      font-size: 13.5px;
      color: var(--text-secondary);
      line-height: 1.5;
    }

    .calc-modal-summary {
      padding: 14px 16px;
      background: var(--surface);
      border-radius: var(--r-md);
      margin-bottom: 22px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .calc-modal-summary-left {
      font-size: 12px;
      color: var(--text-muted);
      font-weight: 500;
    }

    .calc-modal-summary-left strong {
      display: block;
      color: var(--dark);
      font-size: 13px;
      margin-top: 2px;
      font-weight: 600;
    }

    .calc-modal-summary-val {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 22px;
      color: var(--dark);
      letter-spacing: -0.5px;
    }

    .calc-modal-form {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .calc-modal-form .form-group {
      margin: 0;
    }

    .calc-modal-submit {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      padding: 14px;
      background: var(--lime);
      color: var(--dark);
      font-family: var(--font-body);
      font-weight: 700;
      font-size: 14px;
      letter-spacing: 0.3px;
      border-radius: var(--r-pill);
      transition: all 0.3s var(--ease-spring);
      margin-top: 8px;
    }

    .calc-modal-submit:hover:not(:disabled) {
      background: var(--lime-hover);
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(200, 255, 0, 0.3);
    }

    .calc-modal-submit:disabled {
      opacity: 0.6;
      cursor: not-allowed;
    }

    .calc-modal-submit svg {
      transition: transform 0.3s;
    }

    .calc-modal-submit:hover:not(:disabled) svg {
      transform: translateX(3px);
    }

    .calc-modal-trust {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      margin-top: 14px;
      font-size: 11.5px;
      color: var(--text-muted);
    }

    .calc-modal-trust svg {
      stroke: var(--text-muted);
    }

    /* Thank You State */
    .calc-modal-thanks {
      display: none;
      text-align: center;
      padding: 20px 0 8px;
    }

    .calc-modal.is-thanks .calc-modal-header,
    .calc-modal.is-thanks .calc-modal-summary,
    .calc-modal.is-thanks .calc-modal-form {
      display: none;
    }

    .calc-modal.is-thanks .calc-modal-thanks {
      display: block;
    }

    .calc-thanks-icon {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: var(--lime);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      animation: thanksPop 0.6s var(--ease-spring) 0.1s both;
    }

    .calc-thanks-icon svg {
      width: 32px;
      height: 32px;
      stroke: var(--dark);
      fill: none;
      stroke-width: 3;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    @keyframes thanksPop {
      0% {
        transform: scale(0);
        opacity: 0;
      }

      100% {
        transform: scale(1);
        opacity: 1;
      }
    }

    .calc-thanks-title {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 26px;
      letter-spacing: -0.6px;
      line-height: 1.15;
      color: var(--dark);
      margin-bottom: 10px;
    }

    .calc-thanks-text {
      font-size: 14.5px;
      color: var(--text-secondary);
      line-height: 1.6;
      max-width: 340px;
      margin: 0 auto 24px;
    }

    .calc-thanks-text strong {
      color: var(--dark);
      font-weight: 600;
    }

    .calc-thanks-close {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 28px;
      background: var(--dark);
      color: white;
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 13px;
      border-radius: var(--r-pill);
      transition: all 0.25s;
    }

    .calc-thanks-close:hover {
      background: var(--dark-3);
      transform: translateY(-2px);
    }

    /* ── Responsive ── */
    @media (max-width: 1100px) {
      .pricing-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .pricing-section {
        padding: 64px 20px;
      }

      .starter-card,
      .calc-card {
        padding: 32px 26px 28px;
      }

      .starter-name,
      .calc-title {
        font-size: 26px;
      }

      .starter-price-val {
        font-size: 44px;
      }

      .calc-services {
        grid-template-columns: 1fr;
      }

      .calc-modal-card {
        padding: 28px 22px 24px;
      }

      .calc-modal-title {
        font-size: 20px;
      }
    }
        /* ═══ POPUP OVERLAY ═══ */
    .git-overlay {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: rgba(11, 11, 11, 0.75);
      backdrop-filter: blur(14px);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.35s var(--ease-out), visibility 0.35s;
    }

    .git-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    /* ═══ CARD ═══ */
    .git-card {
      width: 100%;
      max-width: 480px;
      background: white;
      border-radius: var(--r-xl);
      padding: 36px 32px 30px;
      position: relative;
      transform: scale(0.92) translateY(24px);
      transition: transform 0.45s var(--ease-spring);
      box-shadow: var(--shadow-xl);
      overflow: hidden;
      max-height: 90vh;
      overflow-y: auto;
    }

    .git-overlay.active .git-card {
      transform: scale(1) translateY(0);
    }

    /* top accent line */


    /* ═══ CLOSE ═══ */
    .git-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: var(--surface);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.25s;
      z-index: 2;
    }

    .git-close:hover {
      background: var(--surface-2);
      transform: scale(1.08) rotate(90deg);
    }

    /* ═══ HEADER ═══ */
    .git-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 12px;
      background: var(--lime-soft);
      border: 1px solid rgba(200, 255, 0, 0.3);
      border-radius: var(--r-pill);
      font-family: var(--font-mono);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: #6b8f00;
      margin-bottom: 14px;
    }

    .git-badge-dot {
      width: 5px;
      height: 5px;
      background: #6b8f00;
      border-radius: 50%;
      animation: blink 2s ease-in-out infinite;
    }

    .git-title {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 26px;
      letter-spacing: -0.6px;
      line-height: 1.2;
      color: var(--dark);
      margin-bottom: 6px;
    }

    .git-title em {
      font-style: normal;
      color: #6b8f00;
      position: relative;
      display: inline-block;
    }

    .git-title em::after {
      content: '';
      position: absolute;
      bottom: 2px;
      left: -3px;
      right: -3px;
      height: 28%;
      background: var(--lime);
      z-index: -1;
      border-radius: 4px;
    }

    .git-sub {
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.55;
      margin-bottom: 22px;
    }

    /* ═══ FORM ROW ═══ */
    .git-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }

    @media (max-width: 480px) {
      .git-row {
        grid-template-columns: 1fr;
      }
    }

    /* ═══ SUBMIT ═══ */
    .git-submit {
      width: 100%;
      padding: 15px;
      background: var(--dark);
      color: white;
      font-family: var(--font-body);
      font-weight: 700;
      font-size: 14px;
      letter-spacing: 0.3px;
      border-radius: var(--r-pill);
      margin-top: 6px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: all 0.3s var(--ease-spring);
    }

    .git-submit:hover {
      background: var(--dark-3);
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
    }

    .git-submit:disabled {
      opacity: 0.6;
      pointer-events: none;
    }

    .git-submit svg {
      transition: transform 0.3s;
    }

    .git-submit:hover svg {
      transform: translateX(3px);
    }

    /* ═══ THANK YOU ═══ */
    .git-thanks {
      display: none;
      text-align: center;
      padding: 20px 0 10px;
    }

    .git-thanks-icon {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: var(--lime);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      animation: thanksPop 0.6s var(--ease-spring) 0.1s both;
    }

    .git-thanks-icon svg {
      stroke: var(--dark);
    }

    .git-thanks-title {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 26px;
      letter-spacing: -0.5px;
      color: var(--dark);
      margin-bottom: 10px;
    }

    .git-thanks-text {
      font-size: 14.5px;
      color: var(--text-secondary);
      line-height: 1.6;
      margin-bottom: 24px;
    }

    .git-thanks-text strong {
      color: var(--dark);
      font-weight: 600;
    }

    .git-thanks-close {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 32px;
      background: var(--dark);
      color: white;
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 13px;
      border-radius: var(--r-pill);
      transition: all 0.25s;
    }

    .git-thanks-close:hover {
      background: var(--dark-3);
      transform: translateY(-2px);
    }
     /* ═══════════ FOOTER ═══════════ */
    .foot {
      background: var(--dark);
      color: white;
      position: relative;
      overflow: hidden;
    }

    .foot::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(200, 255, 0, 0.4), transparent);
    }

    /* ─── LINKS GRID ─── */
    .foot-grid {
      padding: 70px 24px 50px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      position: relative;
    }

    .foot-grid::before {
      content: '';
      position: absolute;
      top: 50%;
      left: -200px;
      width: 500px;
      height: 500px;
      transform: translateY(-50%);
      border-radius: 50%;
      background: radial-gradient(circle, rgba(200, 255, 0, 0.05) 0%, transparent 60%);
      filter: blur(80px);
      pointer-events: none;
    }

    .foot-grid-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      gap: 80px;
      align-items: start;
      position: relative;
      z-index: 1;
    }

    .foot-brand {
      max-width: 420px;
    }

    .foot-logo {
      height: 24px;
      width: auto;
      margin-bottom: 20px;
    }

    .foot-tagline {
      font-size: 14.5px;
      line-height: 1.65;
      color: rgba(255, 255, 255, 0.55);
      margin-bottom: 26px;
    }

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

    .foot-social {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.6);
      transition: all 0.3s var(--ease-spring);
    }

    .foot-social svg {
      width: 16px;
      height: 16px;
    }

    .foot-social:hover {
      background: var(--lime);
      border-color: var(--lime);
      color: var(--dark);
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(200, 255, 0, 0.3);
    }

    .foot-col-title {
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--lime);
      margin-bottom: 22px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .foot-col-title::before {
      content: '';
      width: 14px;
      height: 2px;
      background: var(--lime);
      border-radius: 2px;
    }

    /* Contact column */
    .foot-contact-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 13px 16px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: var(--r-md);
      margin-bottom: 10px;
      transition: all 0.3s;
    }

    .foot-contact-item:not(.foot-contact-static):hover {
      background: rgba(200, 255, 0, 0.06);
      border-color: rgba(200, 255, 0, 0.25);
      transform: translateX(3px);
    }

    .foot-contact-icon {
      width: 34px;
      height: 34px;
      border-radius: 10px;
      background: rgba(200, 255, 0, 0.1);
      color: var(--lime);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .foot-contact-label {
      font-family: var(--font-mono);
      font-size: 9.5px;
      letter-spacing: 1.3px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.4);
      margin-bottom: 2px;
      font-weight: 500;
    }

    .foot-contact-val {
      font-size: 13.5px;
      font-weight: 500;
      color: white;
      line-height: 1.2;
    }

   .foot-wordmark-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(80px, 18vw, 280px);
  letter-spacing: -8px;
  line-height: 0.85;
  text-align: center;

  /* Use the hover gradient as default */
  background: linear-gradient(180deg, rgba(200, 255, 0, 0.28) 0%, rgba(200, 255, 0, 0.05) 100%);
  
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  user-select: none;
  white-space: nowrap;
  transition: background 0.5s;
}

/* Optional: remove hover rule completely */


    /* ─── BOTTOM BAR ─── */
    .foot-bottom {
      padding: 22px 24px;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      background: rgba(0, 0, 0, 0.3);
    }

    .foot-bottom-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 24px;
    }

    .foot-bottom-left {
      display: flex;
      align-items: center;
      gap: 14px;
      font-family: var(--font-mono);
      font-size: 11px;
      color: rgba(255, 255, 255, 0.4);
    }

    .foot-sep {
      width: 3px;
      height: 3px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 50%;
    }

    .foot-bottom-center {
      display: flex;
      justify-content: center;
    }

    .foot-status {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      background: rgba(200, 255, 0, 0.06);
      border: 1px solid rgba(200, 255, 0, 0.15);
      border-radius: var(--r-pill);
    }

    .foot-status-dot {
      width: 6px;
      height: 6px;
      background: var(--lime);
      border-radius: 50%;
      box-shadow: 0 0 0 3px rgba(200, 255, 0, 0.2);
      animation: blink 2s ease-in-out infinite;
    }

    .foot-status span {
      font-family: var(--font-mono);
      font-size: 10.5px;
      font-weight: 500;
      letter-spacing: 0.8px;
      color: rgba(200, 255, 0, 0.85);
    }

    .foot-bottom-right {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 18px;
    }

    .foot-bottom-right a:not(.foot-backtop) {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.45);
      transition: color 0.25s;
    }

    .foot-bottom-right a:not(.foot-backtop):hover {
      color: white;
    }

    .foot-backtop {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.7);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s var(--ease-spring);
    }

    .foot-backtop:hover {
      background: var(--lime);
      border-color: var(--lime);
      color: var(--dark);
      transform: translateY(-3px);
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1100px) {
      .foot-grid-inner {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .foot-brand {
        max-width: 500px;
      }
    }

    @media (max-width: 768px) {
      .foot-grid {
        padding: 48px 20px 36px;
      }

      .foot-grid-inner {
        gap: 32px;
      }

      .foot-wordmark {
        padding: 10px 16px;
      }

      .foot-bottom {
        padding: 20px;
      }

      .foot-bottom-inner {
        grid-template-columns: 1fr;
        gap: 14px;
        text-align: center;
      }

      .foot-bottom-left,
      .foot-bottom-right {
        justify-content: center;
        flex-wrap: wrap;
      }
    }

    @media (max-width: 480px) {
      .foot-cta-actions {
        flex-direction: column;
      }

      .foot-bottom-left {
        flex-direction: column;
        gap: 6px;
      }

      .foot-sep {
        display: none;
      }
    }
    /**/
    @media (max-width: 768px) {
  .webfolio-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
    margin-bottom: 56px;
  }

  /* Compact card for mobile 2-column layout */
  .wf-card-chrome {
    padding: 6px 8px;
    gap: 5px;
  }
  .wf-card-dots span {
    width: 6px;
    height: 6px;
  }
  .wf-card-url {
    padding: 3px 8px;
    margin-left: 3px;
  }
  .wf-card-url svg {
    width: 8px;
    height: 8px;
  }
  .wf-card-url span {
    font-size: 9px;
  }

  .wf-card-info {
    padding: 12px 12px;
    gap: 8px;
    flex-direction: column;
    align-items: flex-start;
  }
  .wf-card-name {
    font-size: 14px;
    margin-bottom: 2px;
  }
  .wf-card-desc {
    font-size: 11px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .wf-card-tag {
    font-size: 8.5px;
    padding: 3px 7px;
    gap: 4px;
  }
  .wf-card-tag-dot {
    width: 4px;
    height: 4px;
  }

  /* Smaller Visit Site pill for mobile */
  .wf-visit-pill {
    bottom: 8px;
    right: 8px;
    padding: 6px 10px;
    font-size: 10px;
    gap: 4px;
  }
  .wf-visit-pill svg {
    width: 9px;
    height: 9px;
  }
}

@media (max-width: 480px) {
  .webfolio-grid {
    gap: 8px;
  }
  .wf-card-info {
    padding: 10px 10px;
  }
  .wf-card-name {
    font-size: 13px;
  }
  .wf-card-desc {
    font-size: 10.5px;
  }
}
/*ads gallery css*/
/* ═══════════════════════════════════════════════════════
   ADS GALLERY v2 — fully isolated class names
═══════════════════════════════════════════════════════ */
.adg2-section { padding: 100px 24px; background: var(--cream); position: relative; overflow: hidden; }
.adg2-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }

.adg2-header { text-align: center; margin-bottom: 28px; }
.adg2-header .section-tag { justify-content: center; margin-left: auto; margin-right: auto; }
.adg2-title { font-family: var(--font-display); font-weight: 600; font-size: clamp(30px, 4vw, 48px); letter-spacing: -1.2px; line-height: 1.1; color: var(--dark); margin-bottom: 14px; }
.adg2-title em { font-style: normal; color: #6b8f00; position: relative; display: inline-block; }
.adg2-title em::after { content: ''; position: absolute; bottom: 2px; left: -3px; right: -3px; height: 28%; background: var(--lime); z-index: -1; border-radius: 4px; }
.adg2-sub { font-size: 15.5px; color: var(--text-secondary); max-width: 520px; margin: 0 auto; line-height: 1.65; }

.adg2-stats { display: flex; align-items: center; justify-content: center; gap: 36px; margin-top: 36px; margin-bottom: 32px; flex-wrap: wrap; }
.adg2-stat { display: flex; flex-direction: column; align-items: center; }
.adg2-stat-val { font-family: var(--font-display); font-weight: 600; font-size: 28px; color: var(--dark); letter-spacing: -0.8px; line-height: 1; }
.adg2-stat-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-top: 6px; font-weight: 500; }
.adg2-stat-divider { width: 1px; height: 32px; background: var(--border-strong); }

.adg2-filters { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 40px; }
.adg2-pill { padding: 9px 20px; border: 1.5px solid var(--border-strong); border-radius: var(--r-pill); font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; color: var(--text-secondary); background: white; transition: all 0.3s var(--ease-out); cursor: pointer; }
.adg2-pill.active { background: var(--dark); color: white; border-color: var(--dark); }

.adg2-masonry { columns: 4; column-gap: 12px; }
.adg2-item { break-inside: avoid; margin-bottom: 12px; border-radius: var(--r-md); overflow: hidden; background: white; border: 1px solid var(--border); cursor: pointer; opacity: 0; transform: translateY(24px) scale(0.98); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out), box-shadow 0.4s; }
.adg2-item.vis { opacity: 1; transform: translateY(0) scale(1); }
.adg2-item:hover { box-shadow: var(--shadow-lg); border-color: var(--border-strong); }

.adg2-item-img { position: relative; overflow: hidden; }
.adg2-item-img img { width: 100%; display: block; transition: transform 0.7s var(--ease-out); }
.adg2-item:hover .adg2-item-img img { transform: scale(1.04); }
.adg2-item-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(105deg, transparent 40%, rgba(200,255,0,0.12) 50%, transparent 60%); transform: translateX(-120%); transition: transform 0.6s var(--ease-out); pointer-events: none; }
.adg2-item:hover .adg2-item-img::after { transform: translateX(120%); }

.adg2-item-bar { display: flex; align-items: center; justify-content: space-between; padding: 10px 12px; background: white; border-top: 1px solid var(--border); }
.adg2-item-bar-left { display: flex; align-items: center; gap: 6px; }
.adg2-item-bar-left svg { width: 13px; height: 13px; flex-shrink: 0; }
.adg2-item-bar-left span { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.8px; text-transform: uppercase; color: var(--text-muted); font-weight: 500; }
.adg2-item-bar-expand { width: 24px; height: 24px; border-radius: 6px; background: var(--surface-2); display: flex; align-items: center; justify-content: center; transition: all 0.25s; }
.adg2-item:hover .adg2-item-bar-expand { background: var(--lime); }
.adg2-item-bar-expand svg { width: 11px; height: 11px; color: var(--text-muted); }
.adg2-item:hover .adg2-item-bar-expand svg { color: var(--dark); }

/* Lightbox */
.adg2-lightbox { position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.94); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.35s, visibility 0.35s; }
.adg2-lightbox.active { opacity: 1; visibility: visible; }
.adg2-lb-close { position: absolute; top: 20px; right: 20px; width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: white; transition: all 0.25s; cursor: pointer; }
.adg2-lb-close:hover { background: rgba(231,76,60,0.15); transform: scale(1.08); }
.adg2-lb-close svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }
.adg2-lb-image-area { flex: 1; display: flex; align-items: center; justify-content: center; width: 100%; padding: 60px 32px 16px; min-height: 0; }
.adg2-lb-image-area img { max-width: min(90vw, 1000px); max-height: 70vh; object-fit: contain; border-radius: var(--r-md); box-shadow: 0 20px 70px rgba(0,0,0,0.5); transform: scale(0.94); opacity: 0; transition: transform 0.45s var(--ease-out), opacity 0.3s; }
.adg2-lightbox.active .adg2-lb-image-area img { transform: scale(1); opacity: 1; }
.adg2-lb-image-area img.swapping { transform: scale(0.97); opacity: 0; transition: transform 0.15s ease, opacity 0.15s ease; }
.adg2-lb-controls { flex-shrink: 0; display: flex; align-items: center; justify-content: center; gap: 14px; padding: 20px 32px 32px; }
.adg2-lb-btn { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: white; transition: all 0.25s; cursor: pointer; }
.adg2-lb-btn:hover { background: rgba(200,255,0,0.12); border-color: rgba(200,255,0,0.3); transform: scale(1.06); }
.adg2-lb-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.adg2-lb-counter { font-family: var(--font-mono); font-size: 12px; letter-spacing: 1.5px; color: rgba(255,255,255,0.55); min-width: 60px; text-align: center; }

/* Responsive */
@media (max-width: 1100px) { .adg2-masonry { columns: 3; } }
@media (max-width: 768px) { .adg2-section { padding: 64px 20px; } .adg2-masonry { columns: 2; column-gap: 10px; } .adg2-item { margin-bottom: 10px; } .adg2-stats { gap: 20px; } }
@media (max-width: 480px) { .adg2-masonry { columns: 2; column-gap: 8px; } }