/* GRPHX Zone — Complete Stylesheet
   Brand: #242424 | #FCB016 | #FFFFFF | Outfit font
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --black: #242424;
  --dark: #1A1A1A;
  --gold: #FCB016;
  --gold-hover: #E5A014;
  --white: #FFFFFF;
  --grey: #999999;
  --light-grey: #E0E0E0;
  --border: #333333;
  --section-pad: 100px 0;
  --container: 1200px;
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-hover); }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

/* Skip to content */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--gold); color: var(--black); padding: 8px 16px;
  font-weight: 700; z-index: 9999; transition: top 0.2s;
}
.skip-link:focus { top: 8px; }

/* Utility */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-pad); position: relative; }
.section-dark { background: var(--dark); }
.section-gold { background: var(--gold); color: var(--black); }
.section-gold h2, .section-gold h3 { color: var(--black); }
.text-center { text-align: center; }

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; letter-spacing: -0.01em; line-height: 1.2; margin-bottom: 16px; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; margin-bottom: 12px; }
p { color: var(--light-grey); font-size: 1rem; line-height: 1.7; margin-bottom: 12px; }
.text-gold { color: var(--gold); }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--gold); margin-bottom: 8px;
}

/* Stats grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.stat-label { font-size: 0.82rem; color: var(--grey); }

/* Page header */
.page-header { padding: 160px 0 80px; position: relative; overflow: hidden; }
.page-header::before {
  content: ''; position: absolute; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(252,176,22,0.06) 0%, transparent 70%);
  top: -200px; right: -200px; pointer-events: none;
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { margin-bottom: 16px; }
.breadcrumb { font-size: 0.85rem; color: var(--grey); margin-bottom: 24px; }
.breadcrumb a { color: var(--grey); }
.breadcrumb a:hover { color: var(--gold); }

/* GRPHX Zone — Cinematic Hero Animations
   Brand: #242424 | #FCB016 | #FFFFFF | Outfit font
   ============================================ */

/* === HERO SECTION === */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

/* Animated gradient background layer */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(252,176,22,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 70%, rgba(252,176,22,0.04) 0%, transparent 50%),
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(252,176,22,0.03) 0%, transparent 50%);
  z-index: 0;
  pointer-events: none;
  animation: gradientShift 12s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
  33% { opacity: 0.85; transform: scale(1.05) rotate(1deg); }
  66% { opacity: 1; transform: scale(0.98) rotate(-1deg); }
}

/* Rotating conic gradient for depth */
.hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  transform: translate(-50%, -50%);
  background: conic-gradient(
    from 0deg at 50% 50%,
    transparent 0deg,
    rgba(252,176,22,0.015) 30deg,
    transparent 60deg,
    rgba(252,176,22,0.01) 120deg,
    transparent 180deg,
    rgba(252,176,22,0.02) 240deg,
    transparent 300deg,
    transparent 360deg
  );
  animation: conicRotate 30s linear infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes conicRotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

#grid-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

#particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Drifting glow orbs */
.hero-glow-1 {
  position: absolute;
  width: 700px;
  height: 700px;
  top: -250px;
  right: -150px;
  background: radial-gradient(circle, rgba(252,176,22,0.12) 0%, transparent 65%);
  animation: glowDrift1 14s ease-in-out infinite;
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  bottom: -150px;
  left: -100px;
  background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 65%);
  animation: glowDrift2 18s ease-in-out infinite;
  pointer-events: none;
}
.hero-glow-3 {
  position: absolute;
  width: 350px;
  height: 350px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(252,176,22,0.06) 0%, transparent 70%);
  animation: glowPulse 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glowDrift1 {
  0%, 100% { transform: translate(0,0) scale(1); }
  25% { transform: translate(40px, 30px) scale(1.08); }
  50% { transform: translate(-30px, 50px) scale(0.95); }
  75% { transform: translate(20px, -20px) scale(1.02); }
}
@keyframes glowDrift2 {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(50px, -40px) scale(1.1); }
  66% { transform: translate(-40px, 30px) scale(0.9); }
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%,-50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%,-50%) scale(1.4); }
}

/* Floating orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  animation-timing-function: ease-in-out;
}
.hero-orb-1 {
  width: 280px;
  height: 280px;
  background: rgba(252,176,22,0.1);
  top: 12%;
  right: 18%;
  animation: orbFloat1 16s ease-in-out infinite;
}
.hero-orb-2 {
  width: 180px;
  height: 180px;
  background: rgba(252,176,22,0.07);
  bottom: 28%;
  left: 8%;
  animation: orbFloat2 12s ease-in-out infinite;
}
.hero-orb-3 {
  width: 120px;
  height: 120px;
  background: rgba(255,255,255,0.04);
  top: 55%;
  right: 5%;
  animation: orbFloat3 20s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0,0); }
  20% { transform: translate(-40px, 60px); }
  40% { transform: translate(30px, -40px); }
  60% { transform: translate(50px, 20px); }
  80% { transform: translate(-20px, -30px); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0,0); }
  25% { transform: translate(60px, -30px); }
  50% { transform: translate(-30px, 50px); }
  75% { transform: translate(20px, 20px); }
}
@keyframes orbFloat3 {
  0%, 100% { transform: translate(0,0); }
  33% { transform: translate(-40px, -50px); }
  66% { transform: translate(30px, 40px); }
}

/* Noise grain overlay */
.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

/* Hero content */
.hero .container {
  position: relative;
  z-index: 2;
}
.hero-content {
  max-width: 780px;
  padding: 120px 0 80px;
}

.hero-pre {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 20px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hero-pre::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.hero h1 .highlight {
  color: var(--gold);
  position: relative;
}
.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(252,176,22,0.2));
  border-radius: 2px;
}

.hero-sub {
  font-size: 1.12rem;
  color: var(--light-grey);
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 640px;
  position: relative;
  padding-left: 20px;
}
.hero-sub::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, rgba(252,176,22,0) 100%);
  border-radius: 2px;
}

/* === MAGNETIC BUTTONS === */
.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
  perspective: 800px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.25s ease,
              background 0.2s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  transform-style: preserve-3d;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transition: left 0.5s ease;
}
.btn-primary:hover::before {
  left: 150%;
}

.btn-primary:hover {
  background: var(--gold-hover);
  color: var(--black);
  transform: translateY(-3px) scale(1.06);
  box-shadow:
    0 12px 40px rgba(252,176,22,0.35),
    0 0 80px rgba(252,176,22,0.15);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  transform-style: preserve-3d;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px) scale(1.06);
  box-shadow:
    0 12px 40px rgba(252,176,22,0.25),
    0 0 60px rgba(252,176,22,0.1);
}

/* === PRODUCT CARDS 3D TILT === */
.product-card {
  background: var(--dark);
  border: 1px solid var(--border);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  transform-style: preserve-3d;
  will-change: transform;
  cursor: pointer;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(252,176,22,0.3));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.product-card:hover {
  border-color: rgba(252,176,22,0.4);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.5),
    0 0 50px rgba(252,176,22,0.08),
    inset 0 0 40px rgba(252,176,22,0.02);
}
.product-card:hover::before {
  transform: scaleX(1);
}

.product-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.product-icon svg {
  width: 40px;
  height: 40px;
  transition: filter 0.3s ease;
}
.product-card:hover .product-icon svg {
  filter: drop-shadow(0 0 10px rgba(252,176,22,0.6));
  transform: scale(1.1);
}

/* === MARQUEE === */
.marquee {
  overflow: hidden;
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  white-space: nowrap;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 25s linear infinite;
  gap: 40px;
  padding-right: 40px;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}
.marquee-item .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === SCROLL-TRIGGERED ANIMATIONS === */
.fade-up {
  opacity: 0;
  transform: translateY(40px) perspective(800px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === STAT CARDS === */
.stat-card {
  text-align: center;
  padding: 32px 16px;
  background: var(--dark);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.stat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(252,176,22,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.stat-card:hover {
  border-color: rgba(252,176,22,0.25);
  transform: translateY(-4px);
}
.stat-card:hover::after {
  opacity: 1;
}
.stat-value {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 4px;
  display: block;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero-glow-1 { width: 350px; height: 350px; }
  .hero-glow-2 { width: 280px; height: 280px; }
  .hero-orb-1 { width: 180px; height: 180px; }
  .hero-orb-2 { width: 120px; height: 120px; }
  .hero-orb-3 { width: 80px; height: 80px; }
  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; text-align: center; }
}
/* === PRODUCT GRID === */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.product-card {
  background: var(--dark);
  border: 1px solid var(--border);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  cursor: pointer;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(252,176,22,0.3));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.product-card:hover::before { transform: scaleX(1); }
.product-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.product-icon svg { width: 40px; height: 40px; }
.product-card h3 { color: var(--gold); font-size: 1.2rem; margin-bottom: 4px; }
.product-price { font-size: 0.85rem; font-weight: 600; color: var(--gold); margin-bottom: 12px; }
.product-card p { font-size: 0.9rem; color: var(--grey); margin-bottom: 16px; }
.product-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
}
.product-link:hover { gap: 12px; }

/* === TRUST BAR === */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.trust-item {
  font-size: 0.9rem;
  color: var(--grey);
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-item strong { color: var(--white); }

/* === FEATURES === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.feature-card {
  background: var(--dark);
  border: 1px solid var(--border);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.feature-card:hover { border-color: rgba(252,176,22,0.2); transform: translateY(-2px); }
.feature-card:hover::after { width: 100%; }
.feature-card h3 { color: var(--gold); font-size: 1rem; display: flex; align-items: center; gap: 8px; }
.feature-card h3 svg { width: 18px; height: 18px; flex-shrink: 0; }
.feature-card p { font-size: 0.9rem; margin-bottom: 0; }

/* === PRICING === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 32px;
  align-items: stretch;
}
.pricing-card {
  background: var(--dark);
  border: 1px solid var(--border);
  padding: 32px 24px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 40px rgba(252,176,22,0.12);
}
.pricing-card.featured::before {
  content: 'POPULAR';
  position: absolute;
  top: 0;
  right: 0;
  background: var(--gold);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 14px;
  letter-spacing: 0.06em;
}
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.35);
}
.pricing-tier { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 8px; }
.pricing-price { font-size: 2.2rem; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.pricing-price span { font-size: 1rem; font-weight: 400; color: var(--grey); }
.pricing-card ul { margin-bottom: 24px; flex-grow: 1; }
.pricing-card li { font-size: 0.9rem; color: var(--grey); padding: 7px 0; border-bottom: 1px solid rgba(51,51,51,0.5); }
.pricing-card li::before { content: '✓ '; color: var(--gold); font-weight: 700; }
.pricing-card .btn { width: 100%; }

/* === PROCESS === */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
  position: relative;
}
.process-step {
  background: var(--dark);
  border: 1px solid var(--border);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.process-step:hover { border-color: rgba(252,176,22,0.3); transform: translateY(-3px); }
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -12px;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.4;
}
.step-number { font-size: 2.5rem; font-weight: 700; color: var(--gold); opacity: 0.25; margin-bottom: 12px; }
.process-step h3 { color: var(--gold); font-size: 1rem; }

/* === CTA SECTION === */
.cta-section {
  padding: 100px 0;
  text-align: center;
  background: var(--dark);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(252,176,22,0.05) 0%, transparent 65%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.cta-section h2 { margin-bottom: 16px; }
.cta-section p { max-width: 600px; margin: 0 auto 28px; }

/* === FOOTER === */
.footer { background: var(--dark); border-top: 1px solid var(--border); padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
.footer-brand p { color: var(--grey); font-size: 0.9rem; margin-top: 16px; max-width: 300px; }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 16px; }
.footer-col a { display: flex; align-items: center; gap: 6px; color: var(--grey); font-size: 0.9rem; padding: 4px 0; transition: color 0.3s ease; }
.footer-col a:hover { color: var(--white); }
.footer-col a svg { width: 14px; height: 14px; flex-shrink: 0; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.8rem; color: var(--grey); }

/* === SCROLL TOP === */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--black);
  border: none;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s ease;
  z-index: 900;
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--gold-hover); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(252,176,22,0.3); }

/* === NAVIGATION === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(36,36,36,0.95);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 44px; width: auto; transition: height 0.3s ease; }
.navbar.scrolled .nav-logo img { height: 36px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: var(--white); font-size: 0.9rem; font-weight: 500; letter-spacing: 0.02em; position: relative; transition: color 0.3s ease; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.3s ease; }
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }
.nav-cta .btn { padding: 10px 24px; font-size: 0.8rem; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; z-index: 1001; }
.nav-toggle span { width: 24px; height: 2px; background: var(--white); transition: all 0.3s ease; transform-origin: center; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 998; }
.nav-overlay.active { display: block; }

/* === RESPONSIVE BREAKPOINTS === */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:not(:last-child)::after { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --section-pad: 60px 0; }
  .hero-content { padding: 90px 0 50px; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: var(--dark); flex-direction: column; padding: 80px 32px 32px; gap: 20px;
    transition: right 0.3s ease; box-shadow: -5px 0 30px rgba(0,0,0,0.5); z-index: 1001;
  }
  .nav-links.active { right: 0; }
  .nav-toggle { display: flex; }
  .product-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; text-align: center; }
  .trust-bar { gap: 12px; }
  .trust-item { font-size: 0.82rem; }
}
