/* Hammer AI — Shared Design System
   Extracted from live index.html + extended for full site
   ========================================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@700;900&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ─── Variables ─── */
:root {
  --teal: #2ABFB3;
  --teal-bg: rgba(42,191,179,0.08);
  --teal-bdr: rgba(42,191,179,0.25);
  --amber: #E07B2A;
  --amber-bg: rgba(224,123,42,0.08);
  --blue: #3B82F6;
  --blue-bg: rgba(59,130,246,0.08);
  --navy: #07101C;
  --bg: #fffdf8;
  --card: #FFFFFF;
  --bdr: #E5E9F0;
  --txt: #111827;
  --txt2: #6B7280;
  --txt3: #9CA3AF;
  --display: 'Unbounded', sans-serif;
  --body: 'DM Sans', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --max-w: 1100px;
  --max-w-narrow: 720px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--txt);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--body); cursor: pointer; }

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,253,248,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bdr);
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  color: var(--txt);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.nav-logo svg { width: 28px; height: 28px; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--txt2);
  transition: color .15s;
}
.nav-links a:hover { color: var(--teal); }
.nav-dropdown { position: relative; }
.nav-dropdown > span {
  font-size: 14px;
  font-weight: 500;
  color: var(--txt2);
  cursor: pointer;
  transition: color .15s;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-dropdown > span:hover { color: var(--teal); }
.nav-dropdown > span svg { width: 12px; height: 12px; transition: transform .2s; }
.nav-dropdown-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 12px; /* invisible bridge so hover doesn't break */
  background: var(--card);
  border: 1px solid var(--bdr);
  border-radius: 12px;
  padding: 8px 0;
  min-width: 200px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  z-index: 101;
}
.nav-dropdown:hover .nav-dropdown-panel { display: block; }
.nav-dropdown:hover > span svg { transform: rotate(180deg); }
.nav-dropdown-panel a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--txt2);
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.nav-dropdown-panel a:hover { background: var(--teal-bg); color: var(--teal); }
.mobile-nav-label { font-size: 11px; font-weight: 700; color: var(--txt3); text-transform: uppercase; letter-spacing: 0.05em; padding: 12px 0 4px; border-bottom: none; }
.nav-cta {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 9px 20px;
  border-radius: 10px;
  border: none;
  transition: filter .15s;
}
.nav-cta:hover { filter: brightness(1.08); }
.nav-login {
  font-size: 14px;
  font-weight: 600;
  color: var(--txt2);
  transition: color .15s;
}
.nav-login:hover { color: var(--teal); }
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  color: var(--txt);
}
.mobile-menu-btn svg { width: 24px; height: 24px; }
.mobile-nav {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0; bottom: 0;
  background: rgba(255,253,248,0.98);
  backdrop-filter: blur(12px);
  z-index: 99;
  padding: 24px;
  flex-direction: column;
  gap: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--txt);
  padding: 12px 0;
  border-bottom: 1px solid var(--bdr);
}
.mobile-nav a:hover { color: var(--teal); }
.mobile-nav .nav-cta {
  display: block;
  text-align: center;
  margin-top: 16px;
  padding: 14px 24px;
  font-size: 15px;
}

/* ─── Hero ─── */
.hero {
  padding: 120px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(42,191,179,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal-bg);
  border: 1px solid var(--teal-bdr);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.15;
  max-width: 720px;
  margin: 0 auto 16px;
  color: var(--txt);
}
.hero h1 span { color: var(--teal); }
.hero p {
  font-size: clamp(15px, 2vw, 19px);
  color: var(--txt2);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Buttons ─── */
.btn-primary {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(42,191,179,0.3);
  transition: all .2s;
}
.btn-primary:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(42,191,179,0.35);
}
.btn-secondary {
  display: inline-block;
  font-weight: 600;
  font-size: 15px;
  color: var(--txt2);
  padding: 16px 24px;
  border-radius: 14px;
  border: none;
  background: none;
  cursor: pointer;
  transition: color .15s;
}
.btn-secondary:hover { color: var(--teal); }
.btn-demo {
  display: inline-block;
  font-weight: 600;
  font-size: 15px;
  color: var(--teal);
  padding: 16px 24px;
  border-radius: 14px;
  border: 1px solid var(--teal-bdr);
  background: var(--teal-bg);
  cursor: pointer;
  transition: all .15s;
}
.btn-demo:hover { background: var(--teal); color: #fff; }
.btn-sm {
  font-size: 13px;
  padding: 10px 20px;
  border-radius: 10px;
}

/* ─── Sections ─── */
.section {
  padding: 80px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-label {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 8px;
  text-align: center;
}
.section-title {
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}
.section-sub {
  font-size: 16px;
  color: var(--txt2);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.65;
}
.section-title.left, .section-sub.left { text-align: left; margin-left: 0; }

/* ─── Cards ─── */
.card {
  background: var(--card);
  border: 1px solid var(--bdr);
  border-radius: 16px;
  padding: 28px 24px;
  transition: transform .2s, box-shadow .2s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.card-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.card-icon.teal { background: var(--teal-bg); color: var(--teal); }
.card-icon.amber { background: var(--amber-bg); color: var(--amber); }
.card-icon.blue { background: var(--blue-bg); color: var(--blue); }
.card-icon svg { width: 24px; height: 24px; }
.card h3 {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}
.card p { font-size: 13.5px; color: var(--txt2); line-height: 1.6; }

/* ─── Grids ─── */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; }
.grid-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }

/* ─── Pricing ─── */
.price-card {
  background: var(--card);
  border: 1px solid var(--bdr);
  border-radius: 18px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  border: 2px solid var(--teal);
  box-shadow: 0 8px 32px rgba(42,191,179,0.12);
  position: relative;
}
.price-card .badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.price-card h3 {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}
.price-card .price {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 4px;
}
.price-card .price span { font-size: 14px; font-weight: 400; color: var(--txt2); }
.price-card .desc { font-size: 13px; color: var(--txt2); margin-bottom: 20px; }
.price-card ul { list-style: none; margin-bottom: 24px; flex: 1; }
.price-card li {
  font-size: 13.5px;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-card li::before {
  content: '';
  width: 16px; height: 16px;
  background: var(--teal-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.price-btn {
  display: block;
  width: 100%;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  padding: 14px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all .2s;
}
.price-btn.free { background: var(--bg); color: var(--txt); }
.price-btn.starter { background: linear-gradient(135deg, var(--blue), #2563EB); color: #fff; }
.price-btn.pro { background: linear-gradient(135deg, var(--teal), #1FA89D); color: #fff; }
.price-btn.elite { background: linear-gradient(135deg, var(--amber), #C96A1E); color: #fff; }
.price-btn:hover { filter: brightness(1.08); transform: translateY(-1px); }

/* ─── Steps (navy bg) ─── */
.steps-bg {
  background: var(--navy);
  border-radius: 24px;
  padding: 60px 32px;
  margin: 0 24px;
}
.steps-bg .section-title { color: #F0F6FF; }
.steps-bg .section-sub { color: #7A9CC0; }
.steps-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.step-num {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 900;
  color: var(--teal);
  opacity: 0.3;
  margin-bottom: 8px;
}
.step h3 {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  color: #F0F6FF;
  margin-bottom: 6px;
}
.step p { font-size: 13.5px; color: #7A9CC0; line-height: 1.6; }

/* ─── Testimonials ─── */
.testi-card {
  background: var(--card);
  border: 1px solid var(--bdr);
  border-radius: 16px;
  padding: 24px;
}
.testi-card .quote {
  font-size: 14px;
  font-style: italic;
  color: var(--txt2);
  line-height: 1.65;
  margin-bottom: 16px;
}
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.testi-name { font-weight: 600; font-size: 13px; }
.testi-role { font-size: 12px; color: var(--txt3); }

/* ─── FAQ ─── */
.faq-list { max-width: 680px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--bdr); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 600;
  color: var(--txt);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  font-size: 14px;
  color: var(--txt2);
  line-height: 1.6;
  padding-bottom: 0;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }
.faq-q svg {
  width: 20px; height: 20px;
  stroke: var(--txt3);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  transition: transform .2s;
}
.faq-item.open .faq-q svg { transform: rotate(180deg); }

/* ─── Footer ─── */
.footer {
  border-top: 1px solid var(--bdr);
  padding: 60px 24px 40px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .footer-logo {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.footer-brand p { font-size: 13px; color: var(--txt2); max-width: 280px; line-height: 1.6; }
.footer-col h4 {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--txt);
  margin-bottom: 12px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--txt2);
  padding: 4px 0;
  transition: color .15s;
}
.footer-col a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid var(--bdr);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy { font-size: 12px; color: var(--txt3); }
.footer-social { display: flex; gap: 16px; }
.footer-social a { color: var(--txt3); transition: color .15s; }
.footer-social a:hover { color: var(--teal); }
.footer-social svg { width: 18px; height: 18px; }

/* ─── CTA Band ─── */
.cta-band {
  background: var(--navy);
  border-radius: 24px;
  padding: 60px 32px;
  margin: 0 24px 80px;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  color: #F0F6FF;
  margin-bottom: 8px;
}
.cta-band p {
  font-size: 16px;
  color: #7A9CC0;
  max-width: 480px;
  margin: 0 auto 28px;
  line-height: 1.65;
}

/* ─── Page-specific: Blog ─── */
.blog-card {
  background: var(--card);
  border: 1px solid var(--bdr);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.blog-card-cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  margin-bottom: 12px;
}
.blog-card h3 {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.35;
}
.blog-card p {
  font-size: 14px;
  color: var(--txt2);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}
.blog-card .read-more { font-size: 13px; font-weight: 600; color: var(--teal); }

/* ─── Page-specific: Blog Post ─── */
.post-header .blog-card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  margin-bottom: 12px;
  background: none;
  padding: 0;
}
.post-header { max-width: var(--max-w-narrow); margin: 0 auto; padding-top: 100px; }
.post-header .breadcrumb { font-size: 13px; color: var(--txt3); margin-bottom: 16px; }
.post-header .breadcrumb a { color: var(--teal); }
.post-header h1 {
  font-family: var(--display);
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 12px;
}
.post-meta { font-size: 13px; color: var(--txt3); margin-bottom: 32px; }
.post-content {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  padding: 0 24px 80px;
}
.post-content h2 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  margin: 40px 0 12px;
}
.post-content h3 {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  margin: 32px 0 8px;
}
.post-content p { font-size: 15px; color: var(--txt2); line-height: 1.75; margin-bottom: 16px; }
.post-content ul, .post-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.post-content li { font-size: 15px; color: var(--txt2); line-height: 1.75; margin-bottom: 8px; }
.post-content blockquote {
  border-left: 3px solid var(--teal);
  padding: 12px 20px;
  margin: 24px 0;
  background: var(--teal-bg);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--txt2);
}
.post-content .callout {
  background: var(--teal-bg);
  border: 1px solid var(--teal-bdr);
  border-radius: 12px;
  padding: 20px;
  margin: 24px 0;
}

/* ─── Post Author Bio ─── */
.post-author {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  padding: 0 24px 32px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.post-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.post-author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--txt);
}
.post-author-role {
  font-size: 12px;
  color: var(--teal);
  margin-top: 2px;
}
.post-author-bio {
  font-size: 13px;
  color: var(--txt2);
  line-height: 1.6;
  margin-top: 4px;
}

/* ─── Related Posts ─── */
.related-posts {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  padding: 0 24px 40px;
}
.related-posts h3 {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}
.related-posts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.related-card {
  display: block;
  padding: 16px;
  border: 1px solid var(--bdr);
  border-radius: 12px;
  background: var(--card);
  text-decoration: none;
  transition: border-color .15s, box-shadow .15s;
}
.related-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-sm);
}
.related-card-tag {
  font-size: 10px;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.related-card-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--txt);
  line-height: 1.4;
  margin-top: 6px;
}
@media (max-width: 480px) {
  .related-posts-grid { grid-template-columns: 1fr; }
}

/* ─── Post Share Bar ─── */
.post-share {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  padding: 0 24px 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.post-share-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--txt3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.post-share-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.post-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid var(--bdr);
  background: var(--card);
  color: var(--txt2);
  font-size: 13px;
  font-weight: 500;
  font-family: var(--body);
  cursor: pointer;
  transition: all .15s;
  text-decoration: none;
}
.post-share-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--teal-bg);
}
.post-share-btn svg { flex-shrink: 0; }

/* ─── Page-specific: Docs ─── */
.docs-layout { display: grid; grid-template-columns: 240px 1fr; gap: 40px; max-width: var(--max-w); margin: 0 auto; padding: 100px 24px 80px; }
.docs-sidebar { position: sticky; top: 84px; height: fit-content; }
.docs-sidebar a {
  display: block;
  font-size: 14px;
  color: var(--txt2);
  padding: 8px 12px;
  border-radius: 8px;
  transition: all .15s;
}
.docs-sidebar a:hover, .docs-sidebar a.active { background: var(--teal-bg); color: var(--teal); }
.docs-content h1 { font-family: var(--display); font-size: 28px; font-weight: 900; margin-bottom: 8px; }
.docs-content h2 { font-family: var(--display); font-size: 20px; font-weight: 700; margin: 40px 0 12px; }
.docs-content p { font-size: 15px; color: var(--txt2); line-height: 1.75; margin-bottom: 16px; }
.docs-content code {
  background: var(--navy);
  color: var(--teal);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 13px;
}
.docs-content pre {
  background: var(--navy);
  border-radius: 12px;
  padding: 20px;
  overflow-x: auto;
  margin: 16px 0;
}
.docs-content pre code { background: none; padding: 0; color: #E2E8F0; }

/* ─── Table wrap (scrollable on mobile) ─── */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 24px 0; }

/* ─── Page-specific: Comparison ─── */
.compare-section { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare-table { width: 100%; border-collapse: collapse; margin: 32px 0; min-width: 600px; }
.compare-table th, .compare-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--bdr); font-size: 14px; }
.compare-table th { font-weight: 700; background: var(--bg); color: var(--txt); }
.compare-table .check { color: var(--teal); font-weight: 700; }
.compare-table .cross { color: var(--txt3); }

/* ─── Forms ─── */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--txt);
  margin-bottom: 6px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--bdr);
  border-radius: 12px;
  font-family: var(--body);
  font-size: 14px;
  color: var(--txt);
  background: var(--card);
  transition: border-color .15s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-bg);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-card {
  background: var(--card);
  border: 1px solid var(--bdr);
  border-radius: 18px;
  padding: 32px;
  max-width: 520px;
  margin: 0 auto;
}

/* ─── Status Indicators ─── */
.status-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}
.status-dot.green { background: #22C55E; }
.status-dot.yellow { background: var(--amber); }
.status-dot.red { background: #EF4444; }

/* ─── Tabs / Filters ─── */
.tab-bar { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 32px; }
.tab-btn {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid var(--bdr);
  background: var(--card);
  color: var(--txt2);
  cursor: pointer;
  transition: all .15s;
}
.tab-btn:hover, .tab-btn.active {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}

/* ─── Mobile sticky CTA ─── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--bdr);
  padding: 12px 16px;
  gap: 10px;
}

/* ─── Reveal animation ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .docs-layout { grid-template-columns: 1fr; }
  .docs-sidebar { position: static; display: flex; flex-wrap: wrap; gap: 4px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .mobile-cta-bar { display: flex; }
  .hero { padding: 100px 20px 60px; }
  .section { padding: 60px 20px; overflow-x: hidden; word-break: break-word; }
  .grid-2, .grid-3, .grid-4, .grid-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .steps-bg { margin: 0 12px; padding: 40px 20px; }
  .cta-band { margin: 0 12px 60px; padding: 40px 20px; }
  .form-card { padding: 24px 20px; }
  .price-card { padding: 24px 20px; }
  .compare-table { min-width: 500px; font-size: 12px; }
  .compare-table th, .compare-table td { padding: 8px 10px; }
}
