.primary-gradient,
.text-primary {
  background: linear-gradient(90deg, #6A2CFF 0%, #B84DFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-section .text-primary {
  background: linear-gradient(90deg, #c4b5fd 0%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

:root {
  --primary: #6A2CFF;
  --primary-light: #B84DFF;
  --primary-dark: #6A2CFF;
  --primary-bg: rgba(106,44,255,0.15);
  --primary-bg-dark: #0D0620;
  --text: #e8e6f0;
  --text-secondary: #a8a6b8;
  --text-tertiary: #78778a;
  --bg: #0e0b1a;
  --bg-alt: #141025;
  --bg-card: #1a1530;
  --border: #2a2545;
  --success: #10b981;
  --warning: #f59e0b;
  --whatsapp: #25D366;
  --whatsapp-hover: #1ebe5a;
  --radius: 0.5rem;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.2);
  --shadow: 0 2px 8px rgba(0,0,0,0.25);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.35);
  --font-sans: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --max-width: 1200px;
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  background: linear-gradient(90deg, #6A2CFF 0%, #B84DFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  background: linear-gradient(90deg, #7A3BFF 0%, #C45BFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(14,11,26,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.logo-img {
  width: 192px;
  height: 48px;
  display: block;
  object-fit: contain;
}

.nav-desktop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex: 1;
}

.nav-desktop a {
  color: var(--text-secondary);
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  background: linear-gradient(90deg, #6A2CFF 0%, #B84DFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(90deg, #6A2CFF 0%, #B84DFF 100%);
  color: #fff;
  -webkit-text-fill-color: #fff;
  -webkit-background-clip: unset;
  background-clip: unset;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}

.header-cta:hover {
  background: linear-gradient(90deg, #7A3BFF 0%, #C45BFF 100%);
  color: #fff;
  -webkit-text-fill-color: #fff;
  transform: translateY(-1px);
}

.header-cta svg {
  width: 18px;
  height: 18px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text);
}

.mobile-toggle svg {
  width: 24px;
  height: 24px;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(14,11,26,0.98);
  backdrop-filter: blur(12px);
  z-index: 999;
  padding: 2rem 1.5rem;
  flex-direction: column;
  gap: 0.5rem;
  overflow-y: auto;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  display: block;
  padding: 1rem 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  border-bottom: 1px solid var(--border);
}

.mobile-nav a:hover {
  background: linear-gradient(90deg, #6A2CFF 0%, #B84DFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mobile-nav .header-cta {
  margin-top: 1rem;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: linear-gradient(135deg, rgba(10,5,30,0.82) 0%, rgba(26,10,62,0.75) 40%, rgba(106,44,255,0.4) 100%),
              url('/assets/hero-bg.webp') center/cover no-repeat;
  color: #fff;
  overflow: hidden;
  padding: 6rem 0 5rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(106,44,255,0.25) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(140,77,255,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 0.4rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero h1 .gradient-text {
  background: linear-gradient(90deg, #6A2CFF, #B84DFF, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

.hero-feature svg {
  width: 16px;
  height: 16px;
  color: var(--success);
  flex-shrink: 0;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(90deg, #6A2CFF 0%, #B84DFF 100%);
  color: #fff;
  -webkit-text-fill-color: #fff;
  -webkit-background-clip: unset;
  background-clip: unset;
  box-shadow: 0 4px 16px rgba(106,44,255,0.3);
}

.btn-primary:hover {
  background: linear-gradient(90deg, #7A3BFF 0%, #C45BFF 100%);
  color: #fff;
  -webkit-text-fill-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(106,44,255,0.4);
}

.btn-outline {
  background: transparent;
  color: #fff;
  -webkit-text-fill-color: #fff;
  -webkit-background-clip: unset;
  background-clip: unset;
  border: 1px solid #B84DFF;
}

.btn-outline:hover {
  background: linear-gradient(90deg, #6A2CFF 0%, #B84DFF 100%);
  color: #fff;
  -webkit-text-fill-color: #fff;
  -webkit-background-clip: unset;
  background-clip: unset;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(90deg, #6A2CFF 0%, #B84DFF 100%);
  color: #fff;
  -webkit-text-fill-color: #fff;
  -webkit-background-clip: unset;
  background-clip: unset;
  box-shadow: 0 4px 16px rgba(106,44,255,0.3);
}

.btn-whatsapp:hover {
  background: linear-gradient(90deg, #7A3BFF 0%, #C45BFF 100%);
  color: #fff;
  -webkit-text-fill-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(106,44,255,0.4);
}

.btn svg {
  width: 20px;
  height: 20px;
}

.hero-trust {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-trust-item svg {
  width: 14px;
  height: 14px;
}

/* ===== SECTIONS SHARED ===== */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-dark {
  background: linear-gradient(135deg, var(--primary-bg-dark) 0%, #1a0a3e 100%);
  color: #fff;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--primary-bg);
  color: #B84DFF;
  -webkit-text-fill-color: unset;
  -webkit-background-clip: unset;
  background-clip: unset;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.section-dark .section-label {
  background: rgba(106,44,255,0.3);
  color: #c4b5fd;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

.section-dark .section-header p {
  color: rgba(255,255,255,0.65);
}

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: #9B4DFF;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.925rem;
  line-height: 1.6;
}

/* ===== ABOUT / INFO ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

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

.about-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.about-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.about-list-item svg {
  width: 20px;
  height: 20px;
  color: #9B4DFF;
  flex-shrink: 0;
}

.about-visual {
  position: relative;
}

.about-visual-card {
  background: linear-gradient(135deg, rgba(106,44,255,0.15) 0%, rgba(30,20,60,0.8) 100%);
  border-radius: 1rem;
  padding: 3rem;
  text-align: center;
}

.about-visual-card .stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(90deg, #6A2CFF 0%, #B84DFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ===== HOW IT WORKS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(90deg, #6A2CFF 0%, #B84DFF 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 auto 1.25rem;
}

.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.section-dark .step-card p {
  color: rgba(255,255,255,0.65);
}

.section-dark .step-number {
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.2);
}

/* ===== PRICING TABS ===== */
.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
  background: var(--bg-alt);
  border-radius: 50px;
  padding: 0.3rem;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--border);
}

.pricing-tab {
  flex: 1;
  padding: 0.6rem 1.5rem;
  border: none;
  background: none;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.pricing-tab.active {
  background: linear-gradient(90deg, #6A2CFF 0%, #B84DFF 100%);
  color: #fff;
  -webkit-text-fill-color: #fff;
  -webkit-background-clip: unset;
  background-clip: unset;
  box-shadow: 0 2px 8px rgba(106,44,255,0.25);
}

.pricing-tab:hover:not(.active) {
  background: linear-gradient(90deg, #6A2CFF 0%, #B84DFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-tab-content {
  display: none;
}

.pricing-tab-content.active {
  display: block;
}

.pricing-features-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-tertiary);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
  border-color: #B84DFF;
  box-shadow: 0 0 0 1px #B84DFF, var(--shadow-md);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #6A2CFF 0%, #B84DFF 100%);
  color: #fff;
  padding: 0.25rem 1.25rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.pricing-duration {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}

.pricing-price {
  margin-bottom: 1.5rem;
}

.price-old {
  text-decoration: line-through;
  color: var(--text-tertiary);
  font-size: 1rem;
  display: block;
  margin-bottom: 0.15rem;
}

.price-current {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, #6A2CFF 0%, #B84DFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.price-current span {
  font-size: 1rem;
  font-weight: 500;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: var(--text-secondary);
  background-clip: unset;
}

.pricing-features {
  margin-bottom: 1.5rem;
  display: inline-flex;
  flex-direction: column;
  gap: 0.6rem;
  text-align: left;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.pricing-features li svg {
  width: 16px;
  height: 16px;
  color: var(--success);
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
}

.pricing-guarantee {
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-tertiary);
}

/* ===== DEVICES ===== */
.devices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.device-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.device-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.device-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-bg);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #9B4DFF;
}

.device-icon svg {
  width: 28px;
  height: 28px;
}

.device-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.device-card p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ===== TRUST ===== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

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

.trust-icon {
  width: 48px;
  height: 48px;
  background: rgba(106,44,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #c4b5fd;
}

.trust-icon svg {
  width: 24px;
  height: 24px;
}

.trust-item h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.trust-item p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.5;
}

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

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

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

.faq-question:hover {
  background: linear-gradient(90deg, #6A2CFF 0%, #B84DFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--text-tertiary);
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
  color: #9B4DFF;
}

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

.faq-item.open .faq-answer {
  max-height: 500px;
}

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

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(90deg, #6A2CFF 0%, #B84DFF 100%);
  color: #fff;
  padding: 5rem 0;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-section p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

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

.btn-white {
  background: linear-gradient(90deg, #6A2CFF 0%, #B84DFF 100%);
  color: #fff;
  -webkit-text-fill-color: #fff;
  -webkit-background-clip: unset;
  background-clip: unset;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(106,44,255,0.3);
}

.btn-white:hover {
  background: linear-gradient(90deg, #7A3BFF 0%, #C45BFF 100%);
  color: #fff;
  -webkit-text-fill-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(106,44,255,0.4);
}

/* ===== FOOTER ===== */
.site-footer {
  background: #0a0618;
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 1rem;
  color: rgba(255,255,255,0.5);
}

.footer-col h4 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a {
  color: rgba(255,255,255,0.5);
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #fff;
  -webkit-text-fill-color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.35);
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  font-size: 0.8rem;
}

.footer-bottom-links a:hover {
  color: rgba(255,255,255,0.7);
  -webkit-text-fill-color: rgba(255,255,255,0.7);
}

/* ===== LEGAL PAGES ===== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-left: 1rem;
  border-left: 3px solid #B84DFF;
  line-height: 1.35;
}

.legal-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-content p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.legal-content ul {
  list-style: disc;
}

.legal-content ol {
  list-style: decimal;
}

.legal-content li {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.legal-content a {
  background: linear-gradient(90deg, #6A2CFF 0%, #B84DFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: underline;
  text-decoration-color: #B84DFF;
  text-underline-offset: 2px;
}

.legal-content a:hover {
  background: linear-gradient(90deg, #7A3BFF 0%, #C45BFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration-color: #C45BFF;
}

.legal-content strong {
  color: var(--text);
  font-weight: 600;
}

.legal-update {
  display: inline-block;
  background: var(--primary-bg);
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

/* ===== SEO CONTENT ===== */
.seo-content {
  background: var(--bg-alt);
}

.seo-article {
  max-width: 800px;
  margin: 0 auto;
}

.seo-article h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.seo-article h3 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--text);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-left: 1rem;
  border-left: 3px solid #B84DFF;
  line-height: 1.35;
}

.seo-article p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

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

/* ===== BLOG PAGE ===== */
.blog-hero {
  background: linear-gradient(135deg, var(--primary-bg-dark) 0%, #1a0a3e 100%);
  color: #fff;
  padding: 4rem 0 3rem;
  text-align: center;
}

.blog-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.blog-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
}

.blog-empty {
  text-align: center;
  padding: 5rem 0;
}

.blog-empty-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #9B4DFF;
}

.blog-empty-icon svg {
  width: 32px;
  height: 32px;
}

.blog-empty h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.blog-empty p {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 1rem 0;
  font-size: 0.85rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}

.breadcrumb a {
  color: rgba(255,255,255,0.5);
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
}

.breadcrumb a:hover {
  color: #fff;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
}

.breadcrumb .sep {
  color: rgba(255,255,255,0.3);
}

.breadcrumb .current {
  color: rgba(255,255,255,0.8);
}

/* ===== BLOG GRID ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-card-meta {
  font-size: 0.8rem;
  color: var(--text-tertiary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-card-body h2 {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.blog-card-body h2 a {
  color: var(--text);
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  transition: all 0.2s ease;
}

.blog-card-body h2 a:hover {
  background: linear-gradient(90deg, #6A2CFF 0%, #B84DFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blog-card-body p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-card-link {
  font-size: 0.875rem;
  font-weight: 600;
  background: linear-gradient(90deg, #6A2CFF 0%, #B84DFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.blog-card-link:hover {
  background: linear-gradient(90deg, #7A3BFF 0%, #C45BFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BLOG ARTICLE PAGE ===== */
.article-hero {
  background: linear-gradient(135deg, var(--primary-bg-dark) 0%, #1a0a3e 100%);
  color: #fff;
  padding: 4rem 0 3rem;
}

.article-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  max-width: 800px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.article-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.article-meta-item svg {
  width: 16px;
  height: 16px;
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 0;
}

.article-content h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 800;
  color: var(--text);
  margin-top: 3rem;
  margin-bottom: 1rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.article-content h3 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--text);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  padding-left: 1rem;
  border-left: 3px solid #B84DFF;
  line-height: 1.35;
}

.article-content p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.article-content ul,
.article-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.article-content ul {
  list-style: disc;
}

.article-content ol {
  list-style: decimal;
}

.article-content li {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.article-content a {
  background: linear-gradient(90deg, #6A2CFF 0%, #B84DFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: underline;
  text-decoration-color: #B84DFF;
  text-underline-offset: 2px;
}

.article-content a:hover {
  background: linear-gradient(90deg, #7A3BFF 0%, #C45BFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration-color: #C45BFF;
}

.article-content strong {
  color: var(--text);
  font-weight: 600;
}

.article-content figure {
  margin: 2rem 0;
}

.article-content figure img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.article-content figcaption {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  text-align: center;
  margin-top: 0.75rem;
  font-style: italic;
}

.article-content blockquote {
  border-left: 3px solid #B84DFF;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--bg-card);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.article-content blockquote p {
  margin-bottom: 0;
  font-style: italic;
}

.article-faq {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin: 2rem 0;
}

.article-faq h3 {
  border-left: none;
  padding-left: 0;
  margin-top: 0;
}

.article-faq-item {
  margin-bottom: 1.25rem;
}

.article-faq-item:last-child {
  margin-bottom: 0;
}

.article-faq-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.article-faq-item p {
  margin-bottom: 0;
}

.article-cta {
  background: linear-gradient(90deg, rgba(106,44,255,0.15) 0%, rgba(184,77,255,0.1) 100%);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  margin: 3rem 0;
}

.article-cta h3 {
  border-left: none;
  padding-left: 0;
  margin-top: 0;
  text-align: center;
  font-size: 1.5rem;
}

.article-cta p {
  max-width: 500px;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.article-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  margin-top: 3rem;
}

.article-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  background: linear-gradient(90deg, #6A2CFF 0%, #B84DFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .devices-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .logo-img {
    width: 144px;
    height: 36px;
  }
  .nav-desktop {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .hero {
    padding: 4rem 0 3rem;
  }
  .section {
    padding: 3.5rem 0;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .devices-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ========== PRODUCT PAGES ========== */
.product-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(180deg, #141025 0%, #0e0b1a 100%);
}
.product-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  transition: color 0.2s;
}
.product-back:hover { color: #fff; -webkit-text-fill-color: #fff; }
.product-back svg { flex-shrink: 0; }
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.product-badge {
  display: inline-block;
  background: rgba(140,77,255,0.15);
  color: #B84DFF;
  -webkit-text-fill-color: unset;
  -webkit-background-clip: unset;
  background-clip: unset;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}
.product-info h1 {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.product-subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.product-price-block {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.product-price {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
}
.product-price-details {
  display: flex;
  flex-direction: column;
}
.product-price-duration {
  color: rgba(255,255,255,0.5);
  font-size: 1.1rem;
  font-weight: 500;
}
.product-price-permonth {
  background: linear-gradient(90deg, #6A2CFF 0%, #B84DFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.9rem;
  font-weight: 600;
}
.btn-product-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.15rem;
  padding: 1rem 2.5rem;
  border-radius: 0.75rem;
  font-weight: 700;
  width: auto;
}
.product-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.product-trust-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
}
.product-trust-badges svg {
  width: 16px;
  height: 16px;
  color: #9B4DFF;
}
.product-features-card {
  background: #141025;
  border: 1px solid rgba(140,77,255,0.2);
  border-radius: 1rem;
  padding: 2rem;
}
.product-features-card h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #fff;
}
.product-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.product-features-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}
.product-features-list li svg {
  width: 18px;
  height: 18px;
  color: #9B4DFF;
  flex-shrink: 0;
}
.product-guarantees {
  padding: 4rem 0;
  background: #0e0b1a;
}
.product-guarantees h2 {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 2.5rem;
}
.product-guarantees-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.product-guarantee-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: #141025;
  border-radius: 0.75rem;
  border: 1px solid rgba(255,255,255,0.06);
}
.product-guarantee-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(140,77,255,0.15);
  border-radius: 0.5rem;
  color: #9B4DFF;
}
.product-guarantee-item strong {
  color: #fff;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 0.3rem;
}
.product-guarantee-item p {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}
.product-cta-bottom {
  padding: 4rem 0;
  background: linear-gradient(90deg, #6A2CFF 0%, #B84DFF 100%);
  text-align: center;
}
.product-cta-bottom h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.product-cta-bottom p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.product-cta-bottom .btn-whatsapp {
  background: #fff;
  color: #6A2CFF;
  -webkit-text-fill-color: #6A2CFF;
}
.product-cta-bottom .btn-whatsapp:hover {
  background: rgba(255,255,255,0.9);
  -webkit-text-fill-color: #6A2CFF;
}
.product-cta-bottom .btn-outline {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}
.product-cta-bottom .btn-outline:hover {
  background: rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
  .product-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .product-info h1 {
    font-size: 1.6rem;
  }
  .product-price {
    font-size: 2.2rem;
  }
  .product-guarantees-grid {
    grid-template-columns: 1fr 1fr;
  }
  .product-cta-bottom .btn {
    display: block;
    margin: 0 auto 1rem;
  }
  .product-cta-bottom .btn-outline {
    margin-left: auto !important;
  }
}

@media (max-width: 480px) {
  .product-guarantees-grid {
    grid-template-columns: 1fr;
  }
  .product-hero {
    padding: 6rem 0 3rem;
  }
  .btn-product-cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .devices-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .hero-buttons .btn {
    width: 100%;
    max-width: 320px;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta-buttons .btn {
    width: 100%;
    max-width: 320px;
  }
}
