/* ═══════════════════════════════════════════
   OneMobile Cloud — Main Stylesheet
   ═══════════════════════════════════════════ */

:root {
  --bg-deep: #060a13;
  --bg-dark: #0a0e1a;
  --bg-card: rgba(14, 20, 36, 0.7);
  --bg-card-solid: #0e1424;
  --border: rgba(255, 255, 255, 0.06);
  --border-glow: rgba(30, 136, 229, 0.3);
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --brand-blue: #1E88E5;
  --brand-blue-dark: #1565C0;
  --brand-green: #00C853;
  --brand-green-dark: #00A844;
  --gradient-main: linear-gradient(135deg, #00C853 0%, #1E88E5 100%);
  --gradient-glow: linear-gradient(135deg, rgba(0, 200, 83, 0.4) 0%, rgba(30, 136, 229, 0.4) 100%);
  --glass-bg: rgba(14, 20, 36, 0.6);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: 20px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --nav-height: 72px;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--brand-green); text-decoration: none; transition: color .2s; }
a:hover { color: var(--brand-blue); }

img { max-width: 100%; height: auto; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══════ GRADIENT TEXT ═══════ */
.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════ GLASS CARD ═══════ */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  transition: border-color .3s, box-shadow .3s, transform .3s;
}

.glass-card:hover {
  border-color: var(--border-glow);
  box-shadow: 0 0 30px rgba(30, 136, 229, 0.08), 0 8px 32px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

/* ═══════ BUTTONS ═══════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all .3s;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-main);
  color: #fff;
}

.btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 200, 83, 0.3);
}

.btn-glow {
  box-shadow: 0 0 20px rgba(0, 200, 83, 0.25), 0 0 60px rgba(0, 200, 83, 0.1);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--glass-border);
}

.btn-outline:hover {
  color: var(--text);
  border-color: var(--brand-green);
  background: rgba(0, 200, 83, 0.05);
}

.btn-block { width: 100%; }
.btn-lg { padding: 18px 40px; font-size: 17px; }

/* ═══════ NAVIGATION ═══════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background .3s, box-shadow .3s;
}

.nav.scrolled {
  background: rgba(6, 10, 19, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo:hover { opacity: 0.9; }

.nav-logo-img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: opacity .2s;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: opacity .2s;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color .2s, background .2s;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.nav-cta {
  background: var(--gradient-main) !important;
  color: #fff !important;
  border-radius: 50px !important;
  padding: 8px 20px !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  box-shadow: 0 4px 20px rgba(0, 200, 83, 0.3);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ═══════ HERO ═══════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--nav-height) + 40px) 24px 60px;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, transparent 0%, var(--bg-deep) 70%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(0, 200, 83, 0.1);
  border: 1px solid rgba(0, 200, 83, 0.25);
  color: var(--brand-green);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

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

.hero-stat-val {
  display: block;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
}

.hero-stat-label {
  font-size: 12px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: var(--text-dim);
  font-size: 12px;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  margin: 8px auto 0;
  border-right: 2px solid var(--text-dim);
  border-bottom: 2px solid var(--text-dim);
  transform: rotate(45deg);
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.5; }
  50% { transform: rotate(45deg) translateY(6px); opacity: 1; }
}

/* ═══════ SECTIONS ═══════ */
.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(30, 136, 229, 0.1);
  border: 1px solid rgba(30, 136, 229, 0.2);
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ═══════ FEATURES ═══════ */
.features-section {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-dark) 100%);
}

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

.feature-card {
  padding: 32px;
  text-align: center;
}

.feature-icon {
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ═══════ SERVICES ═══════ */
.services-section {
  background: var(--bg-dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.service-number {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(0, 200, 83, 0.15) 0%, rgba(30, 136, 229, 0.08) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-features {
  list-style: none;
}

.service-features li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-green);
  opacity: 0.6;
}

/* ═══════ HOW IT WORKS ═══════ */
.how-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-deep) 100%);
}

.steps-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.step-card {
  text-align: center;
  padding: 40px 32px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  flex: 1;
  max-width: 280px;
  transition: border-color .3s, box-shadow .3s;
}

.step-card:hover {
  border-color: var(--border-glow);
  box-shadow: 0 0 30px rgba(30, 136, 229, 0.08);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-main);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 20px;
}

.step-icon {
  margin-bottom: 20px;
}

.step-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-connector {
  flex-shrink: 0;
}

/* ═══════ AI SHOWCASE ═══════ */
.ai-section {
  background: var(--bg-deep);
}

.ai-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  margin-bottom: 60px;
}

.ai-main-card {
  padding: 36px;
}

.ai-visual {
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-sm);
  padding: 24px;
  margin-bottom: 24px;
}

.ai-waveform {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 80px;
  margin-bottom: 16px;
}

.wave-bar {
  flex: 1;
  height: var(--h);
  background: var(--gradient-main);
  border-radius: 3px;
  animation: waveAnim 1.5s ease-in-out infinite alternate;
}

.wave-bar:nth-child(even) { animation-delay: 0.3s; }
.wave-bar:nth-child(3n) { animation-delay: 0.6s; }

@keyframes waveAnim {
  0% { opacity: 0.4; transform: scaleY(0.7); }
  100% { opacity: 1; transform: scaleY(1); }
}

.ai-transcript-line {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ai-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

.ai-tag.positive {
  background: rgba(0, 200, 83, 0.15);
  color: var(--brand-green);
}

.ai-tag.score {
  background: rgba(30, 136, 229, 0.15);
  color: var(--brand-blue);
}

.ai-main-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.ai-main-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.ai-side-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ai-card {
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.ai-card-icon { flex-shrink: 0; }

.ai-card h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.ai-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Comparison Table */
.ai-comparison {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 36px;
}

.ai-comparison h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}

.comparison-table {
  width: 100%;
  overflow-x: auto;
}

.comp-header, .comp-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 1px;
}

.comp-header {
  background: rgba(30, 136, 229, 0.1);
  border-radius: var(--radius-xs) var(--radius-xs) 0 0;
}

.comp-header .comp-cell {
  font-weight: 700;
  font-size: 13px;
  color: var(--text);
}

.comp-cell {
  padding: 12px 16px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

.comp-cell.comp-feature {
  text-align: left;
  font-weight: 600;
  color: var(--text);
}

.comp-cell.comp-us {
  background: rgba(0, 200, 83, 0.05);
}

.comp-row {
  border-bottom: 1px solid var(--border);
}

.comp-row:last-child { border-bottom: none; }

.check {
  font-size: 16px;
  font-weight: 700;
}

.check.yes { color: var(--brand-green); }
.check.no { color: #ef4444; }
.check.partial { color: #eab308; }

/* ═══════ PRICING ═══════ */
.pricing-section {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-dark) 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.pricing-card {
  padding: 32px 24px;
  text-align: center;
  position: relative;
}

.pricing-featured {
  border-color: var(--brand-green) !important;
  box-shadow: 0 0 40px rgba(0, 200, 83, 0.1);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-main);
  color: #fff;
  padding: 4px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-tier {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.pricing-seats {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.pricing-price {
  margin-bottom: 8px;
}

.pricing-currency {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  vertical-align: top;
}

.pricing-amount {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-custom {
  font-size: 32px !important;
}

.pricing-period {
  font-size: 13px;
  color: var(--text-dim);
  display: block;
  margin-top: 4px;
}

.pricing-airtime {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.pricing-airtime strong {
  color: var(--brand-green);
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}

.pricing-features li {
  padding: 6px 0;
  font-size: 13px;
  color: var(--text-muted);
  position: relative;
  padding-left: 22px;
}

.pricing-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--brand-green);
  font-weight: 700;
}

/* ═══════ CALCULATOR ═══════ */
.calculator {
  padding: 48px;
  text-align: center;
}

.calculator h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.calc-sub {
  color: var(--text-muted);
  margin-bottom: 36px;
  font-size: 15px;
}

.calc-inputs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 36px;
}

.calc-group {
  text-align: left;
}

.calc-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.calc-group input[type="range"] {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  outline: none;
}

.calc-group input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--brand-green);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 200, 83, 0.4);
}

.calc-group input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--brand-green);
  cursor: pointer;
  border: none;
  box-shadow: 0 0 10px rgba(0, 200, 83, 0.4);
}

.calc-val {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-top: 12px;
}

.calc-result {
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-sm);
  padding: 24px 32px;
  margin-bottom: 28px;
  text-align: left;
}

.calc-result-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 15px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.calc-result-row:last-child { border-bottom: none; }

.calc-total {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}

.calc-total span:last-child {
  color: var(--brand-green);
  font-family: var(--font-heading);
}

.calc-savings .savings-val {
  color: var(--brand-green);
  font-weight: 700;
}

/* ═══════ SUPPORT PREVIEW ═══════ */
.support-section {
  background: var(--bg-dark);
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: center;
}

/* WhatsApp Phone */
.wa-phone {
  background: #0b141a;
  border-radius: 32px;
  overflow: hidden;
  max-width: 340px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.08);
}

.wa-phone-notch {
  height: 28px;
  background: #0b141a;
  position: relative;
}

.wa-phone-notch::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 6px;
  background: #1a2730;
  border-radius: 3px;
}

.wa-phone-header {
  background: #1f2c34;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-phone-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
}

.wa-phone-name {
  font-size: 14px;
  font-weight: 600;
  color: #e9edef;
}

.wa-phone-status {
  font-size: 11px;
  color: #8696a0;
}

.wa-phone-chat {
  padding: 16px;
  min-height: 380px;
  background: #0b141a;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.wa-msg {
  margin-bottom: 10px;
  max-width: 85%;
}

.wa-msg-in {
  margin-right: auto;
}

.wa-msg-out {
  margin-left: auto;
}

.wa-msg-text {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.5;
}

.wa-msg-in .wa-msg-text {
  background: #1f2c34;
  color: #e9edef;
  border-top-left-radius: 0;
}

.wa-msg-out .wa-msg-text {
  background: #005c4b;
  color: #e9edef;
  border-top-right-radius: 0;
}

.wa-msg-menu {
  background: #111b21;
  border-radius: 8px;
  padding: 10px 12px;
  margin-top: 8px;
  font-family: 'Courier New', monospace;
  font-size: 11px;
  white-space: pre-wrap;
  line-height: 1.5;
  color: #8696a0;
}

.wa-ok { color: #00C853; }
.wa-warn { color: #eab308; }

/* Portal Preview */
.portal-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.portal-chrome {
  background: #1e293b;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: #64748b;
}

.portal-dots {
  display: flex;
  gap: 6px;
}

.portal-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.portal-dots span:nth-child(1) { background: #ef4444; }
.portal-dots span:nth-child(2) { background: #eab308; }
.portal-dots span:nth-child(3) { background: #22c55e; }

.portal-body {
  display: flex;
  background: #0f172a;
  min-height: 300px;
}

.portal-sidebar-mini {
  width: 130px;
  background: #0c1322;
  padding: 12px 0;
  border-right: 1px solid #1e293b;
  flex-shrink: 0;
}

.psm-brand {
  padding: 0 12px 10px;
  font-size: 11px;
  font-weight: 700;
  color: #e2e8f0;
  border-bottom: 1px solid #1e293b;
  margin-bottom: 4px;
}

.psm-item {
  padding: 6px 12px;
  font-size: 10px;
  color: #64748b;
}

.psm-item.active {
  background: #22c55e;
  color: #fff;
  font-weight: 600;
}

.portal-main-mini {
  flex: 1;
  padding: 16px;
}

.pmm-greeting {
  background: linear-gradient(135deg, #1e3a5f, #1e293b);
  border: 1px solid #2a3f5f;
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.pmm-hello {
  font-size: 13px;
  font-weight: 600;
  color: #e2e8f0;
}

.pmm-sub {
  font-size: 10px;
  color: #94a3b8;
  margin-top: 2px;
}

.pmm-health {
  text-align: center;
  background: #0f172a;
  border: 1px solid #2a3f5f;
  border-radius: 8px;
  padding: 8px 14px;
}

.pmm-health-val {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #22c55e;
  line-height: 1;
}

.pmm-health-label {
  font-size: 8px;
  color: #94a3b8;
  text-transform: uppercase;
}

.pmm-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.pmm-stat {
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 8px;
  padding: 8px;
  text-align: center;
}

.pmm-stat-label {
  display: block;
  font-size: 8px;
  color: #64748b;
  text-transform: uppercase;
}

.pmm-stat-val {
  font-size: 16px;
  font-weight: 800;
  color: #e2e8f0;
}

.pmm-stat-val.green { color: #22c55e; }

.pmm-servers {
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 8px;
  padding: 10px 12px;
}

.pmm-srv {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: #cbd5e1;
  padding: 4px 0;
}

.pmm-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.pmm-dot.green { background: #22c55e; }
.pmm-dot.yellow { background: #eab308; }

.pmm-badge {
  margin-left: auto;
  font-size: 8px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 8px;
}

.pmm-badge.green {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

.pmm-badge.yellow {
  background: rgba(234, 179, 8, 0.15);
  color: #eab308;
}

/* ═══════ INFRASTRUCTURE ═══════ */
.infra-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-deep) 100%);
}

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

.infra-card {
  padding: 32px;
  text-align: center;
}

.infra-icon {
  margin-bottom: 20px;
}

.infra-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.infra-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ═══════ LAUNCH FORM ═══════ */
.launch-section {
  background: var(--bg-deep);
}

.launch-form-wrap {
  max-width: 740px;
  margin: 0 auto;
  padding: 48px;
}

.launch-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text);
  font-family: var(--font-body);
  transition: border-color .2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand-blue);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-group select option {
  background: #1e293b;
  color: var(--text);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-check label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--brand-green);
  cursor: pointer;
}

.link {
  color: var(--brand-blue);
  text-decoration: underline;
}

.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 8px;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  margin-bottom: 20px;
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--brand-green);
  margin-bottom: 12px;
}

.form-success p {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ═══════ CONTACT ═══════ */
.contact-section {
  background: var(--bg-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.contact-card {
  padding: 36px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.contact-item:last-child { margin-bottom: 0; }

.contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 200, 83, 0.08);
  border-radius: 12px;
}

.contact-item h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 14px;
  color: var(--text-muted);
}

.contact-item a {
  color: var(--text-muted);
}

.contact-item a:hover {
  color: var(--brand-green);
}

.contact-maps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-map-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.map-label {
  background: var(--bg-card-solid);
  padding: 12px 16px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--glass-border);
}

.contact-map-item iframe {
  flex: 1;
}

/* ═══════ FOOTER ═══════ */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 280px;
}

.footer-links-col h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

.footer-links-col ul {
  list-style: none;
}

.footer-links-col li {
  margin-bottom: 10px;
}

.footer-links-col a {
  font-size: 13px;
  color: var(--text-dim);
}

.footer-links-col a:hover {
  color: var(--brand-green);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-dim);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 13px;
  color: var(--text-dim);
}

.footer-legal a:hover {
  color: var(--text);
}

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .infra-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(6, 10, 19, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 20px 24px;
    gap: 4px;
    transform: translateY(-120%);
    transition: transform .3s;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-links a {
    padding: 12px 16px;
    font-size: 16px;
    width: 100%;
  }

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

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

  .steps-row {
    flex-direction: column;
  }

  .step-connector {
    transform: rotate(90deg);
  }

  .step-card {
    max-width: 100%;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .calc-inputs {
    grid-template-columns: 1fr;
  }

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

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

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

  .contact-maps {
    grid-template-columns: 1fr;
  }

  .contact-map-item {
    min-height: 260px;
  }

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

  .launch-form-wrap {
    padding: 28px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-stat-divider {
    display: none;
  }

  .section {
    padding: 60px 0;
  }

  .calculator {
    padding: 28px 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

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

  .portal-sidebar-mini {
    display: none;
  }
}
