/* =========================================================
   01. ROOT VARIABLES
========================================================= */

:root {
  --bg: #071923;
  --bg2: #0a2430;
  --panel: #0d2c3a;
  --panel2: #123746;
  --text: #eefbff;
  --muted: #9fc2cd;
  --line: #245366;
  --brand: #33d8e8;
  --brand2: #7cf6c8;
  --warning: #ffd36a;
  --danger: #ff7b92;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 28px;
  --max: 1180px;
}

/* =========================================================
   02. BASE / GLOBAL
========================================================= */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  background:
    radial-gradient(
      circle at 15% 5%,
      rgba(51, 216, 232, 0.22),
      transparent 26%
    ),
    radial-gradient(
      circle at 85% 10%,
      rgba(124, 246, 200, 0.14),
      transparent 28%
    ),
    linear-gradient(135deg, #06141d, #071923 38%, #082330);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: var(--max);
  margin: auto;
  padding: 0 22px;
}

.grid {
  display: grid;
  gap: 24px;
}

.muted {
  color: var(--muted);
}

html,
body {
  min-height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

#footer {
  margin-top: auto;
}

/* =========================================================
   03. NAVBAR
========================================================= */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 20, 29, 0.78);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.nav-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}

.brand-text {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #c8e4eb;
  font-size: 14px;
}

.nav-links a:hover {
  color: #fff;
}

.nav-actions {
  display: flex;
  gap: 10px;
}

.mobile-menu {
  display: none;
}

/* =========================================================
   04. BUTTONS / COMMON UI
========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  transition: 0.2s;
  background: rgba(255, 255, 255, 0.04);
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(51, 216, 232, 0.6);
}

.btn.primary {
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: #04202b;
  border: 0;
}

.btn.dark {
  background: #06141d;
}

.badge {
  position: absolute;
  right: 22px;
  top: 22px;
  background: rgba(124, 246, 200, 0.16);
  color: #b9ffe5;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.notice {
  border: 1px solid rgba(51, 216, 232, 0.25);
  background: rgba(51, 216, 232, 0.08);
  padding: 18px;
  border-radius: 22px;
}

/* =========================================================
   05. SECTIONS / TYPOGRAPHY
========================================================= */

.section {
  padding: 72px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 28px;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-header span,
.eyebrow {
  color: var(--brand);
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 900;
}

.section h2,
.section-header h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
  margin: 10px 0;
  letter-spacing: -0.04em;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.96;
  margin: 16px 0 20px;
  letter-spacing: -0.06em;
}

.lead {
  color: #c5e3eb;
  font-size: 18px;
  max-width: 650px;
}

.page-hero {
  padding: 76px 0 38px;
}

/* =========================================================
   06. CARDS / TABLES / FORMS
========================================================= */

.cards {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
}

.card:hover {
  border-color: rgba(51, 216, 232, 0.35);
  transform: translateY(-3px);
  transition: 0.2s;
}

.card h3 {
  font-size: 24px;
  margin: 18px 0 8px;
}

.icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(51, 216, 232, 0.25),
    rgba(124, 246, 200, 0.16)
  );
  display: grid;
  place-items: center;
  font-size: 24px;
}

.list {
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.list li {
  margin: 9px 0;
  color: #d2edf3;
}

.list li:before {
  content: "✓";
  color: var(--brand2);
  font-weight: 900;
  margin-right: 10px;
}

.table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.table th,
.table td {
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

.table th {
  background: rgba(255, 255, 255, 0.07);
}

.table tr:last-child td {
  border-bottom: 0;
}

.form {
  display: grid;
  gap: 14px;
}

.input {
  width: 100%;
  padding: 15px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: var(--text);
  outline: 0;
}

.input:focus {
  border-color: var(--brand);
}

.signup-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.09),
    rgba(255, 255, 255, 0.04)
  );
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.signup-form {
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.signup-card .input {
  min-height: 56px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.09);
}

.signup-main-btn {
  width: 100%;
  min-height: 56px;
  margin-top: 4px;
}

.signup-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.signup-divider::before,
.signup-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: rgba(255, 255, 255, 0.14);
}

.company-login-btn {
  width: 100%;
  min-height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 900;
  cursor: pointer;
}

.company-login-btn:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
}

.company-login-btn img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

@media (max-width: 700px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.sso-btn {
  width: 100%;
  min-height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.25s ease;
}

.sso-btn:hover {
  transform: translateY(-2px);
  border-color: var(--brand);
  background: rgba(255, 255, 255, 0.08);
}

.google-btn:hover {
  box-shadow: 0 0 24px rgba(66, 133, 244, 0.2);
}

.microsoft-btn:hover {
  box-shadow: 0 0 24px rgba(0, 164, 239, 0.2);
}

.sso-btn svg {
  flex-shrink: 0;
}

.cta-section .hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* Signup Form */

.signup-form .input,
.signup-form select.input {
  width: 100%;
  height: 68px;
  padding: 0 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  font-size: 18px;
  font-weight: 500;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.signup-form input.input {
  line-height: 68px;
}

.signup-form select.input {
  cursor: pointer;
  padding-right: 55px;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M3.204 5h9.592L8 10.481 3.204 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 22px center;
  background-size: 14px;
}

.signup-form .input:focus {
  border-color: var(--brand);
  outline: none;
  box-shadow: 0 0 0 4px rgba(51, 216, 232, 0.15);
}
/* =========================================================
   07. HOME PAGE
========================================================= */

.hero {
  padding: 86px 0 42px;
}

.hero-grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 36px;
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card:before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(
    circle at 70% 10%,
    rgba(51, 216, 232, 0.25),
    transparent 28%
  );
  pointer-events: none;
}

.dash {
  position: relative;
  background: #06141d;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px;
}

.dash-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.pills {
  display: flex;
  gap: 8px;
}

.pill {
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(51, 216, 232, 0.1);
  color: #aaf6ff;
  font-size: 12px;
  font-weight: 800;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stat {
  background: linear-gradient(180deg, #123443, #0b2430);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 16px;
}

.stat b {
  display: block;
  font-size: 24px;
}

.stat h3 {
  font-size: 2.5rem;
  color: var(--brand);
}

.chart {
  height: 170px;
  border-radius: 22px;
  margin-top: 14px;
  background:
    linear-gradient(180deg, rgba(51, 216, 232, 0.18), transparent),
    repeating-linear-gradient(
      90deg,
      transparent 0 52px,
      rgba(255, 255, 255, 0.05) 52px 53px
    ),
    linear-gradient(135deg, #0d2c3a, #071923);
  position: relative;
  overflow: hidden;
}

.chart svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.product-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.mini {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

/* =========================================================
   08. PRODUCTS PAGE
========================================================= */

.products-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.3;
}

.glow-1 {
  background: #14b8a6;
  top: -200px;
  left: -100px;
}

.glow-2 {
  background: #0891b2;
  bottom: -200px;
  right: -100px;
}

.hero-content {
  max-width: 1000px;
  margin: auto;
}

.hero-content h1 {
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.95;
  margin: 20px 0;
}

.hero-description {
  max-width: 800px;
  margin: auto;
  font-size: 1.25rem;
  color: #9fb3c8;
}

.hero-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 80px;
}

.products-section,
.ecosystem,
.roadmap {
  padding: 120px 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  padding: 40px;
  transition: 0.4s;
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: #2dd4bf;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.product-icon {
  width: 240px;
  height: 80px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-card h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.product-card p {
  color: #9fb3c8;
  margin-bottom: 25px;
}

.product-card ul {
  padding-left: 20px;
}

.product-card li {
  margin-bottom: 10px;
}

.product-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.explore {
  display: inline-block;
  margin-top: 20px;
  color: #2dd4bf;
  font-weight: 600;
}

.view-features {
  display: inline-block;
  padding: 10px 16px;
  border: 1px solid #0b7b83;
  border-radius: 8px;
  color: #0b7b83;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.view-features:hover {
  background: #0b7b83;
  color: #fff;
}

.ecosystem-flow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 60px;
}

.ecosystem-flow div {
  padding: 20px 30px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ecosystem-flow span {
  font-size: 2rem;
  color: #14b8a6;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.roadmap-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 35px;
  border-radius: 24px;
  text-align: center;
}

.roadmap-card span {
  color: #14b8a6;
}

/* =========================================================
   09. PRICING PAGE
========================================================= */

.pricing-hero {
  text-align: center;
}

.pricing-toggle button.active {
  background: var(--brand);
  color: #06202a;
}

.pricing-grid-four {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.pricing {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.price-card {
  position: relative;
}

.modern-price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(8, 21, 30, 0.88);
}

.modern-price-card.featured {
  border-color: var(--brand);
  box-shadow: 0 24px 80px rgba(51, 216, 232, 0.18);
  transform: translateY(-8px);
}

.price {
  font-size: 46px;
  font-weight: 1000;
  letter-spacing: -0.04em;
  margin: 15px 0;
}

.modern-price-card .price {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1;
}

.modern-price-card .custom-price {
  font-size: clamp(2rem, 3vw, 3rem);
}

.plan-note {
  color: var(--muted);
  min-height: 48px;
}

.plan-list {
  flex: 1;
}

.toggle {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.06);
  padding: 5px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.toggle button {
  border: 0;
  background: transparent;
  color: #b7d8df;
  border-radius: 999px;
  padding: 9px 15px;
  font-weight: 900;
  cursor: pointer;
}

.toggle button.active {
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: #06202a;
}

.faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-cta {
  text-align: center;
}

/* =========================================================
   PRICING COMPARE TABLE - DARK THEME FIXED
========================================================= */

.compare-section {
  background:
    radial-gradient(
      circle at 10% 0%,
      rgba(51, 216, 232, 0.12),
      transparent 28%
    ),
    linear-gradient(135deg, #06141d, #071923 45%, #082330);
  color: var(--text);
}

.compare-section .container {
  max-width: 1320px;
}

.compare-section .section-header h2 {
  color: var(--text);
}

.compare-section .section-header p {
  color: var(--muted);
}

.compare-scroll {
  overflow-x: auto;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 21, 30, 0.92);
  box-shadow: var(--shadow);
}

.compare-table {
  width: 100%;
  min-width: 1100px;
  border-collapse: collapse;
  color: var(--text);
}

.compare-table thead th {
  position: sticky;
  top: 78px;
  z-index: 30;
  background: #06141d;
  padding: 28px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  text-align: left;
  font-size: 24px;
  vertical-align: top;
}

.compare-table thead th:not(:first-child),
.compare-table td:not(:first-child) {
  text-align: center;
}

.compare-table td {
  padding: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  vertical-align: middle;
  color: #d7eef4;
}

.compare-table td:first-child {
  width: 280px;
  font-weight: 800;
  color: var(--text);
}

/* Category row should NOT be sticky */
.compare-category-row td {
  position: static;
  background: rgba(51, 216, 232, 0.06);
  padding: 18px 22px;
  font-size: 22px;
  font-weight: 900;
  color: var(--text);
}

.compare-category-title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.compare-category-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: #06202a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.compare-check,
.compare-minus {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.compare-check {
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: #06202a;
}

.compare-minus {
  background: rgba(255, 255, 255, 0.24);
  color: #d7eef4;
}

.compare-plan-price {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}

.compare-plan-btn {
  display: block;
  margin-top: 14px;
  padding: 11px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: #06202a;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.compare-category-row td {
  position: sticky;
  top: 192px;
}

.compare-plan-btn.outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 900px) {
  .compare-table thead th {
    top: 70px;
  }
}

/* =========================================================
   11. OTHER PAGES
========================================================= */

.split {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.feature-grid {
  grid-template-columns: repeat(2, 1fr);
}

.timeline {
  position: relative;
}

.step {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 16px;
  margin: 22px 0;
}

.num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: #06202a;
  display: grid;
  place-items: center;
  font-weight: 1000;
}

.kpi {
  font-size: 38px;
  font-weight: 1000;
  letter-spacing: -0.04em;
}

/* =========================================================
   12. CTA / FOOTER
========================================================= */

.cta-section {
  text-align: center;
  padding: 150px 0;
}

.cta-section h2 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 25px;
}

.cta-section p {
  max-width: 700px;
  margin: auto;
  margin-bottom: 40px;
  color: #9fb3c8;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 42px 0;
  background: rgba(0, 0, 0, 0.12);
}

.footer-grid {
  grid-template-columns: 1.4fr repeat(3, 1fr);
}

/* =========================================================
   13. RESPONSIVE
========================================================= */

@media (min-width: 992px) {
  .nav-logo {
    width: 48px;
    height: 48px;
  }

  .brand-text {
    font-size: 2rem;
  }
}

@media (max-width: 1100px) {
  .pricing-grid-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .modern-price-card.featured {
    transform: none;
  }
}

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

  .roadmap-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stats {
    flex-direction: column;
    gap: 25px;
  }

  .ecosystem-flow {
    flex-direction: column;
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .mobile-menu {
    display: inline-flex;
  }

  .hero-grid,
  .split,
  .cards,
  .pricing,
  .feature-grid,
  .footer-grid,
  .product-strip {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 48px;
  }

  .section-head {
    display: block;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }

  .nav-actions .btn:not(.primary) {
    display: none;
  }

  .compare-table thead th {
    top: 70px;
  }

  .compare-category-row td {
    top: 180px;
  }
}

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

  .hero-content h1 {
    font-size: 3rem;
  }

  .cta-section h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 700px) {
  .pricing-grid-four,
  .faq-grid {
    grid-template-columns: 1fr;
  }
}
