:root {
  --accent: #14b8a6;
  --accent-2: #22d3ee;
  --accent-3: #7c3aed;
  --bg: #050816;
  --bg-2: #081021;
  --bg-3: #0d1730;
  --surface: rgba(11, 18, 37, 0.92);
  --surface-2: rgba(15, 24, 48, 0.92);
  --surface-3: rgba(255, 255, 255, 0.04);
  --card: rgba(10, 18, 36, 0.82);
  --card-strong: rgba(14, 25, 50, 0.94);
  --line: rgba(255, 255, 255, 0.08);
  --line-soft: rgba(255, 255, 255, 0.05);
  --text: #f7fbff;
  --text-soft: rgba(240, 247, 255, 0.8);
  --muted: #95a4bf;
  --shadow-1: 0 18px 50px rgba(0, 0, 0, 0.34);
  --shadow-2: 0 26px 70px rgba(3, 7, 18, 0.5);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(20, 184, 166, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.08), transparent 24%),
    linear-gradient(180deg, #030613 0%, #060b18 32%, #091122 100%);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
a:hover { opacity: 0.96; }
img { max-width: 100%; display: block; height: auto; }
iframe { max-width: 100%; }
.container { width: min(1200px, calc(100% - 32px)); margin: 0 auto; }
.narrow { width: min(900px, calc(100% - 32px)); margin: 0 auto; }
.max-760 { max-width: 760px; margin-inline: auto; }
.site-main { min-height: 60vh; }
.section { position: relative; padding: 92px 0; }
.alt-surface { background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)); }
.eyebrow {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent-2);
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}
.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(5, 8, 22, 0.68);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.header-inner {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
}
.brand,
.brand-copy {
  display: inline-flex;
  align-items: center;
}
.brand {
  gap: 14px;
  color: var(--text);
}
.brand-copy {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.site-logo img {
  max-height: 56px;
  width: auto;
}
.site-title {
  font-size: 1.14rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.site-tagline {
  color: rgba(233, 242, 255, 0.7);
  font-size: 0.92rem;
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}
.menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
}
.menu a {
  color: rgba(240, 247, 255, 0.84);
  font-size: 0.95rem;
  font-weight: 700;
}
.menu a:hover,
.menu .current-menu-item a { color: var(--text); }
.menu-toggle {
  display: none;
  justify-self: end;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  padding: 0;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  border-radius: 999px;
}
.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.header-cta,
.btn-primary {
  color: #031112;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 14px 30px rgba(20, 184, 166, 0.24);
}
.btn:hover,
.header-cta:hover { transform: translateY(-1px); }
.btn-secondary {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
}

.hero {
  position: relative;
  overflow: clip;
  padding: 92px 0 46px;
}
.hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 8%, rgba(124, 58, 237, 0.24), transparent 26%),
    radial-gradient(circle at 90% 18%, rgba(34, 211, 238, 0.16), transparent 24%),
    radial-gradient(circle at 62% 84%, rgba(20, 184, 166, 0.12), transparent 25%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 28px;
  align-items: center;
}
.hero-copy h1 {
  margin: 14px 0 18px;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  max-width: 12ch;
}
.lead,
.lead p {
  margin: 0;
  font-size: 1.06rem;
  color: var(--text-soft);
  max-width: 62ch;
}
.hero-badges,
.clean-list,
.info-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.hero-badges li,
.pill,
.info-bullets span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  color: var(--text);
  font-size: 0.92rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.compact-actions { margin-top: 24px; }
.hero-panel,
.premium-card,
.feature-card,
.screenshot-card,
.rates-surface,
.app-shell,
.support-banner,
.disclaimer-box,
.glass-card,
.post-card,
.widget {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)),
    rgba(8, 14, 30, 0.88);
  box-shadow: var(--shadow-1);
}
.hero-panel,
.feature-card,
.screenshot-card,
.glass-card,
.premium-card,
.disclaimer-box,
.post-body,
.widget,
.rates-surface {
  padding: 28px;
}
.hero-panel::before,
.feature-card::before,
.glass-card::before,
.app-shell::before,
.support-banner::before,
.disclaimer-box::before,
.rates-surface::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.16), rgba(255,255,255,0));
  pointer-events: none;
}
.panel-topline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(240,247,255,0.78);
  font-size: 0.84rem;
  font-weight: 700;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(20,184,166,0.12);
}
.hero-panel h2 {
  margin: 16px 0 8px;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.panel-copy {
  margin: 0 0 22px;
  color: var(--text-soft);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.stat-box {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.stat-label {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.stat-box strong {
  display: block;
  font-size: 1.3rem;
  line-height: 1;
}
.hero-mini-card {
  margin-top: 18px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
}
.mini-title,
.mini-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent-2);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.clean-list {
  display: grid;
  gap: 12px;
}
.clean-list li {
  position: relative;
  padding-left: 26px;
  color: var(--text-soft);
}
.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 6px rgba(20,184,166,0.1);
}
.compact-list li { font-size: 0.95rem; }

.trustbar-wrap {
  position: relative;
  z-index: 2;
  margin-top: 26px;
}
.trustbar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius-xl);
  background: rgba(6, 11, 24, 0.92);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-2);
}
.trustbar-item {
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.07);
}
.trust-kicker {
  display: block;
  margin-bottom: 8px;
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.trustbar-item strong {
  display: block;
  font-size: 1rem;
  line-height: 1.35;
}

.section-heading { margin-bottom: 30px; }
.section-heading.center { text-align: center; }
.section-heading h1,
.section-heading h2,
.section h2,
.section h3,
.post-title,
.article-card h1,
.article-card h2,
.article-card h3,
.widget-title {
  margin: 10px 0 12px;
  line-height: 1.05;
  letter-spacing: -0.035em;
}
.section-heading h2,
.section h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}
.section-heading p,
.section-intro p,
.prose,
.prose p,
.post-excerpt { color: var(--muted); }
.prose-bright,
.prose-bright p { color: var(--text-soft); }
.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.feature-card {
  min-height: 100%;
}
.feature-card-accent {
  background:
    radial-gradient(circle at top right, rgba(124,58,237,0.12), transparent 34%),
    linear-gradient(180deg, rgba(28, 19, 57, 0.84), rgba(13, 18, 38, 0.96));
}
.feature-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  font-weight: 800;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--accent-2);
}
.feature-card h3 {
  margin-top: 18px;
  font-size: 1.35rem;
}
.feature-card p { margin-bottom: 0; }

.about-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 24px;
  align-items: start;
}
.about-copy,
.about-side { min-width: 0; }
.about-copy {
  padding: 8px 0;
}
.market-card {
  min-height: 100%;
}
.section-mini-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}
.soft-pill {
  background: rgba(20,184,166,0.1);
  color: var(--accent-2);
  border-color: rgba(20,184,166,0.2);
}
.market-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.market-chip {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
  font-weight: 700;
}

.section-dark-panel { background: linear-gradient(180deg, rgba(7, 12, 25, 0.4), rgba(10, 16, 32, 0.9)); }
.rates-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.info-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.rates-surface {
  padding: 14px;
}
.rates-table-wrap { overflow-x: auto; }
.rates-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 560px;
}
.rates-table thead th {
  text-align: left;
  padding: 18px 20px;
  color: var(--text);
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.rates-table thead th:first-child { border-top-left-radius: 20px; }
.rates-table thead th:last-child { border-top-right-radius: 20px; }
.rates-table td {
  padding: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  color: var(--text);
  font-weight: 700;
}
.rates-table tbody tr:nth-child(odd) td { background: rgba(255,255,255,0.035); }
.rates-table tbody tr:last-child td:first-child { border-bottom-left-radius: 20px; }
.rates-table tbody tr:last-child td:last-child { border-bottom-right-radius: 20px; }

.screenshot-grid-premium {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.shot-wide { grid-column: span 2; }
.screenshot-card { padding: 16px; }
.screenshot-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(180deg, rgba(40, 54, 85, 0.7), rgba(10, 18, 36, 0.95));
  border: 1px solid rgba(255,255,255,0.08);
}
.screenshot-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.screenshot-frame.placeholder {
  display: grid;
  place-items: center;
}
.placeholder-copy {
  display: grid;
  place-items: center;
  width: calc(100% - 28px);
  height: calc(100% - 28px);
  border-radius: 18px;
  border: 1px dashed rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.6);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.shot-body { padding: 16px 6px 6px; }
.shot-body h3 { font-size: 1.2rem; }
.shot-body p { margin-bottom: 0; }

.app-section { padding-top: 70px; }
.app-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 320px;
  gap: 22px;
  padding: 34px;
}
.app-copy h2 { font-size: clamp(2rem, 4vw, 3rem); }
.app-side {
  display: grid;
  gap: 16px;
}
.stack-card {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}
.stack-card strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1.45;
}
.stack-card-top { transform: rotate(-2deg); }
.stack-card-bottom { transform: rotate(2deg); }

.article-shell {
  position: relative;
}
.article-card {
  padding: clamp(24px, 4vw, 44px);
}
.prose-article,
.prose-article p,
.prose-article li { color: rgba(243, 247, 255, 0.88); }
.prose-article h1,
.prose-article h2,
.prose-article h3,
.prose-article h4 { color: var(--text); }
.prose-article a {
  color: var(--accent-2);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.prose ul,
.prose ol,
.entry-content ul,
.entry-content ol { padding-left: 1.25rem; }

.faq-shell {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.faq-list { display: grid; gap: 16px; }
.faq-item {
  padding: 0;
}
.faq-item summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 22px 62px 22px 24px;
  font-size: 1.02rem;
  font-weight: 800;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--accent-2);
  font-size: 1.3rem;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .prose { padding: 0 24px 24px; }

.support-section { padding-top: 72px; }
.support-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  background:
    radial-gradient(circle at top right, rgba(124,58,237,0.18), transparent 34%),
    linear-gradient(135deg, rgba(7, 13, 28, 0.98), rgba(10, 20, 40, 0.95));
  box-shadow: var(--shadow-2);
}
.support-banner .prose,
.support-banner .prose p { color: var(--text-soft); }
.disclaimer-section { padding-top: 30px; }
.disclaimer-box {
  padding: 26px 28px;
  border-left: 4px solid var(--accent);
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.post-card {
  padding: 0;
}
.post-thumb {
  display: block;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.post-thumb img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.post-body { padding: 24px; }
.post-title { font-size: 1.35rem; }
.post-excerpt p { margin: 0; }
.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--accent-2);
  font-weight: 800;
}
.featured-image {
  margin: 20px 0;
  overflow: hidden;
  border-radius: 22px;
}
.widget-title { margin-top: 0; }
.widget { padding: 24px; }

.layout-with-sidebar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
}
.page-shell { padding-top: 48px; }
.card {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(9, 15, 30, 0.85);
  box-shadow: var(--shadow-1);
}

.site-footer {
  margin-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.07);
  background: rgba(3, 7, 18, 0.92);
}
.footer-inner {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0 110px;
}
.footer-inner strong {
  display: block;
  margin-bottom: 6px;
}
.footer-inner p {
  margin: 0;
  color: var(--muted);
}
.footer-link {
  color: var(--accent-2);
  font-weight: 800;
}
.mobile-sticky-cta {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 95;
}
.mobile-sticky-cta .btn {
  width: 100%;
  min-height: 56px;
  box-shadow: 0 18px 40px rgba(20, 184, 166, 0.34);
}

@media (max-width: 1180px) {
  .hero-grid,
  .about-shell,
  .rates-layout,
  .faq-shell,
  .app-shell,
  .layout-with-sidebar {
    grid-template-columns: 1fr;
  }
  .screenshot-grid-premium,
  .posts-grid,
  .feature-strip {
    grid-template-columns: 1fr 1fr;
  }
  .shot-wide { grid-column: auto; }
  .app-side { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1100px) {
  .site-nav {
    display: none;
  }
  .site-nav.is-open {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 16px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(6, 10, 22, 0.98);
    box-shadow: var(--shadow-2);
  }
  .menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .header-cta { width: 100%; }
  .menu-toggle { display: inline-block; }
  .trustbar { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  .container,
  .narrow { width: min(100% - 24px, 100%); }
  .section { padding: 72px 0; }
  .hero { padding-top: 72px; }
  .hero-copy h1 { font-size: 2.5rem; }
  .hero-actions,
  .app-side,
  .stats-grid,
  .screenshot-grid-premium,
  .posts-grid,
  .feature-strip {
    grid-template-columns: 1fr;
  }
  .feature-strip,
  .posts-grid,
  .screenshot-grid-premium,
  .app-side {
    display: grid;
    gap: 18px;
  }
  .card,
  .premium-card,
  .hero-panel,
  .feature-card,
  .glass-card,
  .rates-surface,
  .support-banner,
  .post-body,
  .widget,
  .app-shell,
  .disclaimer-box {
    padding: 22px;
  }
  .support-banner { grid-template-columns: 1fr; }
  .hero-actions .btn,
  .support-actions .btn { width: 100%; }
  .rates-table,
  .rates-table thead,
  .rates-table tbody,
  .rates-table th,
  .rates-table td,
  .rates-table tr {
    display: block;
    width: 100%;
    min-width: 0;
  }
  .rates-table thead {
    position: absolute;
    left: -9999px;
  }
  .rates-table tbody {
    display: grid;
    gap: 14px;
  }
  .rates-table tr {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    overflow: hidden;
  }
  .rates-table td {
    position: relative;
    padding: 14px 16px 14px 116px;
  }
  .rates-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 16px;
    top: 14px;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .footer-inner { padding-bottom: 92px; }
  .mobile-sticky-cta { display: block; }
}

@media (max-width: 560px) {
  .header-inner { min-height: 74px; }
  .site-title { font-size: 1.02rem; }
  .site-tagline { font-size: 0.82rem; }
  .hero-copy h1 { font-size: 2.08rem; }
  .hero-badges li,
  .pill,
  .info-bullets span {
    width: 100%;
    justify-content: center;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .hero-actions .btn { width: 100%; }
  .faq-item summary { padding-right: 58px; }
  .footer-inner {
    display: grid;
    justify-content: stretch;
    text-align: center;
  }
}
