/* ============================================================
   ORENA CLOUD — style.css
   Single source of truth. No duplicates.
   ============================================================ */

/* ── CUSTOM PROPERTIES ── */
:root {
  --bg: #181d20;
  --bg2: #343f46;
  --bg3: #2a343a;
  --border: rgba(186, 233, 255, 0.144);
  --border-hover: rgba(255, 255, 255, 0.16);
  --text: #ffffff;
  --muted: #a9b3b6;
  --primary: #0690c7;
  --accent: #00d97e;
  --accent2: #ff9900;
  --accent3: #00a6d9;
  --accent4: #7296b6;
  --primary-dim: rgba(0, 192, 217, 0.1);
  --accent2-dim: rgba(255, 123, 0, 0.1);
  --radius: 12px;
  --radius-sm: 8px;
}

/* ── RESET ── */
*, 
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 80px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── GRID TEXTURE ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   NAVIGATION
   ============================================================ */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 0 48px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg1);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
}

.logo-mark {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary), var(--accent2));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 13px;
  font-weight: 500;
  color: #fff;
}

/* nav link list */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  height: 64px;
}

.nav-links>li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

/* shared styles for both <a> and the mega-menu <button> trigger */
.nav-links a,
.nav-trigger {
  font-size: 16px;
  color: var(--text);
  text-decoration: none;
  transition: color 0.18s;
  padding: 6px 12px;
  border-radius: 6px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a:hover,
.nav-trigger:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.nav-links a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-links li.open .nav-trigger {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

/* chevron icon inside trigger */
.nav-trigger svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.nav-links li.open .nav-trigger svg {
  transform: rotate(180deg);
}

.nav-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ── NAV BUTTONS ── */
.btn-ghost {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 20px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
  border-color: var(--border-hover);
  color: var(--text);
}

.btn-primary {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent2));
  border: none;
  border-radius: var(--radius-sm);
  padding: 8px 20px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
}

.btn-primary:hover {
  opacity: 0.88;
}

/* ============================================================
   MEGA MENU
   ============================================================ */

.mega-menu {
  position: absolute;
  top: calc(100% + 1px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: 820px;
  background: var(--bg2);
  border: 1px solid var(--border);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  overflow: hidden;
  z-index: 300;
}

.nav-links li.open .mega-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.mega-top {
  padding: 16px 24px 14px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mega-top-label {

  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mega-top-link {
  font-size: 12px;
  color: var(--primary);
  text-decoration: none;

  transition: opacity 0.15s;
}

.mega-top-link:hover {
  opacity: 0.75;
}

.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;

}

.mega-item {
  background: var(--bg);
  padding: 20px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
  position: relative;
  margin: 10px 20px 10px;
}

.mega-item:hover {
  background: var(--bg3);
}

.mega-item:hover .mega-arrow {
  opacity: 1;
  transform: translateX(0);
}

.mega-icon-mono {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.mega-item:hover .mega-icon-mono {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.mega-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.mega-text {
  flex: 1;
  min-width: 0;
}

.mega-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mega-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.mega-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 8px;
}

.mega-tag {

  font-size: 10px;
  padding: 2px 7px;
  border-radius: 10px;
  border: 1px solid var(--border);
  color: var(--muted);
}

.mega-arrow {
  font-size: 12px;
  color: var(--primary);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.15s, transform 0.15s;
  position: absolute;
  top: 20px;
  right: 20px;
}

.mega-footer {
  padding: 14px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 102, 255, 0.05);
}

.mega-footer-text {
  font-size: 13px;
  color: var(--muted);
}

.mega-footer-text strong {
  color: var(--text);
  font-weight: 500;
}

.mega-footer-cta {
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;

  transition: opacity 0.15s;
  white-space: nowrap;
}

.mega-footer-cta:hover {
  opacity: 0.75;
}

/* status pills inside mega menu */
.status-pill {

  font-size: 10px;
  padding: 2px 7px;
  border-radius: 10px;
  font-weight: 500;
}

.status-live {
  background: rgba(0, 217, 126, 0.12);
  color: var(--primary);
}

.status-soon {
  background: rgba(255, 160, 0, 0.1);
  color: #FFAA33;
}

/* click-away backdrop */
.mega-backdrop {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: none;
}

.mega-backdrop.visible {
  display: block;
}

/* ============================================================
   HERO — landing page
   ============================================================ */

.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 48px 80px;
  text-align: center;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(0, 204, 255, 0.247) 0%, transparent 70%);
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-glow2 {
  position: absolute;
  width: 400px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(0, 217, 126, 0.12) 0%, transparent 70%);
  bottom: 25%;
  right: 15%;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-dim);
  border: 1px solid rgba(0, 174, 217, 0.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  color: var(--primary);
  margin-bottom: 28px;

  animation: fadeUp 0.6s ease both;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {

  font-size: clamp(38px, 6vw, 80px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -1.5px;
  max-width: 900px;
  margin: 0 auto 24px;
  animation: fadeUp 0.6s 0.1s ease both;
}

.hero h1 em {
  font-style: italic;
  color: var(--primary);
}

.hero>p {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}

.hero-trust {
  margin-top: 64px;
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeUp 0.6s 0.4s ease both;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trust-stat strong {
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
}

.trust-stat span {
  font-size: 12px;
  color: var(--muted);

}

.trust-div {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ============================================================
   BUTTONS — shared across all pages
   ============================================================ */

.btn-large {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  display: inline-block;
}

.btn-large.primary {
  background: linear-gradient(135deg, var(--primary), var(--accent2));
  color: #0A0E1A;
}

.btn-large.primary:hover {
  background: #00f090;
  transform: translateY(-1px);
}

.btn-large.secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-large.secondary:hover {
  background: rgba(255, 255, 255, 0.09);
}

/* service / pricing page buttons */
.btn-lg {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  display: inline-block;
}

.btn-lg.green {
  background: var(--primary);
  color: #0A0E1A;
}

.btn-lg.green:hover {
  background: #00f090;
  transform: translateY(-1px);
}

.btn-lg.outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-lg.outline:hover {
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.04);
}

.btn-plan {
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
}

.btn-plan:hover {
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.04);
}

.btn-plan.green {
  background: var(--primary);
  border-color: var(--primary);
  color: #0A0E1A;
}

.btn-plan.green:hover {
  background: #00f090;
}

.btn-plan.blue {
  background: var(--accent2);
  border-color: var(--accent2);
  color: #fff;
}

.btn-plan.blue:hover {
  opacity: 0.88;
}

/* legacy pricing-card button */
.btn-pricing {
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  transition: all 0.2s;
}

.btn-pricing:hover {
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.04);
}

.btn-pricing.featured-btn {
  background: var(--primary);
  border-color: var(--primary);
  color: #0A0E1A;
}

.btn-pricing.featured-btn:hover {
  background: #00f090;
}

/* ============================================================
   SECTION SHARED UTILITIES
   ============================================================ */

section {
  position: relative;
  z-index: 1;
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {

  font-size: 11px;
  color: var(--primary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.8px;
  max-width: 600px;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 56px;
}

.section-div {
  height: 1px;
  background: var(--border);
  max-width: 1200px;
  margin: 0 auto;
}

.content-section {
  position: relative;
  z-index: 1;
  padding: 80px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

/* two-column layouts */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.two-col-3 {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}

/* ============================================================
   COMPLIANCE STRIP
   ============================================================ */

.compliance-strip {
  position: relative;
  z-index: 1;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 30px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.compliance-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--text);
}

.compliance-dot {
  width: 7px;
  height: 7px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   SERVICES GRID — home page
   ============================================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 5px;


  border-radius: var(--radius);
  overflow: hidden;
}

.service-card {
  background: var(--bg2);
  padding: 36px;
  transition: background 0.2s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card:hover {
  background: var(--bg3);
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {

  font-size: 11px;
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--muted);
}

.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  margin-top: 20px;
  opacity: 0;
  transition: opacity 0.2s;
  color: var(--primary);
}

.service-card:hover .service-arrow {
  opacity: 1;
}

/* ============================================================
   WHY AFRICA SECTION
   ============================================================ */

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.why-right {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.why-item {
  padding: 24px 28px;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.why-item:last-child {
  border-bottom: none;
}

.why-item:hover {
  background: var(--bg3);
}

.why-item-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.why-num {

  font-size: 11px;
  color: var(--primary);
  width: 24px;
}

.why-item h4 {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

.why-item p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  padding-left: 36px;
}

/* ============================================================
   PRICING SECTION — home page cards
   ============================================================ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pricing-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: border-color 0.2s;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  border-color: var(--border-hover);
}

.pricing-card.featured {
  border-color: rgba(0, 217, 126, 0.3);
  background: linear-gradient(160deg, rgba(0, 217, 126, 0.06), var(--bg2));
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #0A0E1A;
  font-size: 11px;
  font-weight: 600;

  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.enterprise-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent2);
  color: #fff;
  font-size: 11px;
  font-weight: 600;

  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 12px;

  color: var(--accent2);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-price {
  font-family: 'Fraunces', serif;
  font-size: 40px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-price sup {
  font-size: 20px;
  vertical-align: super;
}

.pricing-currency {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;

}

.pricing-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}

.pricing-features li {
  font-size: 14px;
  color: var(--muted);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.pricing-features li::before {
  content: '✓';
  color: var(--primary);
  font-size: 12px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ============================================================
   PRICING PAGE — full page components
   ============================================================ */

.page {
  display: none;
  padding-top: 20px;
  position: relative;
  z-index: 1;
}

.page.active {
  display: block;
}

.billing-toggle {
  display: inline-flex;
  align-items: center;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 56px;
}

.toggle-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  transition: all 0.18s;
  color: var(--muted);
  background: transparent;
}

.toggle-btn.active {
  background: var(--bg3);
  color: var(--text);
  border: 1px solid var(--border);
}

.save-badge {

  font-size: 10px;
  background: rgba(0, 217, 126, 0.15);
  color: var(--primary);
  border-radius: 10px;
  padding: 2px 8px;
  margin-left: 6px;
}

/* service tabs row */
.service-tabs {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
}

.service-tabs::-webkit-scrollbar {
  display: none;
}

.svc-tab {

  font-size: 12px;
  font-weight: 500;
  padding: 12px 18px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  color: var(--muted);
  background: transparent;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.18s, border-color 0.18s;
  display: flex;
  align-items: center;
  gap: 7px;
}

.svc-tab:hover {
  color: var(--text);
}

.svc-tab.active {
  color: var(--text);
  border-bottom-color: var(--primary);
}

.tab-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* panel visibility */
.svc-panel {
  display: none;
}

.svc-panel.active {
  display: block;
  animation: fadeUp 0.25s ease;
}

/* plan grids */
.plans-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 48px 0;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.plan-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.plan-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: border-color 0.2s;
  display: flex;
  flex-direction: column;
}

.plan-card:hover {
  border-color: var(--border-hover);
}

.plan-card.featured {
  border-color: rgba(0, 217, 126, 0.3);
  background: linear-gradient(160deg, rgba(0, 217, 126, 0.05), var(--bg2));
}

.plan-card.enterprise {
  border-color: rgba(0, 102, 255, 0.25);
  background: linear-gradient(160deg, rgba(0, 102, 255, 0.05), var(--bg2));
}

.plan-tier {
  font-size: 12px;

  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.plan-price {
  font-family: 'Fraunces', serif;
  font-size: 42px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 4px;
}

.plan-price sup {
  font-size: 18px;
  vertical-align: super;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}

.plan-cycle {
  font-size: 12px;
  color: var(--muted);

  margin-bottom: 24px;
}

.plan-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 20px;
}

.plan-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
  margin-bottom: 28px;
}

.plan-features li {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  gap: 9px;
  align-items: flex-start;
  line-height: 1.5;
}

.plan-features li::before {
  content: '✓';
  color: var(--primary);
  font-size: 12px;
  margin-top: 1px;
  flex-shrink: 0;
}

.plan-features li.no::before {
  content: '—';
  color: var(--border-hover);
}

.plan-features li.no {
  opacity: 0.5;
}

/* usage / rate-card tables */
.usage-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 48px 0;
}

.usage-label {

  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.usage-table-wrap {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.usage-table {
  width: 100%;
  border-collapse: collapse;
}

.usage-table th {

  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  background: var(--bg3);
}

.usage-table td {
  padding: 13px 20px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}

.usage-table tr:last-child td {
  border-bottom: none;
}

.usage-table tr:hover td {
  background: rgba(255, 255, 255, 0.015);
}

.price-val {

  font-size: 13px;
  color: var(--primary);
}

.price-free {

  font-size: 13px;
  color: var(--primary);
}

.note-text {
  font-size: 12px;
  color: var(--muted);
}

/* comparison table */
.compare-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px 0;
}

.compare-wrap {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
}

.compare-table th {
  padding: 20px 24px;
  font-size: 13px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.compare-table th:first-child {

  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  width: 34%;
}

.compare-table th.col-head {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
}

.compare-table th.col-featured {
  background: rgba(0, 217, 126, 0.05);
}

.compare-table td {
  padding: 14px 24px;
  font-size: 13px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table td.center {
  text-align: center;
}

.compare-table td.col-featured {
  background: rgba(0, 217, 126, 0.03);
}

.compare-table .row-group {
  background: var(--bg3);
}

.compare-table .row-group td {

  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 24px;
}

.check {
  color: var(--primary);
  font-size: 15px;
}

.cross {
  color: rgba(255, 255, 255, 0.2);
  font-size: 15px;
}

.partial {
  color: #FFAA33;
  font-size: 13px;
}

.col-price {

  font-size: 12px;
  color: var(--muted);
  display: block;
  margin-top: 2px;
}

.annual-note {
  font-size: 12px;
  color: var(--muted);

  text-align: center;
  margin-top: 12px;
}

.annual-note span {
  color: var(--primary);
}

/* ============================================================
   SERVICE PAGES — shared components
   ============================================================ */

/* service page hero */
.svc-hero {
  position: relative;
  z-index: 1;
  padding: 80px 48px 60px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.svc-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-dim);
  border: 1px solid rgba(0, 217, 126, 0.2);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12px;
  color: var(--primary);
  margin-bottom: 20px;

}

.svc-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.svc-hero h1 em {
  font-style: italic;
}

.svc-hero p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

/* stat row */
.stat-row {
  display: flex;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 1104px;
  margin: 0 auto;
}

.stat-item {
  flex: 1;
  background: var(--bg2);
  padding: 28px 32px;
}

.stat-val {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: var(--muted);
}

/* feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.feature-card {
  background: var(--bg2);
  padding: 32px;
  transition: background 0.18s;
}

.feature-card:hover {
  background: var(--bg3);
}

.feat-icon {
  font-size: 24px;
  margin-bottom: 16px;
  display: block;
}

.feature-card h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* spec table */
.spec-wrap {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table th {

  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.spec-table td {
  padding: 14px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}

.spec-table tr:last-child td {
  border-bottom: none;
}

.spec-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.spec-table .plan-name {
  font-weight: 600;
  color: var(--text);
}

.spec-table .price-kes {

  font-size: 13px;
  color: var(--primary);
}

/* badge variants */
.badge-sm {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 10px;

}

.b-green {
  background: rgba(0, 217, 126, 0.12);
  color: var(--primary);
}

.b-blue {
  background: rgba(0, 102, 255, 0.12);
  color: #6699FF;
}

.b-amber {
  background: rgba(255, 160, 0, 0.1);
  color: #FFAA33;
}

/* steps list */
.steps {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.step {
  background: var(--bg2);
  padding: 28px 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: background 0.18s;
}

.step:hover {
  background: var(--bg3);
}

.step-num {

  font-size: 13px;
  color: var(--primary);
  width: 28px;
  flex-shrink: 0;
  padding-top: 2px;
}

.step-body h4 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 6px;
}

.step-body p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.step-tag {
  display: inline-block;

  font-size: 11px;
  color: var(--muted);
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2px 8px;
  margin-top: 8px;
}

/* use-case grid */
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.usecase-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.18s;
  cursor: pointer;
}

.usecase-card:hover {
  border-color: var(--border-hover);
}

.uc-label {

  font-size: 11px;
  color: var(--primary);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.usecase-card h4 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 8px;
}

.usecase-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* terminal widget */
.hero-visual {
  position: relative;
}

.terminal {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;

  font-size: 13px;
}

.terminal-bar {
  background: var(--bg3);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border);
}

.term-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.terminal-body {
  padding: 20px;
  line-height: 2;
}

.term-line {
  display: flex;
  gap: 10px;
}

.term-prompt {
  color: var(--primary);
}

.term-cmd {
  color: var(--text);
}

.term-out {
  color: var(--muted);
  padding-left: 20px;
}

.term-success {
  color: var(--primary);
  padding-left: 20px;
}

.term-cursor {
  display: inline-block;
  width: 8px;
  height: 14px;
  background: var(--primary);
  animation: blink 1.2s infinite;
  vertical-align: middle;
}

/* service nav strip (services multi-page) - Modern Styling */
.service-strip {
  position: fixed;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  height: 56px;
  overflow-x: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  max-width: 90vw;
  width: fit-content;
}

.service-strip::-webkit-scrollbar {
  display: none;
}

.strip-btn {
  font-size: 13px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.6);
  background: transparent;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.strip-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 0.25s ease;
  border-radius: 6px;
}

.strip-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  transform: translateY(-1px);
}

.strip-btn:hover::before {
  opacity: 1;
}

.strip-btn.active {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.strip-btn:active {
  transform: translateY(1px);
  transition: all 0.1s ease;
}

.strip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.strip-btn:hover .strip-dot {
  transform: scale(1.2);
}

.strip-btn.active .strip-dot {
  transform: scale(1.1);
}

/* Flashing hint animation for non-active buttons */
@keyframes softHint {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(141, 238, 255, 0.11);
  }

  50% {
    opacity: 0.9;
    background: rgba(70, 243, 255, 0.096);
  }

}

@keyframes dotPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Apply hint animation to all non-active buttons */
.service-strip:not(.hint-complete) .strip-btn:not(.active) {
  animation: softHint 2.5s ease-in-out;
}


/* ============================================================
   FAQ
   ============================================================ */

.faq-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 48px 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.18s;
}

.faq-q:hover {
  color: var(--primary);
}

.faq-icon {
  font-size: 20px;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.2s;
  font-weight: 300;
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--primary);
}

.faq-a {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.2s;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-a a {
  color: var(--primary);
  text-decoration: none;
}

.faq-a a:hover {
  text-decoration: underline;
}

/* ============================================================
   PAYMENT STRIP
   ============================================================ */

.payment-section {
  position: relative;
  z-index: 1;
  padding: 64px 48px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.payment-label {

  font-size: 16px;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.payment-logos {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.pay-pill {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);

  letter-spacing: 0.04em;
}

.pay-pill.mpesa {
  color: #00AA46;
  border-color: rgba(0, 170, 70, 0.3);
}

.pay-pill.card {
  color: #636AFF;
  border-color: rgba(99, 106, 255, 0.3);
}

.pay-pill.paystack {
  color: #0BA4DB;
  border-color: rgba(11, 164, 219, 0.3);
}

/* ============================================================
   CTA SECTIONS
   ============================================================ */

.cta-section {
  position: relative;
  z-index: 1;
  margin: 0 48px 100px;
  background: linear-gradient(160deg, rgba(0, 102, 255, 0.05), var(--bg2));
  border: 1px solid rgba(0, 102, 255, 0.25);
  border-radius: 20px;
  padding: 72px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 217, 126, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.cta-left h2 {
  font-family: 'Fraunces', serif;
  font-size: 40px;
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.8px;
  margin-bottom: 12px;
}

.cta-left p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 460px;
}

.cta-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  flex-shrink: 0;
}

.cta-note {
  font-size: 12px;
  color: var(--muted);

}

/* service-page CTA banner (smaller) */
.cta-banner {
  position: relative;
  z-index: 1;
  margin: 0 48px 80px;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.12), rgba(0, 217, 126, 0.08));
  border: 1px solid rgba(0, 217, 126, 0.18);
  border-radius: 16px;
  padding: 56px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-banner h3 {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 300;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.cta-banner p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 440px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  flex-shrink: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */

footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 64px 80px 48px;
  display: grid;
  grid-template-columns: 1.8fr 1.4fr 1.3fr 1.3fr 1.2fr;
  gap: 48px;
  max-width: 1380px;
  margin: 0 auto;
  align-items: start;
}

.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin-top: 14px;
  margin-bottom: 20px;
  max-width: 220px;
}

.footer-col h5 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-col a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.5;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 20px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--muted);
  max-width: none;
  margin: 0;
  background: var(--bg3);
}

.region-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--primary);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* ============================================================
   HOME PAGE ADDITIONS
   Append these rules to the bottom of style.css.
   They only add new classes — nothing existing is changed.
   ============================================================ */

/* ── HERO — split left/right layout ── */

.hero.hero-split {
  min-height: 92vh;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  gap: 64px;
  padding: 40px 40px 40px;
  max-width: 1480px;
  margin: 0 auto;
}

.hero-left {
  flex: 0 0 auto;
  width: 50%;
  max-width: 580px;
  position: relative;
  z-index: 1;
}

/* override centred defaults when inside hero-split */
.hero.hero-split h1 {
  margin: 0 0 24px;
  font-size: clamp(40px, 4.5vw, 68px);
}

.hero.hero-split>.hero-left>p {
  margin: 0 0 40px;
  font-size: 17px;
}

.hero.hero-split .hero-badge {
  margin-bottom: 24px;
}

.hero.hero-split .hero-ctas {
  justify-content: flex-start;
}

.hero.hero-split .hero-trust {
  justify-content: flex-start;
  margin-top: 48px;
}

/* right column — your console screenshot goes here */
.hero-right {
  flex: 1;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* when you have a real screenshot just do:
   <img src="console.png" class="console-img"> */
.console-img {
  width: 100%;
  max-width: 840px;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
  display: block;
}

/* placeholder shown until the screenshot is ready */
.console-placeholder {
  width: 100%;
  max-width: 800px;
}

.console-placeholder-inner {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.cp-bar {
  background: var(--bg3);
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);

}

.cp-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.cp-bar span {
  margin-left: 6px;
}

.cp-body {
  height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.cp-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}

.cp-sub {
  font-size: 12px;
  color: var(--muted);
  opacity: 0.6;
  text-align: center;
  line-height: 1.7;

}

.cp-sub code {
  background: var(--bg3);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 11px;
  color: var(--primary);
}

/* ── LOGO / PARTNER STRIP ── */

.logos-strip {
  position: relative;
  z-index: 1;
  padding: 48px 80px;
  max-width: 1480px;
  margin: 0 auto;
  text-align: center;
}

.logos-label {
  font-size: 28px;
  color: var(--text);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  opacity: 0.55;
  filter: grayscale(100%) brightness(1.8);
  transition: opacity 0.2s, filter 0.2s;
}

.logo-img:hover {
  opacity: 0.9;
  filter: grayscale(0%) brightness(1);
}

/* ── METRICS STRIP ── */

.metrics-strip {
  position: relative;
  z-index: 1;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.metric-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 0 40px;
}

.metric-val {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
}

.metric-label {
  font-size: 12px;
  color: var(--muted);

}

.metric-div {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.footer-contact-item {
  font-size: 13px;
  color: var(--accent2);
  text-decoration: none;
  transition: color 0.18s;
}

.footer-contact-item:hover {
  color: var(--primary);
}

.footer-status {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-status-dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2.5s infinite;
}

.footer-social {
  display: flex;
  gap: 8px;
}

.footer-social-btn {
  width: 32px;
  height: 32px;
  background: var(--accent4);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--bg);
  text-decoration: none;
  transition: border-color 0.18s, color 0.18s;
}

.footer-social-btn:hover {
  border-color: var(--border-hover);
  color: var(--text);
}

/* group headings within a column */
.footer-col-group {
  font-size: 15px;
  color: var(--accent4);
  margin-top: 22px;
  margin-bottom: 4px;
  list-style: none;
  pointer-events: none;
}

.footer-col-group:first-child {
  margin-top: 0;
}

.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-bottom-left a {
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.18s;
}

.footer-bottom-left a:hover {
  color: var(--accent2);
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-lang {
  font-size: 12px;
  color: var(--muted);

  display: flex;
  align-items: center;
  gap: 5px;
}

/* ============================================================
   CONSOLE MOCKUP — append to style.css after home page additions
   ============================================================ */

/* ── OUTER SHELL ── */
.cc-shell {
  width: 100%;
  max-width: min(860px, 42vw);
  background: #0D1117;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
}

/* ── CONSOLE LABEL ── */
.cc-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 102, 255, 0.12);
  border: 1px solid rgba(0, 102, 255, 0.25);
  border-radius: 100px;
  padding: 6px 16px;

  font-size: 11px;
  color: #6699FF;
  letter-spacing: 0.05em;
}

.cc-label-dot {
  width: 6px;
  height: 6px;
  background: #0066FF;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* ── TOP BAR ── */
.cc-topbar {
  background: #0A0D14;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 0 14px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.cc-logo-area {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}

.cc-logo-text {
  font-size: 13px;
  font-weight: 600;
  color: #E0E6F0;
  letter-spacing: -0.2px;
}

.cc-topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  color: #6B7894;
}

.cc-topbar-btn {
  background: none;
  border: none;
  color: #6B7894;
  cursor: pointer;
  padding: 3px;
  display: flex;
  align-items: center;
  transition: color 0.15s;
}

.cc-topbar-btn:hover {
  color: #B0BBD0;
}

.cc-topbar-notice,
.cc-topbar-help {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: color 0.15s;
}

.cc-topbar-notice:hover,
.cc-topbar-help:hover {
  color: #B0BBD0;
}

.cc-account {
  display: flex;
  align-items: center;
  gap: 7px;
  border-left: 1px solid rgba(255, 255, 255, 0.07);
  padding-left: 10px;
  cursor: pointer;
}

.cc-account-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.cc-account-id {
  font-size: 9px;
  color: #4A5570;

}

.cc-account-name {
  font-size: 10px;
  font-weight: 600;
  color: #B0BBD0;
  letter-spacing: 0.03em;
}

.cc-avatar {
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, #0066FF, #00D97E);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
}

/* ── BODY LAYOUT ── */
.cc-body {
  display: flex;
  height: clamp(380px, calc(100vh - 280px), 380px);
}

/* ── SIDEBAR ── */
.cc-sidebar {
  width: 128px;
  flex-shrink: 0;
  background: #0A0D14;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 10px 0 8px;
}

.cc-search {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 8px 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  padding: 5px 5px;
  color: #4A5570;
  cursor: pointer;
  font-size: 9px;
}

.cc-search-kbd {
  margin-left: auto;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  padding: 1px 5px;
  font-size: 9px;

  color: #4A5570;
}

.cc-nav-group {
  padding: 0 4px;
  flex-shrink: 0;
}

.cc-nav-item {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 2px 5px;
  border-radius: 5px;
  color: #B0BBD0;
  cursor: pointer;
  font-size: 8px;
  transition: background 0.12s, color 0.12s;
  white-space: nowrap;
}

.cc-nav-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #B0BBD0;
}

.cc-nav-item svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.cc-nav-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 6px 8px;
  flex-shrink: 0;
}

.cc-sidebar-footer {
  margin-top: auto;
  padding: 0 4px;
  flex-shrink: 0;
}

.cc-ai-btn {
  color: #00D97E !important;
}

.cc-ai-btn:hover {
  background: rgba(0, 217, 126, 0.08) !important;
}

/* ── MAIN CONTENT ── */
.cc-main {
  flex: 1;
  background: #0F1420;
  padding: 14px 16px 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.cc-page-title {
  font-size: 13px;
  font-weight: 600;
  color: #E0E6F0;
  margin-bottom: 4px;
}

.cc-page-sub {
  font-size: 11px;
  color: #0099CC;
  margin-bottom: 14px;
}

/* ── TABS ── */
.cc-tabs {
  display: flex;
  align-items: flex-end;
  gap: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 14px;
  position: relative;
  flex-shrink: 0;
}

.cc-tab {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  font-size: 9.5px;
  color: #6B7894;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
  transition: color 0.15s;
}

.cc-tab:hover {
  color: #B0BBD0;
}

.cc-tab-active {
  color: #E0E6F0;
  border-bottom-color: #ff9900;
}

.cc-tab-badge {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1px 5px;
  font-size: 9px;

  color: #6B7894;
}

.cc-tab-active .cc-tab-badge {
  background: rgba(0, 102, 255, 0.2);
  color: #6699FF;
}

/* ── SERVICE HEADING ── */
.cc-svc-heading {
  font-size: 11px;
  font-weight: 600;
  color: #0099CC;
  text-align: center;
  margin-bottom: 3px;
  flex-shrink: 0;
}

.cc-svc-sub {
  font-size: 10px;
  color: #4A5570;
  text-align: center;
  margin-bottom: 12px;
  flex-shrink: 0;
}

/* ── SERVICE CARDS ── */
.cc-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  flex: 1;
  overflow: hidden;
}

.cc-card {
  background: #151C2C;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: 9px 11px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.cc-card:hover {
  border-color: rgba(255, 255, 255, 0.14);
  background: #1A2236;
}

.cc-card-icon {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cc-card-body {
  flex: 1;
  min-width: 0;
}

.cc-card-title {
  font-size: 9.5px;
  font-weight: 600;
  color: #D0D8EC;
  margin-bottom: 4px;
  line-height: 1.3;
}

.cc-card-desc {
  font-size: 10px;
  color: #5A6880;
  line-height: 1.5;
  margin-bottom: 6px;
}

.cc-card-link {
  font-size: 10px;
  font-weight: 500;
  color: #8899BB;

}

.cc-card:hover .cc-card-link {
  color: #0066FF;
}

/* ── WHY SECTION — data centre image ──
   Append to style.css
   ─────────────────────────────────── */

.why-dc-img-wrap {
  margin-top: 32px;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.why-dc-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.85) saturate(0.9);
  transition: filter 0.3s, transform 0.4s;
}

.why-dc-img-wrap:hover .why-dc-img {
  filter: brightness(0.95) saturate(1);
  transform: scale(1.02);
}

.why-dc-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  gap: 7px;
  letter-spacing: 0.04em;
}

.why-dc-dot {
  width: 6px;
  height: 6px;
  background: var(--accent3);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2.5s infinite;
}

/* ── SERVICES GRID — image card (6th cell)
   Append to style.css
   ──────────────────────────────────────── */

.service-card-img {
  position: relative;
  padding: 0;
  overflow: hidden;
  min-height: 220px;
  cursor: default;
}

.service-card-img .svc-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.55) saturate(0.85);
  transition: filter 0.4s, transform 0.5s;
  display: block;
}

.service-card-img:hover .svc-img {
  filter: brightness(0.65) saturate(1);
  transform: scale(1.04);
}

.svc-img-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 55%);
}

.svc-img-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.svc-img-dot {
  width: 6px;
  height: 6px;
  background: var(--accent3);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2.5s infinite;
}

.svc-img-tagline {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 16px;
}

.svc-img-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--accent);
  text-decoration: none;
  border: 1px solid rgba(6, 144, 199, 0.4);
  border-radius: 6px;
  padding: 7px 14px;
  background: rgba(6, 144, 199, 0.1);
  transition: background 0.2s, border-color 0.2s;
  width: fit-content;
}

.svc-img-cta:hover {
  background: rgba(6, 144, 199, 0.2);
  border-color: rgba(6, 144, 199, 0.6);
}

/* ============================================================
   NEW SECTIONS — how-it-works + comparison table
   Append to the bottom of style.css
   ============================================================ */

/* ── HOW IT WORKS ── */

.hiw-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-top: 8px;
}

.hiw-step {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: border-color 0.2s;
}

.hiw-step:hover {
  border-color: var(--border-hover);
}

.hiw-step-num {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--accent);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 20px;
}

.hiw-step-body h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.hiw-step-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.hiw-link {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.15s;
}

.hiw-link:hover {
  opacity: 0.75;
}

.hiw-connector {
  display: flex;
  align-items: flex-start;
  padding-top: 60px;
  padding-left: 16px;
  padding-right: 16px;
  color: var(--border-hover);
  font-size: 20px;
}

.hiw-connector::after {
  content: '→';
  color: var(--border-hover);
  font-size: 22px;
  line-height: 1;
}

/* ── COMPARISON TABLE ── */

.compare-grid {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.compare-header-row {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
  background: var(--bg3);
}

.compare-row {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.compare-row:hover {
  background: rgba(255, 255, 255, 0.02);
}

.compare-row-last {
  border-bottom: none;
}

.compare-feature-col {
  padding: 16px 24px;
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: center;
  border-right: 1px solid var(--border);
}

.compare-col {
  padding: 16px 20px;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
  border-right: 1px solid var(--border);
}

.compare-col:last-child {
  border-right: none;
}

.compare-col-orena {
  background: rgba(6, 144, 199, 0.05);
}

.compare-header-row .compare-feature-col {
  padding: 20px 24px;
}

.compare-header-row .compare-col {
  padding: 20px 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.compare-col-logo {
  display: flex;
  align-items: center;
}

.compare-col-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.compare-col-other {
  color: var(--muted);
  font-weight: 500;
}

.cmp-yes {
  color: var(--accent3);
  font-size: 13px;
  flex-shrink: 0;
}

.cmp-no {
  color: rgba(255, 255, 255, 0.2);
  font-size: 13px;
  flex-shrink: 0;
}

.cmp-partial {
  color: #FFAA33;
  font-size: 13px;
  flex-shrink: 0;
}

/* ── RESPONSIVE — how it works + compare ── (moved to responsive.css) */

/* ── INFRASTRUCTURE CARDS — statement style ── */
.infra-statement {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  flex: 1;
}

#pricing {
  position: relative;
  max-width: 100%;
  padding: 100px 0;
  margin: 0;
  overflow: hidden;
  background: #080C16;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* grid dot texture */
#pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

/* blue glow — top left */
#pricing::after {
  content: '';
  position: absolute;
  top: -120px;
  left: -80px;
  width: 560px;
  height: 560px;
  background: radial-gradient(ellipse, rgba(0, 102, 255, 0.14) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* green glow — bottom right */
.pricing-glow {
  position: absolute;
  bottom: -100px;
  right: -60px;
  width: 480px;
  height: 480px;
  background: radial-gradient(ellipse, rgba(0, 217, 126, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* constrain content within the full-bleed section */
#pricing .section-label,
#pricing .section-title,
#pricing .section-sub,
#pricing .pricing-grid {
  position: relative;
  z-index: 1;
}

#pricing .section-label,
#pricing .section-title,
#pricing .section-sub {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 48px;
  padding-right: 48px;
}

#pricing .pricing-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* lift card backgrounds against darker section bg */
#pricing .pricing-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

#pricing .pricing-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
}

#pricing .pricing-card.featured {
  background: linear-gradient(160deg, rgba(0, 217, 126, 0.09), rgba(255, 255, 255, 0.04));
  border-color: rgba(0, 217, 126, 0.3);
}

/* ── DEVELOPER SECTION — dark textured background on right column only ── */

.dev-right {
  position: relative;
  overflow: hidden;
  background: var(--bg3);
  border-color: rgba(255, 255, 255, 0.08);
}



/* blue glow top-right */
.dev-right::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(ellipse, rgba(0, 102, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* green glow bottom-left */
.dev-right .why-item:last-child {
  position: relative;
}

.dev-right .why-item:last-child::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(0, 217, 126, 0.09) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* keep items above the glows */
.dev-right .why-item {
  position: relative;
  z-index: 1;
  background: transparent;
  border-bottom-color: rgba(255, 255, 255, 0.07);
}

.dev-right .why-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

/* ============================================================
   PRICING PAGE
   ============================================================ */

.pricing-hero {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 48px 56px;
  text-align: center;
  overflow: hidden;
}

.pricing-hero-glow {
  position: absolute;
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(0,102,255,0.13) 0%, transparent 70%);
  top: 0; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}

.pricing-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -1.2px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.pricing-hero p {
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ── Solutions page hero ── */
.solutions-hero {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 48px 60px;
  text-align: center;
  overflow: hidden;
}

.solutions-hero-glow {
  position: absolute;
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(102,51,255,0.13) 0%, transparent 70%);
  top: 0; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}

.solutions-hero .section-label,
.solutions-hero h1,
.solutions-hero p {
  position: relative;
  z-index: 1;
}

.solutions-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -1.2px;
  margin-bottom: 20px;
}

.solutions-hero p {
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.pricing-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.pricing-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--muted);
  font-family: 'DM Mono', monospace;
}

.pricing-trust-item svg {
  color: var(--accent3);
  flex-shrink: 0;
}

.pricing-tabs-wrap {
  position: sticky;
  top: 70px;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
}

.pricing-tabs {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  justify-content: center;
  gap: 2px;
  overflow-x: auto;
}

.pricing-tabs::-webkit-scrollbar { display: none; }

.pricing-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.18s, border-color 0.18s;
}

.pricing-tab:hover { color: var(--text); }

.pricing-tab.active {
  color: var(--text);
  border-bottom-color: var(--accent3);
}

.ptab-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.pricing-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.ptab-panel {
  display: none;
  padding: 56px 0;
}

.ptab-panel.active { display: block; }

.calc-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: start;
}

.calc-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  position: sticky;
  top: 140px;
  grid-column: 2;
  grid-row: 1;
}

.calc-rates {
  padding-top: 4px;
  grid-column: 1;
  grid-row: 1;
}

.calc-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--accent3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.calc-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 28px;
}

.calc-field { margin-bottom: 24px; }

.calc-field-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
}

.calc-field-val {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--text);
  background: var(--bg3);
  padding: 2px 8px;
  border-radius: 4px;
}

.calc-select-wrap { position: relative; }

.calc-select {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--text);
  cursor: pointer;
  appearance: none;
  outline: none;
  transition: border-color 0.18s;
}

.calc-select:hover,
.calc-select:focus { border-color: var(--border-hover); }

.calc-range {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: var(--bg3);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent3);
  cursor: pointer;
  transition: transform 0.15s;
}

.calc-range::-webkit-slider-thumb:hover { transform: scale(1.2); }

.calc-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted);
  font-family: 'DM Mono', monospace;
  margin-top: 5px;
}

.calc-toggle-group {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.calc-toggle {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 7px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.15s;
}

.calc-toggle.active {
  background: rgba(0,217,126,0.1);
  border-color: rgba(0,217,126,0.3);
  color: var(--accent3);
}

.calc-result {
  background: #080C16;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin: 28px 0 20px;
  position: relative;
  overflow: hidden;
}

.calc-result::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.calc-result-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  position: relative;
}

.calc-result-price {
  font-family: 'Fraunces', serif;
  font-size: 40px;
  font-weight: 300;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
  position: relative;
}

.calc-result-note {
  font-size: 11px;
  color: var(--muted);
  font-family: 'DM Mono', monospace;
  position: relative;
}

.calc-cta {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--accent3);
  color: #0A0E1A;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 13px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.calc-cta:hover {
  background: #00f090;
  transform: translateY(-1px);
}

.rate-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 16px;
  margin-bottom: 16px;
}

.rate-table th {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  background: var(--bg3);
}

.rate-table td {
  padding: 13px 16px;
  font-size: 13px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

.rate-table tr:last-child td { border-bottom: none; }
.rate-table tr:hover td { background: rgba(255,255,255,0.015); }
.rate-popular td { background: rgba(0,217,126,0.04); }
.rate-free td { color: var(--accent3); }

.rate-table .plan-name {
  font-weight: 600;
  color: var(--text);
}

.rate-table .price-kes {
  font-family: 'DM Mono', monospace;
  color: var(--text);
}

.rate-addons {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.addon-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 16px;
  font-size: 13px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

.addon-item:last-child { border-bottom: none; }

.addon-price {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--text);
}

.addon-free .addon-price { color: var(--accent3); }

.pricing-faq {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 48px 80px;
}

/* ============================================================
   PRODUCTS PAGE HERO
   ============================================================ */

.products-hero {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 48px 56px;
  text-align: center;
  overflow: hidden;
}

.products-hero-glow {
  position: absolute;
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(0,217,126,0.12) 0%, transparent 70%);
  top: 0; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}

.products-hero-h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -1.2px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.products-hero-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.products-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 0;
  max-width: 680px;
  margin: 0 auto;
}

.products-hero-stat {
  flex: 1;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 32px;
}

.products-hero-stat strong {
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
}

.products-hero-stat span {
  font-size: 11px;
  color: var(--muted);
  font-family: 'DM Mono', monospace;
  white-space: nowrap;
}

.products-hero-div {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* ============================================================
   COMPANY PAGES
   ============================================================ */

/* ── About ── */
.about-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 140px 48px 80px;
  background: var(--bg);
}
.about-hero-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,102,255,0.13) 0%, transparent 70%);
  pointer-events: none;
}
.about-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 16px auto 20px;
  max-width: 700px;
}
.about-hero p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}
.about-mission { padding: 80px 48px; background: var(--bg2); }
.about-mission-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}
.about-mission-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 12px 0 20px;
  line-height: 1.25;
}
.about-mission-text p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-stat-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.about-stat-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent3);
  letter-spacing: -0.03em;
  line-height: 1;
}
.about-stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.about-values { padding: 80px 48px; background: var(--bg); }
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 40px auto 0;
}
.about-value-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.about-value-icon {
  font-size: 1.2rem;
  color: var(--accent3);
  margin-bottom: 12px;
}
.about-value-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.about-value-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}
.about-dc { padding: 80px 48px; background: var(--bg2); }
.about-dc-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
  align-items: start;
}
.about-dc-text h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 12px 0 20px;
}
.about-dc-text p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.about-dc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-dc-list li {
  font-size: 0.88rem;
  color: var(--muted);
  padding-left: 18px;
  position: relative;
}
.about-dc-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent3);
}
.about-dc-aside { display: flex; flex-direction: column; gap: 16px; }
.about-dc-badge {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about-dc-badge-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent3);
  letter-spacing: -0.03em;
}
.about-dc-badge-label {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.about-cta {
  padding: 80px 48px 100px;
  background: var(--bg);
  text-align: center;
}
.about-cta h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.about-cta p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 32px;
}
.about-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Careers ── */
.careers-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 140px 48px 80px;
  background: var(--bg);
}
.careers-hero-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,217,126,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.careers-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 16px auto 20px;
  max-width: 700px;
}
.careers-hero p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.65;
}
.careers-why { padding: 80px 48px; background: var(--bg2); }
.careers-perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 40px auto 0;
}
.careers-perk-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.careers-perk-icon {
  font-size: 1.2rem;
  color: var(--accent3);
  margin-bottom: 12px;
}
.careers-perk-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.careers-perk-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}
.careers-roles { padding: 80px 48px 100px; background: var(--bg); }
.careers-roles .section-inner { max-width: 900px; margin: 0 auto; }
.careers-role-group { margin-bottom: 48px; }
.careers-role-group-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent3);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.careers-role-list { display: flex; flex-direction: column; gap: 16px; }
.careers-role-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.careers-role-info { flex: 1; }
.careers-role-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.careers-role-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.careers-role-meta span {
  font-size: 0.75rem;
  color: var(--muted);
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2px 10px;
}
.careers-role-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}
.careers-no-role {
  margin-top: 48px;
  padding: 32px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}
.careers-no-role p {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

/* ── Press ── */
.press-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 140px 48px 80px;
  background: var(--bg);
}
.press-hero-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,170,0,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.press-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 16px 0 20px;
}
.press-hero p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}
.press-main { padding: 80px 48px; background: var(--bg2); }
.press-main-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.press-contact-card,
.press-boilerplate-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.press-contact-card h2,
.press-boilerplate-card h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 10px 0 16px;
  letter-spacing: -0.02em;
}
.press-contact-card > p,
.press-boilerplate-card > p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; margin-bottom: 24px; }
.press-contact-list { display: flex; flex-direction: column; gap: 12px; }
.press-contact-item { display: flex; flex-direction: column; gap: 2px; }
.press-contact-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.press-contact-value { font-size: 0.95rem; font-weight: 600; color: var(--text); }
.press-contact-value[href] { color: var(--accent3); }
.press-boilerplate-text { font-size: 0.9rem; color: var(--muted); line-height: 1.75; }
.press-brand { padding: 80px 48px; background: var(--bg); }
.press-logo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 32px 0; }
.press-logo-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.press-logo-dark { background: var(--bg2); }
.press-logo-light { background: #f5f5f5; }
.press-logo-card p { font-size: 0.78rem; color: var(--muted); }
.press-brand-rules { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.press-brand-rule {
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
}
.press-brand-rule--do { background: rgba(0,217,126,0.05); border-color: rgba(0,217,126,0.2); }
.press-brand-rule--dont { background: rgba(255,60,60,0.05); border-color: rgba(255,60,60,0.2); }
.press-brand-rule-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.press-brand-rule--do .press-brand-rule-label { color: var(--accent3); }
.press-brand-rule--dont .press-brand-rule-label { color: #ff3c3c; }
.press-brand-rule ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.press-brand-rule li { font-size: 0.85rem; color: var(--muted); padding-left: 16px; position: relative; }
.press-brand-rule li::before { position: absolute; left: 0; }
.press-brand-rule--do li::before { content: '✓'; color: var(--accent3); }
.press-brand-rule--dont li::before { content: '✕'; color: #ff3c3c; }
.press-facts { padding: 80px 48px 100px; background: var(--bg2); }
.press-facts-table { width: 100%; border-collapse: collapse; margin-top: 32px; }
.press-facts-table td {
  padding: 14px 16px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.press-facts-table td:first-child {
  font-weight: 600;
  color: var(--text);
  width: 200px;
  white-space: nowrap;
}
.press-facts-table td:last-child { color: var(--muted); }

/* ── Help Center ── */
.hc-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 140px 48px 80px;
  background: var(--bg);
}
.hc-hero-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,217,126,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hc-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 16px 0 20px;
}
.hc-hero p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.65;
}
.hc-channels { padding: 80px 48px; background: var(--bg2); }
.hc-channels-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hc-channel-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hc-channel-icon {
  width: 52px;
  height: 52px;
  background: rgba(0,217,126,0.08);
  border: 1px solid rgba(0,217,126,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent3);
  margin-bottom: 4px;
}
.hc-channel-card h3 { font-size: 1rem; font-weight: 700; }
.hc-channel-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; flex: 1; }
.hc-channel-meta {
  font-size: 0.75rem;
  color: var(--muted);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3px 10px;
  display: inline-block;
}
.hc-channel-card .btn-large { margin-top: 4px; text-align: center; }
.hc-faq { padding: 80px 48px; background: var(--bg); }
.hc-faq-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.hc-faq-col h2 { font-size: 1.25rem; font-weight: 700; margin: 8px 0 24px; }
.hc-faq-item { border-bottom: 1px solid var(--border); }
.hc-faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 16px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: inherit;
}
.hc-faq-q::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.hc-faq-q.open::after { content: '−'; }
.hc-faq-a { display: none; padding-bottom: 16px; }
.hc-faq-a.open { display: block; }
.hc-faq-a p { font-size: 0.875rem; color: var(--muted); line-height: 1.7; }
.hc-compliance {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--muted);
}

/* ── Shared: btn-large accent in company pages ── */
.about-cta-btns .btn-large:not(.secondary),
.careers-role-card .btn-large,
.careers-no-role .btn-large:not(.secondary),
.press-contact-card .btn-large,
.hc-channel-card .btn-large {
  background: var(--accent3);
  color: #0A0E1A;
}
.about-cta-btns .btn-large:not(.secondary):hover,
.careers-role-card .btn-large:hover,
.careers-no-role .btn-large:not(.secondary):hover,
.press-contact-card .btn-large:hover,
.hc-channel-card .btn-large:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* ── Sales ── */
.sales-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 140px 48px 80px;
  background: var(--bg);
}
.sales-hero-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,102,255,0.13) 0%, transparent 70%);
  pointer-events: none;
}
.sales-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 16px 0 20px;
}
.sales-hero p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.65;
}
.sales-contact { padding: 80px 48px 100px; background: var(--bg2); }
.sales-contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}
.sales-channels h2,
.sales-reasons h2 {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 10px 0 24px;
}
.sales-channel-list { display: flex; flex-direction: column; gap: 12px; }
.sales-channel-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.15s;
}
.sales-channel-card:hover { border-color: var(--accent3); }
.sales-channel-icon {
  width: 44px;
  height: 44px;
  background: rgba(0,217,126,0.08);
  border: 1px solid rgba(0,217,126,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent3);
  flex-shrink: 0;
}
.sales-channel-name { font-size: 0.92rem; font-weight: 600; }
.sales-channel-detail { font-size: 0.8rem; color: var(--muted); margin-top: 2px; }
.sales-response { font-size: 0.8rem; color: var(--muted); margin-top: 20px; }
.sales-reasons-list { display: flex; flex-direction: column; gap: 20px; }
.sales-reason-item { display: flex; gap: 16px; align-items: flex-start; }
.sales-reason-icon {
  font-size: 0.9rem;
  color: var(--accent3);
  margin-top: 3px;
  flex-shrink: 0;
}
.sales-reason-item h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.sales-reason-item p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }
.sales-compliance {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--muted);
}

/* ============================================================
   LEGAL PAGES — shared styles
   ============================================================ */

.legal-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 48px 100px;
  position: relative;
  z-index: 1;
}

.legal-section {
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}

.legal-section:last-of-type {
  border-bottom: none;
}

.legal-h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.2px;
}

.legal-p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 14px;
}

.legal-p:last-child {
  margin-bottom: 0;
}

.legal-p a {
  color: var(--accent);
  text-decoration: none;
}

.legal-p a:hover {
  text-decoration: underline;
}

.legal-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  margin: 16px 0;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 13px;
}

.legal-table th {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  background: var(--bg3);
  white-space: nowrap;
}

.legal-table td {
  padding: 13px 16px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  line-height: 1.6;
  vertical-align: top;
}

.legal-table tr:last-child td {
  border-bottom: none;
}

.legal-table code {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  background: var(--bg3);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--accent);
  white-space: nowrap;
}

.legal-cookie-block {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 16px;
}

.legal-cookie-essential {
  border-color: rgba(0,217,126,0.2);
  background: rgba(0,217,126,0.03);
}

.legal-cookie-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.legal-cookie-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
}

.legal-cookie-basis {
  font-size: 12px;
  font-family: 'DM Mono', monospace;
  color: var(--muted);
}

/* badge variants */
.badge-sm {
  font-size: 11px;
  font-family: 'DM Mono', monospace;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.b-green {
  background: rgba(0,217,126,0.12);
  color: var(--accent3);
  border: 1px solid rgba(0,217,126,0.2);
}

.b-blue {
  background: rgba(0,102,255,0.1);
  color: #6699ff;
  border: 1px solid rgba(0,102,255,0.2);
}

.b-amber {
  background: rgba(255,170,0,0.1);
  color: #ffaa00;
  border: 1px solid rgba(255,170,0,0.2);
}