:root {
  --bg-primary: #0a0e1a;
  --bg-secondary: #111827;
  --bg-card: #1a1f2e;
  --bg-card-hover: #232938;
  --text-primary: #f9fafb;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  --accent: #6366f1;
  --accent-hover: #4f46e5;
  --accent-light: rgba(99, 102, 241, 0.15);
  --success: #10b981;
  --success-light: rgba(16, 185, 129, 0.15);
  --error: #ef4444;
  --warning: #f59e0b;
  --border: rgba(255, 255, 255, 0.1);
  --border-light: rgba(255, 255, 255, 0.05);
  --whatsapp: #25d366;
  --gmail: #ea4335;
  --telegram: #0088cc;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.4);
  --shadow-accent: 0 8px 32px rgba(99, 102, 241, 0.3);
  --gradient-accent: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  --gradient-success: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

ul {
  list-style: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-accent);
  color: white;
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

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

.btn-light:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.btn-large {
  padding: 18px 36px;
  font-size: 17px;
}

.btn-block {
  width: 100%;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 14, 26, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
}

.nav-logo .logo-img {
  width: 32px;
  height: 32px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-cta {
  background: var(--gradient-accent);
  color: white !important;
  padding: 10px 20px;
  border-radius: 10px;
}

.nav-cta:hover {
  opacity: 0.9;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 24px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  padding: 20px;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 500;
  color: var(--text-secondary);
}

.mobile-menu a:hover {
  background: var(--accent-light);
  color: var(--text-primary);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg-effects {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
}

.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: var(--accent);
  top: -200px;
  right: -100px;
  opacity: 0.3;
}

.hero-glow-2 {
  width: 400px;
  height: 400px;
  background: var(--success);
  bottom: -100px;
  left: -100px;
  opacity: 0.2;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--accent-light);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: #a5b4fc;
  margin-bottom: 24px;
}

.hero-badge i {
  color: var(--accent);
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.gradient-text {
  display: block;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

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

.stat-number {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero Image / App Preview */
.hero-image {
  display: flex;
  justify-content: center;
}

.app-preview {
  perspective: 1000px;
}

.app-window {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotateY(-10deg) rotateX(5deg);
  transition: transform 0.5s ease;
  width: 420px;
}

.app-window:hover {
  transform: rotateY(-5deg) rotateX(2deg);
}

.app-window-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--border-light);
}

.window-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.red {
  background: #ff5f57;
}
.dot.yellow {
  background: #febc2e;
}
.dot.green {
  background: #28c840;
}

.window-title {
  font-size: 13px;
  color: var(--text-secondary);
}

.app-window-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tool-preview-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.tool-preview-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(5px);
}

.tool-preview-card i {
  font-size: 24px;
}

.tool-preview-card.whatsapp i {
  color: var(--whatsapp);
}
.tool-preview-card.gmail i {
  color: var(--gmail);
}
.tool-preview-card.telegram i {
  color: var(--telegram);
}

.tool-preview-card span {
  flex: 1;
  font-weight: 500;
}

.status-badge {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.status-badge.active {
  background: var(--success-light);
  color: var(--success);
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--accent-light);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: #a5b4fc;
  margin-bottom: 20px;
}

.section-badge i {
  font-size: 12px;
}

.section-badge.light {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Features Section */
.features {
  padding: 120px 0;
  background: linear-gradient(
    180deg,
    var(--bg-primary) 0%,
    var(--bg-secondary) 100%
  );
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.feature-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s ease;
}

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

.feature-card.featured {
  border-color: var(--accent);
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.1) 0%,
    var(--bg-card) 100%
  );
}

.featured-ribbon {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 12px;
  background: var(--gradient-accent);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 28px;
  margin-bottom: 24px;
}

.whatsapp-gradient {
  background: linear-gradient(
    135deg,
    rgba(37, 211, 102, 0.2) 0%,
    rgba(37, 211, 102, 0.1) 100%
  );
  color: var(--whatsapp);
}

.gmail-gradient {
  background: linear-gradient(
    135deg,
    rgba(234, 67, 53, 0.2) 0%,
    rgba(234, 67, 53, 0.1) 100%
  );
  color: var(--gmail);
}

.telegram-gradient {
  background: linear-gradient(
    135deg,
    rgba(0, 136, 204, 0.2) 0%,
    rgba(0, 136, 204, 0.1) 100%
  );
  color: var(--telegram);
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-card > p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.feature-list {
  margin-bottom: 24px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--text-secondary);
  font-size: 14px;
}

.feature-list i {
  color: var(--success);
  font-size: 12px;
}

.feature-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.feature-badge.free {
  background: var(--success-light);
  color: var(--success);
}

.feature-badge.premium {
  background: var(--accent-light);
  color: #a5b4fc;
}

/* Extra Features */
.extra-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.extra-feature {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.extra-feature:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border);
}

.extra-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  border-radius: 14px;
  font-size: 22px;
  color: var(--accent);
  margin: 0 auto 16px;
}

.extra-feature h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.extra-feature p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Bonuses Section */
.bonuses {
  padding: 120px 0;
  background: var(--bg-secondary);
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 80px;
}

.bonus-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.bonus-glow {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  pointer-events: none;
}

.signup-bonus .bonus-glow {
  background: var(--success);
}

.referral-bonus .bonus-glow {
  background: var(--accent);
}

.bonus-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-size: 32px;
  margin-bottom: 24px;
}

.signup-bonus .bonus-icon {
  background: var(--success-light);
  color: var(--success);
}

.referral-bonus .bonus-icon {
  background: var(--accent-light);
  color: var(--accent);
}

.bonus-content {
  position: relative;
}

.bonus-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.bonus-amount {
  margin-bottom: 20px;
}

.bonus-amount .amount {
  font-size: 56px;
  font-weight: 800;
  background: var(--gradient-success);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bonus-amount .label {
  display: block;
  font-size: 18px;
  color: var(--text-secondary);
  margin-top: 4px;
}

.referral-rewards {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

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

.reward-amount {
  display: block;
  font-size: 42px;
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.reward-label {
  font-size: 14px;
  color: var(--text-secondary);
}

.reward-divider {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: var(--text-muted);
}

.bonus-content > p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.7;
}

.bonus-perks {
  margin-bottom: 28px;
}

.bonus-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 15px;
  color: var(--text-secondary);
}

.bonus-perks i {
  color: var(--success);
}

/* Referral Steps */
.referral-steps {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px;
}

.referral-steps h3 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 40px;
}

.steps-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.step:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-3px);
}

.step-number {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-accent);
  border-radius: 12px;
  font-size: 20px;
  font-weight: 700;
}

.step-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.step-content p {
  font-size: 14px;
  color: var(--text-muted);
}

.step-arrow {
  color: var(--text-muted);
  font-size: 20px;
}

/* Pricing Section */
.pricing {
  padding: 120px 0;
  background: linear-gradient(
    180deg,
    var(--bg-secondary) 0%,
    var(--bg-primary) 100%
  );
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px;
  text-align: center;
  transition: all 0.3s ease;
}

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

.pricing-card.featured {
  border-color: var(--accent);
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.1) 0%,
    var(--bg-card) 100%
  );
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.pricing-ribbon {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0 0 12px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}

.pricing-ribbon.popular {
  background: var(--gradient-accent);
  color: white;
}

.pricing-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 8px;
}

.pricing-description {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-amount {
  margin-bottom: 12px;
}

.pricing-amount .currency {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-secondary);
  vertical-align: top;
}

.pricing-amount .price {
  font-size: 56px;
  font-weight: 800;
}

.pricing-credits {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--success-light);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--success);
  margin-bottom: 28px;
}

.pricing-features {
  text-align: left;
  margin-bottom: 28px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features i {
  color: var(--success);
  font-size: 12px;
}

/* Download Section */
.download {
  padding: 120px 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.download::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.download-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.download-text h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
}

.download-text > p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 36px;
}

.download-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.3s ease;
}

.download-btn:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent);
  transform: translateY(-3px);
}

.download-btn i {
  font-size: 32px;
}

.download-btn.mac i {
  color: #fff;
}
.download-btn.windows i {
  color: #00adef;
}

.download-btn-text {
  display: flex;
  flex-direction: column;
}

.download-btn-text .small {
  font-size: 12px;
  color: var(--text-muted);
}

.download-btn-text .large {
  font-size: 18px;
  font-weight: 600;
}

.os-version {
  display: flex;
  align-items: center;
  gap: 8px;
}

.download-btn-text .version {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

.download-info {
  display: flex;
  gap: 24px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
}

.info-item i {
  color: var(--success);
}

/* Download Graphic */
.download-graphic {
  display: flex;
  justify-content: center;
}

.device-mockup {
  width: 320px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.device-screen {
  padding: 24px;
}

.screen-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mini-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: 10px;
}

.mini-card i {
  font-size: 20px;
}

.mini-card .fa-whatsapp {
  color: var(--whatsapp);
}
.mini-card .fa-envelope {
  color: var(--gmail);
}
.mini-card .fa-telegram {
  color: var(--telegram);
}

.progress-bar {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.progress {
  height: 100%;
  background: var(--gradient-accent);
  border-radius: 3px;
  animation: progressAnim 2s ease-in-out infinite;
}

@keyframes progressAnim {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

/* Testimonials */
.testimonials {
  padding: 120px 0;
  background: var(--bg-secondary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s ease;
}

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

.testimonial-stars {
  margin-bottom: 16px;
}

.testimonial-stars i {
  color: #fbbf24;
  font-size: 14px;
}

.testimonial-card > p {
  font-size: 16px;
  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: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  border-radius: 50%;
  color: var(--accent);
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  font-size: 15px;
}

.author-role {
  font-size: 13px;
  color: var(--text-muted);
}

/* FAQ Section */
.faq {
  padding: 120px 0;
  background: var(--bg-primary);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

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

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
}

.faq-question i {
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* CTA Section */
.cta {
  padding: 100px 0;
  background: var(--gradient-accent);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
  text-align: center;
  position: relative;
}

.cta-content h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-content > p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* Footer */
.footer {
  padding: 80px 0 40px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-logo .logo-img {
  width: 32px;
  height: 32px;
}

.footer-brand > p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--accent-light);
  border-color: var(--accent);
  color: var(--accent);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.footer-column a {
  display: block;
  padding: 8px 0;
  color: var(--text-muted);
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--accent);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image {
    display: none;
  }

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

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

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

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

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }

  .download-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .download-buttons {
    justify-content: center;
  }

  .download-info {
    justify-content: center;
  }

  .download-graphic {
    display: none;
  }

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

  .steps-container {
    flex-direction: column;
  }

  .step-arrow {
    transform: rotate(90deg);
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-title {
    font-size: 36px;
  }

  .section-title {
    font-size: 32px;
  }

  .hero-cta {
    flex-direction: column;
    gap: 12px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .stat-divider {
    display: none;
  }

  .extra-features {
    grid-template-columns: 1fr;
  }

  .download-buttons {
    flex-direction: column;
  }

  .download-btn {
    justify-content: center;
  }

  .download-info {
    flex-direction: column;
    gap: 12px;
  }

  .referral-rewards {
    flex-direction: column;
  }
}
