/* ========== Mobile-first, Google Ads friendly ========== */
:root {
  --bg: #0f172a;
  --card: #111827;
  --text: #f8fafc;
  --muted: #94a3b8;
  --brand: #2563eb;
  --brand-light: #60a5fa;
  --radius: 14px;
  --shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-text-size-adjust: 100%;
}

/* ---------- Utilities ---------- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 16px; }
.muted { color: var(--muted); }
.btn,
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; padding: 14px 18px; font-weight: 600;
  transition: .18s ease; text-align: center;
}
.btn { background: var(--brand); color: #fff; box-shadow: var(--shadow); border: 0; }
.btn:hover { background: var(--brand-light); }
.btn-outline { border: 1px solid var(--brand-light); color: var(--brand-light); background: transparent; }
.btn-outline:hover { background: rgba(96,165,250,.12); }
/* Mobile: buttons full-width by default */
.btn, .btn-outline { width: 100%; }

/* ---------- Header (sticky) ---------- */
header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(15,23,42,.9);
  border-bottom: 1px solid rgba(148,163,184,.18);
  backdrop-filter: blur(8px);
}
.nav {
  display: grid; grid-template-columns: 1fr auto; gap: 12px;
  align-items: center; min-height: 64px; padding: 10px 0;
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.logo {
  display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 10px;
  background: radial-gradient(circle at 0 0, var(--brand-light), var(--brand));
  box-shadow: inset 0 0 12px rgba(255,255,255,.15);
}
.brand h1 { font-size: 18px; letter-spacing: .2px; }
.nav-actions { display: grid; gap: 8px; }
.phone { color: #fff; font-weight: 600; text-decoration: none; }

/* On mobile show phone as button */
.phone { display: inline-flex; }

/* ---------- Hero ---------- */
.hero { padding: 28px 0 16px; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.card {
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(148,163,184,.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.copy { padding: 18px; }
.eyebrow {
  display: inline-flex; gap: 8px; align-items: center;
  padding: 6px 10px; border-radius: 999px;
  background: rgba(37,99,235,.12);
  border: 1px solid rgba(96,165,250,.35);
  font-size: 12px; color: #dbeafe; font-weight: 600;
}
.title { font-size: 26px; line-height: 1.25; margin: 12px 0 8px; }
.subtitle { color: var(--muted); font-size: 15px; }

.hero-cta { display: grid; gap: 10px; margin-top: 14px; }
/* image card */
.media { position: relative; overflow: hidden; }
.media img {
  width: 100%; height: 220px; object-fit: cover;
  display: block; border-radius: var(--radius);
}
.badge {
  position: absolute; left: 12px; bottom: 12px;
  background: rgba(2,6,23,.75); border: 1px solid rgba(148,163,184,.28);
  padding: 8px 10px; border-radius: 10px; font-size: 12px;
}

/* ---------- Listings ---------- */
.section { padding: 28px 0; }
h3 { font-size: 20px; margin-bottom: 10px; }
.grid { display: grid; grid-template-columns: 1fr; gap: 14px; }

.listing img {
  width: 100%; height: 180px; object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
}
.listing .body { padding: 12px; }
.pill {
  display: inline-flex; padding: 6px 10px; font-size: 12px; font-weight: 700;
  border-radius: 999px; background: rgba(37,99,235,.15); color: var(--brand-light);
  margin-bottom: 6px;
}
.price { font-weight: 800; color: var(--brand-light); font-size: 18px; }

/* ---------- Why / Features ---------- */
.why { display: grid; grid-template-columns: 1fr; gap: 12px; }
.why .box { padding: 14px; }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: 1fr; gap: 14px; }
form { display: grid; gap: 10px; }
form input, form textarea {
  width: 100%; padding: 14px; border-radius: 12px;
  border: 1px solid rgba(148,163,184,.25);
  background: #0b1023; color: #fff;
}
form textarea { min-height: 120px; resize: vertical; }
#formStatus { color: var(--muted); font-size: 13px; margin-top: 6px; }
.company ul { list-style: none; padding-left: 0; margin-top: 10px; }
.company li { color: var(--muted); margin: 4px 0; }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid rgba(148,163,184,.18);
  text-align: center; padding: 18px; color: var(--muted);
}

/* ---------- Larger screens ---------- */
/* >= 480px */
@media (min-width: 480px) {
  .title { font-size: 30px; }
  .media img { height: 260px; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .btn, .btn-outline { width: auto; } /* stop full-width sooner */
}

/* >= 720px (tablets) */
@media (min-width: 720px) {
  .container { padding: 0 20px; }
  .hero { padding: 42px 0 24px; }
  .title { font-size: 36px; }
  .subtitle { font-size: 16px; }
  .hero-grid { grid-template-columns: 1.15fr .85fr; gap: 20px; }
  .media img { height: 320px; }
  .grid { gap: 16px; }
  .contact { grid-template-columns: 1fr 1fr; gap: 16px; }
  .nav { grid-template-columns: auto auto; }
  .nav-actions { display: flex; gap: 10px; }
}

/* >= 960px (desktop) */
@media (min-width: 960px) {
  .title { font-size: 42px; }
  .media img { height: 380px; }
  .grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .why { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}
