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

:root {
  --bg-primary: #1A1C1E;
  --bg-secondary: #151719;
  --bg-card: #2A2D31;
  --bg-card-hover: #32363B;
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  --text-primary: #F4F5F6;
  --text-secondary: #9DA3AE;
  --text-muted: #5A5F68;
  --accent: #7FBF2E;
  --accent-light: #93CC4D;
  --accent-dark: #6AAA1F;
  --accent-glow: rgba(127, 191, 46, 0.10);
  --danger: #D94848;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
  --font-heading: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

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

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.25rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 600; }
p { color: var(--text-secondary); }

a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-light); }

.gradient-text {
  color: var(--accent);
  -webkit-text-fill-color: var(--accent);
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; position: relative; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
  padding: 6px 14px;
  border: 1px solid rgba(127, 191, 46, 0.2);
  border-radius: 100px;
  background: rgba(127, 191, 46, 0.05);
}
.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.7;
}
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: #1A1C1E;
  box-shadow: 0 0 20px rgba(127, 191, 46, 0.20), 0 4px 12px rgba(0, 0, 0, 0.3);
}
.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(127, 191, 46, 0.30), 0 8px 24px rgba(0, 0, 0, 0.4);
  color: #1A1C1E;
}
.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-hover);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}
.nav.scrolled {
  background: rgba(26, 28, 30, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.nav-logo span { color: var(--accent); }
.tm {
  font-size: 0.6em;
  font-weight: 400;
  color: var(--text-muted);
  vertical-align: super;
  margin-left: 1px;
  line-height: 1;
}
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-cta {
  padding: 10px 20px !important;
  font-size: 0.85rem !important;
  color: #1A1C1E !important;
}
.nav-cta:hover {
  color: #1A1C1E !important;
}
.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  background: rgba(127, 191, 46, 0.08);
  border: 1px solid rgba(127, 191, 46, 0.15);
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-light);
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.hero h1 { margin-bottom: 20px; }
.hero p {
  font-size: 1.15rem;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-visual { position: relative; z-index: 2; }

/* Hero Dashboard Mockup */
.mockup {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.03);
}
.mockup-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}
.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-muted);
}
.mockup-dot:nth-child(1) { background: #D94848; }
.mockup-dot:nth-child(2) { background: #D4A843; }
.mockup-dot:nth-child(3) { background: var(--accent); }
.mockup-title {
  margin-left: 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}
.mockup-body { padding: 24px; }
.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.mockup-header h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}
.mockup-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  color: var(--accent);
  font-weight: 600;
  font-family: var(--font-heading);
}
.mockup-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.rate-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.78rem;
}
.rate-table th {
  padding: 10px 12px;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.rate-table td {
  padding: 10px 12px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}
.rate-table tr:last-child td { border-bottom: none; }
.rate-value { color: var(--text-primary); font-weight: 600; font-variant-numeric: tabular-nums; }
.rate-highlight {
  color: #1A1C1E;
  font-weight: 700;
  background: var(--accent);
  padding: 2px 8px;
  border-radius: 4px;
}
.mockup-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.mockup-meta {
  font-size: 0.7rem;
  color: var(--text-muted);
}
.mockup-btn {
  padding: 7px 16px;
  background: var(--accent);
  color: #1A1C1E;
  border: none;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  font-family: var(--font-heading);
  cursor: default;
}

/* ============================================
   PAIN POINTS
   ============================================ */
.pain-section { background: var(--bg-secondary); }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.pain-card {
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-primary);
  transition: var(--transition);
  position: relative;
}
.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--danger), transparent);
  border-radius: 0 0 2px 2px;
  opacity: 0.6;
}
.pain-card:hover { border-color: var(--border-hover); background: var(--bg-card); }
.pain-icon { font-size: 1.5rem; margin-bottom: 16px; display: block; }
.pain-card h3 { font-size: 1.05rem; margin-bottom: 10px; font-weight: 700; }
.pain-card p { font-size: 0.9rem; line-height: 1.65; }

/* ============================================
   HOW IT WORKS
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(127, 191, 46, 0.3), var(--accent));
  opacity: 0.15;
  z-index: 0;
}
.step { text-align: center; position: relative; }
.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 20px;
  border: 2px solid rgba(127, 191, 46, 0.2);
  background: var(--bg-primary);
  color: var(--accent);
  position: relative;
  z-index: 2;
}
.step h3 { margin-bottom: 10px; }
.step p { font-size: 0.88rem; max-width: 260px; margin: 0 auto; line-height: 1.65; }

/* ============================================
   FEATURES
   ============================================ */
.features-section { background: var(--bg-secondary); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.feature-card {
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-primary);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--accent);
  transition: height 0.4s ease;
}
.feature-card:hover::before { height: 100%; }
.feature-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 18px;
  background: var(--accent-glow);
  border: 1px solid rgba(127, 191, 46, 0.1);
}
.feature-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.feature-card p { font-size: 0.88rem; line-height: 1.65; }
.pro-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #1A1C1E;
  background: var(--accent);
  padding: 2px 7px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
}

/* ============================================
   BEFORE / AFTER
   ============================================ */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.comparison-card {
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.comparison-card.before {
  background: linear-gradient(135deg, rgba(217, 72, 72, 0.04), var(--bg-card));
  border-color: rgba(217, 72, 72, 0.12);
}
.comparison-card.after {
  background: linear-gradient(135deg, rgba(127, 191, 46, 0.04), var(--bg-card));
  border-color: rgba(127, 191, 46, 0.12);
}
.comparison-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.before .comparison-tag { background: rgba(217, 72, 72, 0.1); color: var(--danger); }
.after .comparison-tag { background: rgba(127, 191, 46, 0.1); color: var(--accent); }
.comparison-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.55;
}
.comparison-list .icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  margin-top: 2px;
}
.before .icon { background: rgba(217, 72, 72, 0.1); color: var(--danger); }
.after .icon { background: rgba(127, 191, 46, 0.1); color: var(--accent); }

/* ============================================
   AUDIENCE
   ============================================ */
.audience-section { background: var(--bg-secondary); }
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.audience-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-primary);
  transition: var(--transition);
}
.audience-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.audience-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.audience-card h3 { font-size: 0.95rem; margin-bottom: 6px; }
.audience-card p { font-size: 0.82rem; }

/* ============================================
   SCREENSHOTS
   ============================================ */
.screenshots-section { background: var(--bg-primary); }
.screenshots-gallery {
  margin-top: 48px;
}
.screenshots-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}
.screenshot-tab {
  padding: 10px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.screenshot-tab:hover {
  border-color: var(--border-hover);
  color: var(--text-primary);
}
.screenshot-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #1A1C1E;
}
.screenshot-panel {
  display: none;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-card);
}
.screenshot-panel.active { display: block; }
.screenshot-panel img {
  width: 100%;
  height: auto;
  display: block;
}
.screenshot-panel-caption {
  padding: 16px 20px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}
.screenshot-panel-caption span {
  color: var(--accent);
  font-weight: 700;
  margin-right: 8px;
}
/* Pro badge inside screenshot caption — override the generic span rule above */
.screenshot-panel-caption .pro-badge {
  color: #1A1C1E;
  background: var(--accent);
  margin-right: 0;
  margin-left: 6px;
}
/* Pro badge inside screenshot tab — readable on both inactive (dark) and active (green) states */
.screenshot-tab .pro-badge {
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  margin-left: 4px;
}
.screenshot-tab.active .pro-badge {
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
}

/* ============================================
   PRICING
   ============================================ */
.pricing-section { background: var(--bg-secondary); }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-card {
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-primary);
  position: relative;
}
.pricing-card.featured {
  border-color: rgba(127, 191, 46, 0.25);
  background: linear-gradient(160deg, rgba(127, 191, 46, 0.04), var(--bg-primary));
}
.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 32px;
  right: 32px;
  height: 2px;
  background: var(--accent);
  border-radius: 0 0 2px 2px;
}
.pricing-tier {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 8px;
}
.pricing-card h3 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.pricing-card h3 small {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}
.pricing-period {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.pricing-features li .check {
  flex-shrink: 0;
  color: var(--accent);
  font-weight: 700;
  margin-top: 1px;
}
.pricing-features li .x-mark {
  flex-shrink: 0;
  color: var(--text-muted);
  font-weight: 700;
  margin-top: 1px;
}
.pricing-card .btn { width: 100%; justify-content: center; }
.pricing-note {
  text-align: center;
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ============================================
   CTA
   ============================================ */
.cta-section {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  bottom: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}
.cta-box {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.cta-box h2 { margin-bottom: 16px; }
.cta-box > p { margin-bottom: 40px; }
.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 20px;
}
.cta-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto 20px;
}
.cta-input {
  flex: 1;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid var(--border-hover);
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-size: 0.92rem;
  font-family: var(--font-body);
  outline: none;
  transition: var(--transition);
}
.cta-input::placeholder { color: var(--text-muted); }
.cta-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }


/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 720px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--border-hover); }
.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}
.faq-question:hover { color: var(--accent-light); }
.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.footer-brand span { color: var(--accent); }
.footer-links { display: flex; gap: 24px; list-style: none; }
.footer-links a { color: var(--text-muted); font-size: 0.82rem; }
.footer-links a:hover { color: var(--text-secondary); }
.footer-copy { font-size: 0.78rem; color: var(--text-muted); }

.footer-made-row {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.7;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-top: 16px;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .mockup { max-width: 100%; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }

  /* Mobile menu */
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 28, 30, 0.95);
    backdrop-filter: blur(20px);
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--border);
    gap: 4px;
  }
  .nav-links.mobile-open a { padding: 10px 0; display: block; }
  .nav-links.mobile-open .btn { margin-top: 8px; text-align: center; justify-content: center; }

  .pain-grid,
  .steps-grid,
  .features-grid { grid-template-columns: 1fr; }
  .comparison-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .hero { min-height: auto; padding: 120px 0 60px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { justify-content: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-form { flex-direction: column; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }

  .footer-made-row {
    text-align: center;
    font-size: 0.72rem;
    padding-top: 10px;
  }
}

@media (max-width: 480px) {
  .audience-grid { grid-template-columns: 1fr; }
}

/* ============================================
   PRIVACY / SECONDARY PAGES
   ============================================ */
.nav-back {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}
.nav-back:hover { color: var(--accent); }

.content {
  max-width: 760px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}
.content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 8px;
}
.content h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin-top: 40px;
  margin-bottom: 12px;
}
.content p {
  margin-bottom: 16px;
  font-size: 1rem;
}

.last-updated {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 0.92rem;
}
.data-table th {
  text-align: left;
  padding: 12px 16px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-hover);
  background: var(--bg-secondary);
}
.data-table td {
  padding: 12px 16px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.contact-box {
  margin-top: 40px;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.contact-box p { margin-bottom: 4px; }
.contact-box p:last-child { margin-bottom: 0; }

.footer-inner--centered {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

@media (max-width: 768px) {
  .content { padding: 100px 20px 60px; }
  .data-table { font-size: 0.82rem; }
  .data-table th, .data-table td { padding: 10px 12px; }
}
