/* ════════════════════════════════════════
   MULTILOGIN DISCOUNT — Global Stylesheet
   style.css
════════════════════════════════════════ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Sora', sans-serif; background: #f8f7f4; color: #1a1a1a; line-height: 1.6; overflow-x: hidden; }

/* ── GOOGLE FONTS IMPORT ── */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700&family=DM+Mono:wght@400;500&display=swap');

/* ── ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.65s cubic-bezier(.22,.68,0,1.2), transform 0.65s cubic-bezier(.22,.68,0,1.2); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* ════════════════════════════════════════
   GLOBAL HEADER
════════════════════════════════════════ */
.global-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid #e8e4dc;
}
.gh-top {
  background: linear-gradient(255.96deg, #9647DB 0%, #005FF9 100%);
  text-align: center;
  padding: 6px 1.5rem;
  font-size: 11px; font-weight: 600;
  color: #fff; letter-spacing: 0.03em;
}
.gh-top a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.gh-top .gh-code {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  background: rgba(255,255,255,0.2);
  border-radius: 4px;
  padding: 1px 8px; margin: 0 4px;
  letter-spacing: 0.06em;
}
.gh-nav {
  max-width: 1200px; margin: 0 auto;
  padding: 0 1.5rem;
  display: flex; align-items: center;
  height: 58px; gap: 0;
}
.gh-brand {
  font-size: 15px; font-weight: 700;
  color: #1a1a1a; text-decoration: none;
  white-space: nowrap; flex-shrink: 0;
  margin-right: 28px;
}
.gh-brand span { color: #005ff9; }
.gh-menu {
  display: flex; align-items: center;
  gap: 0; flex: 1;
  overflow-x: auto; scrollbar-width: none;
}
.gh-menu::-webkit-scrollbar { display: none; }
.gh-menu-link {
  font-size: 13px; font-weight: 500;
  padding: 8px 13px; color: #555;
  text-decoration: none; white-space: nowrap;
  transition: color 0.15s; position: relative;
}
.gh-menu-link::after {
  content: ''; position: absolute;
  bottom: 0; left: 13px; right: 13px;
  height: 2px;
  background: linear-gradient(255.96deg, #9647DB 0%, #005FF9 100%);
  border-radius: 2px; transform: scaleX(0);
  transition: transform 0.2s;
}
.gh-menu-link:hover { color: #005ff9; }
.gh-menu-link:hover::after { transform: scaleX(1); }
.gh-menu-link.active { color: #005ff9; font-weight: 600; }
.gh-menu-link.active::after { transform: scaleX(1); }
.gh-cta {
  font-size: 12px; font-weight: 700;
  padding: 8px 20px;
  background: linear-gradient(255.96deg, #9647DB 0%, #005FF9 100%);
  color: #fff; border-radius: 10px;
  text-decoration: none; white-space: nowrap;
  flex-shrink: 0; margin-left: 16px;
  transition: all 0.2s;
  box-shadow: 0 2px 10px rgba(0,95,249,0.3);
}
.gh-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(0,95,249,0.4); }
.gh-mobile-toggle {
  display: none; background: none;
  border: none; cursor: pointer;
  padding: 6px; margin-left: auto;
  flex-direction: column; gap: 5px;
}
.gh-mobile-toggle span {
  display: block; width: 22px; height: 2px;
  background: #333; border-radius: 2px;
  transition: all 0.2s;
}
.gh-mobile-menu {
  display: none; flex-direction: column;
  background: #fff;
  border-top: 1px solid #e8e4dc;
  padding: 10px 1.5rem 16px;
}
.gh-mobile-menu.open { display: flex; }
.gh-mobile-menu a {
  font-size: 14px; font-weight: 500;
  color: #333; text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid #f0ede8;
  transition: color 0.15s;
}
.gh-mobile-menu a:last-child { border-bottom: none; }
.gh-mobile-menu a:hover { color: #005ff9; }

@media (max-width: 820px) {
  .gh-menu { display: none; }
  .gh-cta { display: none; }
  .gh-mobile-toggle { display: flex; }
}
@media (max-width: 480px) {
  .gh-brand { font-size: 14px; margin-right: 0; }
}

/* ════════════════════════════════════════
   LAYOUT UTILITIES
════════════════════════════════════════ */
.container { max-width: 1000px; margin: 0 auto; padding: 0 1.5rem; }
.section-pad { padding: 4rem 0; }
.divider { height: 1px; background: #e8e4dc; }
.bg-white { background: #fff; }
.bg-green { background: #eaf3fd; }
.bg-blue { background: linear-gradient(135deg, #eff6ff, #e8f2fd); }
.bg-amber { background: #fef5d7; }
.bg-pink { background: linear-gradient(135deg, #fff0f6, #fde8f1); }
.bg-gray { background: linear-gradient(135deg, #f8f7f4, #f1efe8); }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #ffffff 0%, #eaf3fd 50%, #e8f9f2 100%);
  border-radius: 0 0 32px 32px;
  padding: 4rem 2rem 3rem;
  text-align: center;
  border-bottom: 1px solid #d4e6fc;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(0,95,249,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute;
  bottom: -60px; left: -60px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(55,138,221,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center;
  gap: 6px; font-size: 11px; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  background: #eaf3fd; color: #0047cc;
  border: 1px solid #c2d9fb;
  padding: 5px 14px; border-radius: 20px;
  margin-bottom: 1.25rem;
}
.hero-badge::before { content: '●'; font-size: 7px; color: #005ff9; animation: pulse 2s infinite; }
.hero h1 { font-size: clamp(1.8rem, 5vw, 2.8rem); font-weight: 700; line-height: 1.15; margin-bottom: 1rem; color: #111; }
.hero h1 em { color: #005ff9; font-style: normal; }
.hero-sub { font-size: 15px; color: #555; max-width: 600px; margin: 0 auto 1rem; line-height: 1.65; }
.hero-meta { font-size: 12px; color: #999; margin-bottom: 2rem; }
.hero-meta a { color: #005ff9; text-decoration: none; }
.hero-pills { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 1.5rem; }
.hero-pill {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border: 1.5px solid #c2d9fb;
  border-radius: 14px; padding: 12px 20px;
  box-shadow: 0 2px 12px rgba(0,95,249,0.06);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.hero-pill:hover { border-color: #005ff9; box-shadow: 0 6px 24px rgba(0,95,249,0.12); transform: translateY(-2px); }
.hero-pill .p-label { font-size: 10px; color: #999; letter-spacing: 0.05em; text-transform: uppercase; }
.hero-pill .p-code { font-family: 'DM Mono', monospace; font-size: 16px; font-weight: 500; color: #005ff9; letter-spacing: 0.04em; }
.pill-copy {
  font-size: 11px; padding: 5px 12px;
  background: #eaf3fd; border: 1px solid #c2d9fb;
  border-radius: 8px; color: #0047cc;
  cursor: pointer; font-family: 'Sora', sans-serif;
  font-weight: 500; transition: all 0.15s;
}
.pill-copy:hover {
  background: linear-gradient(255.96deg, #9647DB 0%, #005FF9 100%);
  color: #fff; border-color: #005ff9; transform: scale(1.05);
}
.hero-cta-row { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-cta-btn { padding: 13px 28px; border-radius: 14px; font-size: 14px; font-weight: 700; text-decoration: none; transition: all 0.2s; font-family: 'Sora', sans-serif; }
.hero-cta-btn.primary { background: linear-gradient(255.96deg, #9647DB 0%, #005FF9 100%); color: #fff; box-shadow: 0 4px 20px rgba(0,95,249,0.35); }
.hero-cta-btn.primary:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,95,249,0.45); }
.hero-cta-btn.secondary { background: #fff; color: #005ff9; border: 1.5px solid #c2d9fb; box-shadow: 0 2px 12px rgba(0,95,249,0.06); }
.hero-cta-btn.secondary:hover { transform: translateY(-2px); border-color: #005ff9; }

/* ── UI MOCKUPS ── */
.ui-mockup { border-radius: 16px; overflow: hidden; box-shadow: 0 16px 64px rgba(0,0,0,0.12); border: 1px solid #e0e8f0; background: #1e2230; }
.mock-titlebar { background: #161928; padding: 10px 16px; display: flex; align-items: center; gap: 8px; }
.mock-dot { width: 11px; height: 11px; border-radius: 50%; }
.mock-dot.red { background: #ff5f57; }
.mock-dot.yellow { background: #febc2e; }
.mock-dot.green { background: #28c840; }
.mock-titlebar-text { font-family: 'DM Mono', monospace; font-size: 11px; color: #666; margin-left: 8px; }
.mock-dash { background: #f5f6fa; display: flex; height: 320px; }
.mock-sidebar { width: 180px; background: #1e2230; padding: 16px 12px; flex-shrink: 0; }
.mock-sidebar-logo { font-size: 12px; font-weight: 700; color: #005ff9; margin-bottom: 20px; letter-spacing: 0.05em; }
.mock-sidebar-item { display: flex; align-items: center; gap: 8px; padding: 7px 10px; border-radius: 8px; margin-bottom: 4px; font-size: 11px; color: #8892a4; cursor: default; }
.mock-sidebar-item.active { background: rgba(0,95,249,0.12); color: #005ff9; }
.mock-content { flex: 1; padding: 16px; overflow: hidden; }
.mock-topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.mock-topbar-title { font-size: 13px; font-weight: 700; color: #1a1a2e; }
.mock-topbar-btn { font-size: 10px; padding: 5px 12px; background: linear-gradient(255.96deg, #9647DB 0%, #005FF9 100%); color: #fff; border-radius: 6px; font-weight: 600; }
.mock-search { display: flex; align-items: center; gap: 8px; background: #fff; border: 1px solid #e8e4dc; border-radius: 8px; padding: 6px 10px; margin-bottom: 12px; }
.mock-search-bar { flex: 1; height: 6px; background: #e8e4dc; border-radius: 3px; }
.mock-profile-row { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid #e8e4dc; border-radius: 10px; padding: 10px 12px; margin-bottom: 6px; }
.mock-profile-row:last-child { margin-bottom: 0; }
.mock-avatar { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; color: #fff; }
.mock-profile-info { flex: 1; }
.mock-profile-name { height: 7px; background: #2a2a3a; border-radius: 4px; width: 90px; margin-bottom: 5px; }
.mock-profile-sub { height: 5px; background: #ddd; border-radius: 3px; width: 60px; }
.mock-status { font-size: 9px; padding: 2px 8px; border-radius: 10px; font-weight: 600; white-space: nowrap; }
.mock-status.running { background: #eaf3fd; color: #0047cc; }
.mock-status.idle { background: #f1efe8; color: #888; }
.mock-status.new { background: #e6f2fd; color: #1a5fa5; }
.mock-3dots { display: flex; gap: 2px; align-items: center; }
.mock-3dots span { width: 3px; height: 3px; border-radius: 50%; background: #ccc; display: block; }
.mock-stats-bar { background: #1e2230; padding: 14px 20px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.mock-stat-label { font-size: 9px; color: #6b7280; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 4px; }
.mock-stat-value { font-size: 16px; font-weight: 700; color: #fff; font-family: 'DM Mono', monospace; }
.mock-stat-value.green { color: #005ff9; }
.mock-stat-value.blue { color: #60a5fa; }
.mock-stat-value.amber { color: #f59e0b; }
.mock-fingerprint { background: #1e2230; padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.mock-fp-title { font-size: 11px; font-weight: 600; color: #e2e8f0; margin-bottom: 2px; }
.mock-fp-row { display: flex; align-items: center; gap: 10px; }
.mock-fp-label { font-size: 9px; color: #8892a4; width: 100px; flex-shrink: 0; font-family: 'DM Mono', monospace; }
.mock-fp-bar-wrap { flex: 1; height: 6px; background: rgba(255,255,255,0.08); border-radius: 3px; overflow: hidden; }
.mock-fp-bar { height: 100%; border-radius: 3px; }
.mock-fp-val { font-size: 9px; color: #005ff9; font-family: 'DM Mono', monospace; width: 50px; text-align: right; flex-shrink: 0; }

/* ── TYPOGRAPHY ── */
.section-label { font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 0.75rem; }
.sec-title { font-size: clamp(1.4rem, 3.5vw, 2rem); font-weight: 700; line-height: 1.2; margin-bottom: 0.6rem; }
.sec-sub { font-size: 14px; color: #666; max-width: 600px; line-height: 1.65; margin-bottom: 2rem; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 700px) { .split { grid-template-columns: 1fr; } }

/* ── LIST ITEMS ── */
.list-items { margin-top: 1.5rem; }
.list-item { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid #ede9e2; font-size: 13px; color: #555; line-height: 1.5; }
.list-item:last-child { border-bottom: none; }
.dot-green { width: 8px; height: 8px; border-radius: 50%; background: linear-gradient(255.96deg, #9647DB 0%, #005FF9 100%); flex-shrink: 0; margin-top: 5px; }
.dot-red { width: 8px; height: 8px; border-radius: 50%; background: #e24b4a; flex-shrink: 0; margin-top: 5px; }

/* ── FEATURE GRID ── */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 14px; margin-top: 2rem; }
.feature-card { background: #fff; border: 1px solid #e8e4dc; border-radius: 16px; padding: 1.25rem; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; }
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(0,0,0,0.08); border-color: #c2d9fb; }
.f-icon { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 0.75rem; font-size: 18px; }
.feature-card h4 { font-size: 13px; font-weight: 600; margin-bottom: 0.3rem; }
.feature-card p { font-size: 12px; color: #777; line-height: 1.5; }

/* ── USE CASES ── */
.use-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin-top: 2rem; }
.use-card { background: #fff; border-radius: 18px; padding: 1.5rem; border: 1px solid #e8e4dc; transition: transform 0.2s, box-shadow 0.2s; }
.use-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.09); }
.use-icon { width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 0.9rem; font-size: 20px; }
.use-card h3 { font-size: 14px; font-weight: 600; margin-bottom: 0.4rem; }
.use-card p { font-size: 12px; color: #666; line-height: 1.6; }

/* ── PRICING TABLE ── */
.pricing-wrap { overflow-x: auto; margin-top: 2rem; border-radius: 16px; box-shadow: 0 2px 16px rgba(0,0,0,0.06); }
.pricing-table { width: 100%; border-collapse: separate; border-spacing: 0; font-size: 13px; min-width: 640px; }
.pricing-table thead th { background: linear-gradient(255.96deg, #9647DB 0%, #005FF9 100%); color: #fff; padding: 14px 16px; text-align: left; font-weight: 600; font-size: 12px; }
.pricing-table thead th:first-child { border-radius: 16px 0 0 0; }
.pricing-table thead th:last-child { border-radius: 0 16px 0 0; }
.pricing-table tbody tr { background: #fff; transition: background 0.15s; }
.pricing-table tbody tr:hover { background: #f0f6ff; }
.pricing-table tbody tr:nth-child(even) { background: #fafaf8; }
.pricing-table td { padding: 13px 16px; border-bottom: 1px solid #f0ede8; }
.pricing-table tbody tr:last-child td { border-bottom: none; }
.pricing-table td:first-child { font-weight: 700; }
.plan-badge { display: inline-block; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 6px; background: #eaf3fd; color: #0047cc; }
.highlight-row td { background: linear-gradient(90deg, #eaf3fd, #fefce8) !important; }
.highlight-row td:first-child { color: #005ff9; }

/* ── PLAN CARDS ── */
.plan-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-top: 2.5rem; }
.plan-card { background: #fff; border: 1.5px solid #e8e4dc; border-radius: 20px; padding: 1.75rem 1.5rem; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; position: relative; }
.plan-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.09); border-color: #c2d9fb; }
.plan-card.popular { border-color: #005ff9; box-shadow: 0 8px 32px rgba(0,95,249,0.12); }
.popular-tag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(255.96deg, #9647DB 0%, #005FF9 100%); color: #fff; font-size: 10px; font-weight: 700; padding: 3px 14px; border-radius: 20px; white-space: nowrap; letter-spacing: 0.05em; }
.plan-emoji { font-size: 24px; margin-bottom: 10px; }
.plan-name { font-size: 16px; font-weight: 700; color: #111; margin-bottom: 4px; }
.plan-price-main { font-size: 28px; font-weight: 700; color: #005ff9; font-family: 'DM Mono', monospace; line-height: 1; margin-bottom: 2px; }
.plan-price-sub { font-size: 11px; color: #999; margin-bottom: 1rem; }
.plan-price-disc { font-size: 13px; color: #005ff9; font-weight: 600; background: #eaf3fd; border: 1px solid #c2d9fb; border-radius: 8px; padding: 4px 10px; display: inline-block; margin-bottom: 1rem; }
.plan-divider { height: 1px; background: #ede9e2; margin: 1rem 0; }
.plan-feature { display: flex; gap: 8px; align-items: flex-start; font-size: 12px; color: #555; line-height: 1.45; margin-bottom: 8px; }
.plan-feature:last-child { margin-bottom: 0; }
.plan-check { color: #005ff9; font-size: 11px; flex-shrink: 0; margin-top: 1px; font-weight: 700; }
.plan-cta { display: block; width: 100%; padding: 10px; border-radius: 10px; font-size: 13px; font-weight: 700; text-align: center; text-decoration: none; margin-top: 1.25rem; transition: all 0.2s; font-family: 'Sora', sans-serif; }
.plan-cta.solid { background: linear-gradient(255.96deg, #9647DB 0%, #005FF9 100%); color: #fff; box-shadow: 0 4px 16px rgba(0,95,249,0.28); }
.plan-cta.solid:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,95,249,0.38); }
.plan-cta.outline { background: #fff; color: #005ff9; border: 1.5px solid #c2d9fb; }
.plan-cta.outline:hover { background: #eaf3fd; transform: translateY(-2px); }

/* ── COMPARISON TABLE ── */
.table-wrap { overflow-x: auto; border-radius: 16px; }
.comp-table { width: 100%; border-collapse: separate; border-spacing: 0; font-size: 13px; border-radius: 16px; overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,0.06); margin-top: 2rem; min-width: 580px; }
.comp-table thead th { background: #1a1a1a; color: #fff; padding: 14px 16px; text-align: left; font-weight: 500; font-size: 12px; }
.comp-table tbody tr { background: #fff; transition: background 0.15s; }
.comp-table tbody tr:hover { background: #f0f6ff; }
.comp-table tbody tr:nth-child(even) { background: #fafaf8; }
.comp-table td { padding: 12px 16px; border-bottom: 1px solid #f0ede8; vertical-align: middle; }
.comp-table tbody tr:last-child td { border-bottom: none; }
.comp-table td:first-child { font-weight: 600; }
.comp-table td.hl { font-weight: 700; color: #005ff9; }
.check { color: #005ff9; font-weight: 700; }
.cross { color: #e24b4a; }

/* ── STEPS ── */
.steps-list { margin-top: 2rem; }
.step-item { display: flex; gap: 18px; padding: 1.25rem 0; border-bottom: 1px solid #ede9e2; align-items: flex-start; }
.step-item:last-child { border-bottom: none; }
.step-num { min-width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(255.96deg, #9647DB 0%, #005FF9 100%); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; box-shadow: 0 4px 12px rgba(0,95,249,0.3); }
.step-item strong { display: block; font-size: 14px; font-weight: 600; margin-bottom: 3px; }
.step-item p { font-size: 13px; color: #666; line-height: 1.5; }

/* ── CTA BUTTONS ── */
.cta-btn { display: block; width: 100%; padding: 12px; border-radius: 12px; font-size: 13px; font-weight: 600; text-align: center; text-decoration: none; border: none; cursor: pointer; font-family: 'Sora', sans-serif; transition: all 0.2s; }
.cta-btn:hover { transform: translateY(-2px); }
.cta-btn.green { background: linear-gradient(255.96deg, #9647DB 0%, #005FF9 100%); color: #fff; box-shadow: 0 4px 16px rgba(0,95,249,0.3); }
.cta-btn.green:hover { box-shadow: 0 8px 28px rgba(0,95,249,0.4); }
.inline-cta { background: linear-gradient(255.96deg, #9647DB 0%, #005FF9 100%); border-radius: 20px; padding: 2rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; margin-top: 2.5rem; }
.inline-cta p { color: #fff; font-size: 14px; font-weight: 500; margin: 0; }
.inline-cta p strong { font-size: 16px; display: block; margin-bottom: 2px; }
.inline-cta a { display: inline-block; padding: 11px 24px; background: #fff; color: #005ff9; border-radius: 12px; font-size: 13px; font-weight: 700; text-decoration: none; white-space: nowrap; transition: all 0.2s; box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.inline-cta a:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.18); }

/* ── FAQ ── */
.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 14px; margin-top: 2rem; }
.faq-item { background: #fff; border: 1px solid #e8e4dc; border-radius: 14px; padding: 1.25rem; transition: border-color 0.2s, box-shadow 0.2s; }
.faq-item:hover { border-color: #c2d9fb; box-shadow: 0 4px 20px rgba(0,95,249,0.06); }
.faq-q { font-size: 13px; font-weight: 600; margin-bottom: 0.5rem; color: #111; }
.faq-a { font-size: 12px; color: #666; line-height: 1.6; }
.ci { font-family: 'DM Mono', monospace; font-size: 11px; background: #eaf3fd; color: #0047cc; padding: 1px 6px; border-radius: 4px; border: 1px solid #c2d9fb; }

/* ── NOTE BOX ── */
.note-box { background: linear-gradient(135deg, #fefce8, #fef9c3); border: 1px solid #fde68a; border-radius: 14px; padding: 1.25rem 1.5rem; font-size: 13px; color: #78350f; line-height: 1.6; margin-top: 1.5rem; }
.note-box strong { color: #92400e; }

/* ── VERDICT / RATING ── */
.verdict-box { background: linear-gradient(135deg, #eaf3fd, #d4e6fc); border: 2px solid #c2d9fb; border-radius: 20px; padding: 2rem; margin-top: 2rem; }
.verdict-box h3 { font-size: 16px; font-weight: 700; color: #0047cc; margin-bottom: 0.75rem; }
.verdict-box p { font-size: 14px; color: #444; line-height: 1.7; }
.rating-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; margin-top: 2rem; }
.rating-card { background: #fff; border: 1px solid #e8e4dc; border-radius: 16px; padding: 1.25rem; }
.rating-card-label { font-size: 11px; font-weight: 600; color: #555; margin-bottom: 10px; }
.rating-bar-wrap { height: 8px; background: #f0ede8; border-radius: 4px; overflow: hidden; margin-bottom: 6px; }
.rating-bar { height: 100%; border-radius: 4px; background: linear-gradient(90deg, #005ff9, #0047cc); }
.rating-card-score { font-size: 13px; font-weight: 700; color: #005ff9; font-family: 'DM Mono', monospace; }
.rating-box { display: inline-flex; align-items: center; gap: 10px; background: #fff; border: 1.5px solid #c2d9fb; border-radius: 14px; padding: 12px 20px; box-shadow: 0 2px 12px rgba(0,95,249,0.06); margin-bottom: 1.5rem; }
.rating-stars { font-size: 18px; letter-spacing: 1px; }
.rating-score { font-size: 22px; font-weight: 700; color: #005ff9; font-family: 'DM Mono', monospace; }
.rating-label { font-size: 11px; color: #888; }

/* ── PROS CONS ── */
.pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 2rem; }
@media (max-width: 600px) { .pros-cons-grid { grid-template-columns: 1fr; } }
.pros-box { background: linear-gradient(135deg, #eaf3fd, #d4e6fc); border: 1px solid #c2d9fb; border-radius: 16px; padding: 1.5rem; }
.cons-box { background: linear-gradient(135deg, #fff5f5, #fee2e2); border: 1px solid #fca5a5; border-radius: 16px; padding: 1.5rem; }
.pc-title { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem; }
.pros-box .pc-title { color: #0047cc; }
.cons-box .pc-title { color: #b91c1c; }

/* ── OVERVIEW TABLE ── */
.overview-table { width: 100%; border-collapse: collapse; font-size: 13px; margin-top: 2rem; border-radius: 16px; overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,0.06); }
.overview-table tr { border-bottom: 1px solid #f0ede8; }
.overview-table tr:last-child { border-bottom: none; }
.overview-table td { padding: 11px 16px; background: #fff; }
.overview-table td:first-child { font-weight: 600; color: #555; width: 42%; background: #fafaf8; font-size: 12px; }
.overview-table td:last-child { color: #111; font-weight: 500; }

/* ── SAVINGS TABLE ── */
.savings-table { width: 100%; border-collapse: separate; border-spacing: 0; font-size: 13px; border-radius: 16px; overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,0.06); margin-top: 2rem; }
.savings-table thead th { background: #1a1a1a; color: #fff; padding: 13px 16px; text-align: left; font-weight: 500; font-size: 12px; }
.savings-table tbody tr { background: #fff; }
.savings-table tbody tr:nth-child(even) { background: #fafaf8; }
.savings-table tbody tr:hover { background: #f0f6ff; }
.savings-table td { padding: 12px 16px; border-bottom: 1px solid #f0ede8; }
.savings-table tbody tr:last-child td { border-bottom: none; }
.savings-table td:first-child { font-weight: 600; }
.savings-amt { color: #005ff9; font-weight: 700; font-family: 'DM Mono', monospace; }

/* ── INCLUDED GRID ── */
.included-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; margin-top: 2rem; }
.included-item { background: #fff; border: 1px solid #e8e4dc; border-radius: 14px; padding: 1rem 1.25rem; display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 500; color: #333; transition: border-color 0.2s; }
.included-item:hover { border-color: #c2d9fb; }
.included-icon { font-size: 18px; flex-shrink: 0; }

/* ── BREADCRUMB ── */
.breadcrumb { font-size: 12px; color: #aaa; padding: 12px 0 0; }
.breadcrumb a { color: #005ff9; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 6px; }

/* ════════════════════════════════════════
   BLOG / ARCHIVE PAGE
════════════════════════════════════════ */
.archive-hero { background: linear-gradient(135deg, #1e2230 0%, #0d1a14 100%); padding: 4rem 2rem 3rem; text-align: center; position: relative; overflow: hidden; }
.archive-hero::before { content:''; position:absolute; top:-100px; right:-100px; width:400px; height:400px; background:radial-gradient(circle, rgba(0,95,249,0.1) 0%, transparent 70%); pointer-events:none; }
.archive-hero::after { content:''; position:absolute; bottom:-80px; left:-80px; width:300px; height:300px; background:radial-gradient(circle, rgba(55,138,221,0.08) 0%, transparent 70%); pointer-events:none; }
.archive-hero h1 { font-size: clamp(1.8rem, 4.5vw, 2.6rem); font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 0.75rem; }
.archive-hero h1 em { color: #005ff9; font-style: normal; }
.archive-hero p { font-size: 15px; color: rgba(255,255,255,0.65); max-width: 520px; margin: 0 auto 2rem; line-height: 1.65; }
.archive-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; background: rgba(0,95,249,0.15); color: #93b4ff; border: 1px solid rgba(0,95,249,0.3); padding: 5px 14px; border-radius: 20px; margin-bottom: 1.25rem; }
.archive-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-top: 2.5rem; }
.archive-card { background: #fff; border: 1px solid #e8e4dc; border-radius: 20px; overflow: hidden; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; cursor: pointer; }
.archive-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.1); border-color: #c2d9fb; }
.archive-card-header { padding: 1.5rem 1.5rem 1rem; }
.archive-card-icon { font-size: 28px; margin-bottom: 10px; }
.archive-card-tag { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; padding: 3px 10px; border-radius: 6px; margin-bottom: 10px; }
.tag-coupon { background: #eaf3fd; color: #005ff9; }
.tag-review { background: #e6f2fd; color: #1a5fa5; }
.tag-pricing { background: #fef3c7; color: #92400e; }
.tag-guide { background: #f3e5f5; color: #6b21a8; }
.archive-card h3 { font-size: 16px; font-weight: 700; color: #111; line-height: 1.3; margin-bottom: 6px; }
.archive-card-desc { font-size: 12px; color: #666; line-height: 1.6; }
.archive-card-footer { padding: 1rem 1.5rem 1.5rem; border-top: 1px solid #f0ede8; display: flex; align-items: center; justify-content: space-between; }
.archive-card-meta { font-size: 11px; color: #aaa; }
.archive-card-btn { font-size: 12px; font-weight: 700; color: #005ff9; background: #eaf3fd; border: 1.5px solid #c2d9fb; border-radius: 8px; padding: 6px 14px; cursor: pointer; font-family: 'Sora', sans-serif; transition: all 0.15s; white-space: nowrap; text-decoration: none; display: inline-block; }
.archive-card-btn:hover { background: linear-gradient(255.96deg, #9647DB 0%, #005FF9 100%); color: #fff; border-color: #005ff9; }
.archive-filter { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 2rem; }
.filter-btn { font-size: 12px; font-weight: 600; padding: 6px 16px; border-radius: 20px; border: 1.5px solid #e8e4dc; background: #fff; color: #666; cursor: pointer; transition: all 0.15s; font-family: 'Sora', sans-serif; }
.filter-btn:hover, .filter-btn.active { background: linear-gradient(255.96deg, #9647DB 0%, #005FF9 100%); color: #fff; border-color: #005ff9; }

/* ════════════════════════════════════════
   ALTERNATIVES PAGE
════════════════════════════════════════ */
.toc-box { background: #fff; border: 1px solid #e8e4dc; border-radius: 16px; padding: 1.5rem; margin-top: 2rem; }
.toc-title { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #555; margin-bottom: 12px; }
.toc-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.toc-list li a { font-size: 13px; color: #555; text-decoration: none; display: flex; align-items: center; gap: 8px; padding: 6px 0; border-bottom: 1px solid #f5f3ef; transition: color 0.15s; }
.toc-list li:last-child a { border-bottom: none; }
.toc-list li a:hover { color: #005ff9; }
.toc-num { font-family: 'DM Mono', monospace; font-size: 11px; color: #005ff9; font-weight: 700; width: 22px; flex-shrink: 0; }
.alt-section { border-radius: 24px; overflow: hidden; margin-top: 2rem; border: 1.5px solid #e8e4dc; background: #fff; }
.alt-header { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding: 1.75rem 2rem 1.25rem; border-bottom: 1px solid #f0ede8; }
.alt-num { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #005ff9; margin-bottom: 4px; }
.alt-name { font-size: 20px; font-weight: 700; color: #111; margin-bottom: 2px; }
.alt-tagline { font-size: 13px; color: #888; }
.alt-rating { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.alt-stars { font-size: 14px; }
.alt-score { font-family: 'DM Mono', monospace; font-size: 16px; font-weight: 700; color: #005ff9; }
.alt-body { padding: 1.5rem 2rem 2rem; }
.alt-desc { font-size: 14px; color: #444; line-height: 1.7; margin-bottom: 1.5rem; }
.alt-features-title { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #888; margin-bottom: 10px; }
.alt-features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 1.5rem; }
.alt-feat-tag { font-size: 11px; font-weight: 600; padding: 4px 12px; border-radius: 20px; background: #eaf3fd; color: #0047cc; border: 1px solid #c2d9fb; }
.alt-verdict { background: linear-gradient(135deg, #fefce8, #fef9c3); border: 1px solid #fde68a; border-radius: 12px; padding: 1rem 1.25rem; font-size: 13px; color: #78350f; line-height: 1.65; margin-top: 1.25rem; }
.alt-verdict strong { color: #92400e; }
.winner-box { background: linear-gradient(255.96deg, #9647DB 0%, #005FF9 100%); border-radius: 24px; padding: 2.5rem 2rem; color: #fff; position: relative; overflow: hidden; margin-top: 2rem; }
.winner-box::before { content: ''; position: absolute; top: -60px; right: -60px; width: 220px; height: 220px; background: rgba(255,255,255,0.07); border-radius: 50%; }
.winner-box::after { content: ''; position: absolute; bottom: -80px; left: -40px; width: 260px; height: 260px; background: rgba(255,255,255,0.04); border-radius: 50%; }
.winner-box h3 { font-size: 20px; font-weight: 700; margin-bottom: 0.6rem; position: relative; z-index: 1; }
.winner-box p { font-size: 14px; opacity: 0.9; line-height: 1.7; margin-bottom: 1.25rem; position: relative; z-index: 1; max-width: 560px; }
.winner-reasons { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 10px; margin-bottom: 1.75rem; position: relative; z-index: 1; }
.winner-reason { background: rgba(255,255,255,0.12); border-radius: 10px; padding: 10px 14px; font-size: 12px; font-weight: 500; }
.winner-reason strong { display: block; font-size: 13px; margin-bottom: 2px; }
.winner-cta { display: inline-block; padding: 12px 28px; background: #fff; color: #005ff9; border-radius: 12px; font-size: 13px; font-weight: 700; text-decoration: none; transition: all 0.2s; position: relative; z-index: 1; }
.winner-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.alt-pricing-wrap { overflow-x: auto; margin-top: 1.5rem; border-radius: 12px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.alt-pricing-table { width: 100%; border-collapse: separate; border-spacing: 0; font-size: 12px; min-width: 360px; }
.alt-pricing-table thead th { background: #1a1a2e; color: #fff; padding: 10px 14px; text-align: left; font-weight: 600; font-size: 11px; }
.alt-pricing-table thead th:first-child { border-radius: 12px 0 0 0; }
.alt-pricing-table thead th:last-child { border-radius: 0 12px 0 0; }
.alt-pricing-table tbody tr { background: #fff; }
.alt-pricing-table tbody tr:nth-child(even) { background: #fafaf8; }
.alt-pricing-table tbody tr:hover { background: #f0f6ff; }
.alt-pricing-table td { padding: 10px 14px; border-bottom: 1px solid #f0ede8; }
.alt-pricing-table tbody tr:last-child td { border-bottom: none; }
.alt-pricing-table td:first-child { font-weight: 600; }
.alt-vs-wrap { overflow-x: auto; margin-top: 1.5rem; border-radius: 12px; }
.alt-vs-table { width: 100%; border-collapse: separate; border-spacing: 0; font-size: 12px; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.06); min-width: 360px; }
.alt-vs-table thead th { background: #1a1a1a; color: #fff; padding: 10px 14px; text-align: left; font-weight: 500; font-size: 11px; }
.alt-vs-table tbody tr { background: #fff; }
.alt-vs-table tbody tr:nth-child(even) { background: #fafaf8; }
.alt-vs-table tbody tr:hover { background: #f0f6ff; }
.alt-vs-table td { padding: 10px 14px; border-bottom: 1px solid #f0ede8; font-size: 12px; }
.alt-vs-table tbody tr:last-child td { border-bottom: none; }
.alt-vs-table td:first-child { font-weight: 600; }
.alt-vs-table td.hl { font-weight: 700; color: #005ff9; }
.alt-master-wrap { overflow-x: auto; border-radius: 16px; margin-top: 2rem; }
.alt-master-table { width: 100%; border-collapse: separate; border-spacing: 0; font-size: 12px; border-radius: 16px; overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,0.06); min-width: 700px; }
.alt-master-table thead th { background: #1a1a1a; color: #fff; padding: 12px 14px; text-align: left; font-weight: 500; font-size: 11px; }
.alt-master-table tbody tr { background: #fff; transition: background 0.15s; }
.alt-master-table tbody tr:hover { background: #f0f6ff; }
.alt-master-table tbody tr:nth-child(even) { background: #fafaf8; }
.alt-master-table tbody tr:nth-child(even):hover { background: #eaf3fd; }
.alt-master-table td { padding: 11px 14px; border-bottom: 1px solid #f0ede8; vertical-align: middle; }
.alt-master-table tbody tr:last-child td { border-bottom: none; }
.alt-master-table td:first-child { font-weight: 700; }
.alt-master-table tr.ml-highlight td { background: linear-gradient(90deg, #eaf3fd, #fefce8) !important; }
.alt-master-table tr.ml-highlight td:first-child { color: #005ff9; }
@media (max-width: 600px) { .alt-header { flex-direction: column; } .winner-reasons { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════
   DEALS PAGE
════════════════════════════════════════ */
.deals-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 20px; margin-top: 2.5rem; }
.deal-card { background: #fff; border: 1.5px solid #e8e4dc; border-radius: 20px; overflow: hidden; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; display: flex; flex-direction: column; }
.deal-card:hover { transform: translateY(-5px); box-shadow: 0 14px 44px rgba(0,0,0,0.09); border-color: #c2d9fb; }
.deal-card.featured { border-color: #005ff9; box-shadow: 0 6px 28px rgba(0,95,249,0.12); }
.deal-card-top { padding: 1.25rem 1.5rem 1rem; flex: 1; }
.deal-emoji { font-size: 26px; margin-bottom: 10px; display: block; }
.deal-badge { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 3px 10px; border-radius: 6px; margin-bottom: 10px; }
.deal-badge.new-user { background: #eaf3fd; color: #0047cc; }
.deal-badge.enterprise { background: #e6f2fd; color: #1a5fa5; }
.deal-badge.trial { background: #f3e5f5; color: #6b21a8; }
.deal-badge.agency { background: #fef3c7; color: #92400e; }
.deal-badge.affiliate { background: #fce4ec; color: #9d174d; }
.deal-badge.ecommerce { background: #e8f5e9; color: #003db0; }
.deal-badge.scraping { background: #eff6ff; color: #1e40af; }
.deal-badge.team { background: #fdf2f8; color: #86198f; }
.deal-badge.annual { background: #fffbeb; color: #92400e; }
.deal-badge.ai { background: #eaf3fd; color: #003db0; }
.deal-card h3 { font-size: 14px; font-weight: 700; color: #111; line-height: 1.35; margin-bottom: 6px; }
.deal-desc { font-size: 12px; color: #666; line-height: 1.6; margin-bottom: 1rem; }
.deal-code-row { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.deal-code { font-family: 'DM Mono', monospace; font-size: 12px; font-weight: 600; background: #eaf3fd; color: #0047cc; border: 1px solid #c2d9fb; border-radius: 6px; padding: 3px 10px; }
.deal-code-note { font-size: 11px; color: #aaa; }
.deal-card-footer { padding: 1rem 1.5rem 1.25rem; border-top: 1px solid #f0ede8; }
.deal-cta-btn { display: block; width: 100%; padding: 10px 16px; background: linear-gradient(255.96deg, #9647DB 0%, #005FF9 100%); color: #fff; border-radius: 10px; font-size: 13px; font-weight: 700; text-align: center; text-decoration: none; transition: all 0.2s; box-shadow: 0 3px 12px rgba(0,95,249,0.25); font-family: 'Sora', sans-serif; }
.deal-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(0,95,249,0.38); }
.deal-cta-btn.outline { background: #fff; color: #005ff9; border: 1.5px solid #c2d9fb; box-shadow: none; }
.deal-cta-btn.outline:hover { background: #eaf3fd; }
.deal-savings-tag { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700; color: #0047cc; background: #eaf3fd; border: 1px solid #c2d9fb; border-radius: 20px; padding: 3px 10px; margin-bottom: 8px; }
.redeem-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-top: 2rem; }
.redeem-step { background: #fff; border: 1px solid #e8e4dc; border-radius: 16px; padding: 1.25rem; display: flex; gap: 14px; align-items: flex-start; transition: border-color 0.2s; }
.redeem-step:hover { border-color: #c2d9fb; }
.redeem-step-num { min-width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(255.96deg, #9647DB 0%, #005FF9 100%); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; box-shadow: 0 3px 10px rgba(0,95,249,0.28); }
.redeem-step-text strong { display: block; font-size: 13px; font-weight: 600; color: #111; margin-bottom: 3px; }
.redeem-step-text span { font-size: 12px; color: #666; line-height: 1.5; }
.savings-breakdown { background: #fff; border: 1px solid #e8e4dc; border-radius: 16px; overflow: hidden; margin-top: 2rem; box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
.sb-row { display: flex; align-items: center; justify-content: space-between; padding: 13px 20px; border-bottom: 1px solid #f0ede8; }
.sb-row:last-child { border-bottom: none; }
.sb-row:nth-child(even) { background: #fafaf8; }
.sb-plan { font-size: 13px; font-weight: 600; color: #333; }
.sb-original { font-size: 12px; color: #bbb; text-decoration: line-through; font-family: 'DM Mono', monospace; }
.sb-discounted { font-size: 16px; font-weight: 700; color: #005ff9; font-family: 'DM Mono', monospace; }
.sb-save { font-size: 11px; font-weight: 700; background: #eaf3fd; color: #0047cc; border-radius: 6px; padding: 2px 8px; }
@media (max-width: 600px) { .deals-grid { grid-template-columns: 1fr; } .redeem-steps { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════
   GUIDE / HOW-TO PAGES
════════════════════════════════════════ */
.guide-layout { display: grid; grid-template-columns: 240px 1fr; gap: 3rem; align-items: flex-start; }
@media (max-width: 860px) { .guide-layout { grid-template-columns: 1fr; } }
.guide-sidebar { position: sticky; top: 90px; }
.guide-toc { background: #fff; border: 1px solid #e8e4dc; border-radius: 16px; padding: 1.25rem; }
.guide-toc-title { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #888; margin-bottom: 12px; }
.guide-toc-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.guide-toc-list li a { font-size: 12px; color: #555; text-decoration: none; display: flex; align-items: center; gap: 8px; padding: 6px 8px; border-radius: 8px; transition: all 0.15s; }
.guide-toc-list li a:hover { background: #eaf3fd; color: #005ff9; }
.guide-toc-num { font-family: 'DM Mono', monospace; font-size: 10px; color: #005ff9; font-weight: 700; width: 20px; flex-shrink: 0; }
.guide-step { margin-bottom: 3rem; }
.guide-step-header { display: flex; align-items: center; gap: 14px; margin-bottom: 1.25rem; padding-bottom: 1rem; border-bottom: 2px solid #e8e4dc; }
.guide-step-num { min-width: 40px; height: 40px; border-radius: 12px; background: linear-gradient(255.96deg, #9647DB 0%, #005FF9 100%); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 700; flex-shrink: 0; box-shadow: 0 4px 14px rgba(0,95,249,0.3); }
.guide-step-header h2 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); font-weight: 700; color: #111; line-height: 1.25; margin: 0; }
.guide-step-body { font-size: 14px; color: #444; line-height: 1.75; }
.guide-step-body p { margin-bottom: 1rem; }
.guide-step-body p:last-child { margin-bottom: 0; }
.guide-step-body strong { color: #111; }
.guide-substeps { list-style: none; margin: 1rem 0; display: flex; flex-direction: column; gap: 10px; }
.guide-substeps li { display: flex; gap: 12px; align-items: flex-start; font-size: 13px; color: #444; line-height: 1.6; }
.guide-substep-n { min-width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(255.96deg, #9647DB 0%, #005FF9 100%); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.guide-option { background: #fff; border: 1.5px solid #e8e4dc; border-radius: 14px; padding: 1.25rem; margin-bottom: 12px; }
.guide-option:last-child { margin-bottom: 0; }
.guide-option-label { font-size: 11px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: #0047cc; margin-bottom: 8px; }
.guide-option h4 { font-size: 14px; font-weight: 700; color: #111; margin-bottom: 8px; }
.guide-option p { font-size: 13px; color: #555; line-height: 1.6; margin-bottom: 0; }
.guide-warning { background: linear-gradient(135deg, #fff7ed, #ffedd5); border: 1px solid #fed7aa; border-radius: 12px; padding: 1rem 1.25rem; font-size: 13px; color: #9a3412; line-height: 1.65; margin: 1.25rem 0; }
.guide-warning strong { color: #7c2d12; }
.guide-tip { background: linear-gradient(135deg, #eaf3fd, #d4e6fc); border: 1px solid #c2d9fb; border-radius: 12px; padding: 1rem 1.25rem; font-size: 13px; color: #003db0; line-height: 1.65; margin: 1.25rem 0; }
.guide-tip strong { color: #0047cc; }
.guide-table-wrap { overflow-x: auto; border-radius: 14px; margin: 1.25rem 0; }
.guide-table { width: 100%; border-collapse: separate; border-spacing: 0; font-size: 12px; border-radius: 14px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.06); min-width: 420px; }
.guide-table thead th { background: #1a1a2e; color: #fff; padding: 11px 14px; text-align: left; font-weight: 600; font-size: 11px; }
.guide-table tbody tr { background: #fff; }
.guide-table tbody tr:nth-child(even) { background: #fafaf8; }
.guide-table tbody tr:hover { background: #f0f6ff; }
.guide-table td { padding: 10px 14px; border-bottom: 1px solid #f0ede8; vertical-align: top; }
.guide-table tbody tr:last-child td { border-bottom: none; }
.guide-table td:first-child { font-weight: 600; color: #111; white-space: nowrap; }
.guide-table td:last-child { color: #555; }
.guide-practices { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 12px; margin-top: 1.5rem; }
.guide-practice-item { background: #fff; border: 1px solid #e8e4dc; border-radius: 14px; padding: 1rem 1.25rem; display: flex; gap: 10px; align-items: flex-start; transition: border-color 0.2s; }
.guide-practice-item:hover { border-color: #c2d9fb; }
.guide-practice-item span { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.guide-practice-item p { font-size: 12px; color: #555; line-height: 1.55; margin: 0; }
.guide-practice-item p strong { color: #111; display: block; margin-bottom: 2px; font-size: 13px; }
.guide-trouble { display: flex; flex-direction: column; gap: 12px; margin-top: 1.5rem; }
.guide-trouble-item { background: #fff; border: 1px solid #e8e4dc; border-radius: 14px; padding: 1.1rem 1.25rem; }
.guide-trouble-item .trouble-q { font-size: 13px; font-weight: 700; color: #b91c1c; margin-bottom: 5px; display: flex; align-items: center; gap: 8px; }
.guide-trouble-item .trouble-a { font-size: 13px; color: #444; line-height: 1.6; }
.guide-checklist { list-style: none; margin: 1rem 0; display: flex; flex-direction: column; gap: 8px; }
.guide-checklist li { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: #444; line-height: 1.55; }
.guide-checklist li::before { content: '✅'; flex-shrink: 0; font-size: 13px; }
.code-block { background: #1e2230; border-radius: 14px; overflow: hidden; margin: 1.25rem 0; }
.code-block-header { background: #161928; padding: 10px 16px; display: flex; align-items: center; justify-content: space-between; }
.code-block-lang { font-family: 'DM Mono', monospace; font-size: 11px; color: #93b4ff; font-weight: 600; letter-spacing: 0.06em; }
.code-block-label { font-family: 'DM Mono', monospace; font-size: 11px; color: #666; }
.code-block pre { margin: 0; padding: 1.25rem 1.5rem; overflow-x: auto; }
.code-block code { font-family: 'DM Mono', monospace; font-size: 12px; line-height: 1.75; color: #e2e8f0; white-space: pre; }
.code-kw  { color: #c792ea; }
.code-fn  { color: #82aaff; }
.code-str { color: #c3e88d; }
.code-cm  { color: #546e7a; font-style: italic; }
.code-num { color: #f78c6c; }
.code-var { color: #ffcb6b; }
.layer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; margin: 1.5rem 0; }
.layer-card { background: #fff; border: 1.5px solid #e8e4dc; border-radius: 16px; padding: 1.25rem; transition: border-color 0.2s, transform 0.2s; }
.layer-card:hover { border-color: #c2d9fb; transform: translateY(-3px); }
.layer-num { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #005ff9; margin-bottom: 6px; }
.layer-title { font-size: 14px; font-weight: 700; color: #111; margin-bottom: 6px; }
.layer-desc { font-size: 12px; color: #666; line-height: 1.6; }
.usecase-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; margin-top: 1.5rem; }
.usecase-item { background: #fff; border: 1px solid #e8e4dc; border-radius: 12px; padding: 1rem; display: flex; gap: 10px; align-items: flex-start; }
.usecase-item:hover { border-color: #c2d9fb; }
.usecase-item span { font-size: 18px; flex-shrink: 0; }
.usecase-item p { font-size: 12px; color: #444; line-height: 1.55; margin: 0; }
.usecase-item p strong { color: #111; display: block; margin-bottom: 2px; font-size: 13px; }
.method-nav { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 2rem; }
.method-tag { font-size: 11px; font-weight: 700; padding: 5px 14px; border-radius: 20px; background: #eaf3fd; color: #0047cc; border: 1px solid #c2d9fb; }
.back-btn { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: #005ff9; background: #eaf3fd; border: 1px solid #c2d9fb; border-radius: 8px; padding: 6px 14px; cursor: pointer; font-family: 'Sora', sans-serif; transition: all 0.15s; text-decoration: none; margin-bottom: 1rem; }
.back-btn:hover { background: linear-gradient(255.96deg, #9647DB 0%, #005FF9 100%); color: #fff; border-color: #005ff9; }

/* ════════════════════════════════════════
   GLOBAL FOOTER CTA
════════════════════════════════════════ */
#global-footer-cta { padding: 0 1.5rem; }
.footer-cta { background: linear-gradient(255.96deg, #9647DB 0%, #005FF9 100%); border-radius: 28px; padding: 3.5rem 2rem; text-align: center; color: #fff; margin: 3rem auto 0; position: relative; overflow: hidden; max-width: 1000px; }
.footer-cta::before { content:''; position:absolute; top:-60px; right:-60px; width:240px; height:240px; background:rgba(255,255,255,0.06); border-radius:50%; }
.footer-cta::after { content:''; position:absolute; bottom:-80px; left:-40px; width:280px; height:280px; background:rgba(255,255,255,0.04); border-radius:50%; }
.footer-cta h2 { font-size: clamp(1.4rem, 4vw, 2rem); font-weight: 700; margin-bottom: 0.6rem; }
.footer-cta p { font-size: 14px; opacity: 0.85; margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.footer-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }
.footer-btn { padding: 13px 30px; border-radius: 14px; font-size: 13px; font-weight: 700; text-decoration: none; transition: all 0.2s; }
.footer-btn.white { background: #fff; color: #005ff9; box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.footer-btn.white:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
.footer-btn.outline { background: rgba(255,255,255,0.12); color: #fff; border: 1.5px solid rgba(255,255,255,0.4); }
.footer-btn.outline:hover { background: rgba(255,255,255,0.22); transform: translateY(-3px); }

/* ════════════════════════════════════════
   GLOBAL FOOTER
════════════════════════════════════════ */
.global-footer { background: #1a1a2e; color: #fff; margin-top: 0; }
.gf-main { max-width: 1100px; margin: 0 auto; padding: 3.5rem 1.5rem 2rem; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
@media (max-width: 768px) { .gf-main { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px) { .gf-main { grid-template-columns: 1fr; } }
.gf-logo { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.gf-logo span { color: #005ff9; }
.gf-tagline { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.65; margin-bottom: 1.25rem; max-width: 260px; }
.gf-coupon-box { background: rgba(0,95,249,0.1); border: 1px solid rgba(0,95,249,0.25); border-radius: 12px; padding: 12px 16px; display: inline-flex; align-items: center; gap: 10px; }
.gf-coupon-label { font-size: 10px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.07em; }
.gf-coupon-code { font-family: 'DM Mono', monospace; font-size: 16px; font-weight: 500; color: #93b4ff; letter-spacing: 0.05em; }
.gf-col-title { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
.gf-links { list-style: none; }
.gf-links li { margin-bottom: 8px; }
.gf-links a { font-size: 13px; color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.15s; }
.gf-links a:hover { color: #93b4ff; }
.gf-bottom { border-top: 1px solid rgba(255,255,255,0.08); }
.gf-bottom-inner { max-width: 1100px; margin: 0 auto; padding: 1.25rem 1.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.gf-copy { font-size: 11px; color: rgba(255,255,255,0.3); }
.gf-disclosure { font-size: 11px; color: rgba(255,255,255,0.25); max-width: 520px; text-align: right; line-height: 1.5; }
@media (max-width: 600px) { .gf-disclosure { text-align: left; } }
.gf-disclosure a { color: rgba(255,255,255,0.45); text-underline-offset: 2px; text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .hero { padding: 2.5rem 1rem 2rem; }
  .section-pad { padding: 2.5rem 0; }
  .feature-grid, .use-grid, .faq-grid { grid-template-columns: 1fr; }
  .inline-cta { flex-direction: column; text-align: center; }
  .mock-sidebar { display: none; }
  .mock-stats-bar { grid-template-columns: repeat(2,1fr); }
  .plan-cards { grid-template-columns: 1fr; }
  .archive-grid { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }
}


/* ── Blog card as full clickable link ── */
a.archive-card {
  display: block;
  color: inherit;
  text-decoration: none;
}
a.archive-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  border-color: #c2d9fb;
}
a.archive-card .archive-card-btn {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #005ff9;
  background: #eaf3fd;
  border: 1.5px solid #c2d9fb;
  border-radius: 8px;
  padding: 6px 14px;
  transition: all 0.15s;
  text-decoration: none;
}
a.archive-card:hover .archive-card-btn {
  background: linear-gradient(255.96deg, #9647DB 0%, #005FF9 100%);
  color: #fff;
  border-color: #005ff9;
}

