:root{
  --bg:#0b1220;
  --text:#0b1220;
  --muted:#5b6677;
  --blue:#0b4b88;
  --red:#c73434;
  --shadow: 0 12px 30px rgba(0,0,0,.18);
  --radius: 14px;
  --max: 1180px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:#111827;
  background:#ffffff;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.wrap{max-width:var(--max); margin:0 auto; padding:0 18px}

/* TOP NAV (white) */
.topbar{
  position:sticky; top:0; z-index:50;
  background:#ffffff;
  border-bottom:1px solid rgba(0,0,0,.08);
}
.topbar-inner{
  height:72px;
  display:flex; align-items:center; justify-content:space-between; gap:14px;
}
.brand img{height:44px;width:auto}
.navlinks{
  display:flex; gap:24px; align-items:center;
  font-weight:600; color:#0f172a;
}
.navlinks a{opacity:.78}
.navlinks a:hover{opacity:1}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius:8px;
  font-weight:800;
  letter-spacing:.2px;
  border:1px solid transparent;
}
.btn-primary{
  background:var(--red);
  color:white;
  box-shadow: 0 10px 20px rgba(199,52,52,.22);
}
.btn-cta{
  background:var(--red);
  color:white;
  padding:14px 18px;
  border-radius:10px;
  box-shadow: 0 12px 26px rgba(199,52,52,.22);
  margin-top:10px;
}
.menuBtn{
  display:none;
  padding:10px 12px;
  border-radius:10px;
  border:1px solid rgba(0,0,0,.10);
  background:#f6f7f9;
  font-weight:800;
}
.mobileLinks{display:none; padding:0 18px 14px}
.mobileLinks a{
  display:block;
  padding:10px 12px;
  border-radius:10px;
  border:1px solid rgba(0,0,0,.10);
  background:#f6f7f9;
  margin-top:10px;
  font-weight:700;
}

/* HERO (dark) */
.hero{
  background:
    radial-gradient(900px 450px at 15% 25%, rgba(33,99,165,.45), transparent 62%),
    radial-gradient(900px 450px at 70% 35%, rgba(199,52,52,.22), transparent 55%),
    linear-gradient(180deg, #0a1930 0%, #0b2240 55%, #0a1930 100%);
  color:white;
  padding:44px 0 36px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:28px;
  align-items:center;
}
.hero-copy h1{
  margin:0 0 14px;
  font-size:48px;
  line-height:1.06;
  letter-spacing:-.6px;
}
.hero-sub{
  margin:0 0 10px;
  font-size:18px;
  line-height:1.45;
  opacity:.92;
}
.checks{
  list-style:none;
  padding:0;
  margin:18px 0 0;
  display:grid; gap:10px;
  font-weight:650;
  opacity:.92;
}
.checks li{
  padding-left:26px;
  position:relative;
}
.checks li:before{
  content:"✓";
  position:absolute; left:0; top:0;
  color:#77d49a;
  font-weight:900;
}
.hero-visual{
  border-radius:16px;
  overflow:hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.14);
}
.hero-visual img{width:100%; height:auto}

/* Section titles */
.section-title{text-align:center; padding:54px 0 18px}
.section-title h2{margin:0 0 10px; font-size:34px; color:#1f2937}
.section-title p{margin:0; color:#6b7280; font-size:15px; line-height:1.6}

/* Feature cards */
.features{background:#f6f7f9}
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
  padding-bottom:56px;
}
.card{
  background:white;
  border:1px solid rgba(0,0,0,.08);
  border-radius:12px;
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
  padding:18px 18px 16px;
  text-align:center;
}
.card-icon{
  width:110px;
  height:auto;
  margin: 4px auto 10px;
}
.card h3{margin:0 0 8px; font-size:16px; color:#111827}
.card p{margin:0; color:#6b7280; font-size:14px; line-height:1.5}

/* Gallery */
.gallery{background:#ffffff}
.thumbs{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
  padding: 0 0 64px;
}
.thumbs img{
  width:100%;
  height:auto;
  border-radius:10px;
  border:1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
}

/* Contact */
.contact{background:#f6f7f9; padding-bottom:64px}
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
}
.panel{
  background:white;
  border:1px solid rgba(0,0,0,.08);
  border-radius:12px;
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
  padding:18px;
}
label span{display:block; font-size:13px; color:#374151; font-weight:700; margin:10px 0 6px}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:10px;
  border:1px solid rgba(0,0,0,.12);
  background:#ffffff;
  font:inherit;
}
.status{margin-top:10px; color:#6b7280; font-size:13px}
.panel h3{margin:0 0 8px}
.bullets{margin:0; padding-left:18px; color:#374151}
.bullets li{margin:8px 0}
.note{margin-top:14px; font-weight:700; color:#1f2937; opacity:.9}

/* Footer */
.footer{
  background:#ffffff;
  border-top:1px solid rgba(0,0,0,.08);
  padding:22px 0;
  color:#6b7280;
  font-size:13px;
}
.footer-inner{display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap}
.footer-links{display:flex; gap:14px}
.footer-links a{color:#6b7280}
.footer-links a:hover{color:#111827}

/* Mobile */
@media (max-width: 980px){
  .navlinks{display:none}
  .menuBtn{display:inline-flex}
  .mobileLinks.open{display:block}
  .hero-grid{grid-template-columns:1fr}
  .hero-copy h1{font-size:40px}
  .cards{grid-template-columns:1fr}
  .thumbs{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
}


.brand img{height:64px;width:auto}

.hero{
  padding:64px 0 48px;
}
.hero-grid{
  grid-template-columns: 1.1fr .9fr;
}
.hero-copy{
  padding-right:32px;
}
.hero-visual{
  padding:0;
  border-radius:22px;
  overflow:hidden;
}
.hero-visual img{
  width:100%;
  height:auto;
  display:block;
}

/* --- Polish overrides (v1.0.3) --- */

/* Lock header height so it never shifts */
.topbar-inner{height:80px}
.brand img{height:72px; max-height:72px}

/* Stronger headline presence */
.hero-copy h1{
  font-weight:900;
  letter-spacing:-0.8px;
  text-shadow: 0 2px 0 rgba(0,0,0,.12);
}

/* Slightly more breathing room like the mock */
.hero{padding:72px 0 56px}

/* Add depth to hero image panel */
.hero-visual{
  box-shadow: 0 20px 55px rgba(0,0,0,.45);
}

/* Make button match mock a bit closer */
.btn-cta{
  border-radius:12px;
  padding:16px 20px;
}

/* Prevent image from ever looking “cropped” */

/* --- Final fixes (logo + hero) --- */
.topbar-inner{height:90px}
.brand img{
  height:74px !important;
  width:auto !important;
  max-height:none !important;
}
/* Make sure the hero illustration never shows weird cropping */
.hero-visual{padding:0 !important}
.hero-visual img{
  width:100% !important;
  height:auto !important;
  display:block !important;
}
