/* ============================================================
   TERRAAI — AWS Intelligence Platform
   Design: Industrial Dark · Orange Accent · Mono Typography
   ============================================================ */

:root {
  --bg:         #080A0E;
  --bg2:        #0D1117;
  --bg3:        #131920;
  --border:     rgba(255,107,0,0.15);
  --border2:    rgba(255,255,255,0.06);
  --orange:     #FF6B00;
  --orange-dim: rgba(255,107,0,0.12);
  --orange-glow:rgba(255,107,0,0.25);
  --cyan:       #00D4FF;
  --green:      #00FF87;
  --red:        #FF4444;
  --yellow:     #FFD600;
  --text:       #E8EDF2;
  --text-dim:   #7A8A99;
  --mono:       'JetBrains Mono', monospace;
  --sans:       'Syne', sans-serif;
  --radius:     8px;
  --radius-lg:  16px;
  --nav-h:      72px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
}

/* ── BACKGROUND ── */
.bg-grid {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,107,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,0,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}

.bg-glow {
  position: fixed; z-index: 0; pointer-events: none;
  border-radius: 50%; filter: blur(120px); opacity: 0.35;
}
.glow-1 { width: 600px; height: 600px; background: var(--orange); top: -200px; right: -150px; }
.glow-2 { width: 500px; height: 500px; background: var(--cyan); bottom: -100px; left: -150px; }

/* ── NAV ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(8,10,14,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border2);
  transition: var(--transition);
}
#navbar.scrolled { background: rgba(8,10,14,0.97); }

.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 2rem;
  height: 100%; display: flex; align-items: center; gap: 2rem;
}

.logo {
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none; font-family: var(--sans);
  font-weight: 800; font-size: 1.3rem; color: var(--text);
  letter-spacing: -0.02em;
}
.logo em { color: var(--orange); font-style: normal; }

.nav-links {
  list-style: none; display: flex; gap: 0.25rem; margin-left: 1rem;
}
.nav-links a {
  color: var(--text-dim); text-decoration: none; padding: 0.5rem 0.9rem;
  border-radius: var(--radius); font-size: 0.9rem; font-weight: 600;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--text); background: var(--border2); }

.btn-nav {
  margin-left: auto; padding: 0.55rem 1.25rem;
  background: var(--orange); color: #000;
  border-radius: var(--radius); font-weight: 700; font-size: 0.875rem;
  text-decoration: none; transition: var(--transition);
  font-family: var(--sans); letter-spacing: 0.02em;
}
.btn-nav:hover { background: #FF8C33; transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto;
}
.hamburger span {
  display: block; width: 24px; height: 2px; background: var(--text);
  border-radius: 2px; transition: var(--transition);
}

/* ── HERO ── */
.hero {
  position: relative; z-index: 1;
  min-height: 100vh; padding: var(--nav-h) 2rem 0;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 4rem;
  max-width: 1280px; margin: 0 auto;
}

.hero-content { padding: 4rem 0; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.4rem 1rem; border: 1px solid var(--border);
  border-radius: 999px; font-family: var(--mono); font-size: 0.75rem;
  color: var(--orange); background: var(--orange-dim); margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0,255,135,0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(0,255,135,0); }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 800; line-height: 1.05; letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero-title span { display: block; }
.hero-title .line-1 { color: var(--text-dim); font-size: 0.65em; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.3rem; }
.hero-title .line-2 { color: var(--text); }
.hero-title .line-2 em { color: var(--orange); font-style: normal; }
.hero-title .line-3 { color: var(--text); }

.hero-sub {
  color: var(--text-dim); font-size: 1.1rem; line-height: 1.7;
  max-width: 480px; margin-bottom: 2.5rem; font-family: var(--mono); font-weight: 300;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 2rem; background: var(--orange); color: #000;
  font-weight: 800; font-size: 1rem; border-radius: var(--radius);
  text-decoration: none; transition: var(--transition); font-family: var(--sans);
}
.btn-primary:hover { background: #FF8C33; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,107,0,0.35); }
.btn-primary span { transition: transform 0.2s; }
.btn-primary:hover span { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex; align-items: center; padding: 0.875rem 2rem;
  border: 1px solid var(--border); color: var(--text-dim);
  font-weight: 600; font-size: 1rem; border-radius: var(--radius);
  text-decoration: none; transition: var(--transition); font-family: var(--sans);
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-dim); }

.hero-stats {
  display: flex; align-items: center; gap: 2rem;
  padding: 1.25rem 0; border-top: 1px solid var(--border2);
}
.stat { display: flex; flex-direction: column; }
.stat strong { font-size: 1.5rem; font-weight: 800; color: var(--text); }
.stat span { font-size: 0.75rem; color: var(--text-dim); font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.08em; }
.stat-div { width: 1px; height: 36px; background: var(--border2); }

/* ── TERMINAL ── */
.hero-visual { animation: float 6s ease-in-out infinite; }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.terminal-window {
  background: #0D1117; border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,107,0,0.1), inset 0 1px 0 rgba(255,255,255,0.05);
}
.terminal-bar {
  background: #161B22; padding: 0.875rem 1.25rem;
  display: flex; align-items: center; gap: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red    { background: #FF5F57; }
.dot.yellow { background: #FEBC2E; }
.dot.green  { background: #28C840; }
.terminal-title { margin-left: 0.75rem; font-family: var(--mono); font-size: 0.75rem; color: var(--text-dim); }

.terminal-body { padding: 1.5rem; font-family: var(--mono); font-size: 0.8rem; min-height: 280px; }
.t-line { margin-bottom: 0.5rem; line-height: 1.6; }
.prompt { color: var(--orange); margin-right: 0.5rem; }

/* ── SECTIONS SHARED ── */
section { position: relative; z-index: 1; }

.section-label {
  font-family: var(--mono); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.15em; color: var(--orange); text-align: center;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.1; text-align: center; margin-bottom: 1rem;
}
.section-title em { color: var(--orange); font-style: normal; }
.section-sub {
  color: var(--text-dim); text-align: center; font-family: var(--mono);
  font-size: 0.9rem; max-width: 520px; margin: 0 auto 3.5rem;
}

/* ── SERVICES ── */
.services {
  padding: 6rem 2rem;
  max-width: 1280px; margin: 0 auto;
}

.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1px; background: var(--border2);
  border: 1px solid var(--border2); border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-card {
  background: var(--bg2); padding: 1.75rem;
  transition: var(--transition); cursor: default; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--orange-dim); opacity: 0; transition: var(--transition);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover { transform: scale(1.01); z-index: 2; }

.service-icon {
  font-size: 1.8rem; margin-bottom: 0.75rem; display: block;
}
.service-name {
  font-weight: 700; font-size: 1rem; margin-bottom: 0.4rem; color: var(--text);
}
.service-desc {
  font-family: var(--mono); font-size: 0.75rem; color: var(--text-dim);
  line-height: 1.5;
}
.service-tag {
  display: inline-block; margin-top: 0.75rem; padding: 0.2rem 0.6rem;
  background: var(--orange-dim); border: 1px solid var(--border);
  border-radius: 4px; font-family: var(--mono); font-size: 0.65rem;
  color: var(--orange); letter-spacing: 0.06em;
}

/* ── ASSISTANT ── */
.assistant-section {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 50%, var(--bg) 100%);
}
.assistant-section .section-title,
.assistant-section .section-label { max-width: 1280px; margin-left: auto; margin-right: auto; }

.console-wrapper {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 260px 1fr;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  height: 600px;
}

.console-sidebar {
  background: var(--bg3); border-right: 1px solid var(--border2);
  padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem;
}
.console-sidebar h3 {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-dim); font-family: var(--mono);
}
#quick-prompts { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
#quick-prompts li {
  padding: 0.65rem 0.75rem; border-radius: var(--radius);
  font-size: 0.8rem; cursor: pointer; color: var(--text-dim);
  transition: var(--transition); border: 1px solid transparent; font-family: var(--mono);
}
#quick-prompts li:hover {
  color: var(--text); background: var(--orange-dim); border-color: var(--border);
}

.sidebar-info {
  margin-top: auto; padding: 0.875rem; background: var(--orange-dim);
  border: 1px solid var(--border); border-radius: var(--radius);
}
.sidebar-info strong { display: block; font-size: 0.8rem; color: var(--orange); margin-bottom: 0.2rem; }
.sidebar-info span { font-size: 0.72rem; font-family: var(--mono); color: var(--text-dim); }

.console-main {
  display: flex; flex-direction: column; background: var(--bg2);
}

.chat-window {
  flex: 1; overflow-y: auto; padding: 1.5rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  scrollbar-width: thin; scrollbar-color: var(--border2) transparent;
}

.chat-msg { display: flex; gap: 0.75rem; align-items: flex-start; }
.user-msg { flex-direction: row-reverse; }

.msg-avatar {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.85rem;
  background: var(--orange); color: #000;
}
.user-msg .msg-avatar { background: var(--bg3); color: var(--text); border: 1px solid var(--border2); }

.msg-bubble {
  max-width: 78%; padding: 0.875rem 1.1rem;
  background: var(--bg3); border: 1px solid var(--border2);
  border-radius: var(--radius-lg); font-size: 0.875rem; line-height: 1.65;
  font-family: var(--mono); color: var(--text);
}
.user-msg .msg-bubble { background: var(--orange-dim); border-color: var(--border); }
.msg-bubble p { margin-bottom: 0.5rem; }
.msg-bubble p:last-child { margin-bottom: 0; }
.msg-bubble ul { padding-left: 1.25rem; }
.msg-bubble li { margin-bottom: 0.25rem; }
.msg-bubble strong { color: var(--orange); }
.msg-bubble code {
  background: rgba(0,0,0,0.3); padding: 0.15rem 0.4rem;
  border-radius: 4px; font-size: 0.82em;
}
.msg-bubble pre {
  background: rgba(0,0,0,0.4); border: 1px solid var(--border2);
  border-radius: var(--radius); padding: 1rem; margin-top: 0.75rem;
  overflow-x: auto; font-size: 0.78rem; line-height: 1.5;
  white-space: pre-wrap; word-break: break-word;
}

.typing-indicator {
  display: inline-flex; gap: 4px; align-items: center; padding: 0.3rem 0;
}
.typing-indicator span {
  width: 6px; height: 6px; background: var(--orange); border-radius: 50%;
  animation: typing-bounce 1.2s ease-in-out infinite;
}
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing-bounce {
  0%,60%,100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-6px); opacity: 1; }
}

.chat-input-area {
  padding: 1rem 1.5rem; border-top: 1px solid var(--border2);
  background: var(--bg3);
}
.input-row { display: flex; gap: 0.75rem; align-items: flex-end; }

#chat-input {
  flex: 1; background: var(--bg2); border: 1px solid var(--border2);
  border-radius: var(--radius); padding: 0.75rem 1rem;
  color: var(--text); font-family: var(--mono); font-size: 0.875rem;
  resize: none; min-height: 44px; max-height: 140px; line-height: 1.5;
  transition: var(--transition); outline: none;
}
#chat-input:focus { border-color: var(--orange); box-shadow: 0 0 0 3px var(--orange-glow); }
#chat-input::placeholder { color: var(--text-dim); }

.send-btn {
  width: 44px; height: 44px; border-radius: var(--radius);
  background: var(--orange); border: none; cursor: pointer;
  color: #000; display: flex; align-items: center; justify-content: center;
  transition: var(--transition); flex-shrink: 0;
}
.send-btn:hover { background: #FF8C33; transform: scale(1.05); }
.send-btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

.input-footer {
  display: flex; justify-content: space-between; margin-top: 0.5rem;
  font-family: var(--mono); font-size: 0.7rem; color: var(--text-dim);
}

/* ── DASHBOARD ── */
.dashboard-section {
  padding: 6rem 2rem;
  max-width: 1280px; margin: 0 auto;
}

.dashboard-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem; margin-top: 3rem;
}

.dash-card {
  background: var(--bg2); border: 1px solid var(--border2);
  border-radius: var(--radius-lg); padding: 1.75rem;
  transition: var(--transition);
}
.dash-card:hover { border-color: var(--border); box-shadow: 0 8px 40px rgba(255,107,0,0.08); }

.card-header {
  display: flex; align-items: center; gap: 0.6rem;
  font-weight: 700; font-size: 0.875rem; margin-bottom: 1.5rem;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-dim);
  font-family: var(--mono);
}
.card-icon { color: var(--orange); font-size: 0.8rem; }

/* Health bars */
.health-bars { display: flex; flex-direction: column; gap: 1rem; }
.health-row { display: flex; align-items: center; gap: 0.75rem; }
.health-label { font-family: var(--mono); font-size: 0.75rem; color: var(--text-dim); width: 70px; flex-shrink: 0; }
.health-track { flex: 1; height: 6px; background: var(--bg3); border-radius: 3px; overflow: hidden; }
.health-fill { height: 100%; border-radius: 3px; transition: width 1.5s cubic-bezier(0.4,0,0.2,1); }
.health-val { font-family: var(--mono); font-size: 0.75rem; color: var(--text); width: 36px; text-align: right; }

/* Cost chart */
.cost-chart {
  display: flex; align-items: flex-end; gap: 6px;
  height: 100px; margin-bottom: 1rem;
}
.cost-bar {
  flex: 1; border-radius: 4px 4px 0 0; min-width: 0;
  background: linear-gradient(180deg, var(--orange) 0%, rgba(255,107,0,0.4) 100%);
  transition: height 1.5s cubic-bezier(0.4,0,0.2,1); position: relative;
}
.cost-bar.projected { background: linear-gradient(180deg, var(--green) 0%, rgba(0,255,135,0.3) 100%); }
.cost-bar::after {
  content: attr(data-label); position: absolute; top: -1.5rem;
  left: 50%; transform: translateX(-50%); font-family: var(--mono); font-size: 0.6rem;
  color: var(--text-dim); white-space: nowrap;
}
.cost-footer { display: flex; justify-content: space-between; align-items: center; }
.cost-footer span { font-family: var(--mono); font-size: 0.72rem; color: var(--text-dim); }
.savings { color: var(--green); font-size: 1.2rem; font-weight: 800; }

/* Alerts */
.alerts-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.alert-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.75rem; background: var(--bg3); border-radius: var(--radius);
  border-left: 3px solid;
}
.alert-item.warn { border-color: var(--yellow); }
.alert-item.info { border-color: var(--cyan); }
.alert-item.ok   { border-color: var(--green); }
.alert-icon { font-size: 0.85rem; margin-top: 0.1rem; }
.alert-content strong { display: block; font-size: 0.8rem; margin-bottom: 0.15rem; }
.alert-content span { font-family: var(--mono); font-size: 0.72rem; color: var(--text-dim); }

/* Regions */
.regions-map {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem;
}
.region-item {
  padding: 0.875rem; background: var(--bg3); border-radius: var(--radius);
  border: 1px solid var(--border2);
}
.region-dot {
  width: 8px; height: 8px; border-radius: 50%; display: inline-block;
  margin-right: 0.5rem; vertical-align: middle;
}
.region-name { font-size: 0.8rem; font-weight: 600; }
.region-status { font-family: var(--mono); font-size: 0.68rem; color: var(--text-dim); margin-top: 0.3rem; }

/* ── PRICING ── */
.pricing-section {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}

.pricing-grid {
  max-width: 1000px; margin: 0 auto 0;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem;
}

.plan {
  background: var(--bg2); border: 1px solid var(--border2);
  border-radius: var(--radius-lg); padding: 2rem;
  position: relative; transition: var(--transition);
}
.plan:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(0,0,0,0.4); }
.plan.featured {
  border-color: var(--orange); background: linear-gradient(135deg, var(--bg2) 0%, rgba(255,107,0,0.07) 100%);
}

.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 0.3rem 0.875rem; background: var(--orange); color: #000;
  border-radius: 999px; font-size: 0.7rem; font-weight: 800; white-space: nowrap;
}

.plan-name {
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-dim); font-family: var(--mono); margin-bottom: 0.75rem;
}
.plan-price {
  font-size: 2.8rem; font-weight: 800; line-height: 1; margin-bottom: 1.5rem;
  color: var(--text);
}
.plan-price span { font-size: 1rem; color: var(--text-dim); font-weight: 400; }

.plan-features { list-style: none; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.6rem; }
.plan-features li { font-family: var(--mono); font-size: 0.8rem; color: var(--text-dim); }
.plan-features li:not(.off) { color: var(--text); }
.plan-features .off { opacity: 0.4; }

.btn-plan {
  display: block; text-align: center; padding: 0.75rem;
  border-radius: var(--radius); text-decoration: none; font-weight: 700;
  font-size: 0.875rem; transition: var(--transition); font-family: var(--sans);
}
.btn-plan.primary { background: var(--orange); color: #000; }
.btn-plan.primary:hover { background: #FF8C33; transform: translateY(-1px); }
.btn-plan.ghost {
  border: 1px solid var(--border); color: var(--text-dim);
}
.btn-plan.ghost:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-dim); }

/* ── FOOTER ── */
.footer {
  background: var(--bg2); border-top: 1px solid var(--border2);
  padding: 4rem 2rem 2rem; position: relative; z-index: 1;
}
.footer-inner {
  max-width: 1280px; margin: 0 auto 3rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
}
.footer-brand .logo-text {
  font-size: 1.5rem; font-weight: 800; display: block; margin-bottom: 0.75rem;
}
.footer-brand .logo-text em { color: var(--orange); font-style: normal; }
.footer-brand p { font-family: var(--mono); font-size: 0.8rem; color: var(--text-dim); line-height: 1.6; margin-bottom: 1rem; }
.footer-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.badge {
  padding: 0.25rem 0.6rem; border: 1px solid var(--border);
  border-radius: 4px; font-family: var(--mono); font-size: 0.65rem;
  color: var(--text-dim); letter-spacing: 0.06em;
}

.footer-links h4 {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-dim); margin-bottom: 1rem; font-family: var(--mono);
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { color: var(--text-dim); text-decoration: none; font-size: 0.875rem; transition: var(--transition); }
.footer-links a:hover { color: var(--orange); }

.footer-bottom {
  max-width: 1280px; margin: 0 auto; padding-top: 2rem;
  border-top: 1px solid var(--border2);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 0.72rem; color: var(--text-dim);
}

/* ── ANIMATIONS ── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding-top: calc(var(--nav-h) + 2rem); }
  .hero-visual { display: none; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .hero-stats { flex-wrap: wrap; gap: 1.25rem; }
  .console-wrapper { grid-template-columns: 1fr; height: auto; }
  .console-sidebar { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .regions-map { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { text-align: center; justify-content: center; }
}
