
:root{
  --nav:#0a1a23;
  --ink:#0f1720;
  --muted:#556477;
  --bg:#f6f7f9;
  --card:#ffffff;
  --border:rgba(10,26,35,.10);
  --accent:#b71c1c;
  --accent2:#0d4b80;
  --gold:#c9a227;
  --shadow: 0 22px 75px rgba(0,0,0,.14);
  --shadow2: 0 14px 34px rgba(10,26,35,.16);
  --r:20px;
  --r2:26px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:var(--bg);
  line-height:1.55;
  text-rendering:optimizeLegibility;
}
a{color:inherit}
img{max-width:100%; display:block}
.container{width:min(1140px, 92vw); margin:0 auto}

/* Header */
.header{
  position:sticky; top:0; z-index:60;
  background: rgba(10,26,35,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.header .bar{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0; gap:14px;
}
.brand{
  display:flex; align-items:center; gap:12px;
  min-width: 240px;
}
.brand small{display:block; color:rgba(255,255,255,.74); font-weight:600}
.brand strong{display:block; color:#fff; letter-spacing:.2px}
.menu{display:flex; gap:18px; align-items:center}
.menu a{
  text-decoration:none;
  color:rgba(255,255,255,.90);
  font-weight:700; font-size:14px;
  padding:10px 12px;
  border-radius:12px;
  transition:.2s;
}
.menu a:hover{background:rgba(255,255,255,.10)}
.menu a.active{background:rgba(255,255,255,.14)}
.actions{display:flex; align-items:center; gap:10px}
.pill{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 12px;
  border-radius:999px;
  text-decoration:none;
  font-weight:700;
  color:#fff;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  transition:.2s;
}
.pill:hover{background:rgba(255,255,255,.16)}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid transparent;
  text-decoration:none;
  font-weight:800;
  letter-spacing:.2px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn.primary{
  background: linear-gradient(135deg, var(--accent), #e25a5a);
  color:#fff;
  box-shadow: 0 14px 34px rgba(198,40,40,.26);
}
.btn.primary:hover{transform: translateY(-2px); box-shadow: 0 18px 44px rgba(198,40,40,.28)}
.btn.ghost{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.22);
  color:#fff;
}
.btn.ghost:hover{background: rgba(255,255,255,.16)}
.btn.soft{
  background:#eef4fb;
  border-color:#dbe7f5;
  color:#0f2c44;
}
.btn.soft:hover{transform: translateY(-2px); box-shadow: var(--shadow2)}

/* Mobile */
.burger{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
  cursor:pointer;
}
.burger span{display:block; width:18px; height:2px; background:#fff; border-radius:2px; margin:3px auto}
.drawer{display:none; padding:10px 0 14px; border-top:1px solid rgba(255,255,255,.10)}
.drawer a{
  display:block; text-decoration:none; color:#fff;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  padding:12px 12px;
  border-radius:14px;
  font-weight:750;
  margin-top:10px;
}
.drawer a.strong{background:rgba(229,57,53,.92); border-color:rgba(229,57,53,.92)}

/* Hero */
.hero{
  position:relative;
  color:#fff;
  overflow:hidden;
  background:#07131c;
}
.hero .bg{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(7,19,28,.55), rgba(7,19,28,.86)),
    url("../img/hero-bg.svg") center/cover no-repeat;
  transform: scale(1.03);
}
.hero.small .bg{
  background:
    linear-gradient(180deg, rgba(7,19,28,.50), rgba(7,19,28,.90)),
    url("../img/services-bg.svg") center/cover no-repeat;
}
.hero .grid{
  position:relative;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:22px;
  padding: 74px 0 62px;
}
.badge{
  display:inline-flex; gap:10px; align-items:center;
  padding:10px 14px;
  border-radius:999px;
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  font-weight:750; font-size:13px;
}
h1{margin:14px 0 10px; font-size: clamp(34px, 4.4vw, 56px); line-height:1.04}
.lead{max-width:62ch; color: rgba(255,255,255,.90); font-size:16px}
.cta{display:flex; gap:12px; flex-wrap:wrap; margin-top:16px}
.trust{
  display:flex; gap:14px; flex-wrap:wrap;
  margin-top:16px;
  color: rgba(255,255,255,.78);
  font-weight:650; font-size:13px;
}
.heroCard{
  align-self:center;
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  border-radius: var(--r);
  box-shadow: 0 24px 70px rgba(0,0,0,.35);
  overflow:hidden;
}
.heroCard .top{padding:18px 18px 0}
.heroCard h2{margin:0 0 8px; font-size:18px}
.heroCard p{margin:0 0 16px; color:rgba(255,255,255,.86)}
.heroCard .actions{padding:0 18px 18px; display:grid; gap:10px}
.heroCard .foot{padding:14px 18px; background: rgba(0,0,0,.14); border-top:1px solid rgba(255,255,255,.10); color: rgba(255,255,255,.72)}

/* Sections */
.section{padding: 64px 0}
.section.alt{background:#fff}
.head{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:16px; margin-bottom:18px;
}
h2{margin:0 0 10px}
.muted{color:var(--muted)}
.split{display:grid; grid-template-columns: 1.15fr .85fr; gap:18px; align-items:start}
.panel{
  background:var(--card);
  border-radius: var(--r);
  padding: 22px;
  box-shadow: var(--shadow);
  border:1px solid var(--border);
}
.kpis{display:flex; gap:12px; margin-top:18px; flex-wrap:wrap}
.kpi{
  background:#fff;
  border-radius: 16px;
  padding: 14px 14px;
  min-width: 120px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
}
.kpi b{font-size:22px; color:#0f2c44}
.kpi span{display:block; font-weight:650; color:var(--muted); font-size:12px}
.check{margin:12px 0 0; padding-left: 18px}
.check li{margin:8px 0}
.link{display:inline-block; margin-top:12px; font-weight:800; color:#0f2c44; text-decoration:none}
.link:hover{text-decoration:underline}

/* Service cards */
.cards{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.card{
  background: var(--card);
  border-radius: var(--r);
  padding: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease;
  position:relative;
  overflow:hidden;
}
.card::before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(600px 260px at 20% 0%, rgba(27,110,168,.16), transparent 60%);
  opacity:1;
  pointer-events:none;
}
.card:hover{transform: translateY(-5px); box-shadow: 0 24px 70px rgba(0,0,0,.14)}
.card .ic{font-size:24px}
.card h3{margin:10px 0 6px; font-size:16px}
.card p{margin:0 0 10px; color:var(--muted)}
.card a{font-weight:850; text-decoration:none; color:#0f2c44}
.card a:hover{text-decoration:underline}
.card.urgent{border-color: rgba(229,57,53,.26); background: linear-gradient(180deg, #fff, #fff5f5)}
.card.urgent::before{background: radial-gradient(600px 260px at 20% 0%, rgba(229,57,53,.12), transparent 60%)}

/* Long-tail SEO block */
.seoBlock{
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding: 22px;
}
.seoCols{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.seoCols p{margin:0 0 12px}

/* Map */
.mapGrid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:16px;
  align-items:stretch;
}
.mapCard{
  background:#fff;
  border-radius: var(--r);
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow: var(--shadow);
}
iframe{width:100%; height: 360px; border:0; display:block}

/* Form */
form{margin:0}
label{display:block; font-weight:750; font-size:13px; margin: 12px 0 6px}
input, select, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid #dbe6f2;
  background: #fbfdff;
  font-family: inherit;
  outline:none;
}
input:focus, select:focus, textarea:focus{border-color:#8ab8da; box-shadow: 0 0 0 4px rgba(27,110,168,.12)}

/* FAQ */
.faq{margin-top:10px}
.faqItem{
  border:1px solid var(--border);
  border-radius: 14px;
  background:#fff;
  overflow:hidden;
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
  margin-top:12px;
}
.faqQ{
  width:100%;
  background:#fff;
  border:0;
  padding: 14px 14px;
  font-family:inherit;
  font-weight:850;
  text-align:left;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.faqA{padding:0 14px 14px; color:var(--muted); display:none}
.faqItem.open .faqA{display:block}
.chev{transition:.2s}
.faqItem.open .chev{transform: rotate(180deg)}

/* Footer / Contact */
.contact{
  background:#0f2c44;
  color:#fff;
  padding: 56px 0;
}
.contact .grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}
.tile{
  text-decoration:none;
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  border-radius: var(--r);
  padding: 16px;
  display:flex; flex-direction:column; gap:6px;
  transition:.2s;
}
.tile:hover{transform: translateY(-3px); background: rgba(255,255,255,.14)}
.tile .ic{font-size:22px}
.tile .t{font-weight:850}
.tile .v{color: rgba(255,255,255,.86); font-weight:650}
.legal{display:flex; gap:16px; justify-content:center; flex-wrap:wrap; margin-top:14px; color: rgba(255,255,255,.78); font-weight:600}
footer{
  background:#07131c;
  color: rgba(255,255,255,.78);
  text-align:center;
  padding:16px 0;
  font-weight:600;
}

/* Reveal */
.reveal{opacity:0; transform: translateY(12px); transition: opacity .7s ease, transform .7s ease}
.reveal.show{opacity:1; transform:none}
.delay1{transition-delay:.08s}
.delay2{transition-delay:.14s}
.delay3{transition-delay:.20s}

/* Sticky call (mobile) */
.stickyCall{
  position: fixed;
  right: 16px; bottom: 16px;
  z-index: 80;
  display:none;
  align-items:center; gap:10px;
  background: linear-gradient(135deg, var(--accent), #e25a5a);
  color:#fff;
  border-radius: 999px;
  padding: 12px 14px;
  text-decoration:none;
  font-weight:900;
  box-shadow: 0 18px 55px rgba(229,57,53,.40);
}

/* Responsive */
@media (max-width: 980px){
  .menu, .actions{display:none}
  .burger{display:block}
  .drawer{display:block}
  .hero .grid{grid-template-columns:1fr; padding: 54px 0 46px}
  .split{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr 1fr}
  .mapGrid{grid-template-columns:1fr}
  .contact .grid{grid-template-columns:1fr}
  iframe{height: 320px}
  .stickyCall{display:flex}
}
@media (max-width: 520px){
  .btn{width:100%}
  .cta{width:100%}
  .stickyCall span.txt{display:none}
  .cards{grid-template-columns:1fr}
  .seoCols{grid-template-columns:1fr}
}


/* ---- Premium contact strip ---- */
.contactStrip{
  background: linear-gradient(180deg, #ffffff, #f2f5f8);
  border-bottom: 1px solid var(--border);
}
.stripInner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding: 18px 0;
  flex-wrap:wrap;
}
.stripKicker{
  font-weight:850;
  letter-spacing:.2px;
  color: var(--accent2);
  font-size: 12px;
  text-transform: uppercase;
}
.stripPhone{
  font-weight:900;
  font-size: 28px;
  letter-spacing:.6px;
  margin-top:4px;
  display:flex;
  align-items:center;
  gap:10px;
  user-select:text;
}
.stripPhone span{
  background: linear-gradient(180deg, #111, #222);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.stripMeta{color: var(--muted); font-weight:650; font-size:13px; margin-top:4px}
.stripRight{display:flex; gap:10px; align-items:center; flex-wrap:wrap}
.btn.copyBtn{
  background:#fff;
  border-color: var(--border);
  color: var(--ink);
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
}
.btn.copyBtn:hover{transform: translateY(-2px); box-shadow: var(--shadow2)}

/* Bigger phone in contact tiles */
.bigPhone{font-size: 20px; letter-spacing:.4px}

/* Logo sizing (PNG) */
.brand img{width:54px; height:54px; border-radius: 16px; object-fit: cover; box-shadow: 0 12px 30px rgba(0,0,0,.18)}

/* Sober hero overlay */
.hero .bg{
  background:
    linear-gradient(180deg, rgba(7,19,28,.62), rgba(7,19,28,.90)),
    url("../img/hero-bg.svg") center/cover no-repeat;
}

/* Improve contact CTA clarity */
.tile .v{font-weight:800}

/* ===== Agency Top Contact Bar ===== */
.topbar{
  background: rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.topbar .inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 8px 0;
  flex-wrap:wrap;
}
.topbar .left{
  display:flex; gap:12px; align-items:center; flex-wrap:wrap;
  color: rgba(255,255,255,.88);
  font-weight:700; font-size:13px;
}
.topbar a{
  color: rgba(255,255,255,.92);
  text-decoration:none;
  display:inline-flex; align-items:center; gap:8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  transition:.2s;
}
.topbar a:hover{background: rgba(255,255,255,.12)}
.nowrap{white-space:nowrap}

/* Logo (transparent) */
.brand img{
  width:56px; height:56px;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  padding: 6px;
}

/* Contact section (single strong phone line) */
.contactPrimary{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:16px;
  margin-top: 14px;
}
.contactBox{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r2);
  padding: 18px;
}
.contactPhoneLine{
  font-weight:900;
  font-size: 30px;
  letter-spacing:.6px;
  display:flex;
  align-items:center;
  gap:10px;
  white-space:nowrap; /* keep in one line */
  overflow:hidden;
  text-overflow:ellipsis;
}
.contactPhoneLine a{color:#fff; text-decoration:none}
.contactMini{
  color: rgba(255,255,255,.78);
  font-weight:650;
  margin-top: 8px;
}
.contactActions{display:flex; gap:10px; flex-wrap:wrap; margin-top: 14px}

/* Avoid repetition: hide old tiles and meta */
.tile{display:none !important}
.contactStrip .stripMeta{display:none}

/* Premium buttons */
.btn.primary{
  background: linear-gradient(135deg, var(--accent), #d34a4a);
  box-shadow: 0 18px 52px rgba(183,28,28,.28);
}
.btn.primary:hover{box-shadow: 0 22px 70px rgba(183,28,28,.32)}

@media (max-width: 980px){
  .contactPrimary{grid-template-columns:1fr}
  .contactPhoneLine{font-size: 26px}
}

/* ===== Brand wordmark (typo only) ===== */
.brand{min-width:0 !important}
.brand .wm{display:flex;align-items:center;gap:12px}
.brand .wm img{
  width:210px;height:auto;
  border-radius:0 !important;
  background:transparent !important;
  border:0 !important;
  padding:0 !important;
  box-shadow:none !important;
}
/* Avoid repetition */
.contactStrip{display:none !important}

/* Footer mini contact (coherent without full sections) */
.footerMini{display:flex;gap:14px;justify-content:center;flex-wrap:wrap}
.footerMini .nowrap{white-space:nowrap}
.footerMini a{color:rgba(255,255,255,.78);text-decoration:none}
.footerMini a:hover{text-decoration:underline}

@media (max-width:980px){.brand .wm img{width:170px}}
@media (max-width:520px){.brand .wm img{width:150px}}


/* ===== Hero photo overlay (transparent background) ===== */
.hero .bg{position:absolute; inset:0;}
.hero .bg::after{
  content:"";
  position:absolute;
  inset:0;
  background: url("../img/hero-photo.jpg") 34% center/cover no-repeat;
  opacity: .18;
  filter: grayscale(.15) contrast(1.05);
  mix-blend-mode: screen;
  pointer-events:none;
}
.hero .bg{isolation:isolate;}


/* ===== KPI premium number (agency style) ===== */
.kpiNum{
  display:block;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.6px;
  font-weight: 950;
  background: linear-gradient(180deg, #ffffff, rgba(255,255,255,.72));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 10px 28px rgba(0,0,0,.18);
}
.kpi span{
  text-transform: lowercase;
  letter-spacing: .6px;
  font-weight: 800;
  font-size: 12px;
  color: rgba(15,23,32,.62);
}
.kpi{
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}
.kpi::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(320px 120px at 20% 0%, rgba(13,75,128,.18), transparent 60%);
  pointer-events:none;
}
