/* ============================================================
   Oriv — ENTERPRISE INFRASTRUCTURE
   Design System & Landing Page Styles
   ============================================================ */

/* ============================================================ TOKENS */
:root {
  --bg: #23272D;
  --surface: #373E4A;
  --blue: #147AFF;
  --blue-hover: #1764CE;
  --text: #FFFFFF;
  --text-secondary: #C7CDD6;
  --text-muted: #8D96A5;
  --border: rgba(255, 255, 255, 0.08);
  --border-blue: rgba(20, 122, 255, 0.3);

  --max-w: 1280px;
  --section-gap: 140px;
  --radius: 8px;
  --radius-lg: 12px;
  --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================ RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
details summary { cursor: pointer; list-style: none; }
details summary::-webkit-details-marker { display: none; }

/* ============================================================ CONTAINER */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================================ BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 12px 24px;
  border-radius: var(--radius);
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--blue);
  color: #fff;
}
.btn--primary:hover {
  background: var(--blue-hover);
  box-shadow: 0 4px 24px rgba(20, 122, 255, 0.24);
}

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

.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
}
.btn--ghost:hover { color: var(--text); }

.btn--lg { padding: 14px 32px; font-size: 16px; }
.btn--sm { padding: 8px 16px; font-size: 14px; }
.btn--full { width: 100%; margin-top: 24px; }
.btn--drawer-full { width: 100%; justify-content: center; }

/* ============================================================ FLOATING HEADER */
.header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 16px 20px;
  pointer-events: none;
}

.header {
  pointer-events: all;
  width: 100%;
  max-width: 860px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(35, 39, 45, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.32), 0 1px 0 rgba(255,255,255,0.04) inset;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  background: rgba(35, 39, 45, 0.96);
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 1px 0 rgba(255,255,255,0.06) inset;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  gap: 8px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 4px 6px;
  border-radius: 6px;
  transition: background var(--transition), opacity var(--transition);
}
.logo:hover { background: rgba(255,255,255,0.06); opacity: 0.92; }

/* PNG logo image sizing */
.logo__img {
  height: 24px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo__img--footer {
  height: 32px;
}


.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.nav__link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 7px 12px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav__link:hover { color: var(--text); background: rgba(255,255,255,0.07); }

.header__actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

/* Hamburger — icon button */
.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  background: transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.hamburger:hover {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border-color: rgba(255,255,255,0.14);
}

/* ============================================================ MOBILE DRAWER */
.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}
.drawer-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 200;
  width: min(80vw, 300px);
  background: rgba(35, 39, 45, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 4px 0 32px rgba(0,0,0,0.4);
}
.drawer.open {
  transform: translateX(0);
}

.drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}

.drawer__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.drawer__close:hover { background: rgba(255,255,255,0.08); color: var(--text); }

.drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 20px 12px;
  flex: 1;
  overflow-y: auto;
}
.drawer__link {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
}
.drawer__link:hover { background: rgba(255,255,255,0.06); color: var(--text); }

.drawer__footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}

/* ============================================================ TYPOGRAPHY UTILITIES */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 20px;
  padding: 8px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}
.section-eyebrow--center { 
  display: flex;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 24px;
}
.section-title--center { text-align: center; }

.section-body {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 80px;
}
.section-header .section-title { margin-bottom: 0; }

/* ============================================================ ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.fade-in--delay-1 { animation-delay: 0.1s; }
.fade-in--delay-2 { animation-delay: 0.2s; }
.fade-in--delay-3 { animation-delay: 0.3s; }
.fade-in--delay-4 { animation-delay: 0.4s; }
.fade-in--delay-5 { animation-delay: 0.55s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================ HERO */
.hero {
  padding: 140px 0 0;
  text-align: center;
  overflow: hidden;
}
.hero__inner { display: flex; flex-direction: column; align-items: center; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(20, 122, 255, 0.1);
  border: 1px solid rgba(20, 122, 255, 0.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 40px;
}
.badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__title {
  font-size: 84px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--text);
  margin-bottom: 28px;
  max-width: 900px;
}

.hero__sub {
  font-size: 20px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 640px;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 80px;
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}
.trust__divider {
  width: 1px;
  height: 16px;
  background: var(--border);
}

/* ============================================================ HERO DASHBOARD */
.hero__dashboard {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.dashboard__frame {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 40px 120px rgba(0,0,0,0.5);
}
.dashboard__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}
.dashboard__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.dashboard__dot--red { background: #FF5F57; }
.dashboard__dot--yellow { background: #FFBD2E; }
.dashboard__dot--green { background: #28C840; }
.dashboard__url {
  margin-left: 8px;
  font-size: 12px;
  color: var(--text-muted);
  font-family: 'SF Mono', 'Fira Code', monospace;
}

.dashboard__content {
  display: flex;
  height: 480px;
}

/* Sidebar */
.db__sidebar {
  width: 56px;
  background: rgba(0,0,0,0.2);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 0;
  gap: 4px;
  flex-shrink: 0;
}
.db__sidebar-logo {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  width: 100%;
  display: flex;
  justify-content: center;
}
.db__nav { display: flex; flex-direction: column; gap: 4px; align-items: center; }
.db__nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  color: var(--text-muted);
  transition: color var(--transition), background var(--transition);
}
.db__nav-item:hover { color: var(--text); background: rgba(255,255,255,0.06); }
.db__nav-item--active { color: var(--blue); background: rgba(20, 122, 255, 0.12); }

/* Main Content */
.db__main { flex: 1; display: flex; flex-direction: column; overflow: hidden; }
.db__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--border);
}
.db__title { font-size: 15px; font-weight: 600; color: var(--text); }
.db__subtitle { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.db__btn-new {
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
  background: rgba(20, 122, 255, 0.1);
  border: 1px solid rgba(20, 122, 255, 0.2);
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: background var(--transition);
}
.db__btn-new:hover { background: rgba(20, 122, 255, 0.18); }

/* Metrics */
.db__metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-bottom: 1px solid var(--border);
}
.db__metric {
  background: var(--surface);
  padding: 14px 20px;
}
.db__metric-label { font-size: 11px; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.db__metric-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.db__metric-value span { font-size: 14px; font-weight: 500; color: var(--text-muted); }
.db__metric-value--green { color: #22C55E; }
.db__metric-bar { height: 2px; background: rgba(255,255,255,0.06); border-radius: 2px; margin-top: 8px; }
.db__metric-fill { height: 100%; background: var(--blue); border-radius: 2px; }
.db__metric-fill--green { background: #22C55E; }

/* Server List */
.db__servers { flex: 1; overflow-y: auto; }
.db__servers-header {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 0.6fr 1fr;
  gap: 16px;
  padding: 10px 24px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,0.1);
}
.db__server-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 0.6fr 1fr;
  gap: 16px;
  padding: 12px 24px;
  align-items: center;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  transition: background var(--transition);
}
.db__server-row:hover { background: rgba(255,255,255,0.02); }
.db__server-name { display: flex; align-items: center; gap: 8px; font-weight: 500; color: var(--text); }
.db__status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.db__status-dot--green { background: #22C55E; box-shadow: 0 0 6px rgba(34,197,94,0.5); }
.db__status-dot--blue { background: var(--blue); box-shadow: 0 0 6px rgba(20,122,255,0.5); animation: pulse 2s infinite; }
.db__tag { color: var(--text-muted); font-family: 'SF Mono', 'Fira Code', monospace; font-size: 12px; }
.db__muted { color: var(--text-muted); }
.db__badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.db__badge--green { background: rgba(34,197,94,0.12); color: #22C55E; }
.db__badge--blue { background: rgba(20,122,255,0.12); color: var(--blue); }

/* ============================================================ TRUSTED LOGOS */
.trusted {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trusted__label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.trusted__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trusted__logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color var(--transition);
  opacity: 0.7;
}
.trusted__logo-item:hover { opacity: 1; color: var(--text-secondary); }
.trusted__logo-item img { width: 32px; height: 32px; transition: opacity var(--transition), filter var(--transition); filter: grayscale(100%) opacity(0.6); }
.trusted__logo-item:hover img { filter: grayscale(0%) opacity(1); }

/* ============================================================ PRECISION */
.precision {
  padding: var(--section-gap) 0;
}
.precision__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.precision__text .section-title { margin-bottom: 20px; }
.precision__text .section-eyebrow { justify-content: center; }

.precision__list {
  margin-top: 32px;
  display: inline-flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.precision__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
}
.list__check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(20, 122, 255, 0.12);
  border: 1px solid rgba(20, 122, 255, 0.3);
  flex-shrink: 0;
  position: relative;
}
.list__check::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 4px;
  width: 6px;
  height: 4px;
  border-left: 1.5px solid var(--blue);
  border-bottom: 1.5px solid var(--blue);
  transform: rotate(-45deg);
}

.precision__img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}
.precision__img { width: 100%; display: block; }

/* ============================================================ FEATURES GRID */
.features {
  padding: var(--section-gap) 0;
  border-top: 1px solid var(--border);
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature-card {
  background: var(--bg);
  transition: background var(--transition);
}
.feature-card:hover { background: rgba(55, 62, 74, 0.5); transform: translateY(-4px); }

.feature-card__visual {
  height: 220px;
  padding: 28px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.feature-card__viz {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Globe viz */
.globe-grid {
  position: relative;
  width: 100%;
  height: 100%;
}
.globe-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.globe-node__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.2);
}
.globe-node__dot--active {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 0 10px rgba(20,122,255,0.6);
  animation: pulse 2s infinite;
}
.globe-node__label { font-size: 9px; color: var(--text-muted); white-space: nowrap; }
.globe-lines { position: absolute; top: 0; left: 0; pointer-events: none; }

/* Deploy terminal viz */
.deploy-terminal {
  width: 100%;
  padding: 16px;
  background: rgba(0,0,0,0.3);
  border-radius: 6px;
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  font-size: 11px;
  line-height: 1.7;
}
.deploy-terminal__line { display: block; }
.deploy-terminal__cursor {
  display: inline-block;
  width: 7px;
  height: 13px;
  background: var(--blue);
  margin-top: 4px;
  animation: blink 1.2s step-end infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.t--blue { color: var(--blue); }
.t--muted { color: var(--text-muted); }
.t--green { color: #22C55E; }
.t--white { color: var(--text); }

/* Backup viz */
.backup-viz { width: 100%; font-family: 'SF Mono', 'Fira Code', monospace; font-size: 10px; }
.backup-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 0.5fr;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.backup-row--header { color: var(--text-muted); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; font-size: 9px; }
.backup-ok { color: #22C55E; text-align: right; }

/* Security viz */
.security-viz { width: 100%; display: flex; flex-direction: column; gap: 6px; }
.security-layer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 12px;
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 10px;
}
.security-layer__label { color: var(--text-secondary); }
.security-layer__status { font-weight: 600; font-size: 9px; letter-spacing: 0.05em; }
.security-layer__status--active { color: #22C55E; }
.security-blocked {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  padding: 6px 12px;
}
.security-blocked__count { font-size: 18px; font-weight: 700; color: var(--text); letter-spacing: -0.03em; }
.security-blocked__label { font-size: 11px; color: var(--text-muted); }

/* Panel viz */
.panel-viz { width: 100%; }
.panel-viz__apps { display: flex; flex-direction: column; gap: 6px; }
.panel-app {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 11px;
  color: var(--text-secondary);
}
.panel-app__icon {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  flex-shrink: 0;
}
.panel-app__icon--wp { background: #21759B; }
.panel-app__icon--laravel { background: #FF2D20; }
.panel-app__icon--node { background: #339933; }
.panel-app__icon--docker { background: #2496ED; }
.panel-app__icon--n8n { background: #EA4B71; }
.panel-app__status { color: #22C55E; margin-left: auto; font-size: 10px; }

/* Monitor viz */
.monitor-viz { width: 100%; }
.monitor-chart { margin-bottom: 12px; }
.monitor-stats { display: flex; gap: 16px; }
.monitor-stat { display: flex; flex-direction: column; gap: 2px; }
.monitor-stat__val { font-size: 16px; font-weight: 700; color: var(--text); letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.monitor-stat__label { font-size: 10px; color: var(--text-muted); }

.feature-card__body { padding: 28px; }
.feature-card__title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 10px;
}
.feature-card__desc { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

/* ============================================================ CONTROL PLANE */
.control-plane {
  padding: var(--section-gap) 0;
  border-top: 1px solid var(--border);
}
.control-plane .section-title { margin-bottom: 20px; }
.control-plane__desc {
  text-align: center;
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 64px;
  line-height: 1.65;
}
.control-plane__frame {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
  max-width: 1100px;
  margin: 0 auto;
}
.control-plane__img { width: 100%; display: block; }

/* ============================================================ PERFORMANCE */
.performance {
  padding: var(--section-gap) 0;
  border-top: 1px solid var(--border);
}
.performance__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.performance__metrics .section-title { margin-bottom: 40px; }

.perf__list { display: flex; flex-direction: column; gap: 0; }
.perf__item { padding: 20px 0; border-bottom: 1px solid var(--border); }
.perf__item:first-child { border-top: 1px solid var(--border); }
.perf__value {
  display: block;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  margin-bottom: 4px;
}
.perf__label {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.perf__bar { height: 2px; background: rgba(255,255,255,0.06); border-radius: 2px; }
.perf__fill { height: 100%; background: var(--blue); border-radius: 2px; }

.performance__visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}
.perf__img { width: 100%; display: block; }

/* ============================================================ DEPLOYMENT FLOW */
.deploy-flow {
  padding: var(--section-gap) 0;
  border-top: 1px solid var(--border);
}
.deploy-flow .section-title { margin-bottom: 64px; }

.flow__timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.flow__step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 24px 0 0;
  position: relative;
}

.flow__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--blue);
  font-family: 'SF Mono', 'Fira Code', monospace;
  margin-bottom: 12px;
}

.flow__connector {
  width: calc(100% + 0px);
  height: 1px;
  background: var(--border);
  margin-bottom: 20px;
  position: relative;
}
.flow__connector::before {
  content: '';
  position: absolute;
  left: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  border: 2px solid var(--bg);
  box-shadow: 0 0 0 1px var(--blue);
}
.flow__connector--last { }
.flow__connector--none { }

.flow__title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 8px;
}
.flow__desc { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ============================================================ PRICING */
.pricing {
  padding: var(--section-gap) 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.pricing__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pricing__badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 4px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.pricing__title {
  margin-bottom: 16px;
}
.pricing__desc {
  text-align: center;
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 48px;
}

/* Toggle */
.pricing__toggle {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 4px;
  margin-bottom: 80px;
}
.pricing__toggle-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.pricing__toggle-btn.active {
  background: var(--blue);
  color: #fff;
}

/* Slider Customizado */
.pricing__slider-container {
  width: 100%;
  max-width: 900px;
  position: relative;
  margin-bottom: 64px;
}
.pricing__tooltip {
  position: absolute;
  top: -48px;
  left: 50%; /* Will be overridden by JS */
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  transition: left 0.3s ease;
}
.pricing__tooltip::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
}
.pricing__track {
  width: 100%;
  height: 12px;
  background: rgba(20, 122, 255, 0.1);
  border-radius: 6px;
  position: relative;
  cursor: pointer;
}
.pricing__fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, #147AFF 0%, #3ca2fa 100%);
  border-radius: 6px;
  transition: width 0.3s ease;
}
.pricing__thumb {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: #3ca2fa;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(60, 162, 250, 0.5);
  transition: left 0.3s ease;
  z-index: 2;
  cursor: grab;
}

/* Steps */
.pricing__steps {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 16px;
  position: relative;
}
.pricing__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.pricing__step-tick {
  width: 1px;
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 8px;
}
.pricing__step-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}
.pricing__step.active .pricing__step-label {
  color: #fff;
}

/* Descriptive Text */
.pricing__text-desc {
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 64px;
}

/* Cards */
.pricing__cards {
  display: flex;
  gap: 32px;
  width: 100%;
  max-width: 800px;
  justify-content: center;
  transition: opacity 0.2s ease;
}
.pricing__cards--grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 1200px;
}
.pricing__card {
  flex: 1;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.pricing__card--elite {
  background: rgba(255, 255, 255, 0.03);
}
.pricing__card-title {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.badge-premium {
  background: var(--blue);
  color: #fff;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 12px;
  font-weight: 700;
}

.pricing__features {
  list-style: none;
  padding: 0;
  margin: 0 0 48px 0;
  flex-grow: 1;
}
.pricing__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.pricing__features li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.6;
}
.pricing__features li strong {
  color: #fff;
  font-weight: 600;
}

.pricing__card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.pricing__card-bottom .btn {
  padding: 12px 24px;
  font-size: 12px;
}
.pricing__card-price {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}
.pricing__card-price .per-mo {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Self-Managed Grid */
.self-managed__grid {
  display: flex;
  gap: 32px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.self-managed__free {
  flex: 0 0 320px;
  background: rgba(20, 122, 255, 0.05);
  border: 1px solid rgba(20, 122, 255, 0.2);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.self-managed__free h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 24px;
}
.self-managed__features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}
.self-managed__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #fff;
  margin-bottom: 16px;
}
.self-managed__features li svg {
  width: 16px;
  height: 16px;
}
.self-managed__free p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
}
.self-managed__bottom {
  margin-top: auto;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.self-managed__paid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.self-managed__plan {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.self-managed__plan:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}
.sm-plan--highlight {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.sm-plan-header {
  margin-bottom: 24px;
}
.sm-plan-header h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.sm-plan-header p {
  font-size: 12px;
  color: var(--text-secondary);
}
.sm-plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  flex-grow: 1;
}
.sm-plan-features li {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
  padding-left: 16px;
  position: relative;
}
.sm-plan-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 4px;
  background: var(--blue);
  border-radius: 50%;
}
.sm-plan-price {
  margin-top: auto;
}
.price-val {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
}
.price-desc {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============================================================ WHY Oriv */
.why {
  padding: var(--section-gap) 0;
  border-top: 1px solid var(--border);
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 64px;
}
.why__card {
  background: var(--bg);
  padding: 40px 36px;
  transition: background var(--transition);
}
.why__card:hover { background: rgba(55,62,74,0.4); }
.why__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(20, 122, 255, 0.1);
  border: 1px solid rgba(20, 122, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.why__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 14px;
}
.why__desc { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

/* ============================================================ TESTIMONIALS */
.testimonials {
  padding: var(--section-gap) 0;
  border-top: 1px solid var(--border);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 64px;
}
.testimonial__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: transform var(--transition), border-color var(--transition);
}
.testimonial__card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.12); }
.testimonial__quote {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
  font-style: italic;
}
.testimonial__author { display: flex; align-items: center; gap: 14px; }
.testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(20, 122, 255, 0.15);
  border: 1px solid rgba(20, 122, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  flex-shrink: 0;
}
.testimonial__name { font-size: 14px; font-weight: 600; color: var(--text); }
.testimonial__role { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ============================================================ FINAL CTA */
.final-cta {
  padding: 160px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
.final-cta__inner { display: flex; flex-direction: column; align-items: center; }
.final-cta__title {
  font-size: 72px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--text);
  margin-bottom: 20px;
}
.final-cta__sub {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}
.final-cta__actions { display: flex; gap: 12px; margin-bottom: 24px; }
.final-cta__note { font-size: 13px; color: var(--text-muted); }

/* ============================================================ FAQ */
.faq {
  padding: var(--section-gap) 0;
  border-top: 1px solid var(--border);
}
.faq__list {
  max-width: 760px;
  margin: 64px auto 0;
}
.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__item:first-child { border-top: 1px solid var(--border); }
.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  user-select: none;
  transition: color var(--transition);
  gap: 16px;
}
.faq__question::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform var(--transition), color var(--transition);
}
.faq__item[open] .faq__question::after {
  transform: rotate(45deg);
  color: var(--blue);
}
.faq__item[open] .faq__question { color: var(--blue); }
.faq__answer {
  padding: 0 0 24px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================ FOOTER — HoverFooter */
.footer {
  display: block;
  width: calc(100% - 48px);
  margin: 0 24px 24px 24px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: rgba(15, 15, 17, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-sizing: border-box;
}

.footer__inner {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 60px 56px 0 56px;
  position: relative;
  z-index: 2;
}

/* ---- 4-column grid ---- */
.footer__top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  column-gap: 40px;
  row-gap: 40px;
  padding-bottom: 48px;
  width: 100%;
  box-sizing: border-box;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer__tagline {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 12px;
  margin-bottom: 20px;
}

.footer__socials {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.footer__social-link {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s ease;
}
.footer__social-link:hover { color: #3ca2fa; }

/* ---- Link columns ---- */
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 6px;
}
.footer__col-sep {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 8px 0;
}
.footer__link {
  display: inline;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer__link:hover { color: #3ca2fa; }
.footer__contact-item {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

/* ---- Divider ---- */
.footer__hr {
  display: block;
  width: 100%;
  height: 1px;
  border: none;
  background: rgba(255, 255, 255, 0.07);
  margin: 0;
}

/* ---- Bottom bar ---- */
.footer__bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
  padding: 18px 56px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  position: relative;
  z-index: 2;
}
.footer__copy { color: rgba(255, 255, 255, 0.4); }
.footer__legal { display: flex; flex-direction: row; gap: 20px; }



/* ---- Background gradient ---- */
.footer__bg-gradient {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 50% 110%, rgba(60, 162, 250, 0.12) 0%, transparent 70%);
}


/* ============================================================ DESKTOP-ONLY BREAKS */
.desktop-br { display: block; }

/* ============================================================ RESPONSIVE — TABLET (≤1024px) */
@media (max-width: 1024px) {
  .hero__title { font-size: 64px; }
  .section-title { font-size: 44px; }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .performance__inner { grid-template-columns: 1fr; gap: 48px; }
  .flow__timeline { grid-template-columns: repeat(3, 1fr); gap: 32px 0; }
  .flow__step:nth-child(3) .flow__connector { display: none; }
  .precision__inner { grid-template-columns: 1fr; gap: 48px; }
  .footer { margin: 0 12px 12px; border-radius: 16px; width: calc(100% - 24px); }
  .footer__inner { padding: 48px 36px 0; }
  .footer__top-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 32px; }

  /* Header: hide some nav links to prevent overflow */
  .nav__link:nth-child(n+4) { display: none; }
}

/* ============================================================ RESPONSIVE — MOBILE (≤768px) */
@media (max-width: 768px) {
  :root { --section-gap: 80px; }

  .container { padding: 0 20px; }
  .desktop-br { display: none; }

  /* ---- FLOATING HEADER ---- */
  .header-wrap { padding: 12px 16px; }
  .header { max-width: 100%; }
  .header__inner { padding: 6px 10px; }

  /* Hide desktop nav + login on mobile */
  .nav { display: none; }
  .header__actions .btn:not(.hamburger) { display: none; }
  /* Show hamburger icon button */
  .hamburger { display: flex; }

  /* ---- HERO ---- */
  .hero { padding: 100px 0 0; }
  .hero__title {
    font-size: 38px;
    letter-spacing: -0.03em;
    line-height: 1.05;
  }
  .hero__sub { font-size: 16px; max-width: 100%; }
  .hero__actions { flex-direction: column; width: 100%; max-width: 340px; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__trust { gap: 10px; }
  .trust__divider { display: none; }
  .trust__item { font-size: 12px; }

  /* ---- HERO DASHBOARD (simplified) ---- */
  .hero__dashboard { margin: 0 -4px; }
  .dashboard__content { height: auto; flex-direction: column; }
  .db__sidebar { display: none; }
  .db__main { width: 100%; }
  .db__metrics { grid-template-columns: repeat(2, 1fr); }
  .db__servers { overflow-x: auto; }
  .db__servers-header,
  .db__server-row {
    grid-template-columns: 1.4fr 1.2fr 1fr;
    gap: 8px;
    padding: 10px 12px;
  }
  /* hide Region + RAM columns on mobile */
  .db__servers-header span:nth-child(3),
  .db__servers-header span:nth-child(4),
  .db__server-row > span:nth-child(3),
  .db__server-row > span:nth-child(4) { display: none; }

  /* ---- SECTION TITLES ---- */
  .section-title { font-size: 32px; }
  .final-cta__title { font-size: 40px; }

  /* ---- TRUSTED LOGOS ---- */
  .trusted__logos { gap: 20px; }
  .trusted__logo-item span { display: none; } /* hide label, keep icon */

  /* ---- FEATURES ---- */
  .features__grid { grid-template-columns: 1fr; }
  .feature-card__visual { height: 180px; }

  /* ---- PERFORMANCE ---- */
  .performance__inner { grid-template-columns: 1fr; gap: 40px; }
  .performance__visual { display: none; } /* hide network viz on mobile, text is sufficient */
  .perf__value { font-size: 26px; }

  /* ---- FLOW TIMELINE ---- */
  .flow__timeline { grid-template-columns: 1fr; gap: 28px; }
  .flow__connector { display: none; }
  .flow__step { padding: 0; }

  /* ---- PRICING ---- */
  .pricing__cards { flex-direction: column; }
  .pricing__cards--grid { grid-template-columns: 1fr; }
  .pricing__card { margin-bottom: 16px; width: 100%; }
  .self-managed__grid { flex-direction: column; }
  .self-managed__free { flex: none; width: 100%; margin-bottom: 24px; }
  .self-managed__paid { grid-template-columns: 1fr; }
  .pricing__step-label { display: none; } /* Hide labels on mobile to prevent squishing */
  .pricing__tooltip { display: none; } /* Hide tooltip on mobile, too cramped */
  .pricing__header-toggle { flex-direction: column; gap: 12px; }
  .pricing-toggle { width: 100%; justify-content: center; }

  /* ---- LOGO ---- */
  .logo__img { height: 20px; }
  .logo__img--footer { height: 26px; }

  /* ---- WHY Oriv ---- */
  .why__grid { grid-template-columns: 1fr; }

  /* ---- TESTIMONIALS ---- */
  .testimonials__grid { grid-template-columns: 1fr; }

  /* ---- FINAL CTA ---- */
  .final-cta { padding: 80px 0; }
  .final-cta__actions { flex-direction: column; width: 100%; max-width: 320px; }
  .final-cta__actions .btn { width: 100%; justify-content: center; }

  /* ---- FOOTER ---- */
  .footer { margin: 0 8px 8px; border-radius: 16px; width: calc(100% - 16px); }
  .footer__inner { padding: 40px 24px 0; }
  .footer__top-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer__legal { flex-wrap: wrap; gap: 12px; }
  .footer__text-hover { height: 100px; margin-top: -24px; margin-bottom: -20px; }
.footer__hover-ghost, .footer__hover-draw, .footer__hover-color { font-size: 36px; }

  /* ---- CONTROL PLANE ---- */
  .control-plane__desc { font-size: 15px; }
}

/* ============================================================ RESPONSIVE — SMALL MOBILE (≤480px) */
@media (max-width: 480px) {
  .hero__title { font-size: 32px; }
  .section-title { font-size: 28px; }
  .final-cta__title { font-size: 32px; }

  .hero__badge { font-size: 11px; padding: 5px 12px; }

  .db__metrics { grid-template-columns: 1fr 1fr; }
  .db__metric-value { font-size: 18px; }

  .pricing__card { padding: 28px 20px; }
  .spec__key, .spec__val { font-size: 12px; padding: 8px 0; }

  .footer__top-grid { grid-template-columns: 1fr; }
  .footer__text-hover { height: 100px; margin-top: -32px; margin-bottom: -28px; }
  .footer__hover-ghost, .footer__hover-draw, .footer__hover-color { font-size: 28px; }

  .testimonial__card { padding: 24px 20px; }
  .why__card { padding: 28px 24px; }
  .feature-card__body { padding: 20px; }
}
