/* =====================================================
   SOLIMAN AI — Real Estate Marketing Director
   Dark Luxury × Neon Lime × Glassmorphism
   ===================================================== */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --neon:     #b8ff00;
  --neon-dim: rgba(184,255,0,0.12);
  --neon-glow: 0 0 24px rgba(184,255,0,0.45), 0 0 60px rgba(184,255,0,0.2);
  --bg:       #080809;
  --bg2:      #0e0f10;
  --surface:  rgba(255,255,255,0.04);
  --surface2: rgba(255,255,255,0.07);
  --border:   rgba(255,255,255,0.08);
  --border2:  rgba(184,255,0,0.25);
  --text:     #f0f0f0;
  --muted:    #6e7280;
  --radius:   18px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --font:     'Inter', sans-serif;
  --font-head:'Space Grotesk', 'Inter', sans-serif;
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

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

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── HERO BACKGROUND IMAGE (Higgsfield AI) ── */
.hero-bg-img {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0.12;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
}

/* ── AMBIENT ORBS ── */
.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
  animation: orbFloat 12s ease-in-out infinite alternate;
}
.bg-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #b8ff00 0%, transparent 70%);
  top: -200px; left: -150px;
  opacity: 0.08;
}
.bg-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #00c8ff 0%, transparent 70%);
  bottom: 100px; right: -100px;
  opacity: 0.06;
  animation-delay: -4s;
}
.bg-orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #b8ff00 0%, transparent 70%);
  top: 50%; right: 20%;
  opacity: 0.04;
  animation-delay: -8s;
}
@keyframes orbFloat {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(30px,40px) scale(1.1); }
}

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
  position: relative;
  z-index: 10;
  background: linear-gradient(90deg, rgba(184,255,0,0.08), rgba(184,255,0,0.04), rgba(184,255,0,0.08));
  border-bottom: 1px solid rgba(184,255,0,0.15);
  padding: 10px 0;
  overflow: hidden;
}
.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(184,255,0,0.85);
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
@media (max-width: 768px) {
  .announcement-inner { animation: none; justify-content: flex-start; padding: 0 16px; overflow: hidden; }
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ai-dot {
  width: 6px; height: 6px;
  background: var(--neon);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--neon);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,100% { opacity: 1; } 50% { opacity: 0.4; }
}
.sep { color: rgba(184,255,0,0.4); }

/* ── HEADER ── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,8,9,0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: var(--neon-dim);
  border: 1px solid var(--border2);
  border-radius: 10px;
}
.logo-text {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.logo-accent { color: var(--neon); }

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  transition: all var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--text);
  background: var(--surface2);
}
.nav-link.active { color: var(--neon); }

/* Book button */
.btn-book {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--neon);
  color: #080809;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  box-shadow: 0 0 20px rgba(184,255,0,0.3);
}
.btn-book:hover {
  box-shadow: var(--neon-glow);
  transform: translateY(-1px);
}
.btn-spark { font-size: 10px; }

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

/* ── HERO ── */
.hero {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 96px);
  display: flex;
  align-items: center;
  padding: 80px 24px 60px;
}
.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--neon-dim);
  border: 1px solid var(--border2);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--neon);
  letter-spacing: 0.02em;
}
.badge-pulse {
  width: 8px; height: 8px;
  background: var(--neon);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--neon);
  animation: dotPulse 2s ease-in-out infinite;
}

/* Headline */
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text);
}
.hl-neon {
  color: var(--neon);
  text-shadow: 0 0 30px rgba(184,255,0,0.6);
}

/* Sub */
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--muted);
  line-height: 1.7;
  max-width: 580px;
}
.desktop-only { display: inline; }

/* ── COMMAND CARD ── */
.command-card {
  width: 100%;
  max-width: 780px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 28px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 0 0 1px rgba(184,255,0,0.05),
    0 24px 80px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow var(--transition);
}
.command-card:hover {
  box-shadow:
    0 0 0 1px rgba(184,255,0,0.12),
    0 24px 80px rgba(0,0,0,0.6),
    0 0 60px rgba(184,255,0,0.06),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.card-toprow {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Preview thumb */
.preview-thumb {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.thumb-inner {
  width: 120px;
  height: 72px;
  border-radius: 12px;
  background: linear-gradient(135deg, #111318 0%, #1a1d24 100%);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 8px;
  gap: 4px;
}
.thumb-building {
  position: absolute;
  bottom: 20px;
  left: 0; right: 0;
  height: 40px;
  background: linear-gradient(to top, rgba(184,255,0,0.15), transparent);
  clip-path: polygon(10% 100%, 10% 40%, 20% 40%, 20% 20%, 30% 20%, 30% 40%, 45% 40%, 45% 10%, 55% 10%, 55% 40%, 70% 40%, 70% 30%, 80% 30%, 80% 40%, 90% 40%, 90% 100%);
}
.thumb-stats { display: flex; flex-direction: column; gap: 3px; }
.stat-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--neon), transparent);
  border-radius: 2px;
  opacity: 0.7;
}
.thumb-label {
  font-size: 0.65rem;
  color: var(--muted);
  font-weight: 500;
  text-align: center;
}

.card-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  flex-wrap: wrap;
}

/* Plus button */
.ctrl-plus {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  flex-shrink: 0;
}
.ctrl-plus:hover {
  background: var(--neon-dim);
  border-color: var(--border2);
  color: var(--neon);
}

/* Dropdowns */
.dropdown-wrap { position: relative; }
.ctrl-dropdown, .ctrl-service {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface2);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 500;
  font-family: var(--font);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.ctrl-dropdown:hover, .ctrl-service:hover {
  border-color: var(--border2);
  background: rgba(184,255,0,0.06);
}
.dropdown-dot {
  width: 7px; height: 7px;
  background: var(--neon);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--neon);
}
.dropdown-chevron { transition: transform var(--transition); flex-shrink: 0; }
.dropdown-wrap.open .dropdown-chevron { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: #13141a;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 6px;
  display: none;
  z-index: 200;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.dropdown-wrap.open .dropdown-menu { display: block; }
.dropdown-item {
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.84rem;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--muted);
}
.dropdown-item:hover, .dropdown-item.active {
  background: var(--neon-dim);
  color: var(--neon);
}

/* Divider */
.card-divider {
  height: 1px;
  background: var(--border);
}

/* Input row */
.card-input-row {
  display: flex;
  gap: 12px;
  align-items: center;
}
.input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 16px;
  transition: border-color var(--transition);
}
.input-wrap:focus-within { border-color: rgba(184,255,0,0.35); }
.input-icon { color: var(--neon); font-size: 12px; flex-shrink: 0; }
.strategy-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.9rem;
}
.strategy-input::placeholder { color: var(--muted); }

/* Strategy CTA */
.btn-strategy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  background: var(--neon);
  color: #080809;
  border: none;
  border-radius: 14px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  box-shadow: 0 0 20px rgba(184,255,0,0.25);
}
.btn-strategy:hover {
  box-shadow: var(--neon-glow);
  transform: translateY(-2px);
}

/* ── HERO BUTTONS ── */
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: var(--surface2);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 14px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-1px);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
}
.btn-ghost:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-1px);
}

/* ── SERVICES STRIP ── */
.services-strip {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  background: rgba(184,255,0,0.015);
}
.strip-inner {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: stripScroll 28s linear infinite;
}
.strip-inner:hover { animation-play-state: paused; }
@keyframes stripScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.service-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
  transition: all var(--transition);
}
.service-pill:hover {
  border-color: var(--border2);
  color: var(--neon);
  background: var(--neon-dim);
}
.pill-icon { font-size: 0.9rem; }

/* ── STATS ── */
.stats-section {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
}
.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  flex: 1;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 24px;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
}
.stat-label {
  font-size: 0.83rem;
  color: var(--muted);
  font-weight: 500;
}
.neon { color: var(--neon); }
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── PORTFOLIO ── */
.portfolio-section {
  position: relative;
  z-index: 1;
  padding: 60px 24px 80px;
}
.section-header {
  max-width: 1100px;
  margin: 0 auto 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.section-tag {
  display: inline-block;
  padding: 5px 14px;
  background: var(--neon-dim);
  border: 1px solid var(--border2);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--neon);
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}
.section-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 480px;
}

.portfolio-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 20px;
}

.portfolio-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.portfolio-card:hover {
  border-color: rgba(184,255,0,0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.card-wide { grid-column: 1 / -1; display: flex; }
.card-wide .pcard-img { width: 340px; height: 220px; flex-shrink: 0; }

.pcard-img {
  height: 180px;
  background-size: cover;
  background-position: center;
}
.pcard-img-1 {
  background:
    linear-gradient(135deg, rgba(184,255,0,0.08) 0%, transparent 60%),
    linear-gradient(to bottom, #0e1a0a, #111318);
  position: relative;
}
.pcard-img-1::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; top: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(184,255,0,0.04) 40px, rgba(184,255,0,0.04) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(184,255,0,0.03) 60px, rgba(184,255,0,0.03) 61px);
}
.pcard-img-2 {
  background: linear-gradient(135deg, #0e0f18, #1a1030);
}
.pcard-img-3 {
  background: linear-gradient(135deg, #0f1410, #121a12);
}

.pcard-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.pcard-tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--neon-dim);
  border: 1px solid var(--border2);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--neon);
  width: fit-content;
}
.pcard-info h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}
.pcard-info p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}
.pcard-metric {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: auto;
}

/* ── CONTACT ── */
.contact-section {
  position: relative;
  z-index: 1;
  padding: 40px 24px 100px;
}
.contact-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 60px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.contact-glow {
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(184,255,0,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.contact-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

/* ── FOOTER ── */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 24px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--muted);
  flex: 1;
  text-align: center;
}
.footer-links {
  display: flex;
  gap: 16px;
}
.footer-links a {
  font-size: 0.8rem;
  color: var(--muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--neon); }

/* ── FAB CHAT ── */
.fab-chat {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 500;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--neon);
  color: #080809;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(184,255,0,0.4), 0 8px 30px rgba(0,0,0,0.4);
  transition: all var(--transition);
  position: fixed;
}
.fab-chat:hover {
  transform: scale(1.1);
  box-shadow: var(--neon-glow), 0 8px 30px rgba(0,0,0,0.4);
}
.fab-pulse {
  position: absolute;
  top: -4px; right: -4px;
  width: 14px; height: 14px;
  background: #ff4466;
  border: 2px solid var(--bg);
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
}

/* ── TOAST ── */
.strategy-toast {
  position: fixed;
  bottom: 100px; right: 32px;
  z-index: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: #13141a;
  border: 1px solid var(--border2);
  border-radius: 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--neon);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: all 0.3s ease;
}
.strategy-toast.show {
  opacity: 1;
  transform: translateY(0);
}
.toast-icon { font-size: 12px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .card-wide { flex-direction: column; }
  .card-wide .pcard-img { width: 100%; height: 200px; }
  .stats-inner { gap: 0; }
  .stat-divider { display: none; }
  .stat-item { min-width: 140px; }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: fixed;
    top: 96px; left: 0; right: 0;
    background: rgba(8,8,9,0.97);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 20px;
    gap: 8px;
  }
  .nav.open { display: flex; }
  .nav-link { width: 100%; padding: 14px 20px; }
  .hamburger { display: flex; }
  .btn-book { display: none; }
  .hero-sub .desktop-only { display: none; }
  .card-toprow { flex-direction: column; align-items: flex-start; }
  .preview-thumb { align-self: stretch; }
  .thumb-inner { width: 100%; height: 100px; }
  .card-input-row { flex-direction: column; }
  .btn-strategy { width: 100%; justify-content: center; }
  .contact-card { padding: 40px 24px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-copy { text-align: center; }
}

@media (max-width: 480px) {
  .hero { padding: 60px 16px 40px; }
  .command-card { padding: 18px; }
  .hero-btns { flex-direction: column; width: 100%; }
  .btn-secondary, .btn-ghost { justify-content: center; }
  .fab-chat { bottom: 20px; right: 20px; }
  .strategy-toast { right: 16px; bottom: 90px; }
}
