/* ============================================
   COMPLEXO DMC - Shared Page Styles
   Design System & Base Components
   ============================================ */

/* --- CSS Reset & Variables --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-tertiary: #1a1a1a;
  --bg-card: rgba(17, 17, 17, 0.6);
  --text-primary: #ffffff;
  --text-secondary: #b3b3b3;
  --text-tertiary: #808080;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.15);
  --shadow-color: rgba(0, 0, 0, 0.5);
  --primary-green: #00ff4d;
  --primary-cyan: #00e7fc;
  --glass-bg: rgba(17, 17, 17, 0.4);
  --glass-border: rgba(255, 255, 255, 0.1);

  /* Gradients */
  --gradient-primary: linear-gradient(90deg, #00e7fc 0%, #00ff4d 100%);
  --gradient-badge: linear-gradient(90deg, #002963 0%, #00cfb6 21%, #00f5b4 48%, #00f683 80%, #00ff44 100%);
  --gradient-glow: radial-gradient(circle, rgba(0, 231, 252, 0.15) 0%, rgba(0, 255, 77, 0.08) 40%, transparent 70%);
  --gradient-card-hover: linear-gradient(135deg, rgba(0, 231, 252, 0.05) 0%, rgba(0, 255, 77, 0.03) 100%);

  /* Typography */
  --font-primary: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Raleway', 'DM Sans', sans-serif;

  /* Card Accent (Green) */
  --card-accent: #00ff4d;
  --card-accent-light: #00e7fc;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;

  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

/* --- Base --- */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Utility Classes --- */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* --- Background Noise Texture --- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* --- Navbar --- */
.page-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.page-nav.scrolled {
  padding: 0.6rem 0;
  background: rgba(10, 10, 10, 0.95);
}

.nav__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo img {
  height: 40px;
  width: auto;
  transition: var(--transition);
}

.nav__logo:hover img {
  filter: brightness(1.2);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.25rem 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition);
}

.nav__link:hover {
  color: var(--text-primary);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link--active {
  color: var(--text-primary);
}

.nav__link--active::after {
  width: 100%;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: var(--gradient-primary);
  color: var(--bg-primary);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 100px;
  transition: var(--transition);
}

.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0, 231, 252, 0.3);
}

/* Mobile Menu Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* --- Hero Section (Split Layout: text left + image right) --- */
.page-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 4rem;
  overflow: hidden;
  background: var(--bg-primary);
}

/* Subtle dark gradient background */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(0, 231, 252, 0.03) 0%,
    transparent 40%,
    rgba(0, 255, 77, 0.02) 100%
  );
  pointer-events: none;
  z-index: 0;
}

/* Grid line pattern (subtle) */
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}

/* Left side - Text Content */
.page-hero__content {
  position: relative;
  z-index: 2;
  text-align: left;
}

/* Badge - neon glow style matching index */
.page-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  margin-bottom: 1.5rem;
  background: rgba(17, 17, 17, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid transparent;
  border-radius: 25px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out 0.1s both, neonGlow 3s ease-in-out infinite;
  box-shadow:
    0 0 10px rgba(0, 207, 182, 0.3),
    0 0 20px rgba(0, 207, 182, 0.2),
    0 0 30px rgba(0, 245, 180, 0.15),
    inset 0 0 10px rgba(0, 207, 182, 0.1);
}

/* Neon gradient border */
.page-hero__badge::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 25px;
  padding: 1px;
  background: var(--gradient-badge);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  z-index: -1;
}

.page-hero__badge svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

@keyframes neonGlow {
  0%, 100% {
    box-shadow:
      0 0 10px rgba(0, 207, 182, 0.3),
      0 0 20px rgba(0, 207, 182, 0.2),
      0 0 30px rgba(0, 245, 180, 0.15),
      inset 0 0 10px rgba(0, 207, 182, 0.1);
  }
  50% {
    box-shadow:
      0 0 15px rgba(0, 207, 182, 0.5),
      0 0 25px rgba(0, 207, 182, 0.3),
      0 0 40px rgba(0, 245, 180, 0.25),
      inset 0 0 15px rgba(0, 207, 182, 0.15);
  }
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
  animation: fadeInUp 0.8s ease-out 0.15s both;
  white-space: normal;
}

.page-hero__subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 0 2rem 0;
  animation: fadeInUp 0.8s ease-out 0.25s both;
}

.page-hero__actions {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  animation: fadeInUp 0.8s ease-out 0.35s both;
}

/* Hero Buttons - neon glow style matching index */
.page-hero__actions .btn {
  padding: 0.75rem 1.8rem;
  font-size: 0.95rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(17, 17, 17, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
}

.page-hero__actions .btn--primary {
  box-shadow:
    0 0 10px rgba(0, 231, 252, 0.3),
    0 0 20px rgba(0, 231, 252, 0.2),
    0 0 30px rgba(0, 255, 77, 0.15),
    inset 0 0 10px rgba(0, 231, 252, 0.1);
  animation: neonGlowButton 3s ease-in-out infinite;
}

.page-hero__actions .btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  padding: 1px;
  background: var(--gradient-primary);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  z-index: 0;
  pointer-events: none;
}

.page-hero__actions .btn--secondary {
  box-shadow:
    0 0 10px rgba(0, 231, 252, 0.2),
    0 0 15px rgba(0, 231, 252, 0.1);
}

.page-hero__actions .btn--secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  padding: 1px;
  background: var(--gradient-primary);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  z-index: 0;
  pointer-events: none;
}

.page-hero__actions .btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 20px rgba(0, 231, 252, 0.4),
    0 0 40px rgba(0, 231, 252, 0.2),
    0 0 60px rgba(0, 255, 77, 0.15);
}

@keyframes neonGlowButton {
  0%, 100% {
    box-shadow:
      0 0 10px rgba(0, 231, 252, 0.3),
      0 0 20px rgba(0, 231, 252, 0.2),
      0 0 30px rgba(0, 255, 77, 0.15),
      inset 0 0 10px rgba(0, 231, 252, 0.1);
  }
  50% {
    box-shadow:
      0 0 15px rgba(0, 231, 252, 0.45),
      0 0 30px rgba(0, 231, 252, 0.25),
      0 0 45px rgba(0, 255, 77, 0.2),
      inset 0 0 15px rgba(0, 231, 252, 0.12);
  }
}

/* Right side - Hero Image */
.page-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInRight 1s ease-out 0.3s both;
}

.page-hero__image-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.page-hero__image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 40px rgba(0, 231, 252, 0.15)) drop-shadow(0 0 80px rgba(0, 255, 77, 0.08));
  transition: var(--transition-slow);
  animation: heroImageFloat 6s ease-in-out infinite;
}

.page-hero__image-wrapper:hover img {
  filter: drop-shadow(0 0 50px rgba(0, 231, 252, 0.25)) drop-shadow(0 0 100px rgba(0, 255, 77, 0.12));
  transform: scale(1.02);
}

/* Glow ring behind image */
.page-hero__image-glow {
  position: absolute;
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 231, 252, 0.08) 0%, rgba(0, 255, 77, 0.04) 50%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: -1;
  animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes heroImageFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

/* Floating particles around image */
.page-hero__particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary-cyan);
  opacity: 0.4;
  animation: particleFloat 5s ease-in-out infinite;
  pointer-events: none;
}

.page-hero__particle:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; animation-duration: 4s; }
.page-hero__particle:nth-child(2) { top: 75%; left: 85%; animation-delay: 1s; animation-duration: 5s; background: var(--primary-green); }
.page-hero__particle:nth-child(3) { top: 25%; right: 5%; animation-delay: 2s; animation-duration: 6s; }
.page-hero__particle:nth-child(4) { bottom: 20%; left: 20%; animation-delay: 0.5s; animation-duration: 4.5s; background: var(--primary-green); }

@keyframes particleFloat {
  0%, 100% { transform: translate(0, 0); opacity: 0.4; }
  25% { transform: translate(10px, -15px); opacity: 0.7; }
  50% { transform: translate(-5px, -25px); opacity: 0.3; }
  75% { transform: translate(15px, -10px); opacity: 0.6; }
}

/* Background glow (top-right) */
.page-hero__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--gradient-glow);
  top: -200px;
  right: -100px;
  pointer-events: none;
  z-index: 0;
  animation: float-glow 8s ease-in-out infinite;
}

@keyframes float-glow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 20px) scale(1.1); }
}

/* Legacy bg elements (hidden in new layout) */
.page-hero__bg { display: none; }
.page-hero__overlay { display: none; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--gradient-primary);
  color: var(--bg-primary);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 231, 252, 0.35);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn--secondary:hover {
  border-color: var(--primary-cyan);
  color: var(--primary-cyan);
  background: rgba(0, 231, 252, 0.05);
}

.btn--whatsapp {
  background: #25D366;
  color: #fff;
}

.btn--whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* --- Section Base --- */
.page-section {
  position: relative;
  padding: 5rem 2rem;
  z-index: 1;
}

.page-section__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-section__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.page-section__overline {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-green);
  margin-bottom: 0.75rem;
}

.page-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.page-section__description {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Feature/Benefit Cards (Green Neon Theme) --- */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0, 255, 77, 0.12);
  border: 1px solid rgba(0, 255, 77, 0.12);
  counter-reset: card;
}

.benefit-card {
  background: #1F1F1F;
  padding: 28px 26px 30px;
  position: relative;
  overflow: hidden;
  transition: background 0.22s;
  counter-increment: card;
  border: none;
  border-radius: 0;
}

/* Green neon bottom line (hidden by default) */
.benefit-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-cyan), var(--primary-green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

/* Card number */
.benefit-card::before {
  content: counter(card, decimal-leading-zero);
  font-family: var(--font-primary);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(0, 255, 77, 0.3);
  display: block;
  margin-bottom: 8px;
  position: static;
  background: none;
  -webkit-text-fill-color: rgba(0, 255, 77, 0.3);
  opacity: 1;
}

.benefit-card:hover {
  background: rgba(0, 231, 252, 0.06);
  transform: none;
  box-shadow: none;
}

.benefit-card:hover::after {
  transform: scaleX(1);
}

.benefit-card__icon {
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  display: block;
  margin-bottom: 6px;
  transition: var(--transition);
}

.benefit-card:hover .benefit-card__icon {
  background: none;
  transform: none;
}

.benefit-card__icon svg {
  display: none;
}

/* Tag style for icon area */
.benefit-card__tag {
  font-family: var(--font-primary);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-green);
  margin-bottom: 6px;
  display: block;
}

.benefit-card__title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: #FDFDFD;
  margin-bottom: 10px;
  line-height: 1.3;
}

.benefit-card__text {
  font-family: var(--font-primary);
  font-size: 13px;
  color: rgba(253, 253, 253, 0.42);
  line-height: 1.65;
  font-weight: 300;
}

/* --- Process / Steps --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  counter-reset: step;
}

.process-step {
  position: relative;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  counter-increment: step;
}

.process-step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.15;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
  transition: var(--transition);
}

.process-step:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.process-step:hover::before {
  opacity: 0.3;
}

.process-step__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.process-step__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* --- Stats / Numbers --- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  padding: 2.5rem 0;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
}

.stat-item__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.stat-item__label {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  margin-top: 0.25rem;
  font-weight: 500;
}

/* --- Testimonial --- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}

.testimonial-card__stars svg {
  width: 16px;
  height: 16px;
  fill: var(--primary-green);
}

.testimonial-card__text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.25rem;
  position: relative;
  padding-left: 1rem;
  border-left: 2px solid rgba(0, 231, 252, 0.2);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 231, 252, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary-cyan);
}

.testimonial-card__name {
  font-size: 0.9rem;
  font-weight: 600;
}

.testimonial-card__role {
  font-size: 0.8rem;
  color: var(--text-tertiary);
}

/* --- FAQ / Accordion --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--border-hover);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  gap: 1rem;
  transition: var(--transition);
}

.faq-item__question:hover {
  color: var(--primary-cyan);
}

.faq-item__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: var(--transition);
  stroke: var(--text-tertiary);
}

.faq-item.active .faq-item__icon {
  transform: rotate(45deg);
  stroke: var(--primary-cyan);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-item__answer {
  max-height: 300px;
}

.faq-item__answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- CTA Section --- */
.cta-section {
  position: relative;
  padding: 5rem 2rem;
  text-align: center;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 231, 252, 0.03), transparent);
  pointer-events: none;
}

.cta-section__container {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-section__text {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.cta-section__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Footer --- */
.page-footer {
  border-top: 1px solid var(--border-color);
  padding: 3rem 2rem;
  background: var(--bg-secondary);
}

.page-footer__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.page-footer__logo img {
  height: 32px;
  opacity: 0.7;
  transition: var(--transition);
}

.page-footer__logo:hover img {
  opacity: 1;
}

.page-footer__links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.page-footer__link {
  font-size: 0.85rem;
  color: var(--text-tertiary);
}

.page-footer__link:hover {
  color: var(--text-primary);
}

.page-footer__copy {
  font-size: 0.8rem;
  color: var(--text-tertiary);
  width: 100%;
  text-align: center;
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

/* --- Scroll Reveal Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Highlight List --- */
.highlight-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.highlight-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.highlight-list li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--primary-green);
}

/* --- Split Content (image + text side by side) --- */
.split-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-content--reverse {
  direction: rtl;
}

.split-content--reverse > * {
  direction: ltr;
}

.split-content__image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.split-content__image img {
  width: 100%;
  height: auto;
  display: block;
}

.split-content__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.split-content__text h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.split-content__text p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* --- Divider --- */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color), transparent);
  margin: 0 auto;
  max-width: 1200px;
}

/* --- Badge/Tag --- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 100px;
  background: rgba(0, 255, 77, 0.08);
  color: var(--primary-green);
  border: 1px solid rgba(0, 255, 77, 0.15);
}

.tag--cyan {
  background: rgba(0, 231, 252, 0.08);
  color: var(--primary-cyan);
  border-color: rgba(0, 231, 252, 0.15);
}

.tag--recommended {
  background: rgba(0, 231, 252, 0.1);
  color: var(--primary-cyan);
  border-color: rgba(0, 231, 252, 0.2);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .split-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .split-content--reverse {
    direction: ltr;
  }
}

@media (max-width: 1024px) {
  .page-hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 2rem;
  }

  .page-hero__content {
    text-align: center;
  }

  .page-hero__subtitle {
    margin: 0 auto 2rem;
  }

  .page-hero__actions {
    justify-content: center;
  }

  .page-hero__visual {
    order: -1;
  }

  .page-hero__image-wrapper {
    max-width: 360px;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    z-index: 999;
  }

  .nav__links.open {
    display: flex;
  }

  .nav__toggle {
    display: flex;
    z-index: 1001;
  }

  .nav__link {
    font-size: 1.1rem;
  }

  .page-hero {
    min-height: auto;
    padding: 6rem 0 3rem;
  }

  .page-hero__inner {
    padding: 0 1.5rem;
  }

  .page-hero__title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-hero__image-wrapper {
    max-width: 280px;
  }

  .page-section {
    padding: 3.5rem 1.25rem;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .page-hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .page-footer__container {
    flex-direction: column;
    text-align: center;
  }

  .page-footer__links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .stats-row {
    grid-template-columns: 1fr;
  }

  .page-section__title {
    font-size: 1.5rem;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===== Page Hero Orbit (Rino + Tags) ===== */
.page-orbit {
  --po-r: 200px;
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.page-orbit__glow {
  position: absolute;
  width: 350px;
  height: 350px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 231, 252, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-orbit__video {
  position: relative;
  z-index: 10;
  width: 160px;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 0 20px rgba(0, 231, 252, 0.3));
}

.page-orbit__ring {
  position: absolute;
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(0, 231, 252, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.page-orbit__anchor {
  position: absolute;
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
}

.page-orbit__item {
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: 0 0;
  animation: pageOrbitSpin 20s linear infinite;
}

@keyframes pageOrbitSpin {
  0%   { transform: rotate(0deg)   translateX(var(--po-r)) rotate(0deg); }
  100% { transform: rotate(360deg) translateX(var(--po-r)) rotate(-360deg); }
}

.page-orbit__tag {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 110px;
  height: 44px;
  margin-left: -55px;
  margin-top: -22px;
  background: rgba(10, 10, 10, 0.85);
  border: 1px solid rgba(0, 255, 77, 0.3);
  border-radius: 14px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #ffffff;
  user-select: none;
  backdrop-filter: blur(6px);
}

@media (max-width: 768px) {
  .page-orbit { --po-r: 150px; }
  .page-orbit__video { width: 120px; }
  .page-orbit__ring { width: 300px; height: 300px; }
  .page-orbit__tag { width: 90px; height: 38px; font-size: 10px; margin-left: -45px; margin-top: -19px; }
}

@media (max-width: 480px) {
  .page-orbit { --po-r: 110px; }
  .page-orbit__video { width: 90px; }
  .page-orbit__ring { width: 220px; height: 220px; }
  .page-orbit__tag { width: 75px; height: 32px; font-size: 9px; margin-left: -37.5px; margin-top: -16px; border-radius: 10px; }
}