:root {
  /* darker base palette tuned for a near-black "railway" theme */
  --bg-dark: hsl(250, 24%, 9%);
  --bg-dark-2: hsl(250, 20%, 7%);
  --bg-dark-3: #ce5718;
  /* --bg-dark-3: hsl(250, 18%, 5%); */
  --accent: #ff6b3a;
  /* slightly brighter orange for contrast */
  --accent-2: #ff8a4c;
  --cream: #fdf3ea;
  --cream-2: #f7e8da;
  --ink: #e9e6e2;
  /* light text on dark */
  --ink-soft: rgba(233, 230, 226, .68);
  --ink-dark: #241005;
  --ink-dark-soft: #5a4436;
  --line-dark: rgba(255, 255, 255, .06);
  --line-light: rgba(255, 255, 255, .04);
  --radius: 18px;
  --disp: 'Baloo Bhai 2', sans-serif;
  --body: 'Baloo Bhai 2', sans-serif;
  --mono: 'JetBrains Mono', monospace;
  /* page theme variables (overridden by body.dark-mode) */
  --page-bg: var(--cream);
  --page-ink: var(--ink);
  --page-muted: var(--ink-soft);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* accessibility helper */
.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: -1px
}

body {
  font-family: var(--body);
  color: var(--page-ink);
  background: var(--page-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background .35s ease, color .25s ease;
}

/* Dark-mode overrides (default UI) */
body.dark-mode {
  --page-bg: hsl(250, 24%, 9%);
  /* requested body background */
  --page-ink: var(--ink);
  --page-muted: var(--ink-soft);
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--disp);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--accent);
}

.btn {
  display: block;
  text-align: center;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--bg-dark-3));
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(235, 95, 40, .65);
}

.btn-primary:hover {
  box-shadow: 0 16px 34px -8px rgba(235, 95, 40, .75);
}

.btn-ghost-dark {
  border-color: rgba(255, 255, 255, .35);
  color: #fff;
}

.btn-ghost-dark:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .08);
}

.btn-video {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border-color: rgba(255, 255, 255, .2);
}

.btn-video:hover {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .35);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
  box-shadow: 0 14px 26px -12px rgba(37, 211, 102, .7);
}

.btn-whatsapp:hover {
  background: #1ebc59;
  color: #fff;
  box-shadow: 0 18px 30px -12px rgba(37, 211, 102, .8);
}

.btn-ghost-light {
  border-color: var(--page-ink);
  color: var(--page-ink);
}

.btn-ghost-light:hover {
  background: var(--page-ink);
  color: var(--page-bg);
}

/* ---------- NAV ---------- */
header {
  position: absolute;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  width: 100%;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

header.scrolled {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, var(--bg-dark), var(--bg-dark-2));
  border-bottom: 1px solid var(--line-dark);
  box-shadow: 0 14px 28px -24px rgba(0, 0, 0, .9);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  max-width: 1180px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--disp);
  font-weight: 700;
  font-size: 19px;
  color: var(--page-ink);
}

.logo img {
  display: block;
  width: 120px;
  height: auto;
}

.foot-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--page-ink);
  font-family: var(--disp);
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 10px;
}

.foot-logo img {
  display: block;
  width: 120px;
  height: auto;
  filter: brightness(1.15);
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--page-muted);
}

.navlinks a:hover {
  color: var(--page-ink);
}

.navcta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.navcta .btn {
  padding: 11px 20px;
  font-size: 14px;
}

.nav-login {
  background: rgba(255, 255, 255, .04);
  border-color: rgba(255, 255, 255, .28);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .05);
}

.mode-toggle {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--page-ink);
  font-size: 16px;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}

.mode-toggle:hover {
  transform: translateY(-2px);
}

.mode-toggle i {
  width: 18px;
  height: 18px;
  display: inline-block;
}

.mode-toggle.light i {
  color: var(--bg-dark-3);
}

.theme-select {
  margin-left: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .06);
  color: var(--page-ink);
  padding: 6px 8px;
  border-radius: 8px;
  font-size: 13px;
}

.theme-select:focus {
  outline: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .28);
}

.nav-login:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .45);
  color: #fff;
}

@media(max-width:820px) {
  .navlinks {
    display: none;
  }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background: radial-gradient(120% 140% at 15% 0%, var(--bg-dark-2) 0%, var(--bg-dark) 55%, #140505 100%);
  color: #fff;
  padding: 96px 0 120px;
  overflow: hidden;
}

.hero .zig {
  position: absolute;
  inset: 0;
  opacity: .5;
  pointer-events: none;
}

.hero-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media(max-width:940px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.hero h1 {
  font-size: clamp(34px, 4.6vw, 58px);
  font-weight: 700;
  margin: 20px 0 22px;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--accent-2), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.lead {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .82);
  max-width: 520px;
  margin-bottom: 34px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.trustbar {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-family: var(--mono);
  font-size: 12.5px;
  color: rgba(255, 255, 255, .6);
  border-top: 1px solid var(--line-dark);
  padding-top: 22px;
}

.trustbar span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trustbar span::before {
  content: '✓';
  color: var(--accent-2);
  font-weight: 700;
}

.hero-panel {
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  padding: 26px;
  backdrop-filter: blur(6px);
  position: relative;
  z-index: 2;
  overflow: hidden;
  box-shadow: 0 20px 50px -30px rgba(0, 0, 0, .85);
}

.usage-dashboard {
  position: relative;
  z-index: 2;
}

.usage-head,
.app-identity,
.usage-total,
.usage-breakdown,
.usage-foot,
.usage-meters span {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.usage-head { padding-bottom: 20px; border-bottom: 1px solid var(--line-dark); }
.app-identity { justify-content: flex-start; gap: 12px; }
.app-mark { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(145deg, #ffac72, var(--accent)); color: #fff; font-size: 20px; font-weight: 800; box-shadow: 0 10px 24px -12px rgba(255,107,0,.8); }
.app-identity b { display: block; color: #fff; font-size: 16px; }
.app-identity small { display: block; margin-top: 2px; color: var(--page-muted); font-size: 10px; }
.live-badge { padding: 6px 10px; border: 1px solid rgba(81,214,129,.2); border-radius: 7px; background: rgba(81,214,129,.08); color: var(--green); font: 11px var(--mono); }
.live-badge i { display: inline-block; width: 6px; height: 6px; margin-right: 5px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); animation: dashboardPulse 1.5s ease-in-out infinite; }
.usage-meters { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; padding: 24px 0; border-bottom: 1px solid var(--line-dark); }
.usage-meters span { color: var(--page-muted); font: 10px var(--mono); }
.usage-meters span b { color: #fff; font: 700 12px var(--body); }
.usage-meters i { display: block; height: 5px; margin-top: 10px; overflow: hidden; border-radius: 99px; background: rgba(255,255,255,.08); }
.usage-meters i em { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--accent), var(--accent-2)); animation: meterIn 1.2s ease both; }
.usage-total { padding: 24px 0; border-bottom: 1px solid var(--line-dark); }
.usage-total small { display: block; margin-bottom: 7px; color: var(--page-muted); font: 10px var(--mono); letter-spacing: .08em; }
.usage-total strong { display: block; color: #fff; font: 700 28px var(--mono); }
.usage-total > div:last-child { text-align: right; }
.usage-total > div:last-child strong { color: var(--accent-2); }
.usage-breakdown { gap: 12px; padding: 18px 0 8px; }
.usage-breakdown div { flex: 1; padding: 10px 12px; border-radius: 8px; background: rgba(255,255,255,.045); }
.usage-breakdown span,.usage-breakdown b { display: block; font-size: 10px; }
.usage-breakdown span { color: var(--page-muted); }
.usage-breakdown b { margin-top: 4px; color: #fff; font-family: var(--mono); font-size: 11px; }
.usage-foot { padding-top: 10px; color: var(--page-muted); font-size: 10px; }
.usage-foot span:first-child { color: var(--page-muted); }
@keyframes dashboardPulse { 50% { transform: scale(1.5); opacity: .6; } }
@keyframes meterIn { from { width: 0 !important; } }

/* .hero-panel::after{
  content:''; position:absolute; inset:0; background:linear-gradient(125deg, transparent 0%, rgba(255,255,255,.08) 35%, rgba(255,255,255,.02) 55%, transparent 100%);
  transform:translateX(-100%); animation:scanline 5s ease-in-out infinite;
} */
.hero-panel .term-top {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.hero-panel .term-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .25);
}

/* .hero-panel .term-top span:nth-child(1) {
  background: #ff7d66;
}

.hero-panel .term-top span:nth-child(2) {
  background: #f4b94a;
}

.hero-panel .term-top span:nth-child(3) {
  background: #62d58b;
} */

.terminal-screen {
  position: relative;
  z-index: 2;
  font-family: var(--mono);
  font-size: 12px;
  color: #ffd9bd;
  line-height: 1.8;
  min-height: 160px;
  background: rgba(11, 16, 24, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 18px 16px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 22px 50px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.terminal-line {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 1.9em;
  white-space: nowrap;
  overflow: hidden;
  opacity: 0;
  transform: translateY(5px);
  animation: lineIn .2s ease forwards;
}

.terminal-line.success {
  color: #8adfb0;
}

.terminal-meta,
.terminal-tag,
.terminal-message {
  display: inline-block;
  vertical-align: middle;
}

.terminal-meta {
  color: rgba(255, 255, 255, 0.45);
  flex-shrink: 0;
}

.terminal-tag {
  flex-shrink: 0;
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 9.5px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.terminal-tag.info {
  background: rgba(116, 158, 255, 0.14);
  color: #9fc3ff;
}

.terminal-tag.build {
  background: rgba(255, 177, 88, 0.14);
  color: #ffc45e;
}

.terminal-tag.success {
  background: rgba(116, 219, 153, 0.14);
  color: #87ebaa;
}

.terminal-message {
  color: #ffd9bd;
  overflow: hidden;
  text-overflow: ellipsis;
}

.terminal-line.success .terminal-message {
  color: #8adfb0;
}

.cursor {
  display: inline-block;
  width: 0.6ch;
  height: 1.1em;
  margin-left: 4px;
  vertical-align: -0.12em;
  border-right: 2px solid var(--accent-2);
  animation: blink 1s steps(1) infinite;
}

@keyframes lineIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

@keyframes scanline {
  0% {
    transform: translateX(-120%);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}

.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  margin-top: 22px;
  position: relative;
  z-index: 2;
}

.stat-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  padding: 14px;
}

.stat-card b {
  display: block;
  font-family: var(--disp);
  font-size: 22px;
  color: #fff;
}

.stat-card span {
  font-size: 11.5px;
  color: rgba(255, 255, 255, .6);
}

/* ---------- SECTION generic ---------- */
section {
  padding: 100px 0;
}

.sec-head {
  max-width: 640px;
  margin-bottom: 56px;
}

.sec-head h2 {
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 700;
  margin-top: 14px;
}

.sec-head p {
  font-size: 16.5px;
  color: var(--page-muted);
  margin-top: 14px;
  line-height: 1.6;
}

.dark-sec {
  background: linear-gradient(180deg, #0b0b0b, #0f0f0f);
  color: var(--cream);
}

.dark-sec .sec-head p {
  color: rgba(253, 243, 234, .68);
}

.section-soft {
  background: var(--cream-2);
}

.faq-head {
  margin: 0 auto 50px;
  text-align: center;
}

/* ---------- PAIN ---------- */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
}

@media(max-width:900px) {
  .pain-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.pain-cell {
  background: linear-gradient(145deg, var(--bg-dark), var(--bg-dark-2));
  padding: 30px 24px;
}

.pain-cell .n {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
}

.pain-cell h4 {
  font-size: 17px;
  margin: 12px 0 6px;
  color: var(--page-ink);
}

.pain-cell p {
  font-size: 14px;
  color: var(--page-muted);
  line-height: 1.55;
}

.pain-cell .arrow {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-2);
}

.gartner {
  margin-top: 34px;
  background: linear-gradient(120deg, var(--bg-dark), var(--bg-dark-2));
  color: #fff;
  border-radius: var(--radius);
  padding: 30px 36px;
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.gartner b.tag {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--accent-2);
  border: 1px solid rgba(255, 255, 255, .3);
  padding: 6px 12px;
  border-radius: 999px;
}

.gartner p {
  font-size: 17px;
  line-height: 1.5;
}

.gartner strong {
  color: var(--accent-2);
}

.incident-table {
  margin-top: 26px;
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.incident-table th {
  text-align: left;
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color:#ae8469;
  padding: 10px 14px;
  border-bottom: 2px solid var(--line-dark);
}

.incident-table td {
  padding: 14px;
  border-bottom: 1px solid var(--line-light);
  vertical-align: top;
}

.incident-table td.cost {
  font-family: var(--mono);
  font-weight: 600;
  color: var(--bg-dark-3);
  white-space: nowrap;
}

/* ---------- USP grid ---------- */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media(max-width:900px) {
  .usp-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:620px) {
  .usp-grid {
    grid-template-columns: 1fr;
  }
}

.usp-card {
  background: rgba(255, 255, 255, .035);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color .2s ease, transform .2s ease;
}

.usp-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.usp-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--accent), var(--bg-dark-3));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 19px;
  color: #fff;
}

.usp-icon i {
  font-size: 18px;
  line-height: 1;
}

.usp-card h4 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 8px;
}

.usp-card p {
  font-size: 14.5px;
  color: rgba(253, 243, 234, .65);
  line-height: 1.6;
}

/* ---------- COST COMPARISON ---------- */
.cost-wrap {
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 8px;
  overflow-x: auto;
}

table.cost {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

table.cost th {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .07em;
  text-align: left;
  padding: 16px 18px;
  color: var(--ink-dark-soft);
  border-bottom: 2px solid var(--line-dark);
}

table.cost th.hl {
  color: var(--accent);
}

table.cost td {
  padding: 16px 18px;
  font-size: 14.5px;
  border-bottom: 1px solid var(--line-light);
}

table.cost td.hl {
  font-family: var(--mono);
  font-weight: 700;
  color: #0d7a45;
  background: #f1faf4;
}

table.cost tr:last-child td {
  border-bottom: none;
}

.cost-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

@media(max-width:820px) {
  .cost-notes {
    grid-template-columns: 1fr;
  }
}

.cost-note {
  background: var(--cream-2);
  border-radius: 14px;
  padding: 18px 20px;
  font-size: 14px;
  color: var(--ink-dark-soft);
}

.cost-note b {
  display: block;
  color: var(--ink-dark);
  font-size: 15px;
  margin-bottom: 4px;
}

/* ---------- PRICING ---------- */
.pricing-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.pricing-header .sec-head {
  margin-bottom: 0;
}

.account-benefits {
  display: flex;
  flex-wrap: wrap;
  /* gap: 10px; */
  /* margin-top: 18px; */
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, max-height 0.25s ease, margin-top 0.2s ease;
}

.account-benefits.is-visible {
  opacity: 1;
  max-height: 180px;
  /* margin-top: 18px; */
  pointer-events: auto;
}

.account-benefits strong {
  display: block;
  flex-basis: 100%;
  color: var(--page-ink);
  font-size: 16px;
  margin-bottom: 6px;
  text-align: left;
}

.account-benefits ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  /* gap: 8px 18px; */
  width: 100%;
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
  color: var(--page-ink);
  font-size: 12px;
  text-align: left;
}

.account-benefits ul li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  min-height: 20px;
  line-height: 1.4;
  padding-left: 0;
}

.account-benefits ul li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(105, 215, 128, 0.12);
  border: 1px solid rgba(105, 215, 128, 0.9);
  color: #73d77d;
  font-size: 8px;
  font-weight: 800;
  flex-shrink: 0;
  line-height: 1;
}

.pricing-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.account-toggle,
.currency-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(36, 16, 5, .04);
  border: 1px solid var(--line-light);
  border-radius: 999px;
  padding: 6px;
  font-size: 12px;
}

.account-btn,
.currency-btn {
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-dark-soft);
  font-family: var(--body);
  font-weight: 700;
  font-size: 12px;
  padding: 8px 14px;
  cursor: pointer;
  transition: all .2s ease;
  line-height: 1;
}

.account-btn.active,
.currency-btn.active {
  background: var(--page-ink);
  color: #a9692f;
  box-shadow: 0 8px 26px rgba(0, 0, 0, .45);
}

.pricing-panels {
  position: relative;
}

.price-card .account-toggle {
  align-self: center;
  margin: -8px auto 24px;
  background: rgba(255, 255, 255, .08);
}

@media(max-width:600px) {
  .account-benefits ul {
    grid-template-columns: 1fr;
  }
}

.pricing-panel {
  display: none;
}

.pricing-panel.active {
  display: block;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}

@media(max-width:900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-controls {
    width: 100%;
    justify-content: space-between;
  }
}

.price-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-dark);
  border-radius: 22px;
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  color: var(--page-ink);
}

.price-card.feat {
  border: 2px solid var(--accent);
  box-shadow: 0 20px 46px -18px rgba(235, 95, 40, .35);
}

.price-badge {
  position: absolute;
  top: -13px;
  right: 28px;
  background: var(--accent);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 6px 14px;
  border-radius: 999px;
}

.plan-name {
  font-family: var(--mono);
  font-size: 25px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

.plan-use {
  font-size: 14px;
  color: rgb(172 126 96);
  margin-top: 8px;
  min-height: 40px;
  line-height: 1.3;
}

.plan-price {
  font-family: var(--disp);
  font-size: 36px;
  font-weight: 800;
  margin: 18px 0 2px;
}

.plan-price span {
  font-size: 24px;
  font-weight: 500;
  color: #e9925a;
  font-family: var(--body);
}

.plan-specs {
  list-style: none;
  margin:0 0 10px; 
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  flex: 1;
}

.plan-specs li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.plan-specs li::before {
  content: '—';
  color: var(--accent);
  font-weight: 700;
}

.price-note {
  text-align: center;
  font-size: 13px;
  /* color: var(--ink-dark-soft); */
  margin-top: 20px;
}

/* ---------- DEPLOYMENT FLOW ---------- */
.deploy-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: nowrap;
  margin: 18px 0 8px;
}

.flow-step {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  padding: 18px 22px;
  width: 220px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.flow-icon {
  font-size: 28px;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-title {
  font-weight: 700;
  color: var(--page-ink);
}

.flow-arrow {
  font-size: 22px;
  color: var(--page-ink);
  opacity: 0.9;
}

@media(max-width:880px) {
  .deploy-flow {
    flex-direction: column;
    gap: 14px;
  }

  .flow-step {
    width: 100%;
    padding: 16px;
  }
}

/* ---------- TESTIMONIALS ---------- */
.feedback-section {
  padding-bottom: 80px;
}

.testimonial-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
}

.testimonial-viewport {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 0;
}

.testimonial-slide {
  min-width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

@media(max-width:900px) {
  .test-grid {
    grid-template-columns: 1fr;
  }
}

.test-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .32s ease, opacity .32s ease;
}

/* fade non-active slides and scale slightly */
.testimonial-slide .test-card {
  opacity: .28;
  transform: scale(.98);
}

.testimonial-slide.active .test-card {
  opacity: 1;
  transform: none;
}

/* ---------- REVEAL / ANIMATION UTILITIES ---------- */
/* Base reveal helper used by IntersectionObserver */
.reveal {
  opacity: 0;
  transform: translateY(18px) scale(0.995);
  will-change: transform, opacity;
  transition: opacity .6s cubic-bezier(.2,.9,.2,1), transform .6s cubic-bezier(.2,.9,.2,1);
}
.reveal.in { opacity: 1; transform: none; }

/* Zoom-in: scale up from smaller */
.reveal[data-anim="zoom-in"] { transform: scale(.88); }
.reveal.in[data-anim="zoom-in"] { transform: none; opacity: 1; }

/* Zoom-out: start slightly large and settle */
.reveal[data-anim="zoom-out"] { transform: scale(1.08); }
.reveal.in[data-anim="zoom-out"] { transform: scale(1); opacity: 1; }

/* Scattered: child elements come in from slightly different offsets */
.reveal[data-anim="scattered"] > * {
  opacity: 0;
  transform: translate3d(0,18px,0) rotate(-4deg) scale(.98);
  transition: transform .7s cubic-bezier(.2,.9,.2,1), opacity .6s ease;
}
.reveal[data-anim="scattered"].in > * { opacity: 1; transform: none; }
.reveal[data-anim="scattered"] > *:nth-child(1) { transition-delay: 0.03s; }
/* .reveal[data-anim="scattered"] > *:nth-child(2) { transition-delay: 0.08s; transform: translate3d(-18px,28px,0) rotate(-6deg) scale(.985); } */
/* .reveal[data-anim="scattered"] > *:nth-child(3) { transition-delay: 0.11s; transform: translate3d(18px,10px,0) rotate(6deg) scale(.985); } */
/* .reveal[data-anim="scattered"] > *:nth-child(4) { transition-delay: 0.14s; transform: translate3d(-10px,6px,0) rotate(-3deg) scale(.99); } */
.reveal[data-anim="scattered"] > *:nth-child(5) { transition-delay: 0.17s; transform: translate3d(10px,22px,0) rotate(4deg) scale(.985); }

/* Particle overlay canvas inside a reveal element */
.particle-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}

@keyframes particle-fade {
  to { opacity: 0; transform: translateY(-6px) scale(.9); }
}


.stars {
  display: flex;
  gap: 4px;
  color: var(--accent);
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.stars i {
  font-size: 13px;
}

.test-card p.quote {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--page-ink);
  margin-bottom: 20px;
}

.test-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--bg-dark-3));
  display: block;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}

.person-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.test-person b {
  display: block;
  font-size: 14px;
  color: var(--page-ink);
}

.test-person span {
  display: block;
  font-size: 12.5px;
  color: var(--page-muted);
}

.carousel-btn {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: var(--page-bg);
  color: var(--page-ink);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .2);
  cursor: pointer;
  transition: all .2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.carousel-btn:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(36, 16, 5, .2);
  cursor: pointer;
  padding: 0;
  transition: all .2s ease;
}

.dot.active {
  width: 28px;
  border-radius: 999px;
  background: var(--accent);
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 820px;
  margin: 0 auto;
}

details {
  border-bottom: 1px solid var(--line-light);
  padding: 22px 0;
}

details summary {
  cursor: pointer;
  font-family: var(--disp);
  font-weight: 600;
  font-size: 17px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

details summary::-webkit-details-marker {
  display: none;
}

details summary::after {
  content: '+';
  font-size: 22px;
  color: var(--accent);
  font-weight: 400;
  margin-left: 20px;
}

details[open] summary::after {
  content: '–';
}

details p {
  margin-top: 14px;
  font-size: 14.5px;
  color:#e9925a;
  line-height: 1.65;
  max-width: 680px;
}

/* ---------- CONTACT / FINAL CTA ---------- */
.cta-final {
  background: radial-gradient(120% 140% at 85% 0%, var(--bg-dark-2) 0%, var(--bg-dark) 60%, #140505 100%);
  color: #fff;
  border-radius: 28px;
  padding: 64px 48px;
  position: relative;
  overflow: hidden;
}

@media(max-width:700px) {
  .cta-final {
    padding: 44px 24px;
  }
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  position: relative;
  z-index: 2;
}

@media(max-width:860px) {
  .cta-grid {
    grid-template-columns: 1fr;
  }
}

.cta-grid h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 16px;
}

.cta-grid p {
  color: rgba(255, 255, 255, .75);
  font-size: 15.5px;
  line-height: 1.65;
  margin-bottom: 26px;
}

.contact-chan {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, .75);
  font-family: var(--mono);
  margin-top: 8px;
}

.contact-chan span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-chan i {
  color: var(--accent-2);
  width: 14px;
  text-align: center;
}

.form-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  padding: 26px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

@media(max-width:520px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.field label {
  display: block;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 6px;
  font-family: var(--mono);
}

.field input,
.field textarea {
  width: 100%;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  color: #fff;
  font-family: var(--body);
  outline: none;
  transition: border-color .15s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, .35);
}

.field input:focus,
.field textarea:focus {
  border-color: var(--accent-2);
}

.form-card .btn-primary {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}

.form-card .btn-primary:disabled {
  cursor: wait;
  opacity: .7;
}

.form-status {
  min-height: 1.5em;
  margin: 12px 0 0;
  color: var(--accent-2);
  font-size: 12px;
  text-align: center;
}

.form-note {
  font-size: 11.5px;
  color: rgba(255, 255, 255, .45);
  margin-top: 12px;
  text-align: center;
}

/* ---------- FOOTER ---------- */
footer {
  background: linear-gradient(180deg, var(--bg-dark-2), var(--bg-dark));
  color: var(--page-muted);
  padding: 50px 0 30px;
  font-size: 13.5px;
}

.foot-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.foot-cols {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.foot-col h5 {
  font-family: var(--mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--page-muted);
  margin-bottom: 14px;
}

.foot-col a {
  display: block;
  margin-bottom: 10px;
  color: var(--page-muted);
}

.foot-col a:hover {
  color: var(--page-ink);
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  flex-wrap: wrap;
  gap: 10px;
}

.video-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 120;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}

.video-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 7, 8, .72);
  backdrop-filter: blur(6px);
}

.video-modal-dialog {
  position: relative;
  width: min(920px, calc(100vw - 32px));
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .25);
  z-index: 1;
}

.video-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: var(--ink-dark);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.video-frame-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
}

.video-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.chat-widget {
  position: fixed;
  right: 94px;
  bottom: 24px;
  width: min(360px, calc(100vw - 24px));
  background: #fff;
  border: 1px solid rgba(36, 16, 5, .08);
  border-radius: 20px;
  box-shadow: 0 24px 48px rgba(36, 16, 5, .18);
  overflow: hidden;
  z-index: 90;
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition: all .22s ease;
}

.chat-widget.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--accent), var(--bg-dark-3));
  color: #fff;
  padding: 14px 16px;
}

.chat-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-badge {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #6df0b0;
  box-shadow: 0 0 0 6px rgba(109, 240, 176, .16);
}

.chat-header h4 {
  font-size: 15px;
  margin: 0;
  font-family: var(--disp);
}

.chat-header span {
  font-size: 11px;
  color: rgba(255, 255, 255, .75);
  display: block;
  margin-top: 2px;
}

.chat-close {
  border: none;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.chat-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px 14px 8px;
  max-height: 360px;
  overflow-y: auto;
  background: #fffaf6;
}

.chat-message {
  max-width: 82%;
  border-radius: 14px;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.5;
}

.chat-message.bot {
  background: #fff;
  color: var(--ink-dark);
  border: 1px solid rgba(36, 16, 5, .06);
  align-self: flex-start;
}

.chat-message.user {
  background: linear-gradient(135deg, var(--accent), var(--bg-dark-3));
  color: #fff;
  align-self: flex-end;
}

.chat-contact-btn {
  display: inline-block;
  margin-top: 8px;
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.chat-contact-btn:hover {
  text-decoration: underline;
}

.chat-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.chat-suggestion {
  border: 1px solid rgba(36, 16, 5, .08);
  background: #fff;
  color: var(--ink-dark-soft);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 11px;
  cursor: pointer;
}

.chat-thread {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-input-row {
  display: flex;
  gap: 8px;
  padding: 12px 14px 14px;
  background: #fff;
  border-top: 1px solid rgba(36, 16, 5, .06);
}

.chat-input-row input {
  flex: 1;
  border: 1px solid rgba(36, 16, 5, .1);
  border-radius: 999px;
  padding: 10px 12px;
  font-size: 13px;
  outline: none;
  font-family: var(--body);
}

.chat-input-row input:focus {
  border-color: var(--accent);
}

.chat-input-row button {
  border: none;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  cursor: pointer;
}

.floating-chat {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--bg-dark-3));
  box-shadow: 0 4px 16px rgba(255, 107, 58, .25);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
}

.floating-chat:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(255, 107, 58, .35);
}

/* Responsive iframe wrapper */
.iframe-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 55%;
  height: 0;
  overflow: hidden;
  margin: 0 auto;
}

.iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Tablet adjustment */
@media (max-width: 900px) {
  .iframe-wrapper {
    padding-bottom: 80%;
  }
}

/* Mobile adjustment */
@media (max-width: 620px) {
  .iframe-wrapper {
    padding-bottom: 90%;

  color: #fff;
  box-shadow: 0 18px 32px -12px rgba(235, 95, 40, .6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
  animation: floatChat 2.8s ease-in-out infinite;
}
}
.floating-chat:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 20px 40px -12px rgba(235, 95, 40, .7);
}

.floating-chat i {
  font-size: 22px;
}

@keyframes floatChat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- REDESIGNED PRICE SECTION ---------- */
.price-section {
  margin-top: 18px;
}

.price-grid {
  display: grid;
  grid-template-columns: 2.6fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.comparison-panel {
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.panel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.panel-head h3 {
  font-size: 20px;
  color: #fff;
  margin: 0;
}

.panel-head .sub {
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(255, 255, 255, .55);
}

.comparison-table-wrap {
  overflow: auto;
  flex: 1;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 420px;
}

.comparison-table th {
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(255, 255, 255, .6);
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.comparison-table th.nim {
  color: var(--accent);
}

.comparison-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .03);
  font-size: 15px;
  color: rgba(255, 255, 255, .92);
}

.nim-val {
  color: var(--accent-2);
  font-weight: 800;
}

.feature-panel {
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  padding: 22px;
  color: rgba(255, 255, 255, .95);
  display: flex;
  flex-direction: column;
}

.feature-head {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: .12em;
  margin-bottom: 15px;
}

.feature-panel p {
  font-size: 15px;
  line-height: 1.55;
  margin: 20px auto;
}

.analysis-row {
  display: grid;
  grid-template-columns: 0.6fr 0.5fr;
  gap: 20px;
  margin-top: 22px;
  align-items: stretch;
}

.thermal-card {
  border-radius: 14px;
  padding: 22px;
  border: 2px solid var(--accent);
  color: #fff;
  display: flex;
  flex-direction: column;
}

.thermal-eyebrow {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--accent);
  letter-spacing: .12em;
  margin-bottom: 10px;
}

.thermal-card h3 {
  font-size: 22px;
  margin: 0 0 8px;
}

.thermal-card .muted {
  color: rgba(255, 255, 255, .72);
  margin-bottom: 12px;
}

.thermal-savings {
  font-family: var(--disp);
  font-size: 44px;
  font-weight: 900;
  color: #fff;
  margin-top: 6px;
}

.thermal-savings .per {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, .65);
  margin-left: 8px;
}

.mini-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}

.mini-card {
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  padding: 16px;
  color: rgba(255, 255, 255, .95);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.mini-card p {
  margin-top: auto;
}

.mini-card h5 {
  margin: 6px 0 8px;
}

.mini-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, .72);
}

.hyperscaler-cta {
  margin-top: 28px;
  background: linear-gradient(135deg, var(--bg-dark-2), var(--bg-dark));
  padding: 28px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .04);
  text-align: center
}

.hyperscaler-cta h3 {
  margin: 0;
  font-size: 20px;
  color: #fff;
}

.hyperscaler-cta p {
  margin: 0;
  color: rgba(255, 255, 255, .75);
}

.cta-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin: 10px auto 0;
}

@media(max-width:980px) {
  .price-grid {
    grid-template-columns: 1fr;
  }

  .analysis-row {
    grid-template-columns: 1fr;
  }

  .hyperscaler-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

.ink-dark {
  color: var(--ink-dark);
}

.btn-signup {
  background: #fff;
  border-radius: 5px;
  padding: 4px 10px !important;
  color: #000;
}
