:root{
  --bg: #0b1220;
  --card: #0f1a33;
  --text: #0b1220;
  --muted: #5b6476;
  --white: #ffffff;

  --primary: #1f6fff;     /* button */
  --accent: #ffd24a;      /* highlight */
  --ink: #0b1220;

  --radius: 18px;
  --shadow: 0 18px 45px rgba(2,8,23,.18);
  --shadow2: 0 10px 25px rgba(2,8,23,.12);
  --border: 1px solid rgba(15,23,42,.10);

  --container: 1120px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: #f6f8fc;
  line-height: 1.55;
}

.container{
  width: min(var(--container), 100% - 32px);
  margin-inline: auto;
}

a{ color: inherit; text-decoration:none; }
img{ max-width:100%; display:block; border-radius: var(--radius); }

/* Topbar */
.topbar{
  background: #0a1530;
  color: rgba(255,255,255,.92);
  font-size: 14px;
}
.topbar__inner{
  display:flex;
  gap: 14px;
  align-items:center;
  justify-content:space-between;
  padding: 10px 0;
}
.topbar__actions{
  display:flex; gap: 16px; align-items:center;
}
.topbar__link{ opacity:.95; }
.topbar__link:hover{ opacity:1; text-decoration:underline; }

/* Header */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246,248,252,.85);
  backdrop-filter: blur(10px);
  border-bottom: var(--border);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 12px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
}
.brand__mark{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: linear-gradient(135deg, var(--primary), #2ad4ff);
  color: white;
  font-weight: 800;
  letter-spacing: .5px;
  box-shadow: var(--shadow2);
}
.brand__text{ display:flex; flex-direction:column; line-height:1.1; }
.brand__name{ font-weight: 800; font-size: 15px; }
.brand__tag{ font-size: 13px; color: var(--muted); font-weight: 600; }

/* Desktop nav */
.nav{
  display:none;
  gap: 18px;
  align-items:center;
  font-weight: 600;
  color: #1b2640;
}
.nav a{ opacity:.85; }
.nav a:hover{ opacity:1; }

/* Hamburger */
.hamburger{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: var(--border);
  background: white;
  display:grid;
  place-content:center;
  gap: 4px;
  cursor:pointer;
}
.hamburger span{
  width: 18px;
  height: 2px;
  background: #1b2640;
  border-radius: 2px;
  display:block;
}

/* Mobile nav */
.mobile-nav{
  border-top: var(--border);
  background: white;
}
.mobile-nav__inner{
  display:grid;
  gap: 10px;
  padding: 12px 0 16px;
  font-weight: 600;
  color: #1b2640;
}
.mobile-nav__inner a{
  padding: 10px 12px;
  border-radius: 12px;
}
.mobile-nav__inner a:hover{ background: #f1f4fb; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 800;
  border: none;
  cursor:pointer;
  background: var(--accent);
  color: #111827;
  box-shadow: var(--shadow2);
}
.btn:hover{ transform: translateY(-1px); }
.btn--ghost{
  background: rgba(255,255,255,.12);
  color: white;
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: none;
}
.btn--small{
  padding: 10px 14px;
  border-radius: 12px;
}
.btn--block{ width: 100%; }
.tiny{ font-size: 12px; }
.muted{ color: var(--muted); }

/* Hero */
.hero{
  position: relative;
  overflow:hidden;
  background: #071029;
  color: white;
  padding: 34px 0 26px;
}
.hero__bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(700px 420px at 15% 25%, rgba(31,111,255,.55), transparent 60%),
    radial-gradient(680px 420px at 80% 40%, rgba(42,212,255,.35), transparent 55%),
    linear-gradient(180deg, rgba(7,16,41,1), rgba(7,16,41,.86));
  opacity: 1;
}
.hero__inner{
  position: relative;
  display:grid;
  gap: 18px;
}
.hero__content{
  max-width: 680px;
}
.eyebrow{
  display:inline-block;
  font-weight: 800;
  letter-spacing: .12em;
  font-size: 12px;
  opacity: .9;
  margin: 0 0 10px;
}
.hero h1{
  margin: 0 0 10px;
  font-size: clamp(34px, 6vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.lead{
  margin: 0 0 16px;
  color: rgba(255,255,255,.86);
  font-size: 16px;
  max-width: 58ch;
}
.hero__cta{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.trust{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust__item{
  display:flex;
  gap: 8px;
  align-items:center;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  font-weight: 600;
  color: rgba(255,255,255,.92);
}

.hero__card .card{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding: 16px;
}

/* Sections */
.section{
  padding: 54px 0;
}
.section--alt{
  background: #ffffff;
}
.section__head{
  margin-bottom: 18px;
}
.section__head h2{
  margin: 0 0 6px;
  font-size: 28px;
  letter-spacing: -0.02em;
}
.section__head p{ margin:0; }

/* Grid */
.grid{
  display:grid;
  gap: 14px;
}
.grid--3{
  grid-template-columns: 1fr;
}

/* Cards */
.card, .service, .price, .review, .map{
  background: white;
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
}
.card{ padding: 18px; }

/* Services */
.service{
  padding: 18px;
}
.service__icon{
  width: 44px; height: 44px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: #f1f6ff;
  border: 1px solid rgba(31,111,255,.15);
  margin-bottom: 10px;
  font-size: 20px;
}

/* Split */
.split{
  display:grid;
  gap: 16px;
  align-items:start;
}

.media img{
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.media__note{
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: #f6f8fc;
  border: var(--border);
}

/* Ticks list */
.ticks{
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}
.ticks li{
  padding-left: 28px;
  margin: 10px 0;
  position: relative;
}
.ticks li::before{
  content: "✓";
  position:absolute;
  left: 0;
  top: 0;
  color: #1f6fff;
  font-weight: 900;
}

/* Pricing */
.price{
  padding: 18px;
  position: relative;
}
.price__num{
  font-size: 40px;
  font-weight: 900;
  margin: 6px 0 8px;
  letter-spacing: -0.03em;
}
.price ul{
  margin: 12px 0 0;
  padding-left: 18px;
}
.price--featured{
  border: 2px solid rgba(31,111,255,.35);
  box-shadow: var(--shadow);
}
.pill{
  position:absolute;
  top: 14px;
  right: 14px;
  font-size: 12px;
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eff6ff;
  border: 1px solid rgba(31,111,255,.25);
  color: #1f6fff;
}

/* Reviews */
.review{
  padding: 18px;
}
.review blockquote{
  margin: 0 0 10px;
  font-weight: 600;
  color: #111827;
}
.review figcaption{
  color: var(--muted);
  font-size: 14px;
}

/* Badges row */
.badges{
  background: #0a1530;
  color: rgba(255,255,255,.9);
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.badges__inner{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 16px 0;
}
.badge{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  text-align:center;
  font-weight: 700;
}

/* Chips */
.chips{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  margin-top: 12px;
}
.chip{
  padding: 8px 12px;
  border-radius: 999px;
  background: #f1f4fb;
  border: var(--border);
  font-weight: 600;
  font-size: 14px;
}

/* Map placeholder */
.map{
  padding: 18px;
}
.map__placeholder{
  margin-top: 12px;
  height: 220px;           /* adjust if you want taller */
  border-radius: 14px;
  overflow: hidden;        /* ✅ this is the main fix */
  border: 1px solid rgba(15,23,42,.10);
  background: #f6f8fc;
}

.map__placeholder img{
  width: 100%;
  height: 100%;
  display: block;          /* ✅ removes little gaps */
  object-fit: cover;       /* ✅ fills nicely without stretching */
  object-position: center;
}

/* FAQ */
.faq details{
  background: white;
  border: var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 10px;
  box-shadow: var(--shadow2);
}
.faq summary{
  cursor: pointer;
  font-weight: 700;
}
.faq summary::marker{
  color: var(--primary);
}

/* Contact cards */
.contact-cards{
  display:grid;
  gap: 12px;
  margin-top: 16px;
}
.contact-card{
  display:flex;
  gap: 14px;
  align-items:center;
  padding: 14px;
  background: white;
  border-radius: var(--radius);
  border: var(--border);
  box-shadow: var(--shadow2);
}
.contact-card__icon{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: #f1f6ff;
  border: 1px solid rgba(31,111,255,.2);
  font-size: 20px;
}

/* Forms */
.form{
  display:grid;
  gap: 12px;
}
.form label{
  display:grid;
  gap: 6px;
  font-weight: 600;
}
.form input,
.form textarea,
.form select{
  padding: 12px 14px;
  border-radius: 12px;
  border: var(--border);
  font-family: inherit;
  font-size: 15px;
}
.form input:focus,
.form textarea:focus,
.form select:focus{
  outline: none;
  border-color: rgba(31,111,255,.6);
}

/* Footer */
.footer{
  background: #0a1530;
  color: rgba(255,255,255,.9);
  padding: 36px 0;
  margin-top: 40px;
}
.footer__inner{
  display:grid;
  gap: 20px;
}
.footer__brand{
  display:flex;
  gap: 14px;
  align-items:center;
}
.footer__links{
  display:flex;
  gap: 16px;
  flex-wrap:wrap;
  font-weight: 600;
}
.footer__links a{ opacity:.85; }
.footer__links a:hover{ opacity:1; }
.footer__legal{
  font-size: 13px;
  opacity:.8;
}

/* Floating CTA */
.float-cta{
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: var(--accent);
  color: #111827;
  font-weight: 900;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 100;
}

/* =========================
   RESPONSIVE
========================= */

@media (min-width: 768px){
  .nav{ display:flex; }
  .hamburger{ display:none; }

  .hero__inner{
    grid-template-columns: 1.1fr .9fr;
    align-items:center;
    gap: 32px;
  }

  .grid--3{
    grid-template-columns: repeat(3, 1fr);
  }

  .split{
    grid-template-columns: 1.1fr .9fr;
    gap: 32px;
  }

  .badges__inner{
    grid-template-columns: repeat(4, 1fr);
  }

  .footer__inner{
    grid-template-columns: 2fr 1fr 1fr;
    align-items:start;
  }

  .contact-cards{
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px){
  .hero{
    padding: 64px 0;
  }
}

/* Brand logo */
.brand{
  display: flex;
  align-items: center;
}
.brand {
  padding: 6px 10px; /* instead of anything bigger */
}

.brand__logo{
  height: 74px;          /* desktop size */
  width: auto;
  display: block;
}

/* Slightly smaller on mobile */
@media (max-width: 768px){
  .brand__logo{
    height: 42px;
  }
}
