/*
Theme Name: Vivacity LEAP
Theme URI:
Author: Rossman Media
Author URI:
Description: Vivacity LEAP & Wellness – dark functional-medicine homepage theme with interactive radial visualization, parallax grid peeks, and animated sections.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vivacity-leap
Tags: dark, health, wellness, one-page, custom-logo, custom-menu
*/

:root {
  --teal: #02cbd1;
  --lime: #79d312;
  --black: #000000;
  --dark: #0a0a0a;
  --dark-card: #111111;
  --dark-subtle: #1a1a1a;
  --white: #ffffff;
  --gray-light: #e0e0e0;
  --gray-mid: #888888;
  --gray-dim: #444444;
  --glow-teal: rgba(2,203,209,0.15);
  --glass-bg: rgba(255,255,255,0.03);
  --glass-border: rgba(255,255,255,0.08);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--black); color: var(--white); font-family: 'Gabarito', sans-serif; font-weight: 400; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section-line { width: 60px; height: 1px; background: linear-gradient(90deg, var(--teal), var(--lime)); margin-bottom: 20px; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 24px 40px; display: flex; justify-content: space-between; align-items: center; background: rgba(0,0,0,0.6); backdrop-filter: blur(30px) saturate(1.2); -webkit-backdrop-filter: blur(30px) saturate(1.2); border-bottom: 1px solid var(--glass-border); }
.nav-logo { display: flex; align-items: center; }
.nav-logo img,
.nav-logo .custom-logo { height: 36px; width: auto; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { color: var(--gray-mid); text-decoration: none; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; font-weight: 400; transition: color 0.3s; }
.nav-links a:hover { color: var(--white); }
.nav-links ul { list-style: none; display: flex; gap: 32px; align-items: center; margin: 0; padding: 0; }
.nav-links ul li a { color: var(--gray-mid); text-decoration: none; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; font-weight: 400; transition: color 0.3s; }
.nav-links ul li a:hover { color: var(--white); }
.nav-cta { background: transparent !important; border: 1px solid var(--teal) !important; color: var(--teal) !important; padding: 10px 24px !important; font-size: 12px !important; letter-spacing: 2px !important; text-transform: uppercase; cursor: pointer; transition: all 0.3s; text-decoration: none; }
.nav-cta:hover { background: var(--teal) !important; color: var(--black) !important; box-shadow: 0 0 20px var(--glow-teal); }

/* HERO */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; border-bottom: 1px solid var(--glass-border); }
.hero-grid-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-grid-bg svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-grid-bg::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 500px 400px at 75% 35%, rgba(2,203,209,0.08) 0%, transparent 70%), radial-gradient(ellipse 400px 300px at 25% 65%, rgba(121,211,18,0.04) 0%, transparent 70%), radial-gradient(ellipse 600px 400px at 50% 90%, rgba(0,0,0,0.8) 0%, transparent 60%); }
.hero-inner { position: relative; z-index: 2; width: 100%; max-width: 1400px; margin: 0 auto; padding: 120px 40px 80px; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 20px; align-items: center; }
.hero-content { max-width: 520px; }
.hero-tag { font-size: 12px; letter-spacing: 4px; text-transform: uppercase; color: var(--teal); font-weight: 400; margin-bottom: 32px; display: flex; align-items: center; gap: 16px; }
.hero-tag::before { content: ''; width: 40px; height: 1px; background: linear-gradient(90deg, var(--teal), var(--lime)); }
.hero h1 { font-family: 'Outfit', sans-serif; font-weight: 200; font-size: 60px; line-height: 1.1; letter-spacing: -1px; margin-bottom: 28px; }
.hero h1 strong { font-weight: 600; background: linear-gradient(135deg, var(--teal), var(--lime)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: 17px; color: var(--gray-mid); line-height: 1.7; margin-bottom: 48px; }
.hero-actions { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.btn-primary { display: inline-flex; align-items: center; gap: 10px; padding: 16px 36px; background: linear-gradient(135deg, var(--teal), #01b5ba); color: var(--black); font-family: 'Gabarito', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; border: none; cursor: pointer; transition: all 0.3s; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(2,203,209,0.35), 0 0 60px rgba(2,203,209,0.1); }
.btn-primary::after { content: '\2192'; transition: transform 0.3s; }
.btn-primary:hover::after { transform: translateX(4px); }
.btn-secondary { display: inline-flex; align-items: center; gap: 10px; padding: 16px 36px; background: var(--glass-bg); color: var(--white); font-family: 'Gabarito', sans-serif; font-size: 13px; font-weight: 400; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; border: 1px solid var(--glass-border); backdrop-filter: blur(10px); transition: all 0.3s; }
.btn-secondary:hover { border-color: rgba(255,255,255,0.25); }

/* HERO VIZ */
.hero-viz { display: flex; align-items: center; justify-content: center; position: relative; min-height: 600px; }
.viz-wrap { position: relative; width: 700px; height: 700px; }
.viz-svg { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.viz-leaf { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 140px; height: 140px; z-index: 5; filter: drop-shadow(0 0 30px rgba(2,203,209,0.15)) drop-shadow(0 0 60px rgba(2,203,209,0.05)); transition: all 0.4s; }
.viz-leaf img { width: 100%; height: 100%; object-fit: contain; }
.viz-center-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(2,203,209,0.1) 0%, rgba(121,211,18,0.03) 40%, transparent 70%); animation: cGlow 4s ease-in-out infinite; z-index: 3; }
@keyframes cGlow { 0%,100% { transform: translate(-50%,-50%) scale(1); opacity: 1; } 50% { transform: translate(-50%,-50%) scale(1.15); opacity: 0.6; } }
.node { position: absolute; z-index: 10; display: flex; flex-direction: column; align-items: center; cursor: pointer; }
.node-dot-wrap { position: relative; width: 14px; height: 14px; }
.node-dot { width: 14px; height: 14px; border-radius: 50%; position: relative; z-index: 2; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.node-teal .node-dot { background: rgba(2,203,209,0.3); border: 1.5px solid var(--teal); box-shadow: 0 0 10px rgba(2,203,209,0.3); }
.node-lime .node-dot { background: rgba(121,211,18,0.3); border: 1.5px solid var(--lime); box-shadow: 0 0 10px rgba(121,211,18,0.3); }
.node-pulse { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 14px; height: 14px; border-radius: 50%; pointer-events: none; }
.node-teal .node-pulse { border: 1px solid rgba(2,203,209,0.2); animation: nPulse 3s ease-out infinite; }
.node-lime .node-pulse { border: 1px solid rgba(121,211,18,0.2); animation: nPulse 3.5s ease-out infinite; }
@keyframes nPulse { 0% { width: 14px; height: 14px; opacity: 0.4; } 100% { width: 50px; height: 50px; opacity: 0; } }
.node-label { margin-top: 10px; font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.4); font-weight: 500; transition: all 0.4s; white-space: nowrap; }
.node-sublabel { font-size: 9px; letter-spacing: 1.5px; color: rgba(255,255,255,0.15); margin-top: 2px; transition: all 0.4s; }
.node-card { position: absolute; bottom: calc(100% + 24px); left: 50%; transform: translateX(-50%) translateY(12px); width: 250px; padding: 20px 22px; background: rgba(8,8,8,0.9); backdrop-filter: blur(24px); border: 1px solid rgba(2,203,209,0.12); opacity: 0; pointer-events: none; transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1); z-index: 20; }
.node-lime .node-card { border-color: rgba(121,211,18,0.12); }
.node-card::after { content: ''; position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%) rotate(45deg); width: 12px; height: 12px; background: rgba(8,8,8,0.9); border-right: 1px solid rgba(2,203,209,0.12); border-bottom: 1px solid rgba(2,203,209,0.12); }
.node-lime .node-card::after { border-color: rgba(121,211,18,0.12); }
.node-card-title { font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.node-teal .node-card-title { color: var(--teal); }
.node-lime .node-card-title { color: var(--lime); }
.node-card-body { font-size: 13px; color: var(--gray-mid); line-height: 1.6; margin-bottom: 14px; }
.node-card-link { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.3s; }
.node-teal .node-card-link { color: var(--teal); }
.node-lime .node-card-link { color: var(--lime); }
.node-card-link:hover { gap: 10px; }
.node:hover .node-dot { transform: scale(1.8); }
.node-teal:hover .node-dot { box-shadow: 0 0 24px rgba(2,203,209,0.6), 0 0 50px rgba(2,203,209,0.2); background: rgba(2,203,209,0.5); }
.node-lime:hover .node-dot { box-shadow: 0 0 24px rgba(121,211,18,0.6), 0 0 50px rgba(121,211,18,0.2); background: rgba(121,211,18,0.5); }
.node:hover .node-label { color: rgba(255,255,255,0.9); }
.node:hover .node-sublabel { color: rgba(255,255,255,0.4); }
.node:hover .node-card { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.node:hover .node-pulse { animation: none; opacity: 0; }
.node-gut       { top: 30px;  left: 50%; transform: translateX(-50%); }
.node-hormones  { top: 200px; right: 25px; align-items: flex-end; }
.node-immune    { bottom: 200px; right: 25px; align-items: flex-end; }
.node-metabolism { bottom: 25px; left: 50%; transform: translateX(-50%); }
.node-nutrition  { bottom: 200px; left: 25px; align-items: flex-start; }
.node-energy     { top: 200px; left: 25px; align-items: flex-start; }
.node-hormones .node-card, .node-immune .node-card { left: auto; right: 0; transform: translateY(12px); }
.node-hormones:hover .node-card, .node-immune:hover .node-card { transform: translateY(0); }
.node-hormones .node-card::after, .node-immune .node-card::after { left: auto; right: 20px; }
.node-energy .node-card, .node-nutrition .node-card { left: 0; right: auto; transform: translateY(12px); }
.node-energy:hover .node-card, .node-nutrition:hover .node-card { transform: translateY(0); }
.node-energy .node-card::after, .node-nutrition .node-card::after { left: 20px; }
.node-gut .node-card { bottom: auto; top: calc(100% + 24px); }
.node-gut .node-card::after { bottom: auto; top: -6px; border: none; border-top: 1px solid rgba(2,203,209,0.12); border-left: 1px solid rgba(2,203,209,0.12); }
.node-gut:hover .node-card { transform: translateX(-50%) translateY(0); }
.viz-badge { position: absolute; z-index: 8; padding: 10px 18px; background: rgba(0,0,0,0.65); backdrop-filter: blur(12px); border: 1px solid rgba(2,203,209,0.1); display: flex; align-items: center; gap: 10px; animation: bFloat 6s ease-in-out infinite; }
.viz-badge-num { font-family: 'Outfit', sans-serif; font-weight: 200; font-size: 24px; color: var(--teal); line-height: 1; }
.viz-badge-text { font-size: 10px; letter-spacing: 1px; color: var(--gray-mid); text-transform: uppercase; line-height: 1.4; }
.badge-1 { top: 80px; right: -10px; }
.badge-2 { bottom: 80px; left: -10px; animation-delay: 2.5s; }
@keyframes bFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* GLOBAL PARALLAX GRID */
.grid-peek {
  position: absolute; pointer-events: none; z-index: 0; overflow: hidden;
  will-change: transform;
  background: radial-gradient(ellipse at center, rgba(2,203,209,0.3) 0%, rgba(2,203,209,0.18) 35%, rgba(2,203,209,0.06) 55%, transparent 75%);
}
.grid-peek svg { width: 100%; height: 100%; display: block; }
.peek-1 {
  width: 1000px; height: 800px; top: -50px; right: -80px;
  mask-image: radial-gradient(ellipse 70% 65% at 60% 45%, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 40%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 65% at 60% 45%, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 40%, transparent 70%);
}
.peek-2 {
  width: 900px; height: 760px; bottom: -40px; left: -30px;
  mask-image: radial-gradient(ellipse 75% 65% at 40% 55%, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.15) 45%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 40% 55%, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.15) 45%, transparent 75%);
}
.peek-3 {
  width: 1000px; height: 800px; top: -50px; left: -80px;
  mask-image: radial-gradient(ellipse 70% 70% at 40% 45%, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 40%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 40% 45%, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 40%, transparent 70%);
}
.peek-4 {
  width: 1200px; height: 900px; top: -30px; right: 30px;
  mask-image: radial-gradient(ellipse 70% 65% at 60% 40%, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 45%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 65% at 60% 40%, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 45%, transparent 75%);
}
.peek-5 {
  width: 1200px; height: 900px; bottom: 10px; left: -40px;
  mask-image: radial-gradient(ellipse 75% 60% at 35% 55%, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.15) 45%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 75% 60% at 35% 55%, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.15) 45%, transparent 70%);
}
.peek-6 {
  width: 1100px; height: 800px; top: 0; left: 50px;
  mask-image: radial-gradient(ellipse 70% 65% at 45% 40%, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.12) 45%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 65% at 45% 40%, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.12) 45%, transparent 70%);
}
nav { position: fixed; z-index: 100; }

/* CREDENTIAL BAR */
.cred-bar { padding: 40px 0; border-bottom: 1px solid var(--glass-border); background: var(--glass-bg); backdrop-filter: blur(10px); }
.cred-bar-inner { display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; }
.cred-item { display: flex; align-items: center; gap: 14px; color: var(--gray-mid); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; font-weight: 400; }
.cred-dot { width: 6px; height: 6px; background: var(--teal); border-radius: 50%; box-shadow: 0 0 10px rgba(2,203,209,0.6), 0 0 20px rgba(2,203,209,0.2); }

/* DIFFERENTIATOR */
.diff-section { position: relative; border-bottom: 1px solid var(--glass-border); min-height: 600px; overflow: hidden; display: flex; align-items: center; }
.diff-bg { position: absolute; inset: -10%; width: 120%; height: 120%; background-image: url('https://server5.buildingbrandsmarketing.com/demos/Vivacity/Vivacity%20GI%20Pic.png'); background-size: auto 90%; background-position: -300px center; background-repeat: no-repeat; will-change: transform; }
.diff-overlay { position: absolute; inset: 0; background: linear-gradient(to right, transparent 3%, rgba(0,0,0,0.2) 14%, rgba(0,0,0,0.7) 30%, var(--black) 44%), linear-gradient(to top, var(--black) 0%, transparent 12%), linear-gradient(to bottom, var(--black) 0%, transparent 12%); pointer-events: none; z-index: 1; }
.diff-section::before { content: ''; position: absolute; bottom: 0; left: -100%; width: 100%; height: 1px; background: linear-gradient(90deg, transparent, var(--teal), var(--lime), transparent); animation: electricSlide 4s ease-in-out infinite; z-index: 3; }
@keyframes electricSlide { 0% { left: -100%; } 100% { left: 100%; } }
.diff-inner { position: relative; z-index: 2; width: 100%; max-width: 1200px; margin: 0 auto; padding: 120px 40px; display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; align-items: center; }
.diff-spacer {}
.diff-stat-bridge { text-align: center; padding: 0 48px; position: relative; }
.diff-stat-bridge::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 1px; height: 120px; background: linear-gradient(to bottom, transparent, rgba(2,203,209,0.3), transparent); }
.diff-stat-num { font-family: 'Outfit', sans-serif; font-size: 56px; font-weight: 200; background: linear-gradient(135deg, var(--teal), var(--lime)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 10px; position: relative; z-index: 1; }
.diff-stat-label { font-size: 11px; color: var(--gray-light); letter-spacing: 2px; text-transform: uppercase; line-height: 1.5; position: relative; z-index: 1; }
.diff-content { padding-left: 40px; }
.diff-content h2 { font-family: 'Outfit', sans-serif; font-weight: 200; font-size: 38px; line-height: 1.2; margin-bottom: 28px; }
.diff-content h2 strong { font-weight: 600; }
.diff-content .highlight-text { color: var(--white); font-size: 18px; font-weight: 400; line-height: 1.7; margin-bottom: 16px; border-left: 2px solid var(--teal); padding-left: 20px; }
.diff-content p { color: var(--gray-mid); line-height: 1.8; font-size: 15px; margin-bottom: 16px; }

/* LEAF DIVIDER */
.leaf-divider { display: flex; justify-content: center; padding: 24px 0; }
.leaf-divider img { width: 40px; height: auto; opacity: 0.12; }

/* METHODOLOGY */
.method-section { padding: 120px 0; border-bottom: 1px solid var(--glass-border); position: relative; overflow: hidden; }
.method-header { text-align: center; margin-bottom: 80px; }
.method-header h2 { font-family: 'Outfit', sans-serif; font-weight: 200; font-size: 40px; margin-bottom: 16px; }
.method-header h2 strong { font-weight: 600; }
.method-header p { color: var(--gray-mid); font-size: 16px; max-width: 500px; margin: 0 auto; }
.method-track { display: flex; gap: 0; position: relative; }
.method-track::before { content: ''; position: absolute; top: 48px; left: 5%; right: 5%; height: 1px; background: linear-gradient(90deg, var(--teal) 0%, rgba(2,203,209,0.5) 25%, rgba(60,207,90,0.5) 50%, rgba(121,211,18,0.5) 75%, var(--lime) 100%); z-index: 0; }
.method-step { flex: 1; text-align: center; position: relative; z-index: 1; padding: 0 12px; }
.method-node { width: 96px; height: 96px; border-radius: 50%; border: 1px solid rgba(2,203,209,0.2); background: rgba(10,10,10,0.9); backdrop-filter: blur(10px); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; position: relative; transition: all 0.4s; box-shadow: 0 0 20px rgba(2,203,209,0.05), 0 4px 16px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05); }
.method-step:hover .method-node { border-color: var(--teal); box-shadow: 0 0 40px rgba(2,203,209,0.2), 0 0 80px rgba(2,203,209,0.08), 0 8px 24px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.08); transform: translateY(-4px); }
.method-node-inner { font-family: 'Outfit', sans-serif; font-weight: 200; font-size: 28px; background: linear-gradient(135deg, var(--teal), var(--lime)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.method-title { font-size: 16px; font-weight: 500; letter-spacing: 1px; margin-bottom: 12px; }
.method-desc { font-size: 13px; color: var(--gray-mid); line-height: 1.6; font-weight: 400; }
.method-step { cursor: pointer; }
.method-card {
  position: absolute; bottom: calc(100% + 20px); left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 240px; padding: 18px 20px;
  background: rgba(8,8,8,0.9); backdrop-filter: blur(24px);
  border: 1px solid rgba(2,203,209,0.12);
  opacity: 0; pointer-events: none;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 20; text-align: left;
}
.method-card::after {
  content: ''; position: absolute; bottom: -6px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px; background: rgba(8,8,8,0.9);
  border-right: 1px solid rgba(2,203,209,0.12);
  border-bottom: 1px solid rgba(2,203,209,0.12);
}
.method-card-title { font-size: 14px; font-weight: 600; color: var(--teal); margin-bottom: 8px; }
.method-card-body { font-size: 13px; color: var(--gray-mid); line-height: 1.6; margin-bottom: 12px; }
.method-card-link { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--teal); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.3s; }
.method-card-link:hover { gap: 10px; }
.method-step:hover .method-card { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }

/* SERVICES */
.services-section { padding: 120px 0; border-bottom: 1px solid var(--glass-border); position: relative; overflow: hidden; }
.services-header { margin-bottom: 64px; }
.services-header h2 { font-family: 'Outfit', sans-serif; font-weight: 200; font-size: 40px; margin-bottom: 16px; }
.services-header h2 strong { font-weight: 600; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--glass-border); border: 1px solid var(--glass-border); }
.service-card { background: rgba(10,10,10,0.8); backdrop-filter: blur(10px); padding: 48px 36px; position: relative; overflow: hidden; transition: all 0.4s; }
.service-card:hover { background: rgba(20,20,20,0.9); box-shadow: 0 8px 40px rgba(2,203,209,0.08), inset 0 1px 0 rgba(255,255,255,0.04); }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, var(--teal), var(--lime)); transform: scaleX(0); transition: transform 0.4s; transform-origin: left; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 40px; height: 40px; margin-bottom: 24px; }
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 { font-weight: 500; font-size: 18px; margin-bottom: 12px; letter-spacing: 0.5px; }
.service-card p { color: var(--gray-mid); font-size: 14px; line-height: 1.7; font-weight: 400; }
.service-badge { display: inline-block; margin-top: 16px; padding: 4px 12px; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; border: 1px solid rgba(121,211,18,0.3); color: var(--lime); font-weight: 400; background: rgba(121,211,18,0.05); }

/* BRIDGE */
.bridge-section { padding: 120px 0; border-bottom: 1px solid var(--glass-border); position: relative; overflow: hidden; }
.bridge-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.bridge-visual { position: relative; height: 420px; display: flex; align-items: center; justify-content: center; }
.bridge-scan { width: 200px; height: 340px; position: relative; border: 1px solid rgba(2,203,209,0.15); border-radius: 100px 100px 60px 60px; background: rgba(2,203,209,0.02); display: flex; align-items: center; justify-content: center; flex-direction: column; box-shadow: 0 0 40px rgba(2,203,209,0.05), 0 0 80px rgba(2,203,209,0.02); }
.bridge-scan::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--teal), var(--lime), transparent); animation: scanDown 3s ease-in-out infinite; box-shadow: 0 0 20px var(--teal), 0 0 40px rgba(2,203,209,0.2); }
@keyframes scanDown { 0% { top: 0; } 50% { top: calc(100% - 2px); } 100% { top: 0; } }
.scan-ring { width: 100%; height: 1px; margin: 24px 0; background: rgba(2,203,209,0.08); position: relative; }
.scan-ring::after { content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 6px; height: 6px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 8px var(--teal); opacity: 0.6; }
.bridge-scan-label { position: absolute; bottom: -40px; left: 50%; transform: translateX(-50%); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gray-dim); white-space: nowrap; }
.bridge-content { position: relative; }
.bridge-content h2 { font-family: 'Outfit', sans-serif; font-weight: 200; font-size: 38px; line-height: 1.3; margin-bottom: 24px; }
.bridge-content h2 strong { font-weight: 600; }
.bridge-content p { color: var(--gray-mid); font-size: 16px; line-height: 1.8; margin-bottom: 36px; }

/* CTA */
.cta-section { padding: 120px 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--teal), var(--lime), transparent); }
.cta-section::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 600px 300px at 50% 60%, rgba(2,203,209,0.04) 0%, transparent 70%); pointer-events: none; }
.cta-content { position: relative; z-index: 1; }
.cta-content h2 { font-family: 'Outfit', sans-serif; font-weight: 200; font-size: 48px; line-height: 1.2; margin-bottom: 20px; }
.cta-content h2 strong { font-weight: 600; }
.cta-content p { color: var(--gray-mid); font-size: 16px; margin-bottom: 40px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* FOOTER */
footer { padding: 60px 0 40px; border-top: 1px solid var(--glass-border); position: relative; overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.footer-brand { margin-bottom: 16px; }
.footer-brand img,
.footer-brand .custom-logo { height: 28px; width: auto; }
.footer-tagline { color: var(--gray-mid); font-size: 13px; margin-bottom: 20px; line-height: 1.6; }
.footer-col h4 { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gray-mid); margin-bottom: 20px; font-weight: 500; }
.footer-col a { display: block; color: var(--gray-dim); text-decoration: none; font-size: 14px; margin-bottom: 10px; transition: color 0.3s; font-weight: 400; }
.footer-col a:hover { color: var(--teal); }
.footer-bottom { padding-top: 30px; border-top: 1px solid var(--glass-border); display: flex; justify-content: space-between; color: var(--gray-dim); font-size: 12px; }
.footer-location { display: flex; align-items: center; gap: 8px; color: var(--gray-dim); font-size: 13px; }
.footer-location svg { width: 14px; height: 14px; }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.animate { animation: fadeUp 0.8s ease forwards; }
.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.2s; opacity: 0; }
.delay-3 { animation-delay: 0.3s; opacity: 0; }
.delay-4 { animation-delay: 0.4s; opacity: 0; }
.delay-5 { animation-delay: 0.5s; opacity: 0; }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .viz-wrap { width: 500px; height: 500px; }
  .viz-leaf { width: 100px; height: 100px; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-viz { min-height: 450px; }
  .viz-wrap { width: 400px; height: 400px; }
  .viz-leaf { width: 80px; height: 80px; }
  .viz-badge, .node-card { display: none; }
  .diff-inner { grid-template-columns: 1fr; gap: 40px; padding: 80px 40px; }
  .diff-spacer { display: none; }
  .diff-content { padding-left: 0; }
  .diff-stat-bridge { padding: 20px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .method-track { flex-direction: column; gap: 32px; }
  .method-track::before { display: none; }
  .bridge-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}

/* WOOCOMMERCE & PAGE CONTENT */
.site-content { padding: 120px 0 80px; min-height: 60vh; }
.entry-title { font-family: 'Outfit', sans-serif; font-weight: 200; font-size: 40px; margin-bottom: 24px; }
.entry-content { color: var(--gray-mid); line-height: 1.8; font-size: 16px; }
.entry-content a { color: var(--teal); }
.entry-content h2, .entry-content h3 { color: var(--white); font-family: 'Outfit', sans-serif; font-weight: 200; margin: 32px 0 16px; }
.entry-content p { margin-bottom: 16px; }
