/* =============================================
   CSS CUSTOM PROPERTIES
============================================= */
:root {
  --primary: #6c3cf7;
  --primary-dark: #5429e0;
  --primary-light: #8b5cf6;
  --accent: #7c5cfd;
  --hero-bg: #2d1b69;
  --hero-bg2: #1a0e42;
  --dark-navy: #0f172a;
  --dark-card: #1e293b;
  --white: #ffffff;
  --light-bg: #f8f9fc;
  --text-dark: #1e293b;
  --text-body: #475569;
  --text-muted: #94a3b8;
  --border: #e2e8f0;
  --border-dark: #334155;
  --success: #10b981;
  --warning: #f59e0b;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c7e;
  --cta-gradient: linear-gradient(135deg, #4a1fa8 0%, #6c3cf7 50%, #8b5cf6 100%);
  --hero-gradient: linear-gradient(135deg, #1a0e42 0%, #2d1b69 40%, #4a2090 70%, #6c3cf7 100%);
  --card-shadow: 0 4px 24px rgba(108,60,247,0.08);
  --hover-shadow: 0 12px 40px rgba(108,60,247,0.18);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --radius: 12px;
  --radius-lg: 20px;
  --font-head: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; outline: none; }
input, textarea, select { font-family: var(--font-body); outline: none; }
section { position: relative; }

/* =============================================
   UTILITY
============================================= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 72px 0; }

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(108,60,247,0.1); color: var(--primary);
  border: 1px solid rgba(108,60,247,0.25);
  padding: 6px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.badge-hero {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  padding: 8px 18px;
  line-height: 1;
}
.badge-hero .dot { align-self: center; }
.rotator-prefix {
  color: rgba(255,255,255,0.85);
  line-height: 1;
}
.rotator {
  display: inline-flex;
  align-items: center;
  position: relative;
  min-width: 110px;
  height: 1em;
  line-height: 1;
  overflow: hidden;
  vertical-align: middle;
}
.rotator-item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  white-space: nowrap;
  font-weight: 800;
  line-height: 1;
  opacity: 0;
  transform: translateY(100%);
  background: linear-gradient(135deg, #fff 0%, #ddd6fe 55%, #a78bfa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: rotatorSpin 12s cubic-bezier(0.65, 0, 0.35, 1) infinite;
  will-change: transform, opacity, filter;
}
.rotator-item:nth-child(1) { animation-delay: 0s; }
.rotator-item:nth-child(2) { animation-delay: 2s; }
.rotator-item:nth-child(3) { animation-delay: 4s; }
.rotator-item:nth-child(4) { animation-delay: 6s; }
.rotator-item:nth-child(5) { animation-delay: 8s; }
.rotator-item:nth-child(6) { animation-delay: 10s; }
@keyframes rotatorSpin {
  0%      { opacity: 0; transform: translateY(100%); filter: blur(3px); }
  4%, 14% { opacity: 1; transform: translateY(0);    filter: blur(0); }
  18%, 100% { opacity: 0; transform: translateY(-100%); filter: blur(3px); }
}
@media (prefers-reduced-motion: reduce) {
  .rotator-item { animation: none; opacity: 1; transform: none; filter: none; }
  .rotator-item:not(:first-child) { display: none; }
}
.badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--success); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }

.badge-light {
  display: inline-block; background: rgba(108,60,247,0.15);
  color: var(--primary-light); border: 1px solid rgba(139,92,246,0.3);
  padding: 4px 14px; border-radius: 100px;
  font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 16px;
}
.badge-light.badge-light-primary {
  background: rgba(108,60,247,0.08);
  color: var(--primary);
}
.badge-light.badge-left {
  text-align: left;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800; line-height: 1.15;
  color: var(--text-dark); margin-bottom: 16px;
}
.section-title.white { color: var(--white); }
.section-title span { color: var(--primary); }
.section-subtitle {
  font-size: 17px; color: var(--text-body);
  max-width: 620px; line-height: 1.7; margin: 0 auto;
}
.section-subtitle.white { color: rgba(255,255,255,0.75); }
.section-head { text-align: center; margin-bottom: 56px; }

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius);
  font-size: 15px; font-weight: 600; transition: var(--transition);
  position: relative; overflow: hidden; white-space: nowrap;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.15); opacity: 0;
  transition: var(--transition);
}
.btn:hover::before { opacity: 1; }
.btn-primary {
  background: var(--primary); color: var(--white);
  box-shadow: 0 4px 16px rgba(108,60,247,0.35);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(108,60,247,0.45); }
.btn-outline {
  background: transparent; color: var(--text-dark);
  border: 2px solid var(--border);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.btn-outline-white {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: white; }
.btn-white {
  background: white; color: var(--primary); border: 2px solid white;
}
.btn-white:hover { background: transparent; color: white; transform: translateY(-2px); }
.btn-whatsapp {
  background: var(--whatsapp); color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover { background: var(--whatsapp-dark); transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; }
.btn-radius-10 { border-radius: 10px; }

/* =============================================
   NAVBAR
============================================= */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: var(--transition);
  background: #F6F6F9;
}
#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  backdrop-filter: blur(12px);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; gap: 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo-icon {
  width: 40px; height: 40px; background: var(--primary);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 20px; font-weight: 800; color: white;
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-text strong {
  font-size: 16px; font-weight: 800; color: var(--text-dark);
  font-family: var(--font-head); line-height: 1.1;
}
.nav-logo-text span { font-size: 11px; color: var(--text-muted); font-weight: 500; }
.nav-links {
  display: flex; align-items: center; gap: 4px; list-style: none;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 14px; border-radius: 8px;
  font-size: 14px; font-weight: 600; color: var(--text-dark);
  transition: var(--transition); white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--primary); background: rgba(108,60,247,0.06); }
.nav-links > li > a svg { width: 14px; height: 14px; transition: transform 0.3s; }
.nav-links > li:hover > a svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  margin-top: 14px;
  background: #ffffff; border-radius: 14px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12), 0 4px 16px rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(226, 232, 240, 0.8);
  min-width: 260px; padding: 10px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 200;
}
/* Invisible bridge so the cursor can travel from menu link to dropdown without losing :hover */
.dropdown::before {
  content: ''; position: absolute;
  top: -16px; left: 0; right: 0; height: 16px;
  background: transparent;
}
.nav-links > li:hover .dropdown,
.nav-links > li.open .dropdown,
.nav-links > li:focus-within .dropdown {
  opacity: 1; visibility: visible; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-links > li.open > a { color: var(--primary); background: rgba(108,60,247,0.06); }
.nav-links > li.open > a svg { transform: rotate(180deg); }
.dropdown a {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px; border-radius: 10px;
  font-size: 14px; font-weight: 500; color: var(--text-dark);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.dropdown a:hover {
  background: rgba(108,60,247,0.07);
  color: var(--primary);
  transform: translateX(4px);
}
.dropdown a .dd-icon {
  width: 34px; height: 34px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
  transition: transform 0.2s ease;
}
.dropdown a:hover .dd-icon { transform: scale(1.08); }
.dd-bg-blue { background: #eff6ff; }
.dd-bg-pink { background: #fdf4ff; }
.dd-bg-amber { background: #fff7ed; }
.dd-bg-green { background: #f0fdf4; }
.dd-bg-yellow { background: #fefce8; }
.dd-bg-rose { background: #fff1f2; }
.dd-bg-sky { background: #f0f9ff; }
.dd-bg-fuchsia { background: #fdf2f8; }

.nav-cta { margin-left: 8px; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; padding: 8px; cursor: pointer;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text-dark); border-radius: 2px; transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none; position: fixed; top: 73px; left: 0; right: 0;
  background: white; z-index: 999;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  padding: 16px 0 24px; max-height: calc(100vh - 73px); overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; padding: 12px 24px;
  font-size: 15px; font-weight: 600; color: var(--text-dark);
  border-bottom: 1px solid var(--border); transition: var(--transition);
}
.mobile-nav a:hover { color: var(--primary); background: rgba(108,60,247,0.04); }
.mobile-nav .mobile-cta { margin: 16px 24px 0; }

/* =============================================
   HERO
============================================= */
#hero {
  background: var(--hero-gradient);
  min-height: 100vh; padding: 140px 0 80px;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
#hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(108,60,247,0.35) 0%, transparent 70%);
}
#hero::after {
  content: ''; position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,92,253,0.25) 0%, transparent 70%);
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; position: relative; z-index: 2;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800; line-height: 1.1;
  color: white; margin-bottom: 20px;
}
.hero-title span { color: #a78bfa; display: block; }
.hero-desc {
  font-size: 18px; color: rgba(255,255,255,0.8);
  line-height: 1.7; margin-bottom: 36px; max-width: 480px;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 24px; align-items: center;
}
.hero-stat {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: rgba(255,255,255,0.8); font-weight: 500;
}
.hero-stat svg { width: 18px; height: 18px; color: var(--success); flex-shrink: 0; }

.hero-right { position: relative; }
.hero-img-wrap {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: 0 32px 80px rgba(0,0,0,0.4);
}
.hero-img-wrap img { width: 100%; height: 420px; object-fit: cover; }
.hero-badge-float {
  position: absolute; background: white; border-radius: var(--radius);
  padding: 14px 20px; box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  display: flex; align-items: center; gap: 12px;
}
.hero-badge-float.top-right { top: -5px; right: -5px; }
.hero-badge-float.bottom-left { bottom: -5px; left: -5px; }
.hero-badge-float.accent-purple { background: #7c3aed; color: #fff; }
.hero-badge-float .badge-num {
  font-family: var(--font-head); font-size: 28px; font-weight: 800;
  color: var(--primary); line-height: 1;
}
.hero-badge-float.accent-purple .badge-num { color: #fff; }
.hero-badge-float .badge-lbl { font-size: 12px; color: var(--text-body); font-weight: 600; }
.hero-badge-float.accent-purple .badge-lbl { color: rgba(255,255,255,0.85); }
.hero-badge-float .badge-icon {
  width: 36px; height: 36px; background: rgba(108,60,247,0.1);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.scroll-down {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.6); font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 600; z-index: 3;
  animation: bounce 2s infinite;
}
.scroll-down::after {
  content: ''; display: block; width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(-6px)} }

/* =============================================
   PLATFORMS MARQUEE
============================================= */
#platforms {
  background: var(--white); padding: 40px 0;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.platforms-label {
  text-align: center; font-size: 13px; font-weight: 600;
  color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 24px;
}
.platforms-track {
  display: flex; overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}
.platforms-logos {
  display: flex; align-items: center; flex-shrink: 0;
  gap: 56px; padding-right: 56px;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.platforms-track:hover .platforms-logos { animation-play-state: paused; }
.platform-logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-size: 18px; font-weight: 700;
  color: var(--text-dark); letter-spacing: -0.5px; opacity: 0.85;
  transition: var(--transition); cursor: default;
  padding: 8px 18px; border: 1px solid var(--border);
  border-radius: 100px; background: var(--light-bg);
}
.platform-logo .platform-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--primary);
  box-shadow: 0 0 0 4px rgba(108,60,247,0.12);
  animation: platformPulse 1.8s ease-in-out infinite;
}
.platform-logo:hover {
  opacity: 1; color: var(--primary); border-color: var(--primary);
  background: rgba(108,60,247,0.06);
  transform: translateY(-2px);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes platformPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

/* =============================================
   TOP PRO SERVICES (Featured)
============================================= */
#top-services { background: var(--white); padding: 96px 0 48px; }
.pro-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pro-card {
  position: relative; background: white;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 44px 36px 36px; overflow: hidden;
  transition: var(--transition);
}
.pro-card::after {
  content: ''; position: absolute; inset: auto 0 0 0; height: 4px;
  background: var(--cta-gradient); transform: scaleX(0);
  transform-origin: left; transition: transform 0.5s ease;
}
.pro-card:hover { transform: translateY(-8px); box-shadow: var(--hover-shadow); border-color: transparent; }
.pro-card:hover::after { transform: scaleX(1); }
.pro-card.featured {
  background: linear-gradient(135deg, #1a0e42 0%, #2d1b69 60%, #4a2090 100%);
  color: #fff; border-color: transparent;
}
.pro-card.featured .pro-title,
.pro-card.featured .pro-desc,
.pro-card.featured .pro-features li { color: #fff; }
.pro-card.featured .pro-desc { color: rgba(255,255,255,0.8); }
.pro-card.featured .pro-features li::before { background: #fff; }
.pro-card.featured .btn-outline { color: #fff; border-color: rgba(255,255,255,0.4); }
.pro-card.featured .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.pro-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--primary); color: #fff;
  font-size: 11px; font-weight: 800; letter-spacing: 1px;
  padding: 5px 12px; border-radius: 100px;
}
.pro-card.featured .pro-badge { background: #fff; color: var(--primary); }
.pro-icon {
  width: 72px; height: 72px; border-radius: 18px;
  background: rgba(108,60,247,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; margin-bottom: 22px;
}
.pro-card.featured .pro-icon { background: rgba(255,255,255,0.15); }
.pro-title {
  font-family: var(--font-head); font-size: 24px; font-weight: 800;
  color: var(--text-dark); margin-bottom: 12px; line-height: 1.2;
}
.pro-desc {
  font-size: 15px; color: var(--text-body);
  line-height: 1.7; margin-bottom: 22px;
}
.pro-features { margin-bottom: 28px; }
.pro-features li {
  font-size: 14px; color: var(--text-body); padding: 4px 0;
  display: flex; align-items: center; gap: 8px;
}
.pro-features li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary); flex-shrink: 0;
}
.pro-cta { display: inline-flex; width: 100%; justify-content: center; }

/* =============================================
   SERVICES
============================================= */
#services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  transition: var(--transition); cursor: pointer; position: relative;
  overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--primary); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--hover-shadow); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
}
.service-icon.bg-blue { background: #eff6ff; }
.service-icon.bg-pink { background: #fdf4ff; }
.service-icon.bg-amber { background: #fff7ed; }
.service-icon.bg-green { background: #f0fdf4; }
.service-icon.bg-yellow { background: #fefce8; }
.service-icon.bg-rose { background: #fff1f2; }
.service-icon.bg-sky { background: #f0f9ff; }
.service-icon.bg-fuchsia { background: #fdf2f8; }
.service-title {
  font-family: var(--font-head); font-size: 17px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 10px;
}
.service-desc { font-size: 14px; color: var(--text-body); line-height: 1.65; margin-bottom: 16px; }
.service-features { margin-bottom: 20px; }
.service-features li {
  font-size: 13px; color: var(--text-body); padding: 3px 0;
  display: flex; align-items: center; gap: 7px;
}
.service-features li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary); flex-shrink: 0;
}
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--primary);
  transition: var(--transition);
}
.service-link:hover { gap: 10px; }
.services-cta { text-align: center; margin-top: 48px; }
.services-cta p { margin-bottom: 16px; color: var(--text-body); }

/* =============================================
   WHY CHOOSE US
============================================= */
#why { background: var(--light-bg); }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-bottom: 60px;
}
.why-card {
  background: white; border-radius: var(--radius-lg);
  padding: 32px; border: 1px solid var(--border);
  transition: var(--transition);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--hover-shadow); }
.why-icon {
  width: 52px; height: 52px; background: rgba(108,60,247,0.1);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 16px;
}
.why-title {
  font-family: var(--font-head); font-size: 18px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 8px;
}
.why-desc { font-size: 14px; color: var(--text-body); line-height: 1.65; }

/* Stats row */
.stats-row {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 0; background: white; border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow); border: 1px solid var(--border); overflow: hidden;
}
.stat-item {
  padding: 36px 24px; text-align: center;
  border-right: 1px solid var(--border); position: relative;
  transition: var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(108,60,247,0.03); }
.stat-num {
  font-family: var(--font-head); font-size: 48px; font-weight: 800;
  color: var(--primary); line-height: 1; margin-bottom: 8px;
}
.stat-label { font-size: 14px; color: var(--text-body); font-weight: 500; }

/* =============================================
   PORTFOLIO
============================================= */
#portfolio { background: white; }
.portfolio-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 28px;
}
.portfolio-card {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--card-shadow); border: 1px solid var(--border);
  transition: var(--transition); background: white;
}
.portfolio-card:hover { transform: translateY(-6px); box-shadow: var(--hover-shadow); }
.portfolio-img {
  position: relative; height: 220px; overflow: hidden;
}
.portfolio-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.portfolio-card:hover .portfolio-img img { transform: scale(1.05); }
.portfolio-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(108,60,247,0.7), transparent);
  opacity: 0; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.portfolio-card:hover .portfolio-img-overlay { opacity: 1; }
.portfolio-img-overlay a {
  background: white; color: var(--primary);
  padding: 10px 20px; border-radius: var(--radius);
  font-size: 14px; font-weight: 600;
  transform: translateY(10px); transition: var(--transition);
}
.portfolio-card:hover .portfolio-img-overlay a { transform: translateY(0); }
.portfolio-body { padding: 20px 24px 24px; }
.portfolio-cat {
  font-size: 12px; font-weight: 700; color: var(--primary);
  text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px;
}
.portfolio-title {
  font-family: var(--font-head); font-size: 18px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 8px;
}
.portfolio-title a {
  color: inherit; transition: var(--transition);
  display: inline-flex; align-items: center; gap: 6px;
}
.portfolio-title a::after {
  content: '↗'; font-size: 14px; opacity: 0; transition: var(--transition);
  color: var(--primary);
}
.portfolio-card:hover .portfolio-title a { color: var(--primary); }
.portfolio-card:hover .portfolio-title a::after { opacity: 1; }
.portfolio-desc { font-size: 14px; color: var(--text-body); line-height: 1.6; }
.portfolio-cta { text-align: center; margin-top: 48px; }

/* =============================================
   TESTIMONIALS
============================================= */
#testimonials { background: var(--light-bg); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card {
  background: white; border-radius: var(--radius-lg);
  padding: 32px; border: 1px solid var(--border);
  position: relative; transition: var(--transition);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--hover-shadow); }
.testi-quote {
  font-size: 60px; line-height: 0.8; color: var(--border);
  font-family: Georgia, serif; margin-bottom: 16px;
}
.testi-stars { display: flex; gap: 4px; margin-bottom: 14px; color: var(--warning); font-size: 18px; }
.testi-text { font-size: 15px; color: var(--text-body); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary); display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; color: white; flex-shrink: 0;
}
.testi-avatar.avatar-sky { background: #0ea5e9; }
.testi-avatar.avatar-amber { background: #f59e0b; }
.testi-name { font-weight: 700; font-size: 15px; color: var(--text-dark); }
.testi-role { font-size: 13px; color: var(--text-muted); }

/* =============================================
   CTA BANNER
============================================= */
#cta-banner {
  background: var(--hero-gradient); padding: 100px 0;
  text-align: center; position: relative; overflow: hidden;
}
#cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(108,60,247,0.4), transparent);
}
.cta-inner { position: relative; z-index: 2; }
.cta-title {
  font-family: var(--font-head); font-size: clamp(30px,4vw,52px);
  font-weight: 800; color: white; line-height: 1.2; margin-bottom: 16px;
}
.cta-title span { color: #a78bfa; }
.cta-desc { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 36px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.cta-perks {
  display: flex; gap: 32px; justify-content: center; flex-wrap: wrap;
}
.cta-perk {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: rgba(255,255,255,0.8); font-weight: 500;
}
.cta-perk svg { width: 16px; height: 16px; color: var(--success); }

/* =============================================
   CONTACT FORM
============================================= */
#contact { background: white; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.contact-heading {
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.contact-heading span { color: var(--primary); }
.contact-lead {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 36px;
}
.contact-detail { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(108,60,247,0.08); display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0; transition: var(--transition);
}
.contact-item:hover .contact-icon { background: var(--primary); }
.contact-item-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--text-dark); }
.contact-item-text span { font-size: 14px; color: var(--text-body); }
.contact-item-text a { color: var(--primary); }
.contact-item-text a:hover { text-decoration: underline; }

.contact-form {
  background: var(--light-bg); border-radius: var(--radius-lg);
  padding: 40px; border: 1px solid var(--border);
}
.contact-form h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-dark);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 14px; font-weight: 600;
  color: var(--text-dark); margin-bottom: 8px;
}
.form-group label span { color: #ef4444; }
.form-control {
  width: 100%; padding: 13px 16px;
  border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 14px; color: var(--text-dark); background: white;
  transition: var(--transition);
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(108,60,247,0.1); }
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control { appearance: none; cursor: pointer; }
.form-submit { width: 100%; margin-top: 8px; justify-content: center; }

/* Honeypot — hide from humans, visible to bots */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* Human verification (math challenge) */
.form-captcha label {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
}
.captcha-question {
  display: inline-block;
  padding: 4px 10px;
  background: #f3f4ff;
  border: 1px solid #d6d3ff;
  border-radius: 6px;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Courier New', monospace;
  letter-spacing: 0.5px;
  user-select: none;
}
.captcha-hint {
  margin: 6px 0 0;
  min-height: 18px;
  font-size: 13px;
  color: #ef4444;
  font-weight: 600;
}

.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 10px;
  color: #166534;
  font-weight: 600;
  font-size: 14px;
}
.form-success.show { display: block; }

/* =============================================
   FOOTER
============================================= */
#footer { background: var(--dark-navy); color: white; }
.footer-main { padding: 72px 0 48px; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.footer-logo {
  display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
}
.footer-logo-icon {
  width: 40px; height: 40px; background: var(--primary);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 20px; font-weight: 800; color: white;
}
.footer-logo-text strong { display: block; font-size: 16px; font-weight: 800; font-family: var(--font-head); }
.footer-logo-text span { font-size: 11px; color: rgba(255,255,255,0.5); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 24px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.social-link:hover { background: var(--primary); border-color: var(--primary); color: white; transform: translateY(-2px); }
.social-link.whatsapp:hover { background: var(--whatsapp); border-color: var(--whatsapp); }

.clutch-badge {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 18px; padding: 10px 14px;
  background: #17313B; border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.clutch-badge:hover {
  background: #1f3f4c; transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(230,36,21,0.25);
  border-color: rgba(230,36,21,0.4);
}
.clutch-badge-label {
  font-size: 10px; letter-spacing: 1.2px; text-transform: uppercase;
  color: rgba(255,255,255,0.65); font-weight: 600;
}
.clutch-badge-brand {
  display: inline-flex; align-items: center; gap: 6px;
  color: #fff; font-weight: 800; font-size: 15px;
  font-family: var(--font-head); letter-spacing: 0.2px;
}
.clutch-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #E62415;
  box-shadow: 0 0 0 3px rgba(230,36,21,0.25);
}
.clutch-badge-stars {
  color: #E62415; font-size: 14px; letter-spacing: 1px;
  margin-left: auto;
}

.footer-col h4 {
  font-family: var(--font-head); font-size: 15px; font-weight: 700;
  color: white; margin-bottom: 20px; padding-bottom: 10px;
  border-bottom: 2px solid rgba(108,60,247,0.4);
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 14px; color: rgba(255,255,255,0.6);
  transition: var(--transition); display: flex; align-items: center; gap: 6px;
}
.footer-links a::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: rgba(108,60,247,0.5); flex-shrink: 0; transition: var(--transition);
}
.footer-links a:hover { color: white; padding-left: 4px; }
.footer-links a:hover::before { background: var(--primary); }

.footer-contact { display: flex; flex-direction: column; gap: 14px; font-style: normal; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.5;
}
.footer-contact-item span:first-child { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.footer-contact-item a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-contact-item a:hover { color: #fff; }

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.5); }

/* Email reveal button */
.email-reveal {
  background: none; border: none; padding: 0;
  color: var(--primary); font-family: var(--font-body);
  font-weight: 600; font-size: 14px; cursor: pointer;
  text-decoration: none; transition: var(--transition);
}
.email-reveal:hover { text-decoration: underline; }
.footer-contact .email-reveal { color: rgba(255,255,255,0.6); font-weight: 500; }
.footer-contact .email-reveal:hover { color: #fff; }

/* =============================================
   BACK TO TOP & WHATSAPP FLOAT
============================================= */
#back-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 44px; height: 44px; background: var(--primary);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 900; box-shadow: 0 4px 16px rgba(108,60,247,0.4);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: var(--transition);
}
#back-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
#back-top:hover { background: var(--primary-dark); transform: translateY(-2px); }
#back-top svg { width: 20px; height: 20px; color: white; }

.whatsapp-float {
  position: fixed; bottom: 28px; left: 28px;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--whatsapp); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  z-index: 900; transition: var(--transition);
}
.whatsapp-float:hover { background: var(--whatsapp-dark); transform: translateY(-2px) scale(1.05); }
.whatsapp-float svg { width: 28px; height: 28px; }
.whatsapp-float::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--whatsapp);
  animation: ripple 1.8s ease-out infinite;
}
@keyframes ripple {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* =============================================
   ANIMATIONS
============================================= */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pro-grid { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: none; }
  .hero-title { font-size: 42px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item { border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .section-pad { padding: 64px 0; }
  .why-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .platforms-logos { gap: 20px; }
  .whatsapp-float { width: 50px; height: 50px; bottom: 20px; left: 20px; }
  .whatsapp-float svg { width: 24px; height: 24px; }
  #back-top { bottom: 20px; right: 20px; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   CRO ADDITIONS — Urgency, Process, Pricing, FAQ, Guarantees
============================================= */

/* Section background variant for visual rhythm */
.section-alt { background: #f8f9fc; }

/* Pulse dot used in urgency badges */
.pulse-dot {
  display: inline-block; width: 8px; height: 8px;
  border-radius: 50%; background: #22c55e;
  position: relative; flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* Hero urgency badge */
.hero-urgency {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px; border-radius: 999px;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff; font-size: 14px; margin-bottom: 24px;
}
.hero-urgency strong { color: #a7f3d0; font-weight: 700; }

/* CTA banner urgency */
.cta-urgency {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.25);
  color: #fff; font-size: 14px; margin-bottom: 18px;
}
.cta-urgency strong { color: #fde68a; font-weight: 700; }

/* =============================================
   PROCESS
============================================= */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 48px;
}
.process-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 32px 24px; border: 1px solid var(--border);
  position: relative; transition: var(--transition);
}
.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(108, 60, 247, 0.12);
  border-color: rgba(108, 60, 247, 0.3);
}
.process-num {
  font-family: var(--font-head); font-size: 48px; font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1; margin-bottom: 16px;
}
.process-icon { font-size: 32px; margin-bottom: 12px; }
.process-title {
  font-family: var(--font-head); font-size: 18px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 10px;
}
.process-desc { font-size: 14px; color: var(--text-body); line-height: 1.6; margin-bottom: 16px; }
.process-time {
  display: inline-block; font-size: 12px; font-weight: 600;
  color: var(--primary); background: rgba(108, 60, 247, 0.08);
  padding: 6px 12px; border-radius: 999px;
}

/* =============================================
   PRICING
============================================= */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  margin-top: 48px; align-items: stretch;
}
.pricing-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 36px 28px; border: 2px solid var(--border);
  display: flex; flex-direction: column;
  position: relative; transition: var(--transition);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
}
.pricing-featured {
  border-color: var(--primary);
  box-shadow: 0 24px 60px rgba(108, 60, 247, 0.18);
  transform: translateY(-8px);
}
.pricing-featured:hover { transform: translateY(-12px); }
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: #fff;
  padding: 6px 16px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
}
.pricing-tier {
  font-family: var(--font-head); font-size: 14px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--text-muted); margin-bottom: 16px;
}
.pricing-price {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 12px;
}
.pricing-from { font-size: 14px; color: var(--text-muted); font-weight: 500; }
.pricing-amount {
  font-family: var(--font-head); font-size: 40px; font-weight: 800;
  color: var(--text-dark); line-height: 1;
}
.pricing-best {
  font-size: 13px; color: var(--text-muted); margin-bottom: 24px;
  padding-bottom: 24px; border-bottom: 1px solid var(--border);
}
.pricing-features {
  list-style: none; padding: 0; margin: 0 0 28px;
  flex: 1;
}
.pricing-features li {
  font-size: 14px; color: var(--text-body); line-height: 1.6;
  padding: 8px 0;
}
.pricing-cta { width: 100%; }
.pricing-note {
  text-align: center; margin-top: 32px;
  font-size: 14px; color: var(--text-body);
  background: #fff; padding: 16px 24px;
  border-radius: var(--radius); border: 1px dashed var(--border);
  max-width: 720px; margin-left: auto; margin-right: auto;
}

/* Currency toggle */
.currency-toggle {
  display: inline-flex; gap: 4px; padding: 4px;
  background: #fff; border: 1px solid var(--border);
  border-radius: 999px; margin-top: 24px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}
.currency-btn {
  padding: 8px 20px; border-radius: 999px; border: none;
  background: transparent; color: var(--text-muted);
  font-size: 13px; font-weight: 600; cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
  font-family: var(--font-body);
}
.currency-btn:hover { color: var(--text-dark); }
.currency-btn.active {
  background: var(--primary); color: #fff;
  box-shadow: 0 4px 12px rgba(108, 60, 247, 0.25);
}
.pricing-amount {
  transition: opacity 0.2s ease;
}

/* =============================================
   FAQ
============================================= */
.faq-list {
  max-width: 800px; margin: 48px auto 0;
  display: flex; flex-direction: column; gap: 12px;
}
.faq-item {
  background: #fff; border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
  overflow: hidden;
}
.faq-item[open] {
  border-color: rgba(108, 60, 247, 0.3);
  box-shadow: 0 8px 24px rgba(108, 60, 247, 0.08);
}
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 18px 24px; cursor: pointer;
  font-size: 16px; font-weight: 600; color: var(--text-dark);
  list-style: none; user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::marker { content: ''; }
.faq-q:hover { color: var(--primary); }
.faq-icon {
  position: relative;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(108, 60, 247, 0.08); color: var(--primary);
  flex-shrink: 0;
  font-size: 0; /* hide the literal "+" text */
  transition: background 0.25s ease, color 0.25s ease, transform 0.3s ease;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s ease;
}
.faq-icon::before {
  width: 12px; height: 2px;
  transform: translate(-50%, -50%);
}
.faq-icon::after {
  width: 2px; height: 12px;
  transform: translate(-50%, -50%);
}
.faq-item[open] .faq-icon {
  background: var(--primary); color: #fff;
  transform: rotate(135deg);
}
.faq-a {
  padding: 0 24px 22px; font-size: 15px;
  color: var(--text-body); line-height: 1.7;
}
.faq-a a { color: var(--primary); font-weight: 600; text-decoration: underline; }
.faq-cta {
  text-align: center; margin-top: 40px;
}
.faq-cta p {
  font-size: 16px; color: var(--text-body); margin-bottom: 16px;
}

/* =============================================
   CTA GUARANTEES
============================================= */
.cta-guarantees {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: 32px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.cta-guarantee {
  display: flex; align-items: center; gap: 12px;
  text-align: left;
}
.cta-guarantee-icon {
  font-size: 28px; flex-shrink: 0;
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.15); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.cta-guarantee strong {
  display: block; font-size: 14px; font-weight: 700;
  color: #fff; margin-bottom: 2px;
}
.cta-guarantee span {
  font-size: 12px; color: rgba(255,255,255,0.75);
}

/* =============================================
   TESTIMONIAL UPGRADES
============================================= */
.testi-meta {
  margin-top: 16px; padding-top: 16px;
  border-top: 1px dashed var(--border);
}
.testi-platform {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: var(--primary);
  background: rgba(108, 60, 247, 0.08);
  padding: 5px 12px; border-radius: 999px;
}
.testi-text strong { color: var(--text-dark); font-weight: 700; }
.testi-trust-bar {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 48px; padding: 32px;
  background: #fff; border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}
.testi-trust-item { text-align: center; }
.testi-trust-item strong {
  display: block; font-family: var(--font-head);
  font-size: 32px; font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}
.testi-trust-item span {
  font-size: 13px; color: var(--text-muted);
  font-weight: 500;
}

/* =============================================
   PORTFOLIO METRICS
============================================= */
.portfolio-result {
  margin-top: 14px; padding: 10px 14px;
  background: linear-gradient(135deg, rgba(108, 60, 247, 0.08), rgba(124, 92, 253, 0.05));
  border-left: 3px solid var(--primary);
  border-radius: 8px;
  font-size: 13px; font-weight: 600; color: var(--primary);
}

/* =============================================
   FORM REFINEMENTS
============================================= */
.form-sub {
  font-size: 14px; color: var(--text-muted); margin-bottom: 24px;
  margin-top: -8px;
}
.form-sub strong { color: #16a34a; font-weight: 700; }
.label-optional {
  font-size: 12px; color: var(--text-muted);
  font-weight: 400; margin-left: 4px;
}
.form-trust {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-muted);
  margin-top: 14px; justify-content: center;
}
.form-trust svg { color: #16a34a; flex-shrink: 0; }

/* =============================================
   RESPONSIVE — CRO sections
============================================= */
@media (max-width: 1100px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .pricing-featured { transform: none; }
  .pricing-featured:hover { transform: translateY(-4px); }
  .cta-guarantees { grid-template-columns: repeat(2, 1fr); }
  .testi-trust-bar { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .process-grid { grid-template-columns: 1fr; }
  .cta-guarantees { grid-template-columns: 1fr; }
  .testi-trust-bar { grid-template-columns: 1fr 1fr; padding: 24px 20px; }
  .testi-trust-item strong { font-size: 26px; }
  .faq-q { font-size: 15px; padding: 16px 18px; }
  .faq-a { padding: 0 18px 18px; font-size: 14px; }
  .pricing-amount { font-size: 34px; }
  .hero-urgency { font-size: 13px; padding: 8px 14px; }
}
