﻿/* ============================================================
   HAWTHORNE SYSTEMS — Elite Design System
   Company: Hawthorne Systems | Founder: Jason Kernan
   Products: VoiceFlow, MarketFlow, DecisionFlow, MediaFlow
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --navy:         #0A0F1F;
  --navy-mid:     #0E1529;
  --navy-light:   #141B35;
  --navy-card:    #111827;
  --blue:         #4A7CFF;
  --blue-dark:    #3A6AEE;
  --purple:       #7B61FF;
  --aqua:         #28E0FF;
  --pink:         #FF6B9D;
  --white:        #FFFFFF;
  --grey-light:   #F4F6FA;
  --grey-text:    #8892A4;
  --grey-border:  rgba(255,255,255,0.08);
  --soft-border:  rgba(74,124,255,0.18);

  --grad-primary: linear-gradient(135deg, var(--blue) 0%, var(--aqua) 100%);
  --grad-purple:  linear-gradient(135deg, var(--purple) 0%, var(--blue) 100%);
  --grad-glow:    linear-gradient(135deg, var(--blue) 0%, var(--purple) 50%, var(--aqua) 100%);

  --font-heading: 'Poppins', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-ui:      'Montserrat', sans-serif;

  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;

  --shadow-card: 0 4px 30px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 40px rgba(74,124,255,0.25);

  --ease:  cubic-bezier(0.4, 0, 0.2, 1);
  --t:     0.25s;
  --nav-h: 80px;
  --max-w: 1200px;
}

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

/* ── Utility ────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.gradient-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-ui); font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.02em; border-radius: var(--r-sm);
  padding: 12px 24px; transition: all var(--t) var(--ease);
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn-lg   { padding: 16px 32px; font-size: 1rem; }
.btn-sm   { padding: 8px 18px; font-size: 0.82rem; }

.btn-primary {
  background: var(--grad-primary); color: var(--navy);
  box-shadow: 0 4px 24px rgba(74,124,255,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(74,124,255,0.55); }

.btn-ghost {
  background: transparent; color: var(--white);
  border: 1px solid var(--grey-border); backdrop-filter: blur(10px);
}
.btn-ghost:hover { border-color: rgba(74,124,255,0.5); background: rgba(74,124,255,0.08); transform: translateY(-2px); }

.btn-outline { background: transparent; color: var(--blue); border: 1.5px solid var(--blue); }
.btn-outline:hover { background: rgba(74,124,255,0.1); transform: translateY(-2px); }

/* ── Nav ────────────────────────────────────────────────────── */
.nav-wrap {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,15,31,0.85); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--grey-border);
  transition: background var(--t); height: var(--nav-h);
}
.nav-wrap.scrolled { background: rgba(10,15,31,0.97); box-shadow: 0 4px 30px rgba(0,0,0,0.5); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h);
}
.nav-logo {
  font-family: var(--font-heading); font-size: 1.35rem; font-weight: 800;
  display: flex; align-items: center; gap: 4px;
}
.nav-logo-img {
  width: auto; height: 56px; max-width: 180px; object-fit: contain;
  filter:
    drop-shadow(0 1px 2px rgba(255,255,255,0.18))
    drop-shadow(0 0 10px rgba(40,224,255,0.45));
  transition: filter var(--t), transform var(--t);
}
.nav-logo:hover .nav-logo-img {
  filter:
    drop-shadow(0 1px 3px rgba(255,255,255,0.24))
    drop-shadow(0 0 16px rgba(40,224,255,0.8));
  transform: scale(1.03);
}
.logo-glow    { background: var(--grad-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.logo-systems { color: var(--white); font-weight: 500; }
.nav-links    { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-family: var(--font-ui); font-size: 0.88rem; font-weight: 500;
  color: var(--grey-text); padding: 8px 14px; border-radius: var(--r-sm);
  transition: all var(--t); display: flex; align-items: center; gap: 6px;
}
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-cta      { margin-left: 12px; font-size: 0.85rem; padding: 10px 20px; }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--navy-mid); border: 1px solid var(--grey-border);
  border-radius: var(--r-md); padding: 8px; min-width: 220px;
  opacity: 0; visibility: hidden; transition: all 0.2s ease;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-menu li a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: var(--r-sm);
  font-family: var(--font-ui); font-size: 0.88rem; font-weight: 500;
  color: var(--grey-text); transition: all var(--t);
}
.dropdown-menu li a:hover { color: var(--white); background: rgba(74,124,255,0.12); }
.dd-icon { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.vc-icon   { background: var(--aqua);   box-shadow: 0 0 8px var(--aqua); }
.mf-icon   { background: var(--blue);   box-shadow: 0 0 8px var(--blue); }
.df-icon   { background: var(--purple); box-shadow: 0 0 8px var(--purple); }
.media-icon { background: var(--pink);  box-shadow: 0 0 8px var(--pink); }

/* Hamburger */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--t); }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative; padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 80px;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.35;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--blue) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: float 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--purple) 0%, transparent 70%);
  bottom: -50px; left: 10%;
  animation: float 10s ease-in-out infinite reverse;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--aqua) 0%, transparent 70%);
  top: 40%; left: -100px; opacity: 0.2;
  animation: float 12s ease-in-out infinite;
}
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(74,124,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,124,255,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}
.hero-content { position: relative; z-index: 1; max-width: 860px; margin: 0 auto; text-align: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(74,124,255,0.12); border: 1px solid rgba(74,124,255,0.25);
  border-radius: 100px; padding: 8px 18px;
  font-family: var(--font-ui); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.04em; color: var(--blue); margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--aqua); box-shadow: 0 0 12px var(--aqua);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.3); }
}
.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.02em; margin-bottom: 24px; color: var(--white);
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem); color: var(--grey-text);
  max-width: 620px; margin: 0 auto 40px; line-height: 1.75;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; justify-content: center; }
.hero-products {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; justify-content: center;
}
.hero-product-pill {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px; padding: 6px 16px;
  font-family: var(--font-ui); font-size: 0.82rem; font-weight: 600;
  color: rgba(255,255,255,0.7); transition: all var(--t);
}
.hero-product-pill:hover { background: rgba(74,124,255,0.1); border-color: rgba(74,124,255,0.3); color: var(--white); }
.pill-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }

/* ── Section Headers ────────────────────────────────────────── */
.section-header {
  text-align: center; margin-bottom: 64px;
  max-width: 680px; margin-left: auto; margin-right: auto;
}
.section-eyebrow {
  font-family: var(--font-ui); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--aqua); margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700; line-height: 1.2;
  color: var(--white); margin-bottom: 20px;
}
.section-desc { font-size: 1.05rem; color: var(--grey-text); line-height: 1.7; }
.section-cta  { text-align: center; margin-top: 48px; }

/* ── Products Grid ──────────────────────────────────────────── */
.products-section { background: var(--navy-mid); }
.products-grid    { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

.product-card {
  position: relative; background: var(--navy-card);
  border: 1px solid var(--grey-border); border-radius: var(--r-lg);
  padding: 36px; overflow: hidden; transition: all var(--t);
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }

.product-card-glow {
  position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  opacity: 0; filter: blur(60px); transition: opacity 0.4s; pointer-events: none;
}
.vc-card   .product-card-glow  { background: var(--aqua); }
.mf-card   .product-card-glow  { background: var(--blue); }
.df-card   .product-card-glow  { background: var(--purple); }
.media-card .product-card-glow { background: var(--pink); }
.product-card:hover .product-card-glow { opacity: 0.15; }

.vc-card:hover   { border-color: rgba(40,224,255,0.25); }
.mf-card:hover   { border-color: rgba(74,124,255,0.25); }
.df-card:hover   { border-color: rgba(123,97,255,0.25); }
.media-card:hover { border-color: rgba(255,107,157,0.25); }

.product-logo-wrap {
  margin-bottom: 20px; width: 82px; height: 82px;
  border-radius: 50%; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 0 24px rgba(40,224,255,0.18);
  background: #050A18;
}
.product-logo-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.product-logo-placeholder {
  width: 70px; height: 70px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 1rem; font-weight: 800; letter-spacing: 0.04em;
}
.vc-logo    { background: linear-gradient(135deg, var(--aqua), var(--blue)); color: var(--navy); }
.mf-logo    { background: linear-gradient(135deg, var(--blue), var(--purple)); color: var(--white); }
.df-logo    { background: linear-gradient(135deg, var(--purple), var(--blue)); color: var(--white); }
.media-logo { background: linear-gradient(135deg, var(--pink), var(--purple)); color: var(--white); }

.product-tag  { font-family: var(--font-ui); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey-text); margin-bottom: 10px; }
.product-name { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; margin-bottom: 14px; }
.product-desc { font-size: 0.93rem; color: var(--grey-text); line-height: 1.7; margin-bottom: 24px; }

.product-features { margin-bottom: 28px; display: flex; flex-direction: column; gap: 8px; }
.product-features li {
  font-size: 0.88rem; color: rgba(255,255,255,0.65);
  display: flex; align-items: center; gap: 10px;
}
.product-features li::before {
  content: ''; display: inline-block;
  width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
}
.vc-card   .product-features li::before { background: var(--aqua); }
.mf-card   .product-features li::before { background: var(--blue); }
.df-card   .product-features li::before { background: var(--purple); }
.media-card .product-features li::before { background: var(--pink); }

.btn-product {
  background: transparent; color: var(--aqua);
  border: 1px solid rgba(40,224,255,0.3);
  font-size: 0.85rem; padding: 10px 20px;
}
.btn-product:hover { background: rgba(40,224,255,0.08); border-color: var(--aqua); transform: translateY(-2px); }

/* ── Problems Section ───────────────────────────────────────── */
.problems-section { background: var(--navy); }
.problems-grid    { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.problem-card {
  background: var(--navy-card); border: 1px solid var(--grey-border);
  border-radius: var(--r-md); padding: 32px; transition: all var(--t);
}
.problem-card:hover { border-color: rgba(74,124,255,0.3); background: var(--navy-light); transform: translateY(-4px); }
.problem-icon { font-size: 2rem; margin-bottom: 16px; display: block; }
.problem-card h3 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600; margin-bottom: 10px; }
.problem-card p  { font-size: 0.92rem; color: var(--grey-text); line-height: 1.65; }

/* ── Pillars ────────────────────────────────────────────────── */
.pillars-section { background: var(--navy-mid); }
.pillars-grid    { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.pillar-item {
  text-align: center; padding: 32px 16px;
  border-radius: var(--r-md); background: var(--navy-card);
  border: 1px solid var(--grey-border); transition: all var(--t);
}
.pillar-item:hover { border-color: rgba(74,124,255,0.3); transform: translateY(-4px); }
.pillar-num { font-family: var(--font-heading); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.05em; color: var(--blue); margin-bottom: 12px; }
.pillar-item h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; margin-bottom: 10px; }
.pillar-item p  { font-size: 0.85rem; color: var(--grey-text); line-height: 1.6; }

/* ── Ecosystem ──────────────────────────────────────────────── */
.ecosystem-section { background: var(--navy); }
.ecosystem-flow    { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.eco-step {
  display: flex; align-items: center; gap: 16px;
  background: var(--navy-card); border: 1px solid var(--grey-border);
  border-radius: var(--r-md); padding: 20px 24px; transition: all var(--t);
}
.eco-step:hover { transform: translateY(-3px); border-color: rgba(74,124,255,0.3); }
.eco-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 0.8rem; font-weight: 800; flex-shrink: 0;
}
.vc-eco   { background: linear-gradient(135deg, var(--aqua), var(--blue)); color: var(--navy); }
.mf-eco   { background: linear-gradient(135deg, var(--blue), var(--purple)); color: var(--white); }
.media-eco { background: linear-gradient(135deg, var(--pink), var(--purple)); color: var(--white); }
.df-eco   { background: linear-gradient(135deg, var(--purple), var(--blue)); color: var(--white); }
.eco-info { display: flex; flex-direction: column; gap: 4px; }
.eco-info strong { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 600; }
.eco-info span   { font-size: 0.8rem; color: var(--grey-text); }
.eco-arrow       { font-size: 1.4rem; color: var(--blue); font-weight: 300; }

/* ── Blog Preview ───────────────────────────────────────────── */
.blog-preview-section { background: var(--navy); }
.blog-preview-grid    { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  background: var(--navy-card); border: 1px solid var(--grey-border);
  border-radius: var(--r-md); padding: 32px; transition: all var(--t);
}
.blog-card:hover { border-color: rgba(74,124,255,0.3); transform: translateY(-4px); box-shadow: var(--shadow-card); }
.blog-card-tag { font-family: var(--font-ui); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--aqua); margin-bottom: 14px; }
.blog-card h3  { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600; line-height: 1.4; margin-bottom: 12px; }
.blog-card h3 a { color: var(--white); transition: color var(--t); }
.blog-card h3 a:hover { color: var(--blue); }
.blog-card > p { font-size: 0.9rem; color: var(--grey-text); line-height: 1.65; margin-bottom: 20px; }
.blog-meta { display: flex; gap: 8px; align-items: center; font-size: 0.8rem; color: var(--grey-text); font-family: var(--font-ui); }

/* ── Blog Full ──────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card-full { background: var(--navy-card); border: 1px solid var(--grey-border); border-radius: var(--r-md); overflow: hidden; transition: all var(--t); }
.blog-card-full:hover { border-color: rgba(74,124,255,0.3); transform: translateY(-4px); box-shadow: var(--shadow-card); }
.blog-card-img { height: 180px; background: var(--navy-light); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; border-bottom: 1px solid var(--grey-border); }
.blog-card-body { padding: 28px; }
.blog-card-body .blog-card-tag { font-family: var(--font-ui); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--aqua); margin-bottom: 12px; }
.blog-card-full h3 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600; line-height: 1.4; margin-bottom: 12px; }
.blog-card-full h3 a { color: var(--white); transition: color var(--t); }
.blog-card-full h3 a:hover { color: var(--blue); }
.blog-card-full p { font-size: 0.88rem; color: var(--grey-text); line-height: 1.65; margin-bottom: 20px; }
.blog-card-footer { display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: var(--grey-text); font-family: var(--font-ui); }
.blog-read-more { color: var(--blue); font-weight: 500; transition: color var(--t); }
.blog-read-more:hover { color: var(--aqua); }
.blog-categories { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 48px; justify-content: center; }
.cat-btn { font-family: var(--font-ui); font-size: 0.82rem; font-weight: 500; padding: 8px 18px; border-radius: 100px; border: 1px solid var(--grey-border); color: var(--grey-text); background: transparent; cursor: pointer; transition: all var(--t); }
.cat-btn:hover, .cat-btn.active { border-color: var(--blue); color: var(--white); background: rgba(74,124,255,0.1); }

/* ── CTA Section ────────────────────────────────────────────── */
.cta-section { background: var(--navy-mid); }
.cta-box {
  position: relative; text-align: center; padding: 80px 40px;
  border-radius: var(--r-xl); background: var(--navy-light);
  border: 1px solid rgba(74,124,255,0.2); overflow: hidden;
}
.cta-glow {
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(74,124,255,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-box h2   { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.cta-desc     { font-size: 1.05rem; color: var(--grey-text); max-width: 520px; margin: 0 auto 36px; line-height: 1.7; }
.cta-actions  { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.cta-footnote { font-size: 0.82rem; color: var(--grey-text); font-style: italic; }

/* ── Footer ─────────────────────────────────────────────────── */
.footer { background: #060A17; border-top: 1px solid var(--grey-border); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 64px; }
.footer-brand p { font-size: 0.9rem; color: var(--grey-text); line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-contact-info { margin-top: 16px; }
.footer-contact-info a { color: var(--blue); font-size: 0.88rem; transition: color var(--t); }
.footer-contact-info a:hover { color: var(--aqua); }
.footer-col h4 { font-family: var(--font-ui); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a  { font-size: 0.9rem; color: var(--grey-text); transition: color var(--t); }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; border-top: 1px solid var(--grey-border); gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.82rem; color: var(--grey-text); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.82rem; color: var(--grey-text); transition: color var(--t); }
.footer-legal a:hover { color: var(--white); }
.footer-logo .nav-logo-img { height: 64px; filter: opacity(0.9) drop-shadow(0 0 8px rgba(40,224,255,0.3)); }
.footer-logo:hover .nav-logo-img { filter: opacity(1) drop-shadow(0 0 12px rgba(40,224,255,0.5)); }

/* ── Inner Pages ────────────────────────────────────────────── */
.page-hero { padding-top: calc(var(--nav-h) + 80px); padding-bottom: 80px; background: var(--navy); position: relative; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.page-hero-orb { position: absolute; top: -80px; right: 0; width: 500px; height: 400px; border-radius: 50%; opacity: 0.2; filter: blur(80px); }
.page-hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(74,124,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(74,124,255,0.04) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%); }
.page-hero-content { position: relative; z-index: 1; }
.page-hero-eyebrow { font-family: var(--font-ui); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--aqua); margin-bottom: 16px; }
.page-hero h1 { font-family: var(--font-heading); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 20px; }
.page-hero-sub { font-size: 1.1rem; color: var(--grey-text); max-width: 600px; line-height: 1.75; margin-bottom: 36px; }

.product-page-logo-placeholder { width: 100px; height: 100px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 1.4rem; font-weight: 800; margin-bottom: 28px; }
.product-page-logo-img {
  width: 124px; height: 124px;
  border-radius: 50%;
  object-fit: cover; display: block;
  margin-bottom: 28px;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 0 36px rgba(40,224,255,0.22), 0 18px 60px rgba(0,0,0,0.35);
  background: #050A18;
}

/* Features */
.features-section { background: var(--navy-mid); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { background: var(--navy-card); border: 1px solid var(--grey-border); border-radius: var(--r-md); padding: 32px; transition: all var(--t); }
.feature-card:hover { border-color: rgba(74,124,255,0.3); transform: translateY(-4px); }
.feature-icon { font-size: 1.8rem; margin-bottom: 16px; display: block; }
.feature-card h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; margin-bottom: 10px; }
.feature-card p  { font-size: 0.9rem; color: var(--grey-text); line-height: 1.65; }

/* Benefits */
.benefits-section { background: var(--navy); }
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.benefit-item { display: flex; gap: 16px; align-items: flex-start; padding: 24px; background: var(--navy-card); border: 1px solid var(--grey-border); border-radius: var(--r-md); transition: all var(--t); }
.benefit-item:hover { border-color: rgba(74,124,255,0.25); }
.benefit-check { width: 28px; height: 28px; border-radius: 50%; background: var(--grad-primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.8rem; color: var(--navy); font-weight: 700; }
.benefit-item h4 { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 600; margin-bottom: 6px; }
.benefit-item p  { font-size: 0.87rem; color: var(--grey-text); line-height: 1.6; }

/* Contact */
.contact-section { background: var(--navy-mid); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.contact-info h2 { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; margin-bottom: 16px; }
.contact-info > p { font-size: 0.95rem; color: var(--grey-text); line-height: 1.7; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; gap: 16px; align-items: center; padding: 18px 20px; background: var(--navy-card); border: 1px solid var(--grey-border); border-radius: var(--r-md); transition: all var(--t); }
.contact-item:hover { border-color: rgba(74,124,255,0.3); }
.contact-item-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--grad-primary); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.contact-item-info strong { display: block; font-family: var(--font-heading); font-size: 0.85rem; font-weight: 600; margin-bottom: 4px; }
.contact-item-info a, .contact-item-info span { font-size: 0.9rem; color: var(--grey-text); transition: color var(--t); }
.contact-item-info a:hover { color: var(--blue); }
.contact-form-wrap { background: var(--navy-card); border: 1px solid var(--grey-border); border-radius: var(--r-lg); padding: 40px; }
.contact-form-wrap h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; font-family: var(--font-ui); font-size: 0.82rem; font-weight: 600; color: var(--grey-text); letter-spacing: 0.04em; margin-bottom: 8px; text-transform: uppercase; }
input, select, textarea {
  width: 100%; background: rgba(255,255,255,0.04); border: 1px solid var(--grey-border);
  border-radius: var(--r-sm); padding: 14px 16px;
  font-family: var(--font-body); font-size: 0.95rem; color: var(--white);
  transition: all var(--t); outline: none;
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.2); }
input:focus, select:focus, textarea:focus { border-color: var(--blue); background: rgba(74,124,255,0.06); box-shadow: 0 0 0 3px rgba(74,124,255,0.1); }
select option { background: var(--navy-mid); color: var(--white); }
textarea { resize: vertical; min-height: 140px; }
.form-submit { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }
.form-note { text-align: center; margin-top: 12px; font-size: 0.8rem; color: var(--grey-text); font-style: italic; }

/* About */
.about-intro-section { background: var(--navy-mid); }
.about-split { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; }
.about-text h2 { font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; line-height: 1.2; margin-bottom: 20px; }
.about-text p  { font-size: 0.95rem; color: var(--grey-text); line-height: 1.75; margin-bottom: 16px; }
.about-founder-card { background: var(--navy-card); border: 1px solid var(--grey-border); border-radius: var(--r-lg); padding: 40px; text-align: center; }
.founder-avatar { width: 100px; height: 100px; border-radius: 50%; background: var(--grad-primary); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; color: var(--navy); margin: 0 auto 20px; }
.about-founder-card h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; }
.founder-title { font-size: 0.85rem; color: var(--blue); font-weight: 500; margin-bottom: 16px; }
.about-founder-card p { font-size: 0.9rem; color: var(--grey-text); line-height: 1.65; }
.values-section { background: var(--navy); }

/* All Products Page */
.all-products-section { background: var(--navy-mid); }

/* Trust Strip */
.trust-strip {
  padding: 18px 0;
  border-top: 1px solid rgba(74,124,255,0.25);
  border-bottom: 1px solid rgba(74,124,255,0.25);
  background: rgba(74,124,255,0.05);
  overflow: hidden;
}
.trust-track-wrap { overflow: hidden; }
.trust-track {
  display: flex; align-items: center; gap: 28px;
  width: max-content;
  animation: trust-ticker 28s linear infinite;
  white-space: nowrap;
}
.trust-track:hover { animation-play-state: paused; }
@keyframes trust-ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.trust-label-ticker {
  font-family: var(--font-ui); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--aqua); white-space: nowrap;
}
.trust-track span:not(.trust-label-ticker):not(.trust-dot) {
  font-family: var(--font-ui); font-size: 0.9rem; font-weight: 600;
  color: rgba(255,255,255,0.85); white-space: nowrap;
  transition: color 0.2s;
}
.trust-track span:not(.trust-label-ticker):not(.trust-dot):hover { color: var(--white); }
.trust-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--aqua); opacity: 0.7; flex-shrink: 0;
}

/* ── Animations ──────────────────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { opacity: 0; animation: fadeUp 0.6s ease forwards; }
.fade-up-delay-1 { animation-delay: 0.1s; }
.fade-up-delay-2 { animation-delay: 0.2s; }
.fade-up-delay-3 { animation-delay: 0.3s; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 900px) {
  .products-grid      { grid-template-columns: 1fr; }
  .problems-grid      { grid-template-columns: repeat(2, 1fr); }
  .blog-preview-grid,
  .blog-grid          { grid-template-columns: repeat(2, 1fr); }
  .about-split        { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid       { grid-template-columns: 1fr; gap: 40px; }
  .features-grid      { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid      { grid-template-columns: 1fr; }
  .ecosystem-flow     { flex-direction: column; }
  .eco-arrow          { transform: rotate(90deg); }
}
@media (max-width: 768px) {
  :root { --nav-h: 80px; }
  .nav-logo-img { width: 160px; height: auto; max-height: 70px; }
  .hero-headline { font-size: clamp(1.6rem, 7.5vw, 2.4rem); word-break: break-word; overflow-wrap: break-word; }
  .hero-sub { overflow-wrap: break-word; word-break: break-word; }
  .hero, .hero-content { overflow-x: hidden; max-width: 100%; }
  .nav-links { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: rgba(10,15,31,0.98); backdrop-filter: blur(20px); flex-direction: column; padding: 24px 20px; border-bottom: 1px solid var(--grey-border); gap: 4px; z-index: 999; align-items: flex-start; }
  .nav-links.open { display: flex; }
  .nav-hamburger  { display: flex; }
  .nav-cta        { margin-left: 0; width: 100%; justify-content: center; }
  .nav-dropdown:hover .dropdown-menu { display: none; }
  .dropdown-menu  { position: static; transform: none; opacity: 1; visibility: visible; background: rgba(255,255,255,0.03); border: none; padding: 0 0 0 16px; box-shadow: none; display: none; }
  .nav-dropdown.dd-open .dropdown-menu { display: block; }
  .hero           { padding-top: calc(var(--nav-h) + 40px); padding-bottom: 60px; min-height: auto; }
  .hero-headline  { font-size: clamp(2.35rem, 12vw, 4rem); }
  .hero-products  { gap: 10px; }
  .hero-product-pill { flex: 1 1 calc(50% - 10px); justify-content: center; }
  .section        { padding: 64px 0; }
  .problems-grid  { grid-template-columns: 1fr; }
  .blog-preview-grid,
  .blog-grid      { grid-template-columns: 1fr; }
  .pillars-grid   { grid-template-columns: repeat(2, 1fr); }
  .features-grid  { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; }
  .footer-bottom  { flex-direction: column; text-align: center; }
  .cta-box        { padding: 48px 24px; }
  .form-row       { grid-template-columns: 1fr; }
  .hero-actions,
  .cta-actions    { flex-direction: column; }
}
@media (max-width: 480px) {
  :root { --nav-h: 72px; }
  .container { padding: 0 16px; }
  .nav-logo-img { width: 140px; height: auto; max-height: 62px; }
  .hero-headline { font-size: clamp(1.4rem, 7vw, 1.9rem) !important; word-break: break-word; overflow-wrap: break-word; }
  .hero-sub { font-size: 0.9rem; overflow-wrap: break-word; word-break: break-word; }
  .ng-line, .ng-line-inner { max-width: 100%; overflow-wrap: break-word; word-break: break-word; }
  .hero-content { overflow: hidden; max-width: 100%; }
  .btn-lg { width: 100%; justify-content: center; padding: 15px 20px; }
  .product-card,
  .feature-card,
  .benefit-item,
  .contact-form-wrap { padding: 24px; }
  .product-logo-wrap { width: 72px; height: 72px; }
  .product-page-logo-img { width: 104px; height: 104px; }
  .pillars-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   PREMIUM ADDITIONS — Icons, Shine, Counters, Animations
═══════════════════════════════════════════════════════ */

/* SVG Feature Icon Wrapper */
.feature-icon-wrap {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; position: relative; overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
}
.feature-icon-svg {
  width: 24px; height: 24px; flex-shrink: 0;
  transition: transform var(--t);
}
.feature-card:hover .feature-icon-wrap { transform: scale(1.1) translateY(-2px); }
.feature-card:hover .feature-icon-svg  { transform: scale(1.05); }

/* Product-colour icon theming */
.vc-feat   .feature-icon-wrap { background: rgba(40,224,255,0.12); border: 1px solid rgba(40,224,255,0.22); box-shadow: 0 4px 20px rgba(40,224,255,0.1); }
.vc-feat   .feature-icon-svg  { color: var(--aqua); }
.mf-feat   .feature-icon-wrap { background: rgba(74,124,255,0.12); border: 1px solid rgba(74,124,255,0.22); box-shadow: 0 4px 20px rgba(74,124,255,0.1); }
.mf-feat   .feature-icon-svg  { color: var(--blue); }
.df-feat   .feature-icon-wrap { background: rgba(123,97,255,0.12); border: 1px solid rgba(123,97,255,0.22); box-shadow: 0 4px 20px rgba(123,97,255,0.1); }
.df-feat   .feature-icon-svg  { color: var(--purple); }
.media-feat .feature-icon-wrap { background: rgba(255,107,157,0.12); border: 1px solid rgba(255,107,157,0.22); box-shadow: 0 4px 20px rgba(255,107,157,0.1); }
.media-feat .feature-icon-svg  { color: var(--pink); }

/* Benefit check SVG */
.benefit-check-svg { width: 14px; height: 14px; color: var(--navy); }

/* Shine sweep on product cards */
.product-card::before {
  content: '';
  position: absolute;
  inset: 0; border-radius: inherit;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(255,255,255,0.06) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s; pointer-events: none; z-index: 0;
}
.product-card:hover::before { opacity: 1; }
.product-card > * { position: relative; z-index: 1; }

/* Stat counters */
.stat-num { font-family: var(--font-heading); font-size: 3rem; font-weight: 800; line-height: 1; }

/* Contact icon wrap */
.contact-icon-svg { width: 20px; height: 20px; color: var(--navy); }

/* Typing cursor */
.type-cursor::after { content: '|'; animation: blink 1s step-end infinite; margin-left: 2px; color: var(--aqua); }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

/* Animated gradient border on CTA box */
.cta-box::before {
  content: ''; position: absolute; inset: -1px; border-radius: calc(var(--r-xl) + 1px);
  background: linear-gradient(135deg, rgba(74,124,255,0.4), rgba(40,224,255,0.2), rgba(123,97,255,0.4));
  z-index: -1; opacity: 0; transition: opacity 0.4s;
}
.cta-box:hover::before { opacity: 1; }

/* Glowing dot pulse (hero badge) */
.badge-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--aqua); box-shadow: 0 0 0 0 rgba(40,224,255,0.6);
  animation: ripple 2s ease-out infinite;
}
@keyframes ripple {
  0%   { box-shadow: 0 0 0 0 rgba(40,224,255,0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(40,224,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(40,224,255,0); }
}

/* Enhanced reveal directions */
.reveal-left  { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right { opacity: 0; transform: translateX(30px);  transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Gradient text animation */
@keyframes gradShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.gradient-text-anim {
  background: linear-gradient(90deg, var(--blue), var(--aqua), var(--purple), var(--blue));
  background-size: 300% 300%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: gradShift 4s ease infinite;
}

/* Hero stats strip */
.hero-stats { display: flex; align-items: center; gap: 32px; margin-top: 0; justify-content: center; }
.hero-stat  { display: flex; flex-direction: column; gap: 4px; }
.hero-stat .num { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; background: var(--grad-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-stat .lbl { font-family: var(--font-ui); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--grey-text); }
.stat-divider   { width: 1px; height: 40px; background: var(--grey-border); }

/* Smooth page feel */
html { scroll-padding-top: calc(var(--nav-h) + 20px); }
*    { -webkit-tap-highlight-color: transparent; }
::selection { background: rgba(74,124,255,0.35); color: var(--white); }

/* ══════════════════════════════════════════════════════════
   DRAMATIC ANIMATIONS v3.0
   ══════════════════════════════════════════════════════════ */

/* ── Scroll Progress Bar ──────────────────────────────── */
.ng-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--aqua), var(--purple));
  z-index: 9999; pointer-events: none;
  box-shadow: 0 0 14px rgba(40,224,255,0.7);
  transition: width 0.1s linear;
}

/* ── Custom Cursor ──────────────────────────────────── */
.ng-cursor-dot {
  position: fixed; width: 10px; height: 10px; border-radius: 50%;
  background: var(--aqua); pointer-events: none;
  z-index: 9998; mix-blend-mode: exclusion; will-change: transform;
  transition: width 0.2s, height 0.2s, background 0.2s;
}
.ng-cursor-ring {
  position: fixed; width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid rgba(74,124,255,0.55); pointer-events: none;
  z-index: 9997; will-change: transform;
  transition: width 0.3s cubic-bezier(0.16,1,0.3,1),
              height 0.3s cubic-bezier(0.16,1,0.3,1),
              border-color 0.3s;
}
.ng-cursor-dot.ng-hov  { width: 6px; height: 6px; background: #fff; }
.ng-cursor-ring.ng-hov { width: 56px; height: 56px; border-color: rgba(40,224,255,0.8); }
.ng-cursor-dot.ng-click  { width: 14px !important; height: 14px !important; }
.ng-cursor-ring.ng-click { width: 30px; height: 30px; }

/* ── Particle Canvas ───────────────────────────────── */
.ng-particles {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0; display: block;
  opacity: 1;
  filter: saturate(1.22) contrast(1.12);
}

/* ── Hero Orbs: More Vibrant ───────────────────────── */
.hero-orb-1 { opacity: 0.55 !important; width: 700px !important; height: 700px !important; }
.hero-orb-2 { opacity: 0.5 !important;  width: 500px !important; height: 500px !important; }
.hero-orb-3 { opacity: 0.3 !important;  width: 350px !important; height: 350px !important; }

@keyframes float {
  0%,  100% { transform: translateY(0)    scale(1);    }
  33%        { transform: translateY(-45px) scale(1.06); }
  66%        { transform: translateY(-22px) scale(0.97); }
}

/* ── Hero Body: Start Hidden (JS animates in) ─────── */
.hero-sub, .hero-actions, .hero-products, .hero-stats {
  opacity: 0; transform: translateY(28px);
}

/* ── Hero Headline Line Reveal ─────────────────────── */
.ng-line { display: block; overflow: hidden; }
.ng-line-inner {
  display: block;
  opacity: 0;
  transform: translateY(110%) skewY(4deg);
  animation: ngLineReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes ngLineReveal {
  to { opacity: 1; transform: translateY(0) skewY(0deg); }
}

/* ── Section Header Accent Line ─────────────────────── */
.ng-header-line {
  display: block; height: 3px; width: 0; border-radius: 2px; margin: 14px auto 0;
  background: linear-gradient(90deg, var(--blue), var(--aqua));
  box-shadow: 0 0 14px rgba(40,224,255,0.5);
  transition: width 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.ng-header-line.ng-line-grow { width: 72px; }

/* ── Reveal: Upgraded Timing ────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1),
              transform 0.85s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-up {
  opacity: 0; transform: translateY(60px) scale(0.95);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1),
              transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.reveal-up.visible { opacity: 1; transform: translateY(0) scale(1); }

.reveal-left  { transition-duration: 0.9s; }
.reveal-right { transition-duration: 0.9s; }

/* ── Card Dynamic Mouse-Glow ──────────────────────── */
.product-card::after,
.feature-card::after,
.pillar-item::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(circle at var(--gx,50%) var(--gy,50%), rgba(74,124,255,0.1) 0%, transparent 65%);
  opacity: 0; pointer-events: none; z-index: 0; transition: opacity 0.3s;
}
.product-card:hover::after,
.feature-card:hover::after,
.pillar-item:hover::after { opacity: 1; }

/* ── Product Card Glow Amplified ─────────────────── */
.product-card:hover .product-card-glow { opacity: 0.24; }
.vc-card:hover   { border-color: rgba(40,224,255,0.4); box-shadow: 0 0 70px rgba(40,224,255,0.14); }
.mf-card:hover   { border-color: rgba(74,124,255,0.4); box-shadow: 0 0 70px rgba(74,124,255,0.14); }
.df-card:hover   { border-color: rgba(123,97,255,0.4); box-shadow: 0 0 70px rgba(123,97,255,0.14); }
.media-card:hover{ border-color: rgba(255,107,157,0.4); box-shadow: 0 0 70px rgba(255,107,157,0.14); }

/* Feature card colored hover */
.vc-feat:hover   { border-color: rgba(40,224,255,0.4); box-shadow: 0 0 40px rgba(40,224,255,0.1); }
.mf-feat:hover   { border-color: rgba(74,124,255,0.4); box-shadow: 0 0 40px rgba(74,124,255,0.1); }
.df-feat:hover   { border-color: rgba(123,97,255,0.4); box-shadow: 0 0 40px rgba(123,97,255,0.1); }
.media-feat:hover{ border-color: rgba(255,107,157,0.4); box-shadow: 0 0 40px rgba(255,107,157,0.1); }

/* ── Eco Step Enhanced ────────────────────────────── */
.eco-step:hover { transform: translateY(-8px) scale(1.03); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }

/* ── Button Depth ────────────────────────────────── */
.btn-primary { transition: all 0.35s cubic-bezier(0.16,1,0.3,1) !important; }
.btn-primary:hover { transform: translateY(-4px) !important; box-shadow: 0 16px 48px rgba(74,124,255,0.65) !important; }
.btn-ghost   { transition: all 0.35s cubic-bezier(0.16,1,0.3,1) !important; }
.btn-ghost:hover   { transform: translateY(-4px) !important; }

/* ── Hero Badge Pop-in (CSS-only, before JS runs) ── */
.hero-badge {
  animation: heroBadge 0.9s cubic-bezier(0.16,1,0.3,1) 0.05s both;
}
@keyframes heroBadge {
  from { opacity: 0; transform: scale(0.8) translateY(16px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* ── Page Hero Orb (inner pages) ────────────────── */
.page-hero-orb { animation: float 9s ease-in-out infinite; opacity: 0.45 !important; }

/* ── Pillar hover glow ───────────────────────────── */
.pillar-item:hover { border-color: rgba(74,124,255,0.4); box-shadow: 0 0 40px rgba(74,124,255,0.1); }

/* ── CTA Box shine on hover ──────────────────────── */
.cta-box {
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.4s cubic-bezier(0.16,1,0.3,1);
}
.cta-box:hover { transform: translateY(-4px); box-shadow: 0 24px 80px rgba(74,124,255,0.2); }


/* ── Reviews Section ─────────────────────────────── */
.reviews-section { background: var(--navy); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  background: var(--navy-card);
  border: 1px solid var(--grey-border);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.35s var(--ease);
}
.review-card:hover {
  border-color: rgba(74,124,255,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.review-stars {
  display: flex;
  gap: 4px;
}
.review-stars svg {
  width: 18px;
  height: 18px;
  color: #FFB800;
}
.review-quote {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
  margin: 0;
  padding: 0;
  border: none;
  quotes: none;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--grey-border);
}
.review-author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.review-author-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.review-author-info strong {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
}
.review-author-info span {
  font-size: 0.78rem;
  color: var(--grey-text);
}
.review-product-tag {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  flex-shrink: 0;
}
.vc-tag  { background: rgba(40,224,255,0.1);  color: var(--aqua);   border: 1px solid rgba(40,224,255,0.25); }
.mf-tag  { background: rgba(74,124,255,0.1);  color: var(--blue);   border: 1px solid rgba(74,124,255,0.25); }
.df-tag  { background: rgba(123,97,255,0.1);  color: var(--purple); border: 1px solid rgba(123,97,255,0.25); }
.media-rt-tag { background: rgba(255,107,157,0.1); color: var(--pink); border: 1px solid rgba(255,107,157,0.25); }

@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr; }
}
