/* =================================================================
   Vovix Corporate Site — Next-Gen Redesign 2026-05-19
   Dark/Light adaptive system | Brand: Navy · Emerald · Cyan
   ================================================================= */

/* ── 1. DESIGN TOKENS ─────────────────────────────────────────── */

:root {
  /* Brand (constant) */
  --vx-green:     #00C853;
  --vx-green-dk:  #00A844;
  --vx-green-dkr: #00913A;
  --vx-cyan:      #00E5FF;
  --vx-mint:      #00E676;
  --vx-navy:      #102A43;
  --vx-loss:      #EF5350;

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

  /* Light theme */
  --bg:          #FAFAF8;
  --bg-alt:      #F0F4F8;
  --surface:     #FFFFFF;
  --surface-alt: rgba(16, 42, 67, 0.04);
  --border:      rgba(16, 42, 67, 0.09);
  --border-soft: rgba(16, 42, 67, 0.05);
  --text:        #102A43;
  --text-2:      rgba(16, 42, 67, 0.60);
  --text-3:      rgba(16, 42, 67, 0.38);
  --nav-bg:      rgba(250, 250, 248, 0.93);
  --nav-border:  rgba(16, 42, 67, 0.08);
  --shadow:      rgba(16, 42, 67, 0.10);
  --input-bg:    #FFFFFF;
  --footer-bg:   #F0F4F8;

  /* Shadow scale */
  --sh-sm:    0 2px 8px var(--shadow);
  --sh-md:    0 8px 24px var(--shadow);
  --sh-lg:    0 18px 48px var(--shadow);
  --sh-green: 0 12px 36px rgba(0, 200, 83, 0.18);
  --sh-cyan:  0 12px 36px rgba(0, 229, 255, 0.14);
}


/* ── 2. BASE ──────────────────────────────────────────────────── */

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

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4, h5, h6, .brand-word {
  font-family: "Montserrat", "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 0;
}

a {
  color: var(--vx-green);
  text-decoration-color: rgba(0, 200, 83, 0.35);
  text-underline-offset: 0.2em;
  transition: color 0.18s ease, text-decoration-color 0.18s ease;
}
a:hover { color: var(--vx-green-dk); }

::selection { background: rgba(0, 200, 83, 0.22); color: var(--text); }

/* ── 3. TYPOGRAPHY ────────────────────────────────────────────── */

.display-hero {
  font-size: clamp(1.9rem, 4.2vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.headline-tight { letter-spacing: -0.035em; line-height: 1.08; }

.section-heading {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}

.page-lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-2);
}

/* Animated gradient text */
.text-gradient {
  background: linear-gradient(120deg, var(--vx-green) 0%, var(--vx-mint) 40%, var(--vx-cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  animation: gradient-shift 8s ease-in-out infinite;
}
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

/* Utility */
.text-vovix   { color: var(--vx-green) !important; }
.text-secondary { color: var(--text-2) !important; }
.text-dark      { color: var(--text)   !important; }

/* ── 4. SCROLL PROGRESS ───────────────────────────────────────── */

.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--vx-green), var(--vx-cyan));
  z-index: 9999;
  pointer-events: none;
  box-shadow: 0 0 14px rgba(0, 229, 255, 0.45);
  transition: width 0.08s linear;
}

/* ── 5. SKIP LINK ─────────────────────────────────────────────── */

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.75rem;
  z-index: 9999;
  padding: 0.5rem 1rem;
  background: var(--vx-green);
  color: #fff;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
}
.skip-link:focus { left: 0.75rem; }

/* ── 6. NAVIGATION ────────────────────────────────────────────── */

.navbar, .agency-nav {
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  background: var(--nav-bg) !important;
  border-bottom: 1px solid var(--nav-border) !important;
  box-shadow: 0 1px 24px rgba(0, 0, 0, 0.05);
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.navbar.is-scrolled {
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.10) !important;
}

.brand-word {
  background: linear-gradient(135deg, var(--text) 0%, var(--vx-green) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 1.35rem !important;
  line-height: 1;
}

.brand-logo {
  display: block;
  height: 52px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
}

.brand-logo-footer {
  display: block;
  height: 34px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}

.navbar-light .navbar-nav .nav-link,
.navbar .navbar-nav .nav-link {
  color: var(--text) !important;
  font-weight: 500;
  font-size: 0.925rem;
  border-radius: 999px;
  padding: 0.4rem 0.9rem !important;
  transition: color 0.18s ease, background 0.18s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus,
.navbar .navbar-nav .nav-link:focus {
  color: var(--vx-green) !important;
  background: rgba(0, 200, 83, 0.08) !important;
}

.navbar-light .navbar-nav .nav-link.active,
.navbar .navbar-nav .nav-link.active {
  color: var(--vx-green) !important;
  font-weight: 600;
  background: linear-gradient(135deg, rgba(0,200,83,0.12), rgba(0,229,255,0.08)) !important;
}

/* hamburger dark-mode fix */
.navbar-toggler { border-color: var(--border) !important; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23102A43' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ── 7. BUTTONS ───────────────────────────────────────────────── */

.btn {
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: 0.65rem;
  transition: transform 0.2s var(--ease-out), box-shadow 0.22s var(--ease-out), background 0.2s ease;
}
.btn-lg { border-radius: 0.8rem; padding: 0.78rem 1.65rem; }
.btn-sm { border-radius: 0.55rem; }

.btn-primary {
  --bs-btn-bg: var(--vx-green);
  --bs-btn-border-color: var(--vx-green);
  --bs-btn-hover-bg: var(--vx-green-dk);
  --bs-btn-hover-border-color: var(--vx-green-dk);
  --bs-btn-active-bg: var(--vx-green-dkr);
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
  position: relative;
  box-shadow: 0 6px 18px rgba(0, 200, 83, 0.30);
  overflow: hidden;
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.30) 50%, transparent 70%);
  transform: translateX(-130%);
  transition: transform 0.65s var(--ease-out);
  pointer-events: none;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,200,83,0.40); }
.btn-primary:hover::after { transform: translateX(130%); }

/* Hero gets navy-colored text on green */
.hero-navy .btn-primary,
.site-hero .btn-primary { color: var(--vx-navy) !important; font-weight: 700; }

.btn-outline-light {
  border-width: 1.5px;
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,0.05);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.92);
  color: var(--vx-navy);
  transform: translateY(-2px);
}

.btn-outline-primary {
  --bs-btn-color: var(--vx-green);
  --bs-btn-border-color: var(--vx-green);
  --bs-btn-hover-bg: var(--vx-green);
  --bs-btn-hover-color: #fff;
  border-width: 1.5px;
}
.btn-outline-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,200,83,0.22); }

.btn-outline-secondary {
  --bs-btn-color: var(--text);
  --bs-btn-border-color: var(--border);
  --bs-btn-hover-bg: var(--bg-alt);
  --bs-btn-hover-border-color: var(--text-3);
  --bs-btn-hover-color: var(--text);
  border-width: 1.5px;
}
.btn-outline-secondary:hover { transform: translateY(-2px); }

/* ── 9. HERO SECTIONS ─────────────────────────────────────────── */

.hero-navy, .site-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(60% 80% at 20% 100%, rgba(0,200,83,0.10), transparent 60%),
    radial-gradient(60% 80% at 100% 0%, rgba(0,229,255,0.08), transparent 60%),
    linear-gradient(135deg, #edf9f2 0%, #f0fafa 50%, #eef9f5 100%) !important;
}

.hero-navy::before, .site-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(16,42,67,0.04) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

.hero-navy::after, .site-hero::after {
  display: none;
}

.hero-navy .container,
.site-hero .container,
.hero-navy > .container,
.site-hero > div { position: relative; z-index: 1; }

@keyframes mesh-drift {
  0%   { transform: translate3d(0,0,0) rotate(0deg); }
  50%  { transform: translate3d(2%,1.5%,0) rotate(0.5deg); }
  100% { transform: translate3d(-2%,-1%,0) rotate(-0.5deg); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-navy::before, .site-hero::before { animation: none; }
}

/* Hero typography within light hero */
.hero-navy .display-hero,
.site-hero .display-hero {
  color: #102A43 !important;
  font-weight: 800;
  text-shadow: none;
}

.hero-navy .text-white { color: #102A43 !important; }
.hero-navy .text-white-50 { color: rgba(16,42,67,0.65) !important; }

/* Hero kicker badge */
.hero-kicker {
  display: inline-block;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--vx-mint);
  padding: 0.32rem 0.8rem;
  border-radius: 999px;
  background: rgba(0, 200, 83, 0.12);
  border: 1px solid rgba(0, 230, 118, 0.32);
  backdrop-filter: blur(6px);
}

/* Navy links inside hero */
.hero-navy-link {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 0.22em;
  text-decoration-color: rgba(0,229,255,0.55);
  font-weight: 600;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.hero-navy-link:hover { color: var(--vx-cyan); text-decoration-color: var(--vx-mint); }

/* Hero stat inline row */
.hero-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  padding-top: 0.25rem;
}
.hero-stat strong { display: block; color: #fff; font-size: 0.92rem; font-weight: 700; }
.hero-stat span   { display: block; color: rgba(220,234,248,0.75); font-size: 0.78rem; }

/* ── 10. SECTION UTILITIES ────────────────────────────────────── */

.vx-section, .agency-section {
  padding: 5rem 0;
  background: var(--bg);
}

.vx-section-alt, .agency-section-alt, .surface-muted {
  padding: 5rem 0;
  background: var(--bg-alt);
  border-block: 1px solid var(--border);
}

.section-header { margin-bottom: 3rem; }

/* Section eyebrow badge */
.section-eyebrow, .agency-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vx-green);
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 200, 83, 0.08);
  border: 1px solid rgba(0, 200, 83, 0.22);
  margin-bottom: 0.85rem;
}

.section-lead, .agency-section-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-2);
}

.agency-section-title {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.025em;
}

/* ── 11. CARDS ────────────────────────────────────────────────── */

.agency-card, .vx-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.1rem;
  padding: 1.75rem 1.7rem;
  height: 100%;
  box-shadow: var(--sh-sm);
  transition: transform 0.3s var(--ease-out), border-color 0.25s ease, box-shadow 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.agency-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--vx-green), var(--vx-cyan));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.agency-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0,200,83,0.35);
  box-shadow: var(--sh-green);
}

.agency-card:hover::before { opacity: 1; }

.agency-card h3, .agency-card h2 { color: var(--text); }

.agency-card-copy {
  color: var(--text-2);
  font-size: 0.95rem;
  line-height: 1.65;
}

.agency-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--vx-green);
  background: rgba(0, 200, 83, 0.10);
  border: 1px solid rgba(0, 200, 83, 0.22);
  margin-bottom: 1.1rem;
  transition: transform 0.3s var(--ease-spring);
}
.agency-card:hover .agency-card-icon { transform: translateY(-3px) rotate(-5deg); }

/* Generic Bootstrap card adapters */
.rounded-4 { border-radius: 1.25rem !important; }
.card, .bg-white { background: var(--surface) !important; }
.bg-light { background: var(--bg-alt) !important; }
.bg-white.border,
.bg-light.border { border-color: var(--border) !important; }

/* ── 12. BENTO GRID ───────────────────────────────────────────── */

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

.bento-primary {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

@media (max-width: 767.98px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .bento-primary { grid-column: 1; grid-row: auto; }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-primary { grid-column: 1 / 3; grid-row: 1; }
}

/* ── 13. ICON TILE ────────────────────────────────────────────── */

.icon-tile {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0,200,83,0.14), rgba(0,229,255,0.10));
  color: var(--vx-green);
  font-size: 1.6rem;
  border: 1px solid rgba(0,200,83,0.20);
  box-shadow: 0 6px 18px rgba(0,200,83,0.10);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.25s ease;
}
*:hover > .icon-tile,
.services-pillar-card:hover .icon-tile { transform: translateY(-3px) rotate(-5deg); box-shadow: 0 12px 28px rgba(0,200,83,0.20); }

/* ── 14. SERVICES PILLAR CARD ─────────────────────────────────── */

.services-pillar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2rem 1.9rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.25s ease;
}
.services-pillar-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--vx-green), var(--vx-cyan));
}
.services-pillar-card::after {
  content: "";
  position: absolute;
  bottom: -100px; right: -100px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,255,0.10), transparent 65%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.services-pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
  border-color: rgba(0,200,83,0.28);
}
.services-pillar-card:hover::after { opacity: 1; }
.services-pillar-card h2, .services-pillar-card h3 { color: var(--text); }
.services-pillar-card .text-secondary { color: var(--text-2) !important; }
.services-pillar-card ul li { color: var(--text-2); }

/* ── 15. SECTION FRAME (products) ─────────────────────────────── */

.section-frame {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  box-shadow: var(--sh-md);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.section-frame:hover { transform: translateY(-2px); box-shadow: var(--sh-lg); }

/* ── 16. PIPELINE STEPS ───────────────────────────────────────── */

.agency-pipeline { position: relative; }
.agency-pipeline::before {
  content: "";
  position: absolute;
  top: 2.2rem; left: 12%;
  width: 76%;
  height: 2px;
  background: linear-gradient(90deg, var(--vx-green), var(--vx-cyan));
  opacity: 0.3;
  pointer-events: none;
}
@media (max-width: 767.98px) { .agency-pipeline::before { display: none; } }

.pipeline-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.1rem;
  padding: 1.6rem;
  height: 100%;
  box-shadow: var(--sh-sm);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.pipeline-step:hover { border-color: var(--vx-cyan); box-shadow: var(--sh-cyan); }

.pipeline-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem; height: 2.4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,200,83,0.14), rgba(0,229,255,0.12));
  color: var(--vx-cyan);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  border: 1px solid rgba(0,229,255,0.25);
  margin-bottom: 1rem;
}

.pipeline-step h3 { color: var(--text); font-size: 1.05rem; margin-bottom: 0.5rem; }
.pipeline-step p  { color: var(--text-2); font-size: 0.92rem; line-height: 1.6; }

/* ── 17. PRODUCT SHOWCASE CARD ────────────────────────────────── */

.product-showcase-card, .live-product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.85rem 1.9rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.25s ease;
}
.product-showcase-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--vx-green), var(--vx-cyan));
  transform: scaleX(0.15);
  transform-origin: left;
  transition: transform 0.45s var(--ease-out);
}
.product-showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: rgba(0,200,83,0.32);
}
.product-showcase-card:hover::before { transform: scaleX(1); }
.live-product-card { border-color: rgba(0,200,83,0.35) !important; }

/* ── 18. CTA PREMIUM SECTION ──────────────────────────────────── */

.cta-premium {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(60% 80% at 20% 100%, rgba(0,200,83,0.12), transparent 60%),
    radial-gradient(60% 80% at 100% 0%,  rgba(0,229,255,0.09), transparent 60%),
    linear-gradient(135deg, #edf9f2 0%, #f0fafa 50%, #eef9f5 100%) !important;
  border: 1.5px solid rgba(0, 200, 83, 0.20);
}
.cta-premium::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, rgba(0,200,83,0.20), rgba(0,230,118,0.70), rgba(0,229,255,0.50), rgba(0,200,83,0.20));
  background-size: 250% 100%;
  animation: cta-shimmer 4s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.cta-premium > .container { position: relative; z-index: 1; }
@keyframes cta-shimmer {
  0%   { background-position: 0% 0%; }
  100% { background-position: 250% 0%; }
}
@media (prefers-reduced-motion: reduce) { .cta-premium::before { animation: none; } }

/* ── 19. CODE TRANSFORM PANEL ─────────────────────────────────── */

.code-transform-panel {
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(4, 10, 26, 0.90);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(0,229,255,0.08);
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.code-transform-tabs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: rgba(10,27,50,0.6);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.code-tab { color: rgba(142,172,201,0.7); cursor: default; transition: color 0.2s ease; }
.code-tab.is-active { color: var(--vx-green); }
.code-tab-arrow { color: rgba(142,172,201,0.5); font-size: 1.1rem; }
.code-transform-body { position: relative; min-height: 11rem; padding: 1rem 1.15rem; }
.code-pane {
  margin: 0;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(111,242,255,0.92);
  opacity: 0;
  position: absolute;
  inset: 1rem 1.15rem;
  transition: opacity 0.45s ease;
  pointer-events: none;
  white-space: pre;
  overflow: auto;
}
.code-pane.is-visible { opacity: 1; position: relative; inset: auto; pointer-events: auto; }
.code-pane code { color: inherit; background: none; padding: 0; }
.code-transform-caption {
  padding: 0.65rem 1rem;
  font-size: 0.73rem;
  color: rgba(255,255,255,0.45);
  border-top: 1px solid rgba(255,255,255,0.07);
  text-align: center;
}

/* ── 20. TECH MARQUEE ─────────────────────────────────────────── */

.tech-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.tech-marquee-track {
  display: flex;
  gap: 0.75rem;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.tech-chip {
  flex-shrink: 0;
  padding: 0.44rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  white-space: nowrap;
}
@media (prefers-reduced-motion: reduce) {
  .tech-marquee-track { animation: none; flex-wrap: wrap; width: 100%; justify-content: center; }
}

/* ── 21. STATS ────────────────────────────────────────────────── */

.impact-pill {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.25rem 1rem;
  text-align: center;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.impact-pill:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }

.impact-number {
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  color: var(--vx-green);
  letter-spacing: -0.04em;
}
.impact-label {
  font-size: 0.78rem;
  color: var(--text-2);
  line-height: 1.4;
  margin-top: 0.25rem;
}

/* ── 22. DISCOVERY FORM ───────────────────────────────────────── */

.discovery-form-wrap, .agency-lead-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  box-shadow: var(--sh-md);
  padding: 1.75rem;
}

.agency-input, .form-control, .form-select {
  background: var(--input-bg) !important;
  border-color: var(--border) !important;
  color: var(--text) !important;
  border-radius: 0.6rem !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}
.agency-input::placeholder,
.form-control::placeholder { color: var(--text-3) !important; }
.agency-input:hover, .form-control:hover, .form-select:hover {
  border-color: rgba(0,200,83,0.4) !important;
}
.agency-input:focus, .form-control:focus, .form-select:focus {
  border-color: var(--vx-cyan) !important;
  box-shadow: 0 0 0 3px rgba(0,229,255,0.18) !important;
  background: var(--surface) !important;
}
.form-label { color: var(--text-2); font-size: 0.82rem; font-weight: 600; }

/* ── 23. TRUST STRIP ──────────────────────────────────────────── */

.trust-strip-advanced {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 1.1rem;
  padding: 1rem 1.15rem;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 999px;
  padding: 0.42rem 0.85rem;
  font-size: 0.78rem;
  color: var(--text);
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.trust-chip:hover { transform: translateY(-2px); border-color: rgba(0,200,83,0.4); box-shadow: 0 6px 18px rgba(0,200,83,0.12); }
.trust-chip i { color: var(--vx-green); font-size: 0.95rem; }

/* ── 24. LIVE PILL ────────────────────────────────────────────── */

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--vx-mint);
  background: rgba(0,230,118,0.12);
  border: 1px solid rgba(0,230,118,0.40);
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
}
.live-pill::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--vx-mint);
  box-shadow: 0 0 8px var(--vx-mint);
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50%     { opacity:0.5; transform:scale(1.35); }
}
@media (prefers-reduced-motion:reduce) { .live-pill::before { animation:none; } }

/* ── 25. FOOTER ───────────────────────────────────────────────── */

footer, .agency-footer {
  background: var(--footer-bg) !important;
  border-top: 1px solid var(--border) !important;
  color: var(--text-2);
  font-size: 0.93rem;
  position: relative;
}
footer::before, .agency-footer::before {
  content: "";
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,200,83,0.5) 30%, rgba(0,229,255,0.5) 70%, transparent);
}

footer .brand-word { color: var(--text); }

footer a, .agency-footer a {
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.18s ease;
}
footer a:hover, .agency-footer a:hover { color: var(--vx-green); }

.agency-footer-links li { margin-bottom: 0.4rem; }

.disclaimer-box, .agency-disclaimer {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--text-2);
}

.agency-hr, hr { border-color: var(--border) !important; opacity: 1; }

/* ── 26. MOBILE STICKY CTA ────────────────────────────────────── */

.mobile-sticky-cta, .agency-sticky-cta {
  position: fixed;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 1085;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--nav-bg);
  box-shadow: 0 18px 42px rgba(0,0,0,0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.mobile-sticky-cta .btn { flex: 1; font-size: 0.86rem; }
body.has-mobile-sticky-cta { padding-bottom: 5rem; }
@media (max-width:767.98px) { .mobile-sticky-cta { display: flex; } }

/* ── 27. HERO STATS BAND ──────────────────────────────────────── */

.stats-band {
  padding: 3rem 0;
  background: var(--bg-alt);
  border-block: 1px solid var(--border);
}

/* ── 28. GLASSMORPHISM HERO MINI CARDS ────────────────────────── */

.hero-mini-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 0.95rem;
  padding: 1rem 1.1rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-mini-card h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.3rem;
}
.hero-mini-card p {
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(226,237,247,0.85);
  margin: 0;
}

/* At-a-glance cards (glassmorphic inside hero) */
.at-a-glance-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 1rem;
  padding: 1.1rem 1.2rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.3s var(--ease-out), border-color 0.25s ease;
}
.at-a-glance-card:hover { transform: translateY(-4px); border-color: rgba(0,230,118,0.45); }
.at-a-glance-card .aag-label {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vx-mint);
  margin-bottom: 0.35rem;
}
.at-a-glance-card .aag-text {
  font-size: 0.84rem;
  line-height: 1.5;
  color: rgba(226,237,247,0.90);
  margin: 0;
}

/* ── 29. STATEMENT PANEL ──────────────────────────────────────── */

.statement-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  box-shadow: var(--sh-md);
  padding: 2rem 2.2rem;
}
.statement-panel .sp-rule {
  width: 3rem;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--vx-green), var(--vx-cyan));
  margin-bottom: 1rem;
}

/* ── 30. DISCOVERY STEP CARDS ─────────────────────────────────── */

.discovery-step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.1rem;
  padding: 1.2rem;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.discovery-step-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.discovery-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem; height: 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,200,83,0.14), rgba(0,229,255,0.12));
  color: var(--vx-green);
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 0.6rem;
  border: 1px solid rgba(0,200,83,0.22);
}

/* ── 31. HERO DISPLAY — homepage full-height grid ─────────────── */

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  padding: 1.75rem 0 1.5rem;
}
@media (max-width: 991.98px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
    padding: 1.5rem 0 1.25rem;
  }
  .hero-stat-row { justify-content: center; }
}

/* ── 32. HERO ACTIONS ─────────────────────────────────────────── */

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}
@media (max-width:991.98px) { .hero-actions { justify-content: center; } }

/* ── 33. SECTION NAVIGATION HELPERS ──────────────────────────── */

.agency-section-contact {
  background: linear-gradient(180deg, var(--bg), var(--bg-alt));
}

/* ── 34. SHOWCASE IMAGE ───────────────────────────────────────── */

.showcase-image {
  border-radius: 1.25rem;
  box-shadow: 0 24px 60px var(--shadow), 0 4px 12px rgba(0,200,83,0.06);
  border: 1px solid var(--border);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.showcase-image:hover {
  transform: perspective(1200px) rotateY(-2deg) translateY(-4px);
  box-shadow: 0 32px 72px var(--shadow), 0 4px 12px rgba(0,200,83,0.14);
}

/* ── 35. SECTION-FRAME (product pages) ────────────────────────── */

.section-eyebrow + h2 { margin-top: 0.25rem; }

/* ── 36. GRADIENT RULE ────────────────────────────────────────── */

.gradient-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
  border: none;
}

/* ── 37. REVEAL ANIMATION ─────────────────────────────────────── */

.reveal-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-up.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal-up { opacity: 1; transform: none; transition: none; }
}

/* ══════════════════════════════════════════════════════════════
   ORGANIC HOMEPAGE — warm, hand-crafted agency design
   Vovix 2026-05-27
   ══════════════════════════════════════════════════════════════ */

/* ── HERO ORGANIC ────────────────────────────────────────────── */
.hero-organic {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(60% 80% at 20% 100%, rgba(0,200,83,0.10), transparent 60%),
    radial-gradient(60% 80% at 100% 0%, rgba(0,229,255,0.08), transparent 60%),
    linear-gradient(135deg, #edf9f2 0%, #f0fafa 50%, #eef9f5 100%);
  padding: 2.5rem 0 2rem;
}
.hero-organic::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(16,42,67,0.04) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}
.hero-organic .container { position: relative; z-index: 1; }

/* Organic blobs */
.org-blob { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; }
.org-blob-green {
  width: 750px; height: 750px;
  background: radial-gradient(circle, rgba(0,200,83,0.13) 0%, transparent 68%);
  top: -250px; right: -180px;
}
.org-blob-cyan {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(0,229,255,0.09) 0%, transparent 68%);
  bottom: -200px; left: -120px;
}
.org-blob-warm {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(245,158,11,0.07) 0%, transparent 68%);
  top: 40%; left: 32%;
}

/* Hero 2-col grid */
.org-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2.5rem;
  padding: 1rem 0 0.75rem;
}

/* Headline */
.org-headline {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.4rem, 4.6vw, 3.9rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.06;
  color: #102A43;
  margin-bottom: 1.3rem;
}

/* Script / handwriting accent (Caveat) */
.org-script {
  font-family: "Caveat", cursive;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(3.2rem, 6.8vw, 5.8rem);
  color: #00C853;
  line-height: 0.95;
  display: block;
  letter-spacing: -0.005em;
}

/* Dark outlined CTA */
.btn-dark-org {
  background: transparent;
  color: #102A43;
  border: 2px solid #102A43;
  font-weight: 700;
  border-radius: 0.8rem;
  transition: background 0.22s ease, color 0.22s ease, transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}
.btn-dark-org:hover {
  background: #102A43;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(16,42,67,0.22);
}

/* Trust chips */
.org-trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.79rem;
  font-weight: 600;
  color: #486581;
  background: #ffffff;
  border: 1px solid rgba(16,42,67,0.10);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
  box-shadow: 0 2px 8px rgba(16,42,67,0.06);
}
.org-trust-chip i { color: var(--vx-green); font-size: 0.85rem; }

/* ── ILLUSTRATION WRAPPER ──────────────────────────────────── */
.org-illu-wrap {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Phone mockup */
.org-phone-mockup {
  width: 195px;
  height: 385px;
  background: #1a1a2e;
  border-radius: 2.4rem;
  border: 6px solid #2d2d44;
  box-shadow:
    0 32px 80px rgba(16,42,67,0.24),
    0 0 0 1.5px rgba(255,255,255,0.07),
    inset 0 0 0 1px rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.org-phone-mockup::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 76px; height: 20px;
  background: #1a1a2e;
  border-radius: 0 0 0.9rem 0.9rem;
  z-index: 10;
}

.org-phone-screen { height: 100%; display: flex; flex-direction: column; overflow: hidden; }

.org-phone-header {
  background: #128C7E;
  padding: 1.4rem 0.7rem 0.55rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}
.org-phone-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; font-weight: 800; color: white; flex-shrink: 0;
}
.org-phone-contact { flex: 1; }
.org-phone-contact-name { font-size: 0.7rem; font-weight: 700; color: #fff; line-height: 1.2; }
.org-phone-contact-status { font-size: 0.56rem; color: rgba(255,255,255,0.72); }

.org-phone-body {
  flex: 1;
  background: #e5ddd5;
  padding: 0.55rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  overflow: hidden;
}

.org-phone-msg {
  background: white;
  border-radius: 0 0.55rem 0.55rem 0.55rem;
  padding: 0.42rem 0.5rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.09);
  font-size: 0.58rem;
  line-height: 1.5;
  color: #202c33;
}
.org-phone-msg-header {
  font-weight: 800;
  font-size: 0.54rem;
  letter-spacing: 0.08em;
  color: #00a844;
  margin-bottom: 0.22rem;
}
.org-phone-ticker-badge {
  font-size: 0.66rem;
  font-weight: 700;
  color: #102A43;
  margin-bottom: 0.18rem;
  display: block;
}
.org-phone-price-row { display: flex; align-items: baseline; gap: 0.3rem; margin-bottom: 0.22rem; }
.org-phone-price { font-size: 0.88rem; font-weight: 800; color: #102A43; letter-spacing: -0.02em; }
.org-phone-change {
  font-size: 0.54rem; font-weight: 700; color: #00a844;
  background: rgba(0,168,68,0.1); padding: 0.08rem 0.3rem; border-radius: 999px;
}
.org-phone-metrics {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.18rem; margin-top: 0.18rem;
}
.org-phone-metric { background: #f5f5f5; border-radius: 0.3rem; padding: 0.18rem 0.28rem; }
.org-phone-metric-label { font-size: 0.46rem; color: #7a7a7a; }
.org-phone-metric-val { font-size: 0.6rem; font-weight: 700; color: #102A43; }
.org-phone-link { font-size: 0.52rem; color: #128C7E; margin-top: 0.22rem; }

.org-phone-reply-btns { display: flex; flex-direction: column; gap: 0.18rem; }
.org-phone-reply-btn {
  background: white;
  border: 1px solid rgba(18,140,126,0.28);
  border-radius: 0.35rem; padding: 0.26rem;
  text-align: center; font-size: 0.54rem; font-weight: 600; color: #128C7E;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.org-phone-input {
  background: #f0f2f5; padding: 0.38rem 0.48rem;
  display: flex; align-items: center; gap: 0.3rem;
  border-top: 1px solid rgba(0,0,0,0.07); flex-shrink: 0;
}
.org-phone-input-field {
  flex: 1; background: white; border-radius: 999px;
  padding: 0.28rem 0.48rem; font-size: 0.52rem; color: #aaa;
}
.org-phone-send {
  width: 22px; height: 22px; border-radius: 50%; background: #128C7E;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 0.58rem; flex-shrink: 0;
}

/* ── FLOATING PRODUCT CARDS ──────────────────────────────────── */
.org-float-card {
  position: absolute;
  background: #ffffff;
  border: 1px solid rgba(16,42,67,0.09);
  border-radius: 1rem;
  padding: 0.78rem 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  box-shadow: 0 8px 28px rgba(16,42,67,0.11);
  min-width: 162px;
  max-width: 178px;
  z-index: 3;
  animation: float-gentle 5s ease-in-out infinite;
}
@keyframes float-gentle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@media (prefers-reduced-motion: reduce) { .org-float-card { animation: none; } }

.org-fc-oneview { top: 3%;  left: -1%;  animation-delay: 0s; }
.org-fc-crawler { top: 3%;  right: -1%; animation-delay: 1.25s; }
.org-fc-ocr     { bottom: 12%; left: -1%; animation-delay: 2.5s; }
.org-fc-auto    { bottom: 12%; right: -1%; animation-delay: 3.75s; }

.org-fc-icon {
  width: 2.4rem; height: 2.4rem;
  border-radius: 0.65rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.org-fc-icon.green  { background: rgba(0,200,83,0.11);  color: #00c853; }
.org-fc-icon.blue   { background: rgba(0,122,255,0.09);  color: #0071e3; }
.org-fc-icon.orange { background: rgba(245,158,11,0.11); color: #e08c00; }
.org-fc-icon.purple { background: rgba(139,92,246,0.09); color: #7c3aed; }

.org-fc-name { font-size: 0.8rem; font-weight: 700; color: #102A43; line-height: 1.2; }
.org-fc-sub  { font-size: 0.68rem; color: #627D98; line-height: 1.3; }

/* ── PRODUCTS GRID ───────────────────────────────────────────── */
.org-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.org-product-card {
  background: #ffffff;
  border: 1px solid rgba(16,42,67,0.08);
  border-radius: 1.5rem;
  padding: 2rem 1.8rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(16,42,67,0.06);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.25s ease;
}
.org-product-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--vx-green), var(--vx-cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease-out);
}
.org-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(16,42,67,0.12), 0 4px 14px rgba(0,200,83,0.08);
  border-color: rgba(0,200,83,0.25);
}
.org-product-card:hover::before { transform: scaleX(1); }

.org-product-icon {
  width: 3.4rem; height: 3.4rem;
  border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
  transition: transform 0.3s var(--ease-spring);
}
.org-product-card:hover .org-product-icon { transform: translateY(-3px) rotate(-6deg); }

.org-product-name {
  font-size: 1.18rem; font-weight: 700;
  color: #102A43; letter-spacing: -0.02em;
}
.org-product-desc {
  font-size: 0.9rem; line-height: 1.65; color: #486581; margin: 0.5rem 0 1.2rem;
}
.org-product-features { list-style: none; padding: 0; margin: 0 0 1.25rem; }
.org-product-features li {
  font-size: 0.81rem; color: #627D98;
  padding: 0.26rem 0;
  display: flex; align-items: flex-start; gap: 0.4rem; line-height: 1.4;
}
.org-product-features li::before { content: "✓"; color: var(--vx-green); font-weight: 700; flex-shrink: 0; margin-top: 0.04em; }

/* ── PROCESS STEPS ───────────────────────────────────────────── */
.org-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}
.org-process-grid::after {
  content: "";
  position: absolute;
  top: 2.2rem; left: 18%; right: 18%;
  height: 2px;
  background: linear-gradient(90deg, var(--vx-green), var(--vx-cyan));
  opacity: 0.18;
  pointer-events: none;
}

.org-step {
  text-align: center;
  padding: 1.85rem 1.5rem;
  background: #ffffff;
  border: 1px solid rgba(16,42,67,0.08);
  border-radius: 1.25rem;
  box-shadow: 0 2px 12px rgba(16,42,67,0.06);
  transition: transform 0.25s var(--ease-out), border-color 0.2s ease, box-shadow 0.25s ease;
}
.org-step:hover { transform: translateY(-4px); border-color: rgba(0,229,255,0.3); box-shadow: 0 12px 32px rgba(0,229,255,0.08); }

.org-step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.6rem; height: 2.6rem; border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,200,83,0.14), rgba(0,229,255,0.10));
  font-family: "Montserrat", sans-serif; font-weight: 800; font-size: 0.85rem;
  color: var(--vx-green);
  border: 1.5px solid rgba(0,200,83,0.28);
  margin-bottom: 1.1rem;
}
.org-step h3 { font-size: 1.05rem; font-weight: 700; color: #102A43; margin-bottom: 0.5rem; }
.org-step p  { font-size: 0.88rem; color: #486581; line-height: 1.65; margin: 0; }

/* ── SERVICES ACCENT BANNER ──────────────────────────────────── */
.org-services-banner {
  background:
    radial-gradient(60% 80% at 20% 100%, rgba(0,200,83,0.10), transparent 60%),
    radial-gradient(60% 80% at 100% 0%, rgba(0,229,255,0.08), transparent 60%),
    linear-gradient(135deg, #edf9f2 0%, #f0fafa 50%, #eef9f5 100%);
  border: 1.5px solid rgba(0, 200, 83, 0.22);
  border-radius: 1.75rem;
  padding: 3.5rem 2.5rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.org-services-banner::before {
  content: "";
  position: absolute;
  inset: -1px; border-radius: inherit; padding: 1px;
  background: linear-gradient(120deg, rgba(0,200,83,0.20), rgba(0,230,118,0.65), rgba(0,229,255,0.40), rgba(0,200,83,0.20));
  background-size: 250% 100%;
  animation: cta-shimmer 5s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.org-services-banner > * { position: relative; z-index: 1; }

.org-mini-service-card {
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(16,42,67,0.09);
  border-radius: 1rem;
  padding: 1rem;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  height: 100%;
}
.org-mini-service-card:hover {
  background: rgba(255,255,255,0.95);
  border-color: rgba(0,200,83,0.28);
  transform: translateY(-2px);
}

/* ── INTERIOR PAGE HERO (light organic, no illustration) ─────── */
.hero-page-organic {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(60% 80% at 20% 100%, rgba(0,200,83,0.10), transparent 60%),
    radial-gradient(60% 80% at 100% 0%, rgba(0,229,255,0.08), transparent 60%),
    linear-gradient(135deg, #edf9f2 0%, #f0fafa 50%, #eef9f5 100%);
  padding: 2rem 0 1.75rem;
}
.hero-page-organic::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(16,42,67,0.04) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}
.hero-page-organic .container { position: relative; z-index: 1; }
.hero-page-organic .org-blob-green { width: 480px; height: 480px; top: -220px; right: -80px; }
.hero-page-organic .org-blob-cyan  { width: 320px; height: 320px; bottom: -140px; left: -70px; }

/* Smaller script accent for interior page headers */
.org-script-sm {
  font-family: "Caveat", cursive;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #00C853;
  line-height: 0.95;
  display: inline;
  letter-spacing: -0.01em;
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .hero-organic { padding: 3.5rem 0 2.5rem; }
  .org-hero-grid { grid-template-columns: 1fr; text-align: center; gap: 1.5rem; padding: 0.75rem 0 0.5rem; }
  .org-hero-grid .hero-actions { justify-content: center; }
  .org-hero-grid .d-flex.flex-wrap { justify-content: center; }
  .org-illu-wrap { height: 340px; }
  .org-fc-oneview { top: 2%; left: 0; }
  .org-fc-crawler { top: 2%; right: 0; }
  .org-fc-ocr     { bottom: 5%; left: 0; }
  .org-fc-auto    { bottom: 5%; right: 0; }
  .org-products-grid { grid-template-columns: 1fr; }
  .org-process-grid  { grid-template-columns: 1fr; }
  .org-process-grid::after { display: none; }
  .org-services-banner { padding: 2.5rem 1.5rem; }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .org-products-grid { grid-template-columns: repeat(3, 1fr); }
  .org-process-grid  { grid-template-columns: repeat(3, 1fr); }
  .org-process-grid::after { display: block; }
}
@media (max-width: 575.98px) {
  .org-float-card { min-width: 138px; max-width: 152px; padding: 0.6rem 0.7rem; gap: 0.5rem; }
  .org-fc-icon { width: 2rem; height: 2rem; font-size: 0.95rem; border-radius: 0.5rem; }
  .org-fc-name { font-size: 0.72rem; }
  .org-fc-sub  { font-size: 0.62rem; }
  .org-phone-mockup { width: 158px; height: 310px; border-radius: 1.9rem; }
  .org-headline { font-size: 2.2rem; }
  .org-script   { font-size: 3rem; }
}

/* ── 38. MISC ALIASES (backward compat) ───────────────────────── */

.hero-home { min-height: auto; }
.text-muted-custom  { color: var(--text-2); }
.agency-muted       { color: var(--text-2) !important; }
.surface-muted      { background: var(--bg-alt); border-block: 1px solid var(--border); }
.agency-section-alt { background: var(--bg-alt); }

/* Checklist items */
.bx-check-circle.text-vovix, .bx-check.text-vovix { color: var(--vx-green) !important; }

/* Legal article */
article h2, article h3 { color: var(--text); }

/* Email link underline */
a[href^="mailto:"] {
  text-decoration: underline;
  text-decoration-color: rgba(0,200,83,0.4);
  text-underline-offset: 0.18em;
}

/* ── 39. RESPONSIVE TWEAKS ────────────────────────────────────── */

@media (max-width:991.98px) {
  .vx-section, .agency-section { padding: 3.5rem 0; }
  .vx-section-alt, .agency-section-alt, .surface-muted { padding: 3.5rem 0; }
  .services-pillar-card, .product-showcase-card { padding: 1.55rem; }
  .display-hero { font-size: clamp(1.85rem, 6vw, 2.9rem); }
}

@media (max-width:575.98px) {
  .display-hero { font-size: 1.9rem; }
}

/* ── 40. BOOTSTRAP OVERRIDES ──────────────────────────────────── */

/* Alert components (used in legal pages) */
.alert-light, .alert {
  background: var(--surface-alt) !important;
  border-color: var(--border) !important;
  color: var(--text) !important;
}

/* Generic borders */
.border        { border-color: var(--border) !important; }
.border-bottom { border-bottom-color: var(--border) !important; }
.border-top    { border-top-color: var(--border) !important; }

/* py-* inside main for legal pages */
main.py-5, main.py-lg-6 {
  background: var(--bg);
}

/* col text-secondary override */
.col .text-secondary, p.text-secondary, li.text-secondary {
  color: var(--text-2) !important;
}

/* ── SHOWCASE IMAGE ────────────────────────────────────────── */
.showcase-image { border-radius: 1rem; border: 1px solid var(--border); }
