/* =============================================
   UNIBRID - Premium Legal-Tech Platform
   Dark + Neon Red + Purple Gradients
   Glassmorphism | Animations | Premium UI
   ============================================= */

/* === VARIABLES === */
:root {
  /* Primary: Blue (matching logo left glow) */
  --red: #0ea5e9;
  --red-hover: #38bdf8;
  --red-light: rgba(14,165,233,.08);
  --red-glow: rgba(14,165,233,.25);
  --red-glow-strong: rgba(14,165,233,.5);
  /* Accent: Green (matching logo right glow) */
  --purple: #22c55e;
  --purple-glow: rgba(34,197,94,.3);
  --blue: #3b82f6;
  --blue-glow: rgba(59,130,246,.2);
  --cyan: #06b6d4;
  --green: #22c55e;
  --gold: #f59e0b;
  --black: #050510;
  --dark: #0a0a1a;
  --dark2: #12122a;
  --dark3: #1a1a3e;
  --dark4: #222252;
  --gray: #9ca3af;
  --gray2: #6b7280;
  --gray3: #4b5563;
  --gray-light: #d1d5db;
  --white: #ffffff;
  --border: rgba(255,255,255,.06);
  --border2: rgba(255,255,255,.1);
  --border3: rgba(255,255,255,.15);
  --glass: rgba(255,255,255,.03);
  --glass2: rgba(255,255,255,.06);
  --glass3: rgba(255,255,255,.08);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow: 0 8px 32px rgba(0,0,0,.3);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.4);
  --shadow-glow: 0 0 40px var(--red-glow);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Plus Jakarta Sans', var(--font);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font);
  background: var(--black);
  color: var(--gray-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all .3s; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--red); color: var(--white); }

/* === LAYOUT === */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; position: relative; overflow: hidden; }
.section-dark { background: var(--dark); }
.section-gray { background: var(--dark2); }
.text-center { text-align: center; }
.text-muted { color: var(--gray); }

/* === GRID SYSTEM === */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* === WHY / INFO CARDS (used on service pages) === */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.why-card {
  padding: 32px; border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  transition: all .3s;
}
.why-card:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); box-shadow: 0 8px 32px rgba(0,0,0,.2); transform: translateY(-2px); }
.why-card h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; color: var(--white); }
.why-card h3 svg { color: var(--red); }
.why-card p { font-size: 14px; color: var(--gray); margin: 0; }
@media (max-width: 768px) { .why-grid { grid-template-columns: 1fr; } }

/* === MESH / GRADIENT BACKGROUNDS === */
.mesh-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  overflow: hidden;
}
.mesh-bg::before {
  content: ''; position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 70%);
  top: -200px; right: -200px;
  animation: meshFloat1 20s ease-in-out infinite;
}
.mesh-bg::after {
  content: ''; position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--purple-glow) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  animation: meshFloat2 25s ease-in-out infinite;
}
@keyframes meshFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(80px, 60px) scale(1.15); }
  66% { transform: translate(-40px, -30px) scale(0.9); }
}
@keyframes meshFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-60px, -40px) scale(1.1); }
  66% { transform: translate(40px, 50px) scale(0.85); }
}

/* Extra mesh orb */
.mesh-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(80px); opacity: .4;
}
.mesh-orb--red {
  width: 500px; height: 500px;
  background: var(--red-glow-strong);
  animation: orbPulse 8s ease-in-out infinite;
}
.mesh-orb--purple {
  width: 400px; height: 400px;
  background: var(--purple-glow);
  animation: orbPulse 10s ease-in-out infinite reverse;
}
.mesh-orb--blue {
  width: 350px; height: 350px;
  background: var(--blue-glow);
  animation: orbPulse 12s ease-in-out infinite;
}
@keyframes orbPulse {
  0%, 100% { transform: scale(1); opacity: .3; }
  50% { transform: scale(1.3); opacity: .5; }
}

/* === GRID PATTERN OVERLAY === */
.grid-pattern {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

/* === NOISE TEXTURE === */
.noise-overlay {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 800; line-height: 1.1; color: var(--white);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 16px; }
h3 { font-size: 1.3rem; font-weight: 700; }
p { margin-bottom: 12px; }
.subtitle { font-size: 1.15rem; color: var(--gray); line-height: 1.7; max-width: 600px; }
.gradient-text {
  background: linear-gradient(135deg, var(--white) 0%, var(--red) 50%, var(--purple) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.glow-text {
  text-shadow: 0 0 40px var(--red-glow), 0 0 80px rgba(14,165,233,.1);
}

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 14px; font-size: 15px; font-weight: 600;
  transition: all .35s cubic-bezier(.4,0,.2,1); white-space: nowrap;
  position: relative; overflow: hidden;
  font-family: var(--font);
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15), transparent);
  opacity: 0; transition: opacity .3s;
}
.btn:hover::before { opacity: 1; }
.btn-primary {
  background: linear-gradient(135deg, var(--red) 0%, #0284c7 100%);
  color: var(--white);
  box-shadow: 0 4px 20px var(--red-glow), 0 0 60px rgba(14,165,233,.15);
  border: 1px solid rgba(255,255,255,.1);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 40px var(--red-glow-strong), 0 0 80px rgba(14,165,233,.25);
}
.btn-primary:active { transform: translateY(-1px) scale(0.99); }
.btn-secondary {
  background: var(--glass2);
  color: var(--white);
  border: 1px solid var(--border2);
  backdrop-filter: blur(12px);
}
.btn-secondary:hover {
  background: var(--glass3);
  border-color: var(--border3);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
.btn-outline {
  border: 2px solid var(--border3); color: var(--white); background: transparent;
}
.btn-outline:hover {
  border-color: var(--red); color: var(--red);
  background: var(--red-light);
  box-shadow: 0 0 30px var(--red-glow);
}
.btn-outline-light {
  border: 1.5px solid rgba(255,255,255,.2); color: var(--white); background: transparent;
  padding: 10px 24px; border-radius: 12px;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.35);
  box-shadow: 0 0 20px rgba(255,255,255,.05);
}
.btn-lg { padding: 18px 40px; font-size: 17px; border-radius: 16px; }
.btn-block { width: 100%; justify-content: center; }

/* Button shimmer effect */
.btn-shimmer {
  position: relative; overflow: hidden;
}
.btn-shimmer::after {
  content: ''; position: absolute;
  top: -50%; left: -50%; width: 200%; height: 200%;
  background: linear-gradient(transparent, rgba(255,255,255,.08), transparent);
  transform: rotate(45deg) translateX(-100%);
  animation: btnShimmer 4s ease-in-out infinite;
}
@keyframes btnShimmer {
  0%, 100% { transform: rotate(45deg) translateX(-100%); }
  50% { transform: rotate(45deg) translateX(100%); }
}

/* === NAVBAR === */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(5,5,16,.6);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all .4s cubic-bezier(.4,0,.2,1);
}
.nav.scrolled {
  background: rgba(5,5,16,.92);
  box-shadow: 0 4px 30px rgba(0,0,0,.5);
  border-bottom-color: var(--border2);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; max-width: 1280px;
}
.nav-logo { display: flex; align-items: center; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  color: rgba(255,255,255,.7); padding: 10px 18px; font-size: 15px;
  border-radius: 10px; transition: all .3s;
  font-weight: 500;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,.06); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  color: rgba(255,255,255,.6); font-size: 14px;
  display: flex; align-items: center; gap: 6px; transition: color .3s;
}
.nav-phone:hover { color: var(--white); }
.mobile-toggle { display: none; color: var(--white); padding: 8px; }

@media (max-width: 1024px) {
  .nav-links, .nav-actions { display: none; }
  .mobile-toggle { display: flex; }
}

/* === DROPDOWN === */
.dropdown { position: relative; }
.dropdown-trigger {
  display: flex; align-items: center; gap: 4px;
  color: rgba(255,255,255,.7); padding: 10px 18px; font-size: 15px;
  border-radius: 10px; transition: all .3s; font-weight: 500;
}
.dropdown-trigger:hover { color: var(--white); background: rgba(255,255,255,.06); }
.dropdown-trigger svg { transition: transform .3s; width: 14px; height: 14px; }
.dropdown:hover .dropdown-trigger svg { transform: rotate(180deg); }
.dropdown:hover .dropdown-trigger { color: var(--white); }
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 12px); left: -12px; z-index: 1001;
  background: rgba(18,18,42,.95);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-radius: 20px; padding: 10px;
  min-width: 360px;
  box-shadow: 0 25px 60px rgba(0,0,0,.4), 0 0 0 1px var(--border2);
  border: 1px solid var(--border2);
  animation: dropIn .25s cubic-bezier(.4,0,.2,1);
}
/* Invisible bridge connecting trigger to menu (prevents hover gap) */
.dropdown-menu::before {
  content: ''; position: absolute; top: -16px; left: 0; right: 0; height: 16px;
}
@keyframes dropIn {
  from { opacity: 0; transform: translateY(-8px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 12px 16px; border-radius: 14px; font-size: 14px;
  color: var(--gray-light); transition: all .25s;
}
.dropdown-menu a:hover {
  background: var(--red-light); color: var(--red-hover);
  transform: translateX(4px);
}
.dropdown-menu a strong { display: block; font-weight: 600; font-size: 14px; color: var(--white); }
.dropdown-menu a:hover strong { color: var(--red-hover); }
.dropdown-menu a small { display: block; font-size: 12px; color: var(--gray); margin-top: 3px; }
.dropdown-icon { color: var(--gray); margin-top: 2px; flex-shrink: 0; transition: all .3s; }
.dropdown-menu a:hover .dropdown-icon { color: var(--red-hover); transform: scale(1.15); }
.dropdown-menu--compact { min-width: 220px; }
.dropdown-menu--compact a { padding: 11px 16px; }

/* === MOBILE MENU === */
.mobile-menu {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(5,5,16,.98);
  backdrop-filter: blur(30px);
  color: var(--white);
  display: none; flex-direction: column; overflow-y: auto;
  transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.open { display: flex; transform: translateX(0); }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; }
.mobile-close { color: var(--white); padding: 4px; }
.mobile-menu-nav { padding: 0 24px 24px; display: flex; flex-direction: column; }
.mobile-menu-nav a {
  padding: 16px 0; color: rgba(255,255,255,.8); font-size: 16px;
  border-bottom: 1px solid var(--border); transition: all .3s;
}
.mobile-menu-nav a:hover { color: var(--red-hover); padding-left: 8px; }
.mobile-heading { color: var(--gray); font-size: 11px; text-transform: uppercase; letter-spacing: 2px; padding-top: 24px; padding-bottom: 8px; font-weight: 600; }
.mobile-sub { padding-left: 12px !important; font-size: 15px !important; color: var(--gray) !important; }
.mobile-cta {
  background: linear-gradient(135deg, var(--red), #0284c7) !important;
  color: var(--white) !important;
  text-align: center; border-radius: var(--radius); margin-top: 20px;
  padding: 16px !important; border: none !important;
  box-shadow: 0 4px 20px var(--red-glow);
}

/* === HERO === */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
  background: var(--black);
  padding-top: 76px;
}
.hero-bg-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(14,165,233,.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(34,197,94,.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(59,130,246,.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--black) 0%, var(--dark) 100%);
}
.hero-particles {
  position: absolute; inset: 0; z-index: 1;
}
.hero-particles canvas { position: absolute; inset: 0; }
.hero-grid-lines {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 30% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 50%, black 20%, transparent 70%);
  animation: gridShift 30s linear infinite;
}
@keyframes gridShift {
  0% { background-position: 0 0; }
  100% { background-position: 80px 80px; }
}

.hero-content {
  position: relative; z-index: 5; max-width: 660px;
  padding: 80px 0;
}
.hero-two-col {
  display: flex; align-items: center; gap: 60px;
  position: relative; z-index: 5;
}
.hero-left { flex: 1; }
.hero-right {
  flex: 0 0 480px; position: relative;
  display: flex; align-items: center; justify-content: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--glass2); border: 1px solid var(--border2);
  backdrop-filter: blur(12px);
  padding: 8px 18px; border-radius: 50px;
  font-size: 13px; color: rgba(255,255,255,.7);
  margin-bottom: 24px;
}
.hero-badge .stars { color: var(--green); letter-spacing: 2px; }
.hero h1 {
  color: var(--white); margin-bottom: 24px;
  line-height: 1.08;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--red) 0%, var(--purple) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  color: var(--gray); font-size: 1.15rem; line-height: 1.8;
  margin-bottom: 32px; max-width: 520px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-stat {
  color: var(--gray2); font-size: 13px;
  display: flex; align-items: center; gap: 8px;
}
.hero-stat-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(5,150,105,.5); }
  50% { opacity: .7; box-shadow: 0 0 0 8px rgba(5,150,105,0); }
}

/* Hero SVG illustration */
.hero-illustration {
  width: 100%; max-width: 480px; position: relative;
}
.hero-illustration svg { width: 100%; height: auto; }
.hero-shield-glow {
  position: absolute; inset: -20%; pointer-events: none;
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 60%);
  animation: shieldGlow 4s ease-in-out infinite;
  filter: blur(40px);
}
@keyframes shieldGlow {
  0%, 100% { opacity: .4; transform: scale(1); }
  50% { opacity: .7; transform: scale(1.15); }
}

/* Floating elements */
.floating-icon {
  position: absolute; z-index: 6;
  width: 56px; height: 56px;
  background: var(--glass2);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border2);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--white);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  animation: floatBounce 6s ease-in-out infinite;
}
.floating-icon:nth-child(1) { top: 15%; right: 5%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 45%; right: -3%; animation-delay: -1.5s; }
.floating-icon:nth-child(3) { bottom: 20%; right: 10%; animation-delay: -3s; }
.floating-icon:nth-child(4) { top: 25%; left: 55%; animation-delay: -4.5s; }
.floating-icon--lg {
  width: 72px; height: 72px; font-size: 28px;
  border-radius: 20px;
}
@keyframes floatBounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-15px) rotate(3deg); }
  50% { transform: translateY(0) rotate(0deg); }
  75% { transform: translateY(10px) rotate(-2deg); }
}

/* Hero floating badges */
.hero-float-badge {
  position: absolute; z-index: 6;
  background: var(--glass2);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border2);
  border-radius: 16px;
  padding: 14px 20px;
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; color: var(--white);
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
  white-space: nowrap;
}
.hero-float-badge__icon {
  width: 40px; height: 40px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.hero-float-badge__icon--green { background: rgba(5,150,105,.15); color: var(--green); }
.hero-float-badge__icon--red { background: var(--red-light); color: var(--red); }
.hero-float-badge__icon--purple { background: rgba(34,197,94,.12); color: var(--purple); }
.hero-float-badge strong { display: block; font-weight: 700; font-size: 15px; }
.hero-float-badge small { color: var(--gray); font-size: 11px; }

@media (max-width: 1024px) {
  .hero-two-col { flex-direction: column; gap: 40px; }
  .hero-right { flex: none; width: 100%; max-width: 400px; }
  .floating-icon { display: none; }
  .hero { min-height: auto; padding: 120px 0 80px; }
}

/* === TRUST BAR === */
.trust-bar {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 50px 0;
  position: relative; overflow: hidden;
}
.trust-bar .mesh-bg::before {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(14,165,233,.08) 0%, transparent 70%);
  top: -100px; right: 20%;
}
.trust-grid {
  display: flex; justify-content: center; gap: 64px; flex-wrap: wrap;
  align-items: center; position: relative; z-index: 2;
}
.trust-item { text-align: center; }
.trust-item .number {
  font-family: var(--font-display);
  font-size: 2.8rem; font-weight: 800; color: var(--white);
  line-height: 1;
  background: linear-gradient(135deg, var(--white) 30%, var(--red));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.trust-item .label {
  font-size: 13px; color: var(--gray); margin-top: 6px;
  text-transform: uppercase; letter-spacing: 1px; font-weight: 500;
}
.trust-divider {
  width: 1px; height: 50px;
  background: linear-gradient(180deg, transparent, var(--border3), transparent);
}
@media (max-width: 768px) {
  .trust-grid { gap: 32px; }
  .trust-divider { display: none; }
  .trust-item .number { font-size: 2rem; }
}

/* === FEATURE CARDS === */
.features-section { padding: 100px 0; position: relative; overflow: hidden; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all .4s cubic-bezier(.4,0,.2,1);
  position: relative; overflow: hidden;
  backdrop-filter: blur(12px);
}
.feature-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--red-light), transparent 60%);
  opacity: 0; transition: opacity .4s;
}
.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--border3);
  box-shadow: 0 20px 60px rgba(0,0,0,.3), 0 0 0 1px var(--border2);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 64px; height: 64px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--red-light), rgba(34,197,94,.08));
  border: 1px solid rgba(14,165,233,.15);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red); margin-bottom: 20px;
  transition: all .4s; position: relative; z-index: 1;
}
.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 30px var(--red-glow);
  background: linear-gradient(135deg, rgba(14,165,233,.2), rgba(34,197,94,.15));
}
.feature-card h3 { font-size: 17px; margin-bottom: 8px; position: relative; z-index: 1; }
.feature-card p { font-size: 14px; color: var(--gray); margin: 0; position: relative; z-index: 1; }
@media (max-width: 1024px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .feature-grid { grid-template-columns: 1fr; } }

/* === SERVICES GRID === */
.services-section { padding: 100px 0; position: relative; overflow: hidden; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-group-title {
  font-size: 14px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 2px; color: var(--red);
  margin-bottom: 24px; margin-top: 48px;
  display: flex; align-items: center; gap: 12px;
}
.service-group-title::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, var(--border2), transparent);
}
.service-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all .4s cubic-bezier(.4,0,.2,1);
  position: relative; overflow: hidden;
  text-decoration: none; display: block;
  backdrop-filter: blur(8px);
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--purple));
  opacity: 0; transition: opacity .4s;
}
.service-card::after {
  content: ''; position: absolute; bottom: -50%; right: -50%;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, var(--red-glow), transparent 70%);
  opacity: 0; transition: all .5s;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border3);
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { opacity: .5; }
.service-card-icon {
  width: 56px; height: 56px;
  background: var(--glass3);
  border: 1px solid var(--border2);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red); margin-bottom: 20px;
  transition: all .4s; position: relative; z-index: 1;
}
.service-card:hover .service-card-icon {
  background: var(--red-light);
  border-color: rgba(14,165,233,.3);
  transform: scale(1.08);
  box-shadow: 0 0 25px var(--red-glow);
}
.service-card h3 { font-size: 17px; margin-bottom: 8px; position: relative; z-index: 1; }
.service-card p { font-size: 14px; color: var(--gray); margin: 0; position: relative; z-index: 1; }
.service-card-arrow {
  display: flex; align-items: center; gap: 6px;
  color: var(--red); font-size: 14px; font-weight: 500;
  margin-top: 16px; position: relative; z-index: 1;
  opacity: 0; transform: translateX(-8px); transition: all .3s;
}
.service-card:hover .service-card-arrow { opacity: 1; transform: translateX(0); }
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

/* === PRICING === */
.pricing-section {
  background: var(--dark);
  padding: 100px 0 120px;
  position: relative; overflow: hidden;
}
.pricing-section .mesh-bg::before {
  background: radial-gradient(circle, rgba(34,197,94,.12) 0%, transparent 70%);
  top: -200px; left: 20%;
}
.pricing-section .mesh-bg::after {
  background: radial-gradient(circle, rgba(14,165,233,.1) 0%, transparent 70%);
  bottom: -100px; right: 10%;
}
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; max-width: 1100px; margin: 0 auto;
  position: relative; z-index: 2;
}
.pricing-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  display: flex; flex-direction: column;
  transition: all .4s cubic-bezier(.4,0,.2,1);
  position: relative; overflow: hidden;
  backdrop-filter: blur(16px);
}
.pricing-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, var(--red-light));
  opacity: 0; transition: opacity .4s;
}
.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
  border-color: var(--border3);
}
.pricing-card:hover::before { opacity: 1; }
.pricing-card.recommended {
  background: linear-gradient(180deg, rgba(14,165,233,.06), var(--glass3));
  border-color: rgba(14,165,233,.25);
  transform: scale(1.03);
  box-shadow: 0 0 60px var(--red-glow), 0 20px 60px rgba(0,0,0,.3);
}
.pricing-card.recommended:hover { transform: scale(1.03) translateY(-10px); }
.pricing-badge {
  position: absolute; top: 0; left: 0; right: 0;
  background: linear-gradient(90deg, var(--red), var(--purple));
  color: var(--white); text-align: center;
  padding: 10px; border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  font-size: 13px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase;
}
.pricing-card.recommended { padding-top: 64px; }
.pricing-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 4px; position: relative; z-index: 1;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 3.5rem; font-weight: 800; color: var(--white);
  line-height: 1;
}
.pricing-price sup { font-size: 1.2rem; vertical-align: super; }
.pricing-label {
  display: inline-block; padding: 6px 14px;
  border: 1px solid var(--border2);
  border-radius: 8px; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--gray-light);
}
.pricing-fee { font-size: 13px; color: var(--gray); margin-top: 4px; position: relative; z-index: 1; }
.pricing-desc { color: var(--gray); font-size: 15px; margin: 20px 0 28px; position: relative; z-index: 1; }
.pricing-features { list-style: none; margin: 28px 0; flex: 1; position: relative; z-index: 1; }
.pricing-features li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 10px 0; font-size: 14px; color: var(--gray-light);
}
.pricing-features li svg { color: var(--red); flex-shrink: 0; margin-top: 2px; }
.pricing-savings {
  text-align: center; margin-top: 40px;
  color: var(--gray); font-size: 14px;
  position: relative; z-index: 2;
}
.pricing-savings strong { color: var(--green); }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }

/* === COMPARISON / WHY US === */
.comparison-section { padding: 100px 0; position: relative; overflow: hidden; }
.comparison-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  max-width: 1000px; margin: 0 auto;
  position: relative; z-index: 2;
}
.comparison-card {
  border-radius: var(--radius-xl); padding: 40px;
  position: relative; overflow: hidden;
}
.comparison-card--us {
  background: linear-gradient(135deg, rgba(14,165,233,.1), rgba(34,197,94,.08));
  border: 1px solid rgba(14,165,233,.25);
  box-shadow: 0 0 60px var(--red-glow);
}
.comparison-card--them {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}
.comparison-card__header {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 28px; padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.comparison-card__logo {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.comparison-card--us .comparison-card__logo {
  background: linear-gradient(135deg, var(--red), var(--purple));
  color: var(--white);
}
.comparison-card--them .comparison-card__logo {
  background: var(--glass3);
  color: var(--gray);
}
.comparison-card__name { font-size: 20px; font-weight: 700; }
.comparison-card--us .comparison-card__name { color: var(--white); }
.comparison-card--them .comparison-card__name { color: var(--gray); }
.comparison-card__tag {
  font-size: 11px; padding: 4px 10px; border-radius: 6px;
  font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
}
.comparison-card--us .comparison-card__tag {
  background: rgba(5,150,105,.12); color: var(--green);
}
.comparison-card--them .comparison-card__tag {
  background: rgba(245,158,11,.1); color: var(--gold);
}
.comparison-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.comparison-row:last-child { border-bottom: none; }
.comparison-row__label { color: var(--gray-light); }
.comparison-row__value { font-weight: 700; }
.comparison-card--us .comparison-row__value { color: var(--green); }
.comparison-card--them .comparison-row__value { color: var(--gray); }
/* Animated bar */
.comparison-bar {
  height: 6px; border-radius: 3px; background: var(--glass3);
  margin-top: 8px; overflow: hidden;
}
.comparison-bar__fill {
  height: 100%; border-radius: 3px;
  transition: width 1.5s cubic-bezier(.4,0,.2,1);
  width: 0;
}
.comparison-card--us .comparison-bar__fill {
  background: linear-gradient(90deg, var(--red), var(--purple));
}
.comparison-card--them .comparison-bar__fill {
  background: var(--gray2);
}
@media (max-width: 768px) { .comparison-grid { grid-template-columns: 1fr; } }

/* === HOW IT WORKS / PROCESS === */
.process-section {
  background: var(--dark);
  padding: 100px 0;
  position: relative; overflow: hidden;
}
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; position: relative; z-index: 2;
}
/* Connecting line */
.steps-grid::before {
  content: ''; position: absolute;
  top: 56px; left: calc(16.67% + 16px); right: calc(16.67% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--purple), var(--blue));
  opacity: .3;
}
.step-item {
  text-align: center; position: relative;
  padding: 32px 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-xl);
  transition: all .4s;
}
.step-item:hover {
  transform: translateY(-6px);
  background: var(--glass2);
  border-color: var(--border2);
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.step-number {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red-light), rgba(34,197,94,.08));
  border: 2px solid rgba(14,165,233,.2);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 800; margin: 0 auto 24px;
  transition: all .4s; position: relative;
}
.step-item:hover .step-number {
  background: linear-gradient(135deg, var(--red), var(--purple));
  color: var(--white); border-color: transparent;
  transform: scale(1.1);
  box-shadow: 0 0 40px var(--red-glow);
}
.step-item h3 { margin-bottom: 10px; font-size: 18px; }
.step-item p { font-size: 14px; color: var(--gray); margin: 0; }
.step-svg-icon {
  width: 48px; height: 48px;
  margin: 0 auto 16px;
  color: var(--gray);
  transition: all .4s;
}
.step-item:hover .step-svg-icon { color: var(--red); transform: scale(1.15); }
@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
}

/* === TESTIMONIALS === */
.testimonials {
  overflow: hidden; padding: 100px 0;
  position: relative;
  background: var(--black);
}
.testimonials .mesh-bg::before {
  background: radial-gradient(circle, rgba(34,197,94,.08) 0%, transparent 70%);
  top: -100px; left: 30%;
}
.testimonial-track {
  display: flex; gap: 24px; width: max-content;
  animation: tmc-scroll 60s linear infinite;
}
.testimonials:hover .testimonial-track { animation-play-state: paused; }
.testimonial-card {
  flex-shrink: 0; width: 380px; padding: 32px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-xl);
  transition: all .3s;
  backdrop-filter: blur(8px);
}
.testimonial-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.3), 0 0 0 1px var(--border2);
  transform: translateY(-4px);
  border-color: var(--border2);
}
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testimonial-stars svg { width: 18px; height: 18px; fill: var(--green); }
.testimonial-title { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--white); }
.testimonial-text { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 20px; }
.testimonial-author {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--gray2);
  padding-top: 16px; border-top: 1px solid var(--border);
}
.testimonial-author strong { color: var(--white); }
@keyframes tmc-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* === FAQ === */
.faq-section {
  background: var(--dark);
  padding: 100px 0;
  position: relative; overflow: hidden;
}
.faq-grid {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 64px; align-items: start;
  position: relative; z-index: 2;
}
.faq-info h2 { margin-bottom: 16px; }
.faq-info p { color: var(--gray); margin-bottom: 28px; font-size: 16px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid var(--border);
  transition: all .3s;
}
.faq-item:hover { border-bottom-color: var(--border2); }
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; font-size: 16px; font-weight: 600; color: var(--white);
  cursor: pointer; list-style: none; transition: color .3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; }
.faq-item summary svg { flex-shrink: 0; transition: transform .4s; color: var(--gray2); }
.faq-item[open] summary svg { transform: rotate(180deg); color: var(--red); }
.faq-item[open] summary { color: var(--red); }
.faq-answer {
  padding: 0 0 22px; font-size: 15px; color: var(--gray); line-height: 1.8;
  animation: faqOpen .3s ease;
}
@keyframes faqOpen { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 768px) { .faq-grid { grid-template-columns: 1fr; gap: 40px; } }

/* === BLOG / RESOURCES === */
.blog-section { padding: 100px 0; position: relative; overflow: hidden; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-xl);
  overflow: hidden; transition: all .4s;
  text-decoration: none; display: block;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  border-color: var(--border2);
}
.blog-card-img {
  height: 200px; overflow: hidden;
  background: linear-gradient(135deg, var(--dark3), var(--dark));
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.blog-card-img svg { width: 48px; height: 48px; color: var(--gray2); transition: all .4s; }
.blog-card:hover .blog-card-img svg { color: var(--red); transform: scale(1.15); }
.blog-card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, var(--glass2));
}
.blog-card-body { padding: 28px; }
.blog-card-tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--red); margin-bottom: 12px;
}
.blog-card-body h3 {
  font-size: 18px; margin-bottom: 10px;
  transition: color .3s;
}
.blog-card:hover .blog-card-body h3 { color: var(--red-hover); }
.blog-card-body p { font-size: 14px; color: var(--gray); margin-bottom: 16px; }
.blog-card-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: 12px; color: var(--gray2);
  padding-top: 16px; border-top: 1px solid var(--border);
}
.blog-card-meta-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red-light), rgba(34,197,94,.1));
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: var(--red);
}
@media (max-width: 768px) { .blog-grid { grid-template-columns: 1fr; } }

/* === CTA BANNER === */
.cta-banner {
  background: var(--black); padding: 120px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner .mesh-bg::before {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--red-glow-strong) 0%, transparent 60%);
  top: -200px; right: 20%;
  animation: ctaOrb1 10s ease-in-out infinite;
}
.cta-banner .mesh-bg::after {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--purple-glow) 0%, transparent 60%);
  bottom: -200px; left: 20%;
  animation: ctaOrb2 12s ease-in-out infinite;
}
@keyframes ctaOrb1 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(60px,40px) scale(1.2); }
}
@keyframes ctaOrb2 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-40px,-30px) scale(1.15); }
}
.cta-banner h2 {
  color: var(--white); margin-bottom: 16px;
  position: relative; z-index: 2;
  font-size: clamp(2rem, 5vw, 3.5rem);
}
.cta-banner p {
  color: var(--gray); margin-bottom: 36px;
  position: relative; z-index: 2;
  max-width: 500px; margin-left: auto; margin-right: auto;
}
.cta-banner .btn { position: relative; z-index: 2; }
.cta-badge-row {
  display: flex; justify-content: center; gap: 32px;
  margin-top: 40px; position: relative; z-index: 2;
}
.cta-badge {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--gray);
}
.cta-badge svg { color: var(--green); }

/* === FOOTER === */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0 0;
  position: relative; overflow: hidden;
  border-top: 1px solid var(--border);
}
.footer .mesh-bg::before {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(14,165,233,.06) 0%, transparent 70%);
  bottom: -100px; left: 10%;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 56px;
  position: relative; z-index: 2;
}
.footer-tagline { color: var(--gray); font-size: 14px; margin: 16px 0 10px; }
.footer-hours { color: var(--gray2); font-size: 13px; margin-bottom: 14px; }
.footer-phone {
  color: var(--white); font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .3s;
}
.footer-phone:hover { color: var(--red-hover); }
.footer-heading {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; margin-bottom: 20px; color: var(--white);
}
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  color: var(--gray); font-size: 14px; transition: all .3s;
  position: relative;
}
.footer-links a::after {
  content: ''; position: absolute;
  bottom: -2px; left: 0; width: 0; height: 1px;
  background: var(--red); transition: width .3s;
}
.footer-links a:hover { color: var(--red-hover); padding-left: 4px; }
.footer-links a:hover::after { width: 100%; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  display: flex; justify-content: space-between; align-items: center;
  position: relative; z-index: 2;
}
.footer-bottom p { color: var(--gray2); font-size: 13px; }
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  color: var(--gray2); transition: all .3s;
  width: 40px; height: 40px;
  background: var(--glass2);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover {
  color: var(--white);
  background: var(--glass3);
  border-color: var(--border2);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* === SECTION LABEL / TAG === */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--red);
  margin-bottom: 20px;
}
.section-label__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px var(--red-glow);
}

/* === GLASSMORPHISM CARD === */
.glass-card {
  background: var(--glass2);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

/* === ANIMATIONS === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(.9); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes rotateIn {
  from { opacity: 0; transform: rotate(-10deg) scale(.9); }
  to { opacity: 1; transform: rotate(0) scale(1); }
}

/* All reveal/stagger animations handled by GSAP in JS.
   NO opacity:0 in CSS — elements always visible by default.
   GSAP sets initial state via gsap.set() then animates. */

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-thumb { background: var(--gray2); border-radius: 3px; }
::-webkit-scrollbar-track { background: var(--dark); }

/* === PAGE HERO (inner pages) === */
.page-hero {
  background: var(--dark); padding: 80px 0; text-align: center;
  position: relative; overflow: hidden;
  padding-top: 156px;
}
.page-hero .mesh-bg::before {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 70%);
  top: -100px; right: 20%;
}
.page-hero h1 { color: var(--white); position: relative; z-index: 2; margin-bottom: 12px; }
.page-hero p { color: var(--gray); position: relative; z-index: 2; font-size: 1.15rem; }

/* === FORM SUCCESS TOAST === */
.toast {
  position: fixed; top: 100px; right: 24px; z-index: 10000;
  background: rgba(18,18,42,.95);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 20px 28px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  transform: translateX(120%); transition: transform .4s cubic-bezier(.4,0,.2,1);
  max-width: 400px;
}
.toast.show { transform: translateX(0); }
.toast-icon {
  width: 40px; height: 40px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.toast-icon--success { background: rgba(5,150,105,.12); color: var(--green); }
.toast-icon--error { background: rgba(14,165,233,.12); color: var(--red); }
.toast-content h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.toast-content p { font-size: 13px; color: var(--gray); margin: 0; }

/* === SVG ANIMATION HELPERS === */
.svg-animate-draw path,
.svg-animate-draw circle,
.svg-animate-draw rect,
.svg-animate-draw line,
.svg-animate-draw polyline,
.svg-animate-draw polygon {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}
.svg-animate-draw.animated path,
.svg-animate-draw.animated circle,
.svg-animate-draw.animated rect,
.svg-animate-draw.animated line,
.svg-animate-draw.animated polyline,
.svg-animate-draw.animated polygon {
  animation: svgDraw 2s ease forwards;
}
@keyframes svgDraw {
  to { stroke-dashoffset: 0; }
}

/* === PARTICLE CANVAS === */
#hero-canvas {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
}

/* === GLOW LINE SEPARATOR === */
.glow-separator {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--red-glow), var(--purple-glow), transparent);
  border: none; margin: 0;
}
