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

:root {
  --primary: #0f172a;
  --accent: #059669;
  --accent-hover: #047857;
  --accent-light: #d1fae5;
  --blue: #2563eb;
  --blue-light: #dbeafe;
  --bg-color: #ffffff;
  --bg-surface: #f8fafc;
  --bg-section: #f1f5f9;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --border: #e2e8f0;
  --border-strong: #cbd5e1;
  --card-bg: #ffffff;
  --card-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.05);
  --card-shadow-hover: 0 4px 12px rgba(0,0,0,0.12), 0 12px 32px rgba(0,0,0,0.08);
  --radius: 12px;
  --radius-lg: 20px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ============================================
   PROMO BANNER
   ============================================ */
.promo-banner {
  background: linear-gradient(90deg, #059669, #10B981, #059669);
  background-size: 200% auto;
  animation: gradient-slide 4s linear infinite;
  color: #fff;
  text-align: center;
  padding: 0.65rem 1rem;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 1001;
}

@keyframes gradient-slide {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  text-align: center;
  margin-bottom: 1.2rem;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.highlight {
  color: var(--accent);
  position: relative;
}

.section-label {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-label.blue {
  background: var(--blue-light);
  color: var(--blue);
}

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

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

/* ============================================
   HEADER / NAVBAR
   ============================================ */
header {
  position: fixed;
  top: 36px;
  width: 100%;
  z-index: 1000;
  transition: all 0.35s ease;
  padding: 1rem 0;
}

header.scrolled {
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.5rem;
}

.logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -1px;
}

.logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--accent);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-main);
}

.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 0.6rem 1.6rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.3);
}

.nav-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.4);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0.95rem 2.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.35);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.45);
  color: #fff;
}

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

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-blue {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.btn-blue:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
  color: #fff;
}

.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  padding-top: 160px;
  padding-bottom: 5rem;
  text-align: center;
  background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(5,150,105,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.online-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--accent);
  padding: 0.45rem 1.2rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid var(--accent-light);
  box-shadow: 0 2px 8px rgba(5,150,105,0.12);
}

.online-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 1.5s infinite alternate;
  flex-shrink: 0;
}

@keyframes pulse {
  from { opacity: 0.5; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1.2); }
}

.hero h1 {
  max-width: 800px;
  margin: 0 auto 1.2rem;
}

.hero .lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.hero-social-proof {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.hero-social-proof strong {
  color: var(--text-main);
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 1.5rem;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

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

.stat-item h3 {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 0.2rem;
  text-align: center;
}

.stat-item p {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ============================================
   BRANDS / APPS
   ============================================ */
.brands {
  padding: 3rem 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.brands p {
  margin-bottom: 1.2rem;
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.brand-logos {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  color: var(--text-light);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 2px;
}

.brand-logos span {
  transition: color 0.3s ease;
  cursor: default;
}

.brand-logos span:hover {
  color: var(--accent);
}

/* ============================================
   FEATURE CARDS
   ============================================ */
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--card-shadow);
}

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

.feature-card .icon-wrap {
  width: 60px;
  height: 60px;
  background: var(--accent-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  transition: all 0.3s ease;
}

.feature-card:hover .icon-wrap {
  background: var(--accent);
}

.feature-card i {
  font-size: 1.6rem;
  color: var(--accent);
  transition: color 0.3s ease;
}

.feature-card:hover i {
  color: #fff;
}

.feature-card h3 {
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

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

/* ============================================
   STEPS
   ============================================ */
.step-card {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  box-shadow: var(--card-shadow);
}

.step-card:hover {
  border-color: var(--accent);
  transform: translateX(6px);
  box-shadow: var(--card-shadow-hover);
}

.step-number {
  background: var(--accent);
  color: #fff;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

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

/* ============================================
   COMPARISON TABLE
   ============================================ */
.comparison-wrapper {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 1.1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.comparison-table th {
  font-weight: 700;
  color: var(--text-main);
  background: var(--bg-surface);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.comparison-table tr td:nth-child(2) {
  color: var(--accent);
  font-weight: 600;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover td {
  background: var(--bg-surface);
}

/* ============================================
   PRICING CARDS
   ============================================ */
.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
}

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

.pricing-card.popular {
  border-color: var(--accent);
  border-width: 2px;
  transform: scale(1.03);
  box-shadow: 0 8px 32px rgba(5, 150, 105, 0.15);
}

.pricing-card.popular:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 12px 40px rgba(5, 150, 105, 0.2);
}

.pricing-card .badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 0.35rem 1.2rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-align: center;
}

.price-main {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-main);
  text-align: center;
  line-height: 1;
  margin: 0.5rem 0;
}

.price-main span {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.price-period {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  background: var(--bg-section);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  display: inline-block;
  width: 100%;
}

.features-list {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.features-list li {
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.features-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--accent-light);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23059669'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ============================================
   COUNTDOWN
   ============================================ */
.countdown-section {
  text-align: center;
  margin-top: 4rem;
  padding: 2.5rem;
  background: #fff5f5;
  border: 1px solid #fecaca;
  border-radius: var(--radius-lg);
}

.countdown-section h3 {
  text-align: center;
  color: #dc2626;
  font-size: 1.2rem;
  margin-bottom: 0;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.time-box {
  background: #fff;
  border: 1px solid #fecaca;
  padding: 1rem;
  border-radius: 10px;
  font-size: 2rem;
  font-weight: 800;
  min-width: 90px;
  color: #dc2626;
  box-shadow: 0 2px 8px rgba(220,38,38,0.1);
}

.time-box span {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ============================================
   REVIEWS / AVALIAÇÕES
   ============================================ */
.reviews-section {
  background: var(--bg-surface);
}

.aggregate-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  box-shadow: var(--card-shadow);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

.aggregate-score {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
}

.aggregate-details .stars {
  color: #f59e0b;
  font-size: 1.4rem;
  letter-spacing: 2px;
  margin-bottom: 0.3rem;
}

.aggregate-details p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.review-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
}

.review-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--card-shadow-hover);
}

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

.review-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  flex-grow: 1;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 1.2rem;
}

.avatar {
  width: 46px;
  height: 46px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--accent);
  flex-shrink: 0;
}

.reviewer-info h4 {
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 0.1rem;
}

.reviewer-info span {
  font-size: 0.8rem;
  color: var(--text-light);
}

.review-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  margin-top: 0.2rem;
}

/* ============================================
   COMMENTS SECTION
   ============================================ */
.comments-section {
  background: #fff;
}

.comment-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.comment-card:hover {
  border-color: var(--border-strong);
}

.comment-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.comment-avatar {
  width: 40px;
  height: 40px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--blue);
  flex-shrink: 0;
}

.comment-meta h4 {
  font-size: 0.9rem;
  color: var(--text-main);
  margin-bottom: 0.1rem;
}

.comment-meta span {
  font-size: 0.75rem;
  color: var(--text-light);
}

.comment-text {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.comment-stars {
  color: #f59e0b;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
}

.trust-badge i {
  font-size: 1.5rem;
  color: var(--accent);
}

.trust-badge h4 {
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

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

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, #f0fdf4 0%, #dbeafe 100%);
  border-top: 1px solid var(--border);
  text-align: center;
}

/* ============================================
   FAQ
   ============================================ */
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

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

.faq-question {
  padding: 1.3rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-main);
  background: #fff;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: var(--bg-surface);
}

.faq-question .faq-icon {
  font-size: 1.2rem;
  color: var(--accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 600px;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--primary);
  color: #94a3b8;
  padding: 3.5rem 0 2rem;
}

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

.footer-brand .logo {
  color: #fff;
  display: block;
  margin-bottom: 0.8rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.footer-col a {
  display: block;
  color: #94a3b8;
  font-size: 0.88rem;
  margin-bottom: 0.6rem;
  transition: color 0.2s ease;
}

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

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

.footer-bottom a {
  color: #64748b;
  transition: color 0.2s ease;
}

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

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
  padding-top: 140px;
  padding-bottom: 4rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================
   CHANNEL CARDS
   ============================================ */
.channel-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
}

.channel-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--card-shadow-hover);
}

.channel-card i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

.channel-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.channel-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* ============================================
   DEVICE STEPS
   ============================================ */
.device-block {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--card-shadow);
}

.device-block h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.device-block h3 i {
  color: var(--accent);
}

.device-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background: var(--bg-surface);
  border-radius: var(--radius);
}

.device-step-num {
  background: var(--accent);
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
}

.device-step p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .pricing-card.popular {
    transform: scale(1);
  }
  .pricing-card.popular:hover {
    transform: translateY(-4px);
  }
}

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

  header {
    top: 0;
    padding: 0.9rem 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }

  .promo-banner { font-size: 0.78rem; padding: 0.7rem 1rem; line-height: 1.4; }

  .hero { padding-top: 110px; padding-bottom: 3rem; }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }

  .btn-group { flex-direction: column; width: 100%; padding: 0 1rem; }
  .btn-group .btn { width: 100%; }

  .stats-bar { flex-direction: column; align-items: center; gap: 1.5rem; padding: 2rem 1rem; }
  .stat-item { border-bottom: 1px solid var(--border); padding-bottom: 1.2rem; width: 80%; }
  .stat-item:last-child { border-bottom: none; }

  section { padding: 3.5rem 0; }

  .comparison-table { display: block; overflow-x: auto; }
  .comparison-table th, .comparison-table td { padding: 0.8rem 1rem; font-size: 0.85rem; }

  .countdown-timer { gap: 0.6rem; }
  .time-box { min-width: 75px; font-size: 1.6rem; padding: 0.8rem 0.5rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .aggregate-rating { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.6rem; }
  .stat-item h3 { font-size: 1.9rem; }
  .logo { font-size: 1.4rem; }
  .time-box { min-width: 65px; font-size: 1.4rem; }
}
