/* ============================================
   SUPERPOWER FOR GEMINI - LANDING PAGE STYLES
   ============================================ */

::selection {
  background: rgba(232, 78, 207, 0.55);
  color: inherit;
}

/* --- CSS CUSTOM PROPERTIES --- */
:root {
  --primary: #7B6CF6;
  --primary-hover: #6355e0;
  --text-primary: #1f1f1f;
  --text-secondary: #5f6368;
  --text-muted: #80868b;
  --bg-page: #f8f9fa;
  --bg-card: #ffffff;
  --bg-feature: #f8f9fa;
  --bg-feature-hover: #ffffff;
  --border: #dadce0;
  --border-hover: #d9d2fc;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
  --check-bg: #e8f5e9;
  --check-color: #2e7d32;
  --error-bg: #fbe9e7;
  --error-color: #c62828;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 50px;
  --gradient-brand: linear-gradient(135deg, #7B6CF6, #E84ECF);
  --gradient-brand-text: linear-gradient(135deg, #7B6CF6, #B45CE6, #E84ECF);
  --gradient-pro: linear-gradient(135deg, #f59e0b, #ef4444);
  --gradient-lifetime: linear-gradient(135deg, #a855f7, #7c3aed);
  --max-width: 1200px;
  --nav-height: 64px;
  color-scheme: light dark;
}

/* --- DARK THEME --- */
html.dark-theme {
  --primary: #a99ff8;
  --primary-hover: #c4b8ff;
  --text-primary: #e3e3e3;
  --text-secondary: #c4c7c5;
  --text-muted: #8e918f;
  --bg-page: #131314;
  --bg-card: #1e1f20;
  --bg-feature: #2d2e31;
  --bg-feature-hover: #38393c;
  --border: #444746;
  --border-hover: #5f6368;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.5);
  --check-bg: #1b5e20;
  --check-color: #81c784;
  --error-bg: #4a1c1c;
  --error-color: #f28b82;
  --gradient-brand-text: linear-gradient(135deg, #a99ff8, #d488f0, #f075d8);
}

/* --- VIEW TRANSITION (dark mode circle expand) --- */
::view-transition-old(root),
::view-transition-new(root) {
  animation: none;
  mix-blend-mode: normal;
}

/* --- RESET & BASE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: 'Google Sans Text', 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-page);
  color: var(--text-primary);
  line-height: 1.6;
  transition: background-color 0.3s ease, color 0.3s ease;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
}

/* --- ANIMATIONS --- */
@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- SECTION HEADINGS --- */
.section-title {
  font-family: 'Google Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Google Sans', sans-serif;
  font-weight: 500;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
  font-size: 0.95rem;
  padding: 12px 28px;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
  padding: 12px 0;
}

.btn-primary {
  background: var(--gradient-brand);
  background-size: 200% 200%;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(123, 108, 246, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 6px 24px rgba(123, 108, 246, 0.45);
  background-size: 200% 200%;
}

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

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

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

.btn-outline:hover {
  background: var(--text-primary);
  color: var(--bg-card);
}

.btn-pro {
  background: var(--gradient-pro);
  color: #ffffff;
  box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.4);
}

.btn-pro:hover {
  opacity: 0.9;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.5);
}

.btn-lifetime {
  background: var(--gradient-lifetime);
  color: #ffffff;
  box-shadow: 0 0 0 2px rgba(168, 85, 247, 0.4);
}

.btn-lifetime:hover {
  opacity: 0.9;
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.5);
}

/* --- NAVBAR --- */
#navbar {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  z-index: 1000;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-radius: 999px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.45);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

html.dark-theme #navbar {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

html.dark-theme #navbar.scrolled {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.nav-container {
  padding: 0 20px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}


.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: 'Google Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.04);
}

html.dark-theme .nav-brand {
  background: rgba(255, 255, 255, 0.07);
}

.nav-brand span {
  background: var(--gradient-brand-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-brand:hover {
  text-decoration: none;
}

.nav-icon {
  width: 28px;
  height: 28px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  background: rgba(0, 0, 0, 0.04);
  padding: 8px 24px;
  border-radius: 999px;
}

html.dark-theme .nav-links {
  background: rgba(255, 255, 255, 0.07);
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

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

.nav-links a.nav-active {
  background: var(--gradient-brand-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.theme-toggle {
  background: rgba(0, 0, 0, 0.04);
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 999px;
  color: var(--text-secondary);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 36px;
  height: 36px;
}

html.dark-theme .theme-toggle {
  background: rgba(255, 255, 255, 0.07);
}

.theme-toggle:hover {
  background: var(--bg-feature);
  color: var(--text-primary);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
  position: absolute;
  transition: opacity 0.3s ease, transform 0.4s ease;
}


.icon-sun {
  opacity: 1;
  transform: rotate(0deg);
}
.icon-moon {
  opacity: 0;
  transform: rotate(-90deg);
}

html.dark-theme .icon-sun {
  opacity: 0;
  transform: rotate(90deg);
}
html.dark-theme .icon-moon {
  opacity: 1;
  transform: rotate(0deg);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

/* --- HERO --- */
#hero {
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 60px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  background: var(--bg-feature);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Google Sans', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  max-width: 800px;
  margin: 0 auto 20px;
}

.hero-title::after {
  content: '';
  display: block;
  width: 95%;
  margin: 4px auto 0;
  background: linear-gradient(135deg, #7B6CF6, #e84ecf);
  border-radius: 8px;
  transform: rotate(-0.5deg);
  opacity: 0.7;
  height: 12px;
  clip-path: polygon(0% 30%, 15% 10%, 35% 25%, 55% 5%, 75% 20%, 90% 8%, 100% 25%, 100% 100%, 0% 100%);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.cws-badge {
  display: inline-block;
  margin-bottom: 24px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.9;
}

.cws-badge:hover {
  transform: translateY(-2px);
  opacity: 1;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.avatar-stack {
  display: flex;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: -8px;
  border: 2px solid var(--bg-page);
  object-fit: cover;
}

.avatar:first-child {
  margin-left: 0;
}

.hero-image {
  max-width: 900px;
  margin: 0 auto;
}

.hero-image-placeholder {
  background: var(--bg-feature);
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* --- VIDEO --- */
#video {
  padding: 40px 0 80px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 56.25%; /* 16:9 */
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* --- PROBLEM / SOLUTION --- */
/* --- PROBLEM / SOLUTION --- */
#problem-solution {
  background: var(--bg-page);
  overflow: hidden;
}

.section-eyebrow {
  text-align: center;
  font-family: 'Google Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}

.gradient-text {
  background: var(--gradient-brand-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 300% 300%;
  animation: gradientFlow 5s ease infinite;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}

.comparison-card {
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

/* Eyebrow label above faded title */
.comparison-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
  opacity: 0.7;
}

/* Big faded app name on without card */
.comparison-app-name {
  font-family: 'Google Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 28px;
}

.comparison-app-name--faded {
  color: var(--text-secondary);
  opacity: 0.35;
}

/* With card header row */
.comparison-with-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.comparison-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(123, 108, 246, 0.2), rgba(232, 78, 207, 0.2));
  color: #7B6CF6;
  border: 1px solid rgba(123, 108, 246, 0.35);
}

.comparison-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.comparison-card li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.comparison-card li div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.comparison-card li strong {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
}

.comparison-card li p {
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

/* X icon for without */
.comparison-x {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #ef4444;
  margin-top: 1px;
}

/* Checkmark circle for with */
.comparison-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7B6CF6, #e84ecf);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -1px;
}

.comparison-check svg {
  width: 14px;
  height: 14px;
  color: #fff;
}

/* Without card */
.comparison-without {
  border-color: rgba(239, 68, 68, 0.15);
}

.comparison-without li strong {
  color: var(--text-secondary);
}

.comparison-without li p {
  color: var(--text-secondary);
  opacity: 0.7;
}

/* With card — always dark */
.comparison-with {
  background: #1c1b2e;
  border-color: rgba(123, 108, 246, 0.3);
}

.comparison-with .comparison-app-name {
  color: #fff;
}

.comparison-with li strong {
  color: #fff;
}

.comparison-with li p {
  color: rgba(255,255,255,0.6);
}

/* keep dark-theme badge legible */
html.dark-theme .comparison-badge {
  background: linear-gradient(135deg, rgba(123, 108, 246, 0.3), rgba(232, 78, 207, 0.3));
}

/* --- FEATURES --- */
#features {
  background: var(--bg-page);
}

.feature-group {
  margin-bottom: 48px;
}

.feature-group:last-child {
  margin-bottom: 0;
}

.feature-group-title {
  font-family: 'Google Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.feature-card h4 {
  font-family: 'Google Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

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

/* --- REVIEWS --- */
#reviews {
  background: transparent;
}

#reviews > .container {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  border: 1px solid var(--border);
  max-width: 1100px;
}

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

.review-card {
  background: var(--bg-feature);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.2s ease;
  border: 1px solid var(--border);
}

.review-card:hover {
  transform: translateY(-3px);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(123, 108, 246, 0.12);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 1px;
}

.review-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.review-stars {
  color: #fbbc05;
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- PRICING --- */
#pricing {
  background: var(--bg-page);
}

.promo-banner {
  text-align: center;
  background: var(--gradient-brand);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

#promo-code {
  cursor: pointer;
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
}

#promo-code:hover {
  background: rgba(255, 255, 255, 0.35);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  padding-top: 12px;
}

.pricing-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.pricing-features {
  flex: 1;
}

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

.pricing-card-pro {
  outline: 2px solid #f59e0b;
  outline-offset: -2px;
  background: rgba(245, 158, 11, 0.07);
}

html.dark-theme .pricing-card-pro {
  background: rgba(245, 158, 11, 0.08);
}

.pricing-card-lifetime {
  outline: 2px solid #a855f7;
  outline-offset: -2px;
  background: rgba(168, 85, 247, 0.07);
}

html.dark-theme .pricing-card-lifetime {
  background: rgba(168, 85, 247, 0.08);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}

.pricing-badge-pro {
  background: var(--gradient-pro);
}

.pricing-badge-lifetime {
  background: var(--gradient-lifetime);
}

.pricing-tier-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.crown-icon {
  width: 22px;
  height: 22px;
  color: #f59e0b;
}

.diamond-icon {
  width: 22px;
  height: 22px;
  color: #a855f7;
}

.pricing-tier-name {
  font-family: 'Google Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.pricing-price {
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  gap: 4px;
  white-space: nowrap;
}

.price-original {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.price-amount {
  font-family: 'Google Sans', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
}

.price-period {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.price-billing {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.discount-badge {
  background: linear-gradient(135deg, #16a34a, #059669);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  margin-left: 8px;
}

.pricing-tagline {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 20px 0 16px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-primary);
  line-height: 1.5;
}

.check-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.check-icon circle {
  fill: var(--check-bg);
}

.check-icon path {
  stroke: var(--check-color);
}

.feature-warning {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.new-badge {
  background: var(--gradient-pro);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  vertical-align: middle;
}

.pricing-footnote {
  margin-top: 16px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.trust-badges span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- NEWSLETTER --- */
#newsletter {
  background: transparent;
  text-align: center;
}

#newsletter > .container {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  border: 1px solid var(--border);
  max-width: 1100px;
}

.newsletter-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--border);
  background: var(--bg-page);
  color: var(--text-primary);
  font-family: 'Google Sans Text', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-input:focus {
  border-color: var(--primary);
}

.newsletter-input::placeholder {
  color: var(--text-muted);
}

.newsletter-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 12px;
  text-align: center;
  width: 100%;
}

/* --- FAQ --- */
#faq {
  background: var(--bg-page);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Google Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-primary);
  text-align: left;
  transition: color 0.2s;
}

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

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

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

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

.faq-answer p {
  padding: 0 0 20px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-answer a {
  color: var(--primary);
}

/* --- FINAL CTA --- */
#final-cta {
  background: transparent;
  text-align: center;
  padding: 80px 0;
}

#final-cta > .container {
  background: linear-gradient(135deg, #5a4fd6, #9e35a8, #c0389e);
  background-size: 200% 200%;
  animation: gradientFlow 5s ease infinite;
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  max-width: 1300px;
}

#final-cta h2 {
  font-family: 'Google Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 28px;
}

#final-cta .btn {
  background: #ffffff;
  color: #1f1f1f;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

#final-cta .btn:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.final-cta-note {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* --- FOOTER --- */
footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.footer-icon {
  width: 32px;
  height: 32px;
}

.footer-name {
  font-family: 'Google Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.footer-version {
  font-size: 0.7rem;
  color: var(--text-muted);
  background: var(--bg-feature);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
}

.footer-columns {
  display: flex;
  gap: 48px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col h4 {
  font-family: 'Google Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--primary);
  text-decoration: none;
}

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

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

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

/* Tablet */
@media (max-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--bg-card);
    flex-direction: column;
    padding: 16px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }

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

  .nav-actions .btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-ctas {
    flex-direction: column;
  }

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

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

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

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

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

  .footer-top {
    flex-direction: column;
    gap: 32px;
  }

  .footer-columns {
    flex-wrap: wrap;
    gap: 32px;
  }

  .trust-badges {
    flex-direction: column;
    gap: 8px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form .btn {
    width: 100%;
  }

  #final-cta h2 {
    font-size: 2rem;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

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

  .comparison-card {
    padding: 20px;
  }

  .pricing-card {
    padding: 24px;
  }
}
