:root {
  --bg: #050510;
  --bg-2: #0a0a18;
  --card: rgba(14, 14, 32, 0.72);
  --card-solid: #101022;
  --line: rgba(168, 85, 247, 0.28);
  --purple: #c026d3;
  --purple-2: #a855f7;
  --teal: #22d3ee;
  --cyan: #06b6d4;
  --magenta: #e879f9;
  --text: #f4f7fb;
  --muted: #9aa6b8;
  --ok: #34d399;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius: 22px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Outfit", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }

.bg-glow {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(900px 500px at 10% -10%, rgba(168, 85, 247, 0.22), transparent 55%),
    radial-gradient(700px 500px at 95% 8%, rgba(6, 182, 212, 0.16), transparent 50%),
    radial-gradient(800px 600px at 50% 110%, rgba(192, 38, 211, 0.12), transparent 55%);
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* NAV */
header.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(5, 5, 16, 0.72);
  border-bottom: 1px solid rgba(168, 85, 247, 0.15);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; gap: 16px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
}
.brand img {
  width: 52px; height: 52px; object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 0 24px rgba(34, 211, 238, 0.35);
}
.brand-name {
  font-family: "Cinzel", serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 15px;
  line-height: 1.15;
}
.brand-name span { display: block; color: var(--teal); font-size: 11px; letter-spacing: 0.22em; font-weight: 500; }

.nav-links { display: flex; gap: 22px; align-items: center; }
.nav-links a { color: var(--muted); font-size: 14px; font-weight: 500; }
.nav-links a:hover { color: var(--text); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; cursor: pointer;
  padding: 12px 20px; border-radius: 999px;
  font-weight: 600; font-size: 14px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, #22d3ee, #a855f7 55%, #c026d3);
  color: #071018;
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(34, 211, 238, 0.35);
}
.menu-toggle { display: none; background: none; border: 0; color: white; font-size: 26px; cursor: pointer; }

/* HERO */
.hero {
  padding: 64px 0 40px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.kicker {
  color: var(--teal);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 14px;
}
h1 {
  font-family: "Cinzel", serif;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.05;
  letter-spacing: 0.02em;
}
h1 em {
  font-family: "Great Vibes", cursive;
  font-style: normal;
  font-weight: 400;
  color: var(--magenta);
  font-size: 0.72em;
  display: block;
  margin-top: 8px;
  letter-spacing: 0;
}
.hero p.lead {
  margin: 18px 0 28px;
  color: var(--muted);
  font-size: 18px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.trust-row {
  display: flex; gap: 18px; flex-wrap: wrap; margin-top: 28px;
}
.trust-pill {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--muted);
}
.trust-pill b { color: var(--text); }
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 10px var(--teal);
}

.hero-visual {
  position: relative;
}
.hero-visual img.main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(34, 211, 238, 0.25);
  box-shadow: var(--shadow), 0 0 80px rgba(168, 85, 247, 0.18);
}
.float-card {
  position: absolute;
  right: -12px; bottom: 28px;
  width: 210px;
  background: rgba(10, 10, 24, 0.82);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(168, 85, 247, 0.35);
  border-radius: 18px;
  padding: 14px;
}
.float-card img {
  height: 110px; width: 100%; object-fit: cover; border-radius: 12px; margin-bottom: 10px;
}
.float-card small { color: var(--muted); font-size: 12px; }
.float-card strong { display: block; font-size: 14px; }

/* SECTIONS */
section { padding: 72px 0; position: relative; z-index: 1; scroll-margin-top: 86px; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 42px; }
.section-head h2 {
  font-family: "Cinzel", serif;
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 10px;
}
.section-head p { color: var(--muted); }

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

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}
.card h3 { font-size: 20px; margin: 10px 0 8px; }
.card p { color: var(--muted); font-size: 15px; }
.icon {
  width: 46px; height: 46px; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(34,211,238,.18), rgba(168,85,247,.18));
  font-size: 22px;
}

.svc-card img {
  height: 170px; width: 100%; object-fit: cover; border-radius: 16px; margin-bottom: 14px;
}

/* WHY */
.why {
  display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center;
}
.why img {
  width: 100%; height: 460px; object-fit: cover; border-radius: 28px;
  border: 1px solid rgba(168,85,247,.25);
}
.checks { display: grid; gap: 14px; margin-top: 18px; }
.check {
  display: grid; grid-template-columns: 28px 1fr; gap: 12px; align-items: start;
}
.check .mark {
  width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(52, 211, 153, 0.15);
  color: var(--ok); font-weight: 700;
}

/* AREAS */
.areas-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 22px;
}
.map-box {
  border-radius: 24px;
  min-height: 360px;
  background:
    linear-gradient(180deg, rgba(5,5,16,.15), rgba(5,5,16,.55)),
    url("https://maps.googleapis.com/maps/api/staticmap?center=51.05,-114.07&zoom=9&size=800x500&scale=2&maptype=roadmap&style=feature:all|element:geometry|color:0x0b0b1a&style=feature:all|element:labels.text.fill|color:0x9aa6b8&style=feature:water|color:0x122033&style=feature:road|color:0x1a1a33&key=") center/cover;
  /* fallback if maps key missing */
  background-color: #0d1524;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.map-fallback {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 48% 52%, rgba(34,211,238,.18), transparent 28%),
    radial-gradient(circle at 62% 38%, rgba(168,85,247,.2), transparent 22%),
    linear-gradient(160deg, #071018, #10182a 50%, #0a1220);
  display: grid; place-items: center; text-align: center; padding: 24px;
}
.city-list { display: grid; gap: 10px; }
.city {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 16px; border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}
.city span { color: var(--teal); font-size: 13px; }

/* ABOUT */
.about {
  display: grid; grid-template-columns: 280px 1fr; gap: 32px; align-items: center;
}
.about img {
  width: 100%; height: 340px; object-fit: cover; object-position: top;
  border-radius: 24px; border: 1px solid var(--line);
}
.note {
  margin-top: 12px; font-size: 12px; color: #64748b;
}

/* CONTACT */
.contact-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 24px;
}
.contact-card h3 { font-family: "Cinzel", serif; margin-bottom: 8px; }
.contact-lines { display: grid; gap: 12px; margin: 18px 0 22px; }
.contact-lines a, .contact-lines p {
  display: flex; gap: 10px; align-items: center; color: var(--text);
}
form { display: grid; gap: 12px; }
label { font-size: 13px; color: var(--muted); }
input, select, textarea {
  width: 100%;
  background: #0b0b18;
  border: 1px solid rgba(168,85,247,0.25);
  color: var(--text);
  border-radius: 12px;
  padding: 12px 14px;
  outline: none;
}
textarea { min-height: 110px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(34,211,238,0.15);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-msg {
  display: none;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(52,211,153,0.12);
  color: var(--ok);
  border: 1px solid rgba(52,211,153,0.3);
}

/* FOOTER */
footer {
  border-top: 1px solid rgba(168,85,247,0.15);
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 14px;
}
.foot {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; align-items: center;
}

.demo-banner {
  background: linear-gradient(90deg, rgba(34,211,238,.12), rgba(168,85,247,.12));
  border-bottom: 1px solid var(--line);
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  color: #c4b5fd;
}

@media (max-width: 900px) {
  .hero, .why, .areas-grid, .about, .contact-grid { grid-template-columns: 1fr; }
  .grid-3, .grid-4, .form-row { grid-template-columns: 1fr; }
  .hero-visual img.main { height: 340px; }
  .float-card { position: relative; right: auto; bottom: auto; width: 100%; margin-top: 14px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 78px; left: 0; right: 0;
    background: #080814; padding: 18px; border-bottom: 1px solid var(--line);
  }
  .menu-toggle { display: block; }
  .about img { height: 280px; }
}
