@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #60a5fa;
  --primary-glow: rgba(37, 99, 235, 0.1);
  --bg: #ffffff;
  --bg-2: #f8fafc;
  --bg-3: #f1f5f9;
  --text: #1e293b;
  --text-light: #64748b;
  --text-lighter: #94a3b8;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.05);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;
  --max-width: 1200px;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--text);
}

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

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

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

.section { padding: 80px 0; }

.section-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo:hover { color: var(--text); }

.logo-icon {
  color: var(--primary);
  font-size: 1.3rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
}

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

.nav a {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
}

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

.nav-cta {
  background: var(--primary);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.nav-cta:hover { background: var(--primary-dark); color: var(--white); }

/* Hero */
.hero {
  padding: 160px 0 100px;
  text-align: center;
  background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 50%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37,99,235,0.04) 0%, transparent 70%);
  border-radius: 50%;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-glow);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero h1 span { color: var(--primary); }

.hero p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 650px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

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

.btn-primary:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow); }

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

.btn-outline:hover { background: var(--primary); color: var(--white); }

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

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

.btn-large { padding: 16px 40px; font-size: 1.05rem; }

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}

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

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-glow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

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

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

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary), var(--shadow);
}

.pricing-card.featured::before {
  content: 'Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 16px;
  border-radius: 50px;
}

.pricing-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.pricing-period {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.pricing-saving {
  font-size: 0.8rem;
  color: #16a34a;
  font-weight: 600;
  margin-bottom: 20px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin: 20px 0 28px;
  padding: 0;
}

.pricing-features li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-features li::before {
  content: '✓';
  color: #16a34a;
  font-weight: 700;
}

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

/* Channels */
.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 48px;
}

.channel-item {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
}

.channel-item:hover { border-color: var(--primary); background: var(--primary-glow); }

.channel-item .channel-icon { font-size: 1.5rem; margin-bottom: 6px; }

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.step-card {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 auto 16px;
}

.step-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step-card p { font-size: 0.9rem; color: var(--text-light); }

/* Devices */
.devices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.device-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition);
}

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

.device-icon { font-size: 2rem; margin-bottom: 10px; }
.device-card h4 { font-size: 0.9rem; font-weight: 600; }

/* CTA */
.cta-section {
  text-align: center;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 60px 40px;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.cta-section p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.review-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}

.review-card:hover { box-shadow: var(--shadow-sm); }

.review-card.hidden { display: none; }

.review-stars {
  color: #f59e0b;
  font-size: 0.9rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--primary);
  font-size: 0.9rem;
}

.review-name { font-size: 0.85rem; font-weight: 600; }
.review-source { font-size: 0.8rem; color: var(--text-lighter); }

.reviews-header {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.reviews-score {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviews-score-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.reviews-score-stars { color: #f59e0b; font-size: 1.1rem; letter-spacing: 2px; }

.reviews-score-text { font-size: 0.85rem; color: var(--text-light); }

.reviews-header-logo {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
}

.reviews-toggle {
  margin-top: 24px;
  text-align: center;
}

/* FAQ */
.faq-list {
  max-width: 700px;
  margin: 48px auto 0;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

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

.faq-question {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg);
  transition: var(--transition);
}

.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--primary);
  transition: var(--transition);
}

.faq-item.active .faq-question::after { content: '−'; }

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  padding: 0 24px 20px;
  max-height: 300px;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand .logo { margin-bottom: 16px; }

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}

.footer-social a:hover { border-color: var(--primary); background: var(--primary-glow); }

.footer h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-light);
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-lighter);
}

.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--text-lighter); font-size: 0.8rem; }
.footer-bottom-links a:hover { color: var(--primary); }

/* Page Header */
.page-header {
  padding: 140px 0 60px;
  text-align: center;
  background: linear-gradient(135deg, #f8fafc, #eff6ff);
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.page-header p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Content Page */
.content-page {
  padding: 60px 0;
}

.content-page h2 {
  font-size: 1.6rem;
  margin: 40px 0 16px;
}

.content-page h3 {
  font-size: 1.2rem;
  margin: 24px 0 12px;
}

.content-page p {
  margin-bottom: 16px;
  color: var(--text-light);
}

.content-page ul, .content-page ol {
  margin: 0 0 20px 24px;
  color: var(--text-light);
}

.content-page li { margin-bottom: 8px; }

.content-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.content-page th, .content-page td {
  padding: 12px 16px;
  border: 1px solid var(--border);
  text-align: left;
  font-size: 0.9rem;
}

.content-page th {
  background: var(--bg-3);
  font-weight: 600;
}

.content-page td { color: var(--text-light); }

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

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

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

.blog-card-image {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: var(--bg-3);
}

.blog-card-body { padding: 24px; }

.blog-card-meta {
  font-size: 0.8rem;
  color: var(--text-lighter);
  margin-bottom: 8px;
}

.blog-card-body h3 { font-size: 1.1rem; margin-bottom: 10px; }

.blog-card-body h3 a { color: var(--text); }
.blog-card-body h3 a:hover { color: var(--primary); }

.blog-card-body p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.blog-card-body .btn { font-size: 0.85rem; padding: 10px 20px; }

/* Blog Post */
.blog-post-header {
  padding: 140px 0 40px;
  text-align: center;
  background: linear-gradient(135deg, #f8fafc, #eff6ff);
}

.blog-post-meta { font-size: 0.85rem; color: var(--text-lighter); margin-bottom: 16px; }

.blog-post-header h1 { font-size: 2.2rem; max-width: 700px; margin: 0 auto 12px; }

.blog-post-subtitle { color: var(--text-light); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

.blog-post-content {
  padding: 60px 0;
}

.blog-post-content h2 {
  font-size: 1.5rem;
  margin: 40px 0 16px;
}

.blog-post-content h3 {
  font-size: 1.15rem;
  margin: 24px 0 12px;
}

.blog-post-content p {
  margin-bottom: 16px;
  color: var(--text-light);
}

.blog-post-content ul, .blog-post-content ol {
  margin: 0 0 20px 24px;
  color: var(--text-light);
}

.blog-post-content li { margin-bottom: 8px; }

.blog-post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.blog-post-content th, .blog-post-content td {
  padding: 12px 16px;
  border: 1px solid var(--border);
  text-align: left;
  font-size: 0.9rem;
}

.blog-post-content th {
  background: var(--bg-3);
  font-weight: 600;
}

.blog-post-content td { color: var(--text-light); }

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.comparison-table th, .comparison-table td {
  padding: 12px 16px;
  border: 1px solid var(--border);
  text-align: left;
  font-size: 0.9rem;
}

.comparison-table th {
  background: var(--bg-3);
  font-weight: 600;
}

.comparison-table td { color: var(--text-light); }

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-float:hover { transform: scale(1.1); color: var(--white); }

/* Brand Stripes */
.brand-stripes {
  padding: 40px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.brand-stripes-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  opacity: 0.5;
}

.brand-stripe-item {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  white-space: nowrap;
}

/* Library Grid */
.library-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.library-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition);
}

.library-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--primary-light); }

.library-card-icon { font-size: 2rem; margin-bottom: 10px; }

.library-card h4 { font-size: 0.95rem; margin-bottom: 4px; }

.library-card p { font-size: 0.8rem; color: var(--text-lighter); }

.library-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 50px;
  margin-top: 8px;
}

.badge-hd { background: #dbeafe; color: #1d4ed8; }
.badge-4k { background: #fef3c7; color: #d97706; }
.badge-live { background: #fce7f3; color: #db2777; }

/* Device Setup Pages */
.setup-steps {
  counter-reset: step;
}

.setup-step {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.setup-step-number {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.setup-step-content h3 { font-size: 1rem; margin-bottom: 6px; }
.setup-step-content p { font-size: 0.9rem; color: var(--text-light); }

/* Trust Bar */
.trust-bar {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

.trust-item-icon {
  color: var(--primary);
  font-size: 1.1rem;
}

/* Guarantee Badge */
.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fef3c7;
  border: 1px solid #f59e0b;
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #92400e;
}

.guarantee-badge-icon { font-size: 1.3rem; }

/* Comparison Box */
.comparison-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 40px;
}

.comparison-col {
  padding: 32px;
}

.comparison-col:first-child {
  background: var(--bg);
  border-right: 1px solid var(--border);
}

.comparison-col:last-child {
  background: var(--primary-glow);
}

.comparison-col h4 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.comparison-col ul {
  list-style: none;
}

.comparison-col li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.comparison-col li .check { color: #16a34a; font-weight: 700; }
.comparison-col li .cross { color: #dc2626; font-weight: 700; }

/* Features Alt (alternating) */
.feature-alt {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}

.feature-alt-block {
  padding: 40px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.feature-alt-block:hover { box-shadow: var(--shadow); }

.feature-alt-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.15;
  margin-bottom: -20px;
}

.feature-alt-block h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.feature-alt-block p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Pricing Highlight */
.pricing-highlight {
  background: var(--bg);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.pricing-highlight-info h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.pricing-highlight-info p {
  font-size: 0.85rem;
  color: var(--text-light);
}

.pricing-highlight-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
}

/* Stats Counter Row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat-box {
  text-align: center;
  padding: 32px 16px;
  border-right: 1px solid var(--border);
}

.stat-box:last-child { border-right: none; }

.stat-box-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-box-label {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* Hero v2 */
.hero-v2 {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 50%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

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

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

.hero-v2-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-glow);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-v2 h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.hero-v2 h1 span { color: var(--primary); }

.hero-v2 p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 28px;
}

.hero-v2-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-v2-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-v2-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 400px;
}

.hero-v2-card h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  text-align: center;
}

.hero-v2-card .pricing-card {
  border: none;
  padding: 0;
  text-align: left;
}

.hero-v2-card .pricing-price { font-size: 2.4rem; }

/* Highlights Grid */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.highlight-chip {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 10px 16px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  transition: var(--transition);
}

.highlight-chip:hover { border-color: var(--primary); color: var(--primary); }

/* Responsive additions */
@media (max-width: 768px) {
  .hero-v2 .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-v2 h1 { font-size: 2rem; }
  .hero-v2-visual { display: none; }
  .feature-alt { grid-template-columns: 1fr; gap: 24px; }
  .comparison-box { grid-template-columns: 1fr; }
  .comparison-col:first-child { border-right: none; border-bottom: 1px solid var(--border); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-box:nth-child(2) { border-right: none; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Responsive */
@media (max-width: 768px) {
  .mobile-toggle { display: block; }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
  }

  .nav.open { display: flex; }

  .hero { padding: 120px 0 60px; }
  .hero h1 { font-size: 2rem; }
  .hero-stats { flex-direction: column; gap: 24px; }

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

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

  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .pricing-grid { grid-template-columns: 1fr; }
  .reviews-header { flex-direction: column; align-items: flex-start; }
  .reviews-header-logo { margin-left: 0; }

  .page-header { padding: 120px 0 40px; }
  .page-header h1 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .hero h1 { font-size: 1.6rem; }
}
