/* ===== VARIABLES ===== */
:root {
  --bg: #0a0c10;
  --bg2: #0f1117;
  --bg3: #141720;
  --surface: #1a1e2b;
  --surface2: #222636;
  --accent: #00d4ff;
  --accent2: #ff6b35;
  --accent-glow: rgba(0,212,255,0.18);
  --text: #e8ecf4;
  --text-muted: #8b92a8;
  --border: rgba(255,255,255,0.07);
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 8px 40px rgba(0,0,0,0.4);
  --shadow-accent: 0 0 40px rgba(0,212,255,0.15);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.dark-section { background: var(--bg2); }

.tag {
  display: inline-block;
  background: rgba(0,212,255,0.1);
  color: var(--accent);
  border: 1px solid rgba(0,212,255,0.25);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-head { text-align: center; margin-bottom: 60px; }
.section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.section-head p { color: var(--text-muted); max-width: 520px; margin: 0 auto; }
.section-head.light h2 { color: var(--text); }
.section-head.light p { color: rgba(232,236,244,0.6); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; border-radius: 8px;
  font-family: var(--font-body); font-size: 15px; font-weight: 500;
  cursor: pointer; transition: all 0.25s ease; border: none;
}
.btn-primary {
  background: var(--accent); color: #000; font-weight: 600;
}
.btn-primary:hover { background: #00aacc; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,212,255,0.3); }
.btn-ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-outline {
  background: transparent; color: var(--accent);
  border: 1px solid rgba(0,212,255,0.4); width: 100%;
  justify-content: center; margin-top: 12px;
}
.btn-outline:hover { background: rgba(0,212,255,0.08); }
.btn-nav {
  background: var(--accent); color: #000; font-weight: 600;
  padding: 9px 20px; font-size: 14px;
}
.btn-nav:hover { background: #00aacc; }
.full-btn { width: 100%; justify-content: center; padding: 15px; font-size: 16px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  background: rgba(10,12,16,0.7);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}
.navbar.scrolled { padding: 10px 0; background: rgba(10,12,16,0.95); }
.nav-inner {max-width: 1200px; margin: 0 auto; padding: 0 24px;display: flex; justify-content: space-between; gap: 32px;
}
.logo {
  font-family: var(--font-head); font-size: 22px; font-weight: 700;
  letter-spacing: 1px; display: flex; align-items: center; gap: 10px;
  text-transform: uppercase;
}
.logo strong { color: var(--accent); }
.logo-icon {
  width: 36px; height: 36px; background: var(--accent); color: #000;
  border-radius: 8px; display: grid; place-items: center; font-size: 15px;
}
.nav-links { display: flex; gap: 32px; margin-left: auto; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  transition: color 0.2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--accent); transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px; background: var(--text);
  transition: all 0.3s ease;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 24px 80px;
  max-width: 1200px; margin: 0 auto;
  position: relative; gap: 60px;
  overflow: hidden;
}
.hero-grid-bg {
  position: fixed; inset: 0; z-index: -1;
  background-image:
    linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}
.hero-scan {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, transparent, var(--accent), transparent);
  z-index: -1; animation: scan 4s linear infinite;
}
@keyframes scan { 0% { top: 0; opacity: 1; } 90% { opacity: 1; } 100% { top: 100vh; opacity: 0; } }

.hero-content { flex: 1; max-width: 580px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.2);
  color: var(--accent); padding: 8px 16px; border-radius: 50px;
  font-size: 13px; font-weight: 500; margin-bottom: 28px;
  animation: fadeDown 0.6s ease both;
}
.hero-content h1 {
  font-family: var(--font-head); font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900; line-height: 1; text-transform: uppercase;
  letter-spacing: -1px; margin-bottom: 20px;
  animation: fadeDown 0.6s 0.1s ease both;
}
.accent { color: var(--accent); }
.hero-content p {
  color: var(--text-muted); font-size: 18px; max-width: 480px;
  margin-bottom: 36px;
  animation: fadeDown 0.6s 0.2s ease both;
}
.hero-btns {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px;
  animation: fadeDown 0.6s 0.3s ease both;
}
.hero-stats {
  display: flex; gap: 32px;
  animation: fadeDown 0.6s 0.4s ease both;
}
.stat { display: flex; flex-direction: column; }
.stat strong { font-family: var(--font-head); font-size: 2rem; font-weight: 900; color: var(--accent); line-height: 1; }
.stat span { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

@keyframes fadeDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }

.hero-visual { flex: 1; position: relative; min-height: 420px; display: flex; align-items: center; justify-content: center; }
.monitor {
  width: 280px; height: 220px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px;
  box-shadow: var(--shadow), var(--shadow-accent);
  position: relative; z-index: 1;
  animation: float 4s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.monitor-screen { background: #060810; border-radius: 8px; height: 100%; padding: 10px; display: flex; flex-direction: column; gap: 8px; }
.monitor-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; flex: 1; }
.mg-cell {
  background: #0d1018; border-radius: 6px; display: grid; place-items: center;
  color: var(--text-muted); font-size: 18px; border: 1px solid rgba(255,255,255,0.05);
}
.mg-cell.active { border-color: rgba(0,212,255,0.3); background: rgba(0,212,255,0.05); }
.pulse {
  width: 14px; height: 14px; border-radius: 50%; background: var(--accent);
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(0,212,255,0.6); } 50% { box-shadow: 0 0 0 8px rgba(0,212,255,0); } }
.monitor-bar {
  font-size: 9px; color: var(--accent); font-family: monospace;
  background: rgba(0,212,255,0.05); padding: 4px 8px; border-radius: 4px;
}

.cam-card {
  position: absolute; background: var(--surface2);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 10px 14px; display: flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 500; white-space: nowrap;
  box-shadow: var(--shadow);
}
.cam-card i { color: var(--accent); font-size: 16px; }
.cam-1 { top: 20px; left: -40px; animation: float 5s ease-in-out infinite; }
.cam-2 { bottom: 60px; left: -20px; animation: float 5.5s 1s ease-in-out infinite; }
.cam-3 { top: 30px; right: -20px; animation: float 4.5s 0.5s ease-in-out infinite; }
.live-dot, .rec-dot {
  width: 8px; height: 8px; border-radius: 50%; margin-left: auto;
  animation: blink 1s ease-in-out infinite;
}
.live-dot { background: #00ff88; }
.rec-dot { background: #ff4444; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.2; } }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.service-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 28px;
  transition: all 0.3s ease; position: relative; overflow: hidden;
  opacity: 0; transform: translateY(30px);
}
.service-card.visible { opacity: 1; transform: translateY(0); transition: opacity 0.5s ease, transform 0.5s ease; }
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0); transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { border-color: rgba(0,212,255,0.2); box-shadow: var(--shadow-accent); transform: translateY(-4px); }
.service-card.featured { border-color: rgba(0,212,255,0.3); background: linear-gradient(145deg, var(--surface), rgba(0,212,255,0.04)); }
.featured-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--accent); color: #000; font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 50px; text-transform: uppercase;
}
.service-icon {
  width: 52px; height: 52px; border-radius: 12px;
  display: grid; place-items: center; font-size: 22px; margin-bottom: 20px;
}
.home-icon { background: rgba(0,212,255,0.1); color: var(--accent); }
.biz-icon { background: rgba(255,107,53,0.1); color: var(--accent2); }
.car-icon { background: rgba(168,85,247,0.1); color: #a855f7; }
.fix-icon { background: rgba(34,197,94,0.1); color: #22c55e; }

.service-card h3 {
  font-family: var(--font-head); font-size: 1.4rem; font-weight: 700;
  text-transform: uppercase; margin-bottom: 10px;
}
.service-card p { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; }
.service-list { margin-bottom: 24px; }
.service-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-muted); padding: 4px 0;
}
.service-list li i { color: var(--accent); font-size: 11px; }
.service-link { color: var(--accent); font-size: 14px; font-weight: 500; display: flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.service-link:hover { gap: 10px; }

/* ===== PORTFOLIO ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.port-card { border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; }
.port-card.big { grid-column: span 3; grid-row: span 2; }
.port-card:not(.big) { grid-column: span 3; }
@media(max-width: 768px) {
  .port-card.big, .port-card:not(.big) { grid-column: span 6; }
}
.port-img {
  height: 220px; background-size: cover; background-position: center;
  transition: transform 0.4s ease;
}
.port-card.big .port-img { height: 100%; min-height: 380px; }
.port-card:hover .port-img { transform: scale(1.04); }

/* Portfolio image gradients (placeholder styled backgrounds) */
.port-img-1 {
  background: linear-gradient(135deg, #0d1520 0%, #0a2a3a 40%, #0e3550 100%);
  position: relative;
}
.port-img-1::after {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Ccircle cx='200' cy='180' r='60' fill='none' stroke='%2300d4ff' stroke-width='1' opacity='0.3'/%3E%3Ccircle cx='200' cy='180' r='90' fill='none' stroke='%2300d4ff' stroke-width='0.5' opacity='0.15'/%3E%3Crect x='160' y='140' width='80' height='80' rx='8' fill='%2300d4ff' opacity='0.08'/%3E%3Cpath d='M185 170 L215 180 L185 190Z' fill='%2300d4ff' opacity='0.4'/%3E%3Cline x1='0' y1='50' x2='400' y2='50' stroke='%2300d4ff' stroke-width='0.5' opacity='0.1'/%3E%3Cline x1='0' y1='150' x2='400' y2='150' stroke='%2300d4ff' stroke-width='0.5' opacity='0.1'/%3E%3Cline x1='0' y1='250' x2='400' y2='250' stroke='%2300d4ff' stroke-width='0.5' opacity='0.1'/%3E%3Cline x1='0' y1='350' x2='400' y2='350' stroke='%2300d4ff' stroke-width='0.5' opacity='0.1'/%3E%3C/svg%3E") center/cover;
}
.port-img-2 { background: linear-gradient(135deg, #0f1a10, #0a2a15, #0d3020); }
.port-img-2::after {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 300'%3E%3Crect x='20' y='20' width='360' height='260' rx='12' fill='none' stroke='%2322c55e' stroke-width='1' opacity='0.2'/%3E%3Ccircle cx='60' cy='60' r='20' fill='%2322c55e' opacity='0.15'/%3E%3Ccircle cx='340' cy='60' r='20' fill='%2322c55e' opacity='0.15'/%3E%3Crect x='150' y='100' width='100' height='70' rx='6' fill='%2322c55e' opacity='0.1'/%3E%3Ccircle cx='200' cy='135' r='22' fill='none' stroke='%2322c55e' stroke-width='2' opacity='0.3'/%3E%3C/svg%3E") center/cover;
}
.port-img-3 { background: linear-gradient(135deg, #1a100a, #2a1a08, #1a1008); }
.port-img-3::after {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 300'%3E%3Cellipse cx='200' cy='180' rx='150' ry='60' fill='none' stroke='%23ff6b35' stroke-width='1' opacity='0.2'/%3E%3Crect x='50' y='120' width='300' height='80' rx='40' fill='none' stroke='%23ff6b35' stroke-width='0.5' opacity='0.15'/%3E%3Ccircle cx='320' cy='160' r='30' fill='%23ff6b35' opacity='0.08'/%3E%3Cpath d='M140 155 L260 155 L270 160 L260 165 L140 165 L130 160 Z' fill='%23ff6b35' opacity='0.12'/%3E%3C/svg%3E") center/cover;
}
.port-img-4 { background: linear-gradient(135deg, #15100f, #200c08, #140a10); }
.port-img-4::after {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 300'%3E%3Crect x='30' y='30' width='160' height='120' rx='8' fill='%23a855f7' opacity='0.08'/%3E%3Crect x='210' y='30' width='160' height='120' rx='8' fill='%23a855f7' opacity='0.08'/%3E%3Crect x='30' y='165' width='160' height='105' rx='8' fill='%23a855f7' opacity='0.08'/%3E%3Crect x='210' y='165' width='160' height='105' rx='8' fill='%23a855f7' opacity='0.08'/%3E%3Cline x1='200' y1='0' x2='200' y2='300' stroke='%23a855f7' stroke-width='1' opacity='0.15'/%3E%3Cline x1='0' y1='150' x2='400' y2='150' stroke='%23a855f7' stroke-width='1' opacity='0.15'/%3E%3C/svg%3E") center/cover;
}
.port-img-5 { background: linear-gradient(135deg, #080e1a, #0c1530, #0a1225); }
.port-img-5::after {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 300'%3E%3Crect x='0' y='0' width='400' height='300' fill='none'/%3E%3Cline x1='0' y1='0' x2='400' y2='300' stroke='%2300d4ff' stroke-width='0.5' opacity='0.08'/%3E%3Cline x1='400' y1='0' x2='0' y2='300' stroke='%2300d4ff' stroke-width='0.5' opacity='0.08'/%3E%3Ccircle cx='200' cy='150' r='70' fill='none' stroke='%2300d4ff' stroke-width='1' opacity='0.2' stroke-dasharray='4,4'/%3E%3Ccircle cx='200' cy='150' r='40' fill='%2300d4ff' opacity='0.06'/%3E%3C/svg%3E") center/cover;
}

.port-info {
  padding: 16px 20px 20px; background: var(--surface);
  border: 1px solid var(--border); border-top: none;
}
.port-tag {
  font-size: 11px; text-transform: uppercase; letter-spacing: 1px;
  color: var(--accent); font-weight: 600; margin-bottom: 4px; display: block;
}
.port-info h4 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; text-transform: uppercase; margin-bottom: 4px; }
.port-info p { font-size: 13px; color: var(--text-muted); }

/* ===== WHY US ===== */
.why-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-text .tag { margin-bottom: 12px; }
.why-text h2 {
  font-family: var(--font-head); font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800; text-transform: uppercase; line-height: 1.1; margin-bottom: 16px;
}
.why-text > p { color: var(--text-muted); margin-bottom: 36px; }
.why-points { display: flex; flex-direction: column; gap: 24px; }
.why-point { display: flex; gap: 16px; align-items: flex-start; }
.why-icon {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  background: rgba(0,212,255,0.1); color: var(--accent);
  display: grid; place-items: center; font-size: 18px;
}
.why-point h4 { font-weight: 600; margin-bottom: 4px; }
.why-point p { font-size: 14px; color: var(--text-muted); }

.review-stack { display: flex; flex-direction: column; gap: 16px; }
.review-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  transition: all 0.3s ease;
}
.review-card:hover { border-color: rgba(0,212,255,0.2); box-shadow: var(--shadow-accent); }
.stars { color: #fbbf24; font-size: 15px; margin-bottom: 10px; letter-spacing: 2px; }
.review-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 10px; }
.av {
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center; font-size: 12px; font-weight: 700; color: #000;
}
.av1 { background: var(--accent); }
.av2 { background: #22c55e; }
.av3 { background: var(--accent2); }
.reviewer span { font-size: 13px; font-weight: 500; }

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px; margin-bottom: 32px;
}
.price-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 28px; position: relative;
  transition: all 0.3s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.price-card.best {
  border-color: rgba(0,212,255,0.4);
  background: linear-gradient(145deg, var(--surface), rgba(0,212,255,0.05));
  box-shadow: var(--shadow-accent);
}
.best-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #000; font-size: 11px; font-weight: 700;
  padding: 4px 14px; border-radius: 50px; white-space: nowrap; text-transform: uppercase;
}
.price-type { font-size: 14px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.price-type i { color: var(--accent2); margin-right: 6px; }
.price-amount {
  font-family: var(--font-head); font-size: 4rem; font-weight: 900; line-height: 1;
  color: var(--text); margin-bottom: 4px;
}
.price-amount span { font-size: 2rem; vertical-align: top; margin-top: 12px; display: inline-block; color: var(--accent); }
.price-amount small { font-size: 1.5rem; color: var(--text-muted); }
.price-sub { font-size: 12px; color: var(--text-muted); margin-bottom: 24px; }
.price-features { margin-bottom: 4px; }
.price-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; padding: 7px 0; border-bottom: 1px solid var(--border); }
.price-features li:last-child { border-bottom: none; }
.price-features li i.fa-circle-check { color: var(--accent); }
.price-features li i.fa-circle-xmark { color: var(--text-muted); }
.price-features li.faded { color: var(--text-muted); opacity: 0.5; }
.pricing-note {
  text-align: center; color: var(--text-muted); font-size: 14px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.pricing-note i { color: var(--accent); }

/* ===== CONTACT ===== */
.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info .tag { margin-bottom: 12px; }
.contact-info h2 {
  font-family: var(--font-head); font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800; text-transform: uppercase; line-height: 1.1; margin-bottom: 16px;
}
.contact-info > p { color: var(--text-muted); margin-bottom: 36px; }
.contact-methods { display: flex; flex-direction: column; gap: 20px; }
.contact-method { display: flex; align-items: flex-start; gap: 16px; }
.contact-method i {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  background: rgba(0,212,255,0.1); color: var(--accent);
  display: grid; place-items: center; font-size: 16px;
}
.contact-method strong { display: block; font-weight: 600; margin-bottom: 2px; }
.contact-method span { font-size: 14px; color: var(--text-muted); }

.contact-form-wrap {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px; position: relative;
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 500; color: var(--text-muted); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 8px; padding: 12px 14px; color: var(--text);
  font-family: var(--font-body); font-size: 14px; outline: none;
  transition: border-color 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,212,255,0.08); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg3); }
.form-group textarea { resize: vertical; }

.form-success {
  display: none; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; min-height: 300px; text-align: center;
}
.form-success.show { display: flex; }
.form-success i { font-size: 3rem; color: #22c55e; }
.form-success h3 { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; text-transform: uppercase; }
.form-success p { color: var(--text-muted); }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg2); border-top: 1px solid var(--border); padding: 64px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.socials { display: flex; gap: 12px; }
.socials a {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--surface); border: 1px solid var(--border);
  display: grid; place-items: center; font-size: 14px; color: var(--text-muted);
  transition: all 0.2s;
}
.socials a:hover { color: var(--accent); border-color: rgba(0,212,255,0.3); }
.footer-col h5 { font-family: var(--font-head); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li { font-size: 14px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.footer-col li i { color: var(--accent); font-size: 12px; width: 14px; }
.footer-col a { color: var(--text-muted); transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--text-muted);
}
.powered a { color: var(--accent); font-weight: 500; }
.powered a:hover { text-decoration: underline; }

/* ===== MOBILE ===== */
@media (max-width: 1024px) {
  .hero { flex-direction: column; padding-top: 100px; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-btns, .hero-stats { justify-content: center; }
  .hero-visual { width: 100%; }
  .why-split, .contact-split { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links { display: none; flex-direction: column; gap: 0; position: fixed; top: 65px; left: 0; right: 0; background: var(--bg2); border-bottom: 1px solid var(--border); padding: 16px 0; }
  .nav-links.open { display: flex; }
  .nav-links li a { display: block; padding: 12px 24px; font-size: 16px; }
  .btn-nav { display: none; }
  .hamburger { display: flex; }
  .hero-visual { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cam-1, .cam-2, .cam-3 { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
