/* ===== ROOFIO - PREMIUM DARK MODE CSS ===== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --bg-primary: #000000;
  --bg-secondary: #09090B;
  --bg-tertiary: #111113;
  --bg-card: #18181B;

  --orange-50: #fff7ed;
  --orange-100: #ffedd5;
  --orange-200: #fed7aa;
  --orange-300: #fdba74;
  --orange-400: #fb923c;
  --orange-500: #FF6600;
  --orange-600: #ea580c;
  --orange-700: #c2410c;
  --orange-800: #9a3412;
  --orange-900: #7c2d12;
  --orange-rgb: 255, 102, 0;

  --text-primary: #FFFFFF;
  --text-secondary: #E4E4E7;
  --text-tertiary: #A1A1AA;
  --text-muted: #71717A;

  --success: #22C55E;
  --info: #3B82F6;
  --warning: #F59E0B;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  font-family: inherit;
}

input,
select,
textarea {
  font-family: inherit;
}

/* ===== GLOBAL LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.015em;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

.text-orange {
  color: var(--orange-500);
}

.glow-text {
  text-shadow: 0 0 30px rgba(var(--orange-rgb), 0.5), 0 0 60px rgba(var(--orange-rgb), 0.3);
}

/* ===== SECTION LABELS ===== */
.section-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-500);
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-tertiary);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 48px;
}

/* ===== PARTICLES ===== */
.particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(var(--orange-rgb), 0.6);
  animation: float-particle 20s infinite ease-in-out;
}

@keyframes float-particle {

  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.3;
  }

  25% {
    transform: translate(80px, -100px);
    opacity: 0.8;
  }

  50% {
    transform: translate(-40px, -200px);
    opacity: 0.5;
  }

  75% {
    transform: translate(-80px, -100px);
    opacity: 0.7;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scale-in {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  25% {
    transform: translateY(-20px) rotate(2deg);
  }

  50% {
    transform: translateY(-10px) rotate(-2deg);
  }

  75% {
    transform: translateY(-30px) rotate(1deg);
  }
}

@keyframes gradient-shift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes pulse-glow-anim {

  0%,
  100% {
    box-shadow: 0 0 0 1px rgba(var(--orange-rgb), 0.5),
      0 4px 24px rgba(var(--orange-rgb), 0.4),
      0 0 60px rgba(var(--orange-rgb), 0.2);
  }

  50% {
    box-shadow: 0 0 0 2px rgba(var(--orange-rgb), 0.8),
      0 8px 40px rgba(var(--orange-rgb), 0.6),
      0 0 80px rgba(var(--orange-rgb), 0.4);
  }
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes spin-reverse {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

@keyframes scroll-line {
  0% {
    height: 0;
    opacity: 1;
  }

  100% {
    height: 60px;
    opacity: 0;
  }
}

/* ===== GLASS CARD ===== */
.glass-card {
  background: linear-gradient(135deg,
      rgba(var(--orange-rgb), 0.07) 0%,
      rgba(255, 255, 255, 0.03) 50%,
      rgba(var(--orange-rgb), 0.05) 100%);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(var(--orange-rgb), 0.12);
  border-radius: var(--radius-lg);
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.glass-card:hover {
  border-color: rgba(var(--orange-rgb), 0.25);
  box-shadow: 0 25px 50px -12px rgba(var(--orange-rgb), 0.2),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--orange-700) 0%, var(--orange-500) 40%, var(--orange-400) 100%);
  background-size: 200% 200%;
  animation: gradient-shift 4s ease infinite;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(var(--orange-rgb), 0.4), 0 4px 24px rgba(var(--orange-rgb), 0.3);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.1);
}

.pulse-glow {
  animation: gradient-shift 4s ease infinite, pulse-glow-anim 3s ease-in-out infinite;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-secondary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  padding: 16px 28px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(var(--orange-rgb), 0.08);
  border-color: rgba(var(--orange-rgb), 0.3);
  color: var(--orange-500);
  transform: translateY(-2px);
}

.btn-nav {
  background: var(--orange-500);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.btn-nav:hover {
  background: var(--orange-600);
  transform: translateY(-1px);
}

.btn-submit {
  width: 100%;
  justify-content: center;
  font-size: 1.125rem;
  padding: 18px 32px;
}

.btn-demo {
  font-size: 1.2rem;
  padding: 22px 40px;
  letter-spacing: 0.02em;
  box-shadow:
    0 0 0 1px rgba(var(--orange-rgb), 0.6),
    0 0 24px rgba(var(--orange-rgb), 0.5),
    0 0 60px rgba(var(--orange-rgb), 0.25),
    0 8px 32px rgba(var(--orange-rgb), 0.4);
  position: relative;
  overflow: hidden;
}

/* Shimmer sweep */
.btn-demo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 65%
  );
  background-size: 200% 100%;
  animation: btn-shimmer 2.4s ease-in-out infinite;
}

/* Outer glow ring */
.btn-demo::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: calc(var(--radius-md) + 4px);
  background: transparent;
  border: 2px solid rgba(var(--orange-rgb), 0.45);
  animation: ring-pulse 2.4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes btn-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@keyframes ring-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.03); }
}

.btn-demo:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 0 0 1px rgba(var(--orange-rgb), 0.8),
    0 0 32px rgba(var(--orange-rgb), 0.7),
    0 0 80px rgba(var(--orange-rgb), 0.35),
    0 12px 40px rgba(var(--orange-rgb), 0.5);
  filter: brightness(1.15);
}

.btn-xl {
  font-size: 1.25rem;
  padding: 20px 48px;
  border-radius: var(--radius-lg);
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(var(--orange-rgb), 0.1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  padding: 14px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.375rem;
  color: var(--text-primary);
}

.logo-icon {
  width: 36px;
  height: 36px;
}

.logo-icon svg {
  width: 100%;
  height: 100%;
}

.logo-text {
  letter-spacing: -0.02em;
}

/* ===== LOGO IMAGE ===== */
.logo-img {
  height: 52px;
  width: auto;
  display: block;
  /* mix-blend-mode: lighten hace que el fondo blanco desaparezca sobre negro */
  mix-blend-mode: lighten;
  transition: var(--transition);
}

.logo-img:hover {
  transform: scale(1.04);
  filter: drop-shadow(0 0 12px rgba(255, 102, 0, 0.6));
}

.logo-img-footer {
  height: 80px;
  mix-blend-mode: lighten;
}

.footer-logo-wrap {
  margin-bottom: 20px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-tertiary);
  position: relative;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange-500);
  transition: width 0.3s ease;
  border-radius: 999px;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 999px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 16px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.97);
  z-index: 999;
  padding: 100px 32px 48px;
  backdrop-filter: blur(24px);
}

.mobile-menu.open {
  display: flex;
}

.mobile-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-secondary);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

.mobile-link:hover {
  color: var(--orange-500);
  padding-left: 8px;
}

.mobile-cta {
  margin-top: 24px;
  justify-content: center;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(var(--orange-rgb), 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--orange-rgb), 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(var(--orange-rgb), 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(var(--orange-rgb), 0.08);
  border: 1px solid rgba(var(--orange-rgb), 0.2);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--orange-400);
  animation: fade-in-up 0.8s ease forwards;
  width: fit-content;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange-500);
  box-shadow: 0 0 8px rgba(var(--orange-rgb), 0.8);
  animation: pulse-glow-anim 2s ease-in-out infinite;
}

.hero-title {
  animation: fade-in-up 0.8s ease 0.1s both;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-tertiary);
  animation: fade-in-up 0.8s ease 0.2s both;
}

.hero-subtitle strong {
  color: var(--text-primary);
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fade-in-up 0.8s ease 0.3s both;
}

.hero-stats {
  display: flex;
  gap: 32px;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  animation: fade-in-up 0.8s ease 0.4s both;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange-500);
  display: inline;
}

.stat-unit {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--orange-500);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
}

/* ===== HERO VISUAL (ORB) ===== */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fade-in-up 1.2s ease 0.2s both;
}

.hero-orb {
  position: relative;
  width: 420px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 6s ease-in-out infinite;
}

.orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(var(--orange-rgb), 0.2);
}

.orb-ring-1 {
  width: 100%;
  height: 100%;
  animation: spin-slow 20s linear infinite;
}

.orb-ring-2 {
  width: 80%;
  height: 80%;
  animation: spin-reverse 15s linear infinite;
}

.orb-ring-3 {
  width: 60%;
  height: 60%;
  animation: spin-slow 10s linear infinite;
}

.orb-ring-1::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange-500);
  box-shadow: 0 0 12px rgba(var(--orange-rgb), 0.8);
}

.orb-ring-2::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange-400);
  box-shadow: 0 0 10px rgba(var(--orange-rgb), 0.7);
}

.orb-core {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(var(--orange-rgb), 0.15) 0%, rgba(var(--orange-rgb), 0.05) 60%, transparent 100%);
  border-radius: 50%;
  border: 1px solid rgba(var(--orange-rgb), 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(var(--orange-rgb), 0.2), inset 0 0 40px rgba(var(--orange-rgb), 0.1);
}

.orb-svg {
  width: 120px;
  height: 120px;
}

/* DATA CHIPS */
.data-chip {
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(var(--orange-rgb), 0.3);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(12px);
  white-space: nowrap;
}

.chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange-500);
  box-shadow: 0 0 6px rgba(var(--orange-rgb), 0.8);
}

.data-chip strong {
  color: var(--orange-400);
}

.chip-1 {
  top: 10%;
  right: -10%;
}

.chip-2 {
  bottom: 25%;
  right: -15%;
}

.chip-3 {
  top: 35%;
  left: -15%;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  animation: fade-in-up 1s ease 1s both;
}

.scroll-line {
  width: 1px;
  height: 0;
  background: linear-gradient(to bottom, var(--orange-500), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

/* ===== SOCIAL PROOF ===== */
.social-proof {
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 1;
}

.proof-label {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.proof-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.proof-logo {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.proof-logo:hover {
  color: var(--orange-500);
  border-color: rgba(var(--orange-rgb), 0.3);
  background: rgba(var(--orange-rgb), 0.05);
}

/* ===== PAIN SECTION ===== */
.pain-section {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.pain-card {
  padding: 32px;
  text-align: center;
  border-radius: var(--radius-lg);
}

.pain-stat {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--orange-500);
  line-height: 1;
  margin-bottom: 16px;
  text-shadow: 0 0 30px rgba(var(--orange-rgb), 0.4);
}

.pain-stat span {
  font-size: 2rem;
}

.pain-card h3 {
  font-size: 1.125rem;
  margin-bottom: 12px;
}

.pain-card p {
  color: var(--text-tertiary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.pain-tag {
  display: inline-block;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #ef4444;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.pain-solution-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 32px;
}

.solution-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.pain-solution-box strong {
  display: block;
  font-size: 1.125rem;
  margin-bottom: 8px;
  color: var(--orange-400);
}

.pain-solution-box p {
  color: var(--text-tertiary);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ===== HOW IT WORKS ===== */
.how-section {
  padding: 120px 0;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, transparent 0%, rgba(var(--orange-rgb), 0.02) 50%, transparent 100%);
}

.steps-container {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.step-card {
  flex: 1;
  min-width: 220px;
  max-width: 240px;
  padding: 28px 24px;
  text-align: center;
  position: relative;
}

.step-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--orange-500);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.step-icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 12px rgba(var(--orange-rgb), 0.3));
}

.step-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.tag {
  font-size: 0.7rem;
  font-weight: 500;
  background: rgba(var(--orange-rgb), 0.08);
  border: 1px solid rgba(var(--orange-rgb), 0.15);
  color: var(--orange-400);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.step-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 80px;
  color: var(--orange-500);
  opacity: 0.5;
}

.connector-line {
  width: 24px;
  height: 1px;
  background: var(--orange-500);
}

/* ===== SERVICES / FLIP CARDS ===== */
.services-section {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card-flip {
  height: 320px;
  perspective: 1000px;
  cursor: pointer;
}

.service-card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-flip:hover .service-card-inner,
.service-card-flip.flipped .service-card-inner {
  transform: rotateY(180deg);
}

.service-card-front,
.service-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-card-front {
  background: var(--bg-tertiary);
  border: 1px solid rgba(var(--orange-rgb), 0.1);
  display: flex;
  flex-direction: column;
}

.service-img-placeholder {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.s1 {
  background: radial-gradient(ellipse at center, rgba(var(--orange-rgb), 0.08) 0%, transparent 70%);
}

.s2 {
  background: radial-gradient(ellipse at center, rgba(var(--orange-rgb), 0.06) 0%, transparent 70%);
}

.s3 {
  background: radial-gradient(ellipse at center, rgba(var(--orange-rgb), 0.09) 0%, transparent 70%);
}

.s4 {
  background: radial-gradient(ellipse at center, rgba(var(--orange-rgb), 0.07) 0%, transparent 70%);
}

.s5 {
  background: radial-gradient(ellipse at center, rgba(var(--orange-rgb), 0.05) 0%, transparent 70%);
}

.s6 {
  background: radial-gradient(ellipse at center, rgba(var(--orange-rgb), 0.08) 0%, transparent 70%);
}

.service-overlay-front {
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.service-overlay-front h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.flip-hint {
  font-size: 0.7rem;
  color: var(--orange-400);
}

.service-card-back {
  transform: rotateY(180deg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.back-icon {
  font-size: 2rem;
}

.service-card-back h3 {
  font-size: 1rem;
}

.service-card-back p {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  line-height: 1.7;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.feature-tag {
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(var(--orange-rgb), 0.12);
  border: 1px solid rgba(var(--orange-rgb), 0.2);
  color: var(--orange-400);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

/* ===== NURTURING ===== */
.nurturing-section {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

.nurturing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.nurturing-text {
  font-size: 1.05rem;
  color: var(--text-tertiary);
  line-height: 1.8;
  margin-bottom: 28px;
}

.nurturing-quote {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  margin-bottom: 28px;
  background: rgba(var(--orange-rgb), 0.04);
  border-radius: var(--radius-md);
  border: 1px solid rgba(var(--orange-rgb), 0.1);
}

.quote-bar {
  width: 3px;
  background: var(--orange-500);
  border-radius: 2px;
  flex-shrink: 0;
}

.nurturing-quote p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.6;
}

.nurturing-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nurturing-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.li-icon {
  color: var(--orange-500);
  font-weight: 700;
  flex-shrink: 0;
}

.funnel-container {
  padding: 32px;
}

.funnel-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  text-align: center;
}

.funnel-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 4px;
}

.funnel-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.funnel-step strong {
  display: block;
  font-size: 0.875rem;
}

.funnel-step small {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.funnel-pct {
  margin-left: auto;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.funnel-pct.orange {
  color: var(--orange-500);
}

.funnel-arrow {
  text-align: center;
  color: var(--orange-500);
  padding: 4px 0;
  opacity: 0.5;
}

.funnel-result {
  margin-top: 16px;
  text-align: center;
  padding: 12px;
  border-radius: var(--radius-md);
  background: rgba(var(--orange-rgb), 0.08);
  border: 1px solid rgba(var(--orange-rgb), 0.2);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--orange-400);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 120px 0;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, transparent 0%, rgba(var(--orange-rgb), 0.02) 50%, transparent 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  padding: 32px;
}

.stars {
  color: var(--orange-500);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--orange-500);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(var(--orange-rgb), 0.3);
}

.testimonial-author strong {
  display: block;
  font-size: 0.875rem;
}

.testimonial-author span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===== CONTACT FORM ===== */
.contact-section {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

.contact-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(var(--orange-rgb), 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.form-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-group input,
.form-group select {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: #111;
  color: #fff;
}

.form-group input:focus,
.form-group select:focus {
  border-color: rgba(var(--orange-rgb), 0.5);
  background: rgba(var(--orange-rgb), 0.04);
  box-shadow: 0 0 0 3px rgba(var(--orange-rgb), 0.1);
}

.form-group input::placeholder {
  color: var(--text-muted);
}

.form-group input.input-error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.field-error {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  color: #f87171;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.radio-option input[type="radio"] {
  display: none;
}

.radio-custom {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.2);
  position: relative;
  transition: var(--transition);
}

.radio-option input[type="radio"]:checked+.radio-custom {
  border-color: var(--orange-500);
  background: var(--orange-500);
  box-shadow: 0 0 10px rgba(var(--orange-rgb), 0.4);
}

.radio-option input[type="radio"]:checked+.radio-custom::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #fff;
}

.form-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 48px 0;
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 16px;
}

.form-success h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--orange-400);
}

.form-success p {
  color: var(--text-tertiary);
  line-height: 1.7;
}

/* ===== CTA FINAL ===== */
.cta-final {
  padding: 120px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(var(--orange-rgb), 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.cta-subtitle {
  font-size: 1.125rem;
  color: var(--text-tertiary);
  margin-bottom: 40px;
}

.cta-disclaimer {
  margin-top: 20px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ===== FOOTER ===== */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.95rem;
  color: var(--text-tertiary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: var(--transition);
}

.social-btn:hover {
  border-color: rgba(var(--orange-rgb), 0.4);
  color: var(--orange-500);
  background: rgba(var(--orange-rgb), 0.08);
}

.footer-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--orange-500);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-seo {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-container {
    gap: 48px;
  }

  .hero-orb {
    width: 340px;
    height: 340px;
  }

  .pain-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-badge {
    margin: 0 auto;
  }

  .hero-ctas {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-orb {
    width: 280px;
    height: 280px;
  }

  .chip-1 {
    top: 0;
    right: 5%;
  }

  .chip-2 {
    display: none;
  }

  .chip-3 {
    top: auto;
    bottom: 0;
    left: 5%;
  }

  .pain-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .nurturing-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-logo-wrap {
    display: flex;
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    text-align: center;
    align-items: center;
  }

  .steps-container {
    flex-direction: column;
    align-items: center;
  }

  .step-connector {
    flex-direction: row;
    padding-top: 0;
  }

  .step-card {
    max-width: 100%;
  }

  .particle:nth-child(n+20) {
    display: none;
  }

  .section-subtitle {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero {
    padding-top: 100px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .form-container {
    padding: 28px 20px;
  }
}

/* ===== BLOG SECTION ===== */
.blog-section {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: var(--radius-lg);
}

.blog-tag {
  display: inline-block;
  background: rgba(var(--orange-rgb), 0.1);
  border: 1px solid rgba(var(--orange-rgb), 0.2);
  color: var(--orange-400);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  width: fit-content;
}

.blog-title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--text-primary);
  transition: var(--transition);
}

.blog-card:hover .blog-title {
  color: var(--orange-400);
}

.blog-excerpt {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  line-height: 1.75;
  flex: 1;
}

.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--orange-500);
  transition: var(--transition);
  width: fit-content;
}

.blog-link:hover {
  gap: 10px;
  color: var(--orange-400);
}

/* ===== PRICING SECTION ===== */
.pricing-section {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  margin-top: 56px;
}

.pricing-card {
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: var(--transition);
}

.pricing-card--featured {
  border: 2px solid var(--orange-500) !important;
  box-shadow: 0 0 40px rgba(var(--orange-rgb), 0.25), 0 25px 50px -12px rgba(var(--orange-rgb), 0.2);
  transform: translateY(-12px);
}

.pricing-card--featured:hover {
  box-shadow: 0 0 60px rgba(var(--orange-rgb), 0.4), 0 30px 60px -12px rgba(var(--orange-rgb), 0.3);
  transform: translateY(-16px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--orange-700) 0%, var(--orange-500) 100%);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(var(--orange-rgb), 0.4);
}

.pricing-plan-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-400);
}

.pricing-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-wrap: wrap;
}

.pricing-currency {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--orange-400);
  margin-top: 2px;
}

.pricing-period {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 4px;
}

.pricing-price--custom {
  font-size: 2rem;
  color: var(--orange-400);
  display: block;
}

.pricing-description {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  line-height: 1.7;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 20px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.feat-check {
  color: var(--orange-400);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.feat-muted {
  color: var(--text-muted);
  opacity: 0.4;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-features li:has(.feat-muted) {
  opacity: 0.45;
}

.btn-pricing-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text-secondary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
  margin-top: auto;
}

.btn-pricing-secondary:hover {
  background: rgba(var(--orange-rgb), 0.08);
  border-color: rgba(var(--orange-rgb), 0.35);
  color: var(--orange-400);
  transform: translateY(-2px);
}

.pricing-cta {
  justify-content: center;
  margin-top: auto;
  font-size: 0.95rem;
}

.pricing-footer-note {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}

.pricing-guarantee {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(var(--orange-rgb), 0.07);
  border: 1px solid rgba(var(--orange-rgb), 0.18);
  border-radius: var(--radius-lg);
  padding: 24px 36px;
  max-width: 640px;
  text-align: center;
}

.pricing-guarantee-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.pricing-guarantee p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

.pricing-guarantee strong {
  color: var(--orange-400);
}

/* Pricing responsive */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card--featured {
    transform: none;
    order: -1;
  }

  .pricing-card--featured:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 600px) {
  .pricing-section {
    padding: 80px 0;
  }

  .pricing-card {
    padding: 32px 24px;
  }

  .pricing-guarantee {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
@keyframes wa-pulse {
  0% {
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.4);
  }

  70% {
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 16px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  animation: wa-pulse 2.5s ease-in-out infinite;
  transition: var(--transition);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.wa-tooltip {
  position: absolute;
  right: 70px;
  background: #111;
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: var(--transition);
}

.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }

  .wa-tooltip {
    display: none;
  }
}