:root {
  --blue: #0b2f78;
  --blue-2: #154fa8;
  --red: #bd1117;
  --red-2: #e0262d;
  --dark: #101726;
  --muted: #5e6878;
  --light: #f4f7fb;
  --white: #ffffff;
  --green: #159447;
  --shadow: 0 18px 45px rgba(16, 23, 38, .12);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Roboto", Arial, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 92px 0; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 16px; top: 16px; background: #fff; padding: 10px; z-index: 9999; }

.topbar { background: var(--dark); color: #fff; font-size: 14px; }
.topbar-inner { min-height: 40px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar-links { display: flex; gap: 22px; }
.topbar a:hover { color: #9ec4ff; }

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e8edf5;
}
.nav-inner { height: 92px; display: flex; align-items: center; gap: 30px; }
.brand { width: 210px; flex-shrink: 0; }
.brand img { width: 100%; height: 74px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.main-nav a { font-weight: 700; font-size: 15px; }
.main-nav a:hover { color: var(--red); }
.menu-toggle { display: none; background: none; border: 0; padding: 8px; }
.menu-toggle span { width: 28px; height: 3px; background: var(--dark); margin: 5px 0; display: block; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--red), var(--red-2)); color: #fff; box-shadow: 0 12px 24px rgba(189,17,23,.22); }
.btn-whatsapp { background: var(--green); color: #fff; }
.btn-outline { border-color: var(--blue); color: var(--blue); }
.btn-light { background: #fff; color: var(--blue); }
.btn-full { width: 100%; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 15%, rgba(21,79,168,.13), transparent 33%),
    linear-gradient(135deg, #f7f9fd 0%, #fff 55%, #fff5f5 100%);
  padding: 72px 0 80px;
}
.hero:after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: rgba(189,17,23,.07);
}
.hero-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 56px; position: relative; z-index: 1; }
.eyebrow { display: inline-block; color: var(--red); font-weight: 800; text-transform: uppercase; letter-spacing: .11em; font-size: 13px; margin-bottom: 14px; }
.eyebrow.light { color: #ffd3d3; }
.hero h1, .section h2, .cta-band h2 {
  font-family: "Montserrat", sans-serif;
  line-height: 1.08;
  margin: 0;
}
.hero h1 { font-size: clamp(42px, 6vw, 72px); max-width: 680px; }
.hero h1 strong { color: var(--red); }
.hero-copy > p { font-size: 20px; color: var(--muted); max-width: 640px; margin: 24px 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-media { border-radius: 26px; overflow: hidden; box-shadow: var(--shadow); background: #180000; }
.hero-media img { width: 100%; max-height: 700px; object-fit: cover; object-position: top center; }
.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 38px; }
.trust-row div { border-left: 3px solid var(--red); padding-left: 13px; }
.trust-row strong { display: block; font-family: "Montserrat"; font-size: 23px; color: var(--blue); }
.trust-row span { display: block; font-size: 13px; color: var(--muted); }

.benefits { background: var(--blue); color: #fff; padding: 28px 0; }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.benefits article { display: flex; align-items: center; gap: 12px; }
.benefits article > span { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.15); display: grid; place-items: center; font-weight: 900; }
.benefits h3 { margin: 0; font-size: 16px; }
.benefits p { margin: 2px 0 0; color: #cddcff; font-size: 13px; }

.section-heading { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.section-heading h2, .about h2, .quote h2 { font-size: clamp(32px, 4vw, 50px); }
.section-heading p { color: var(--muted); font-size: 18px; }

.services { background: var(--light); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-card { background: #fff; border: 1px solid #e6ebf3; border-radius: var(--radius); padding: 30px 24px; box-shadow: 0 10px 30px rgba(16,23,38,.06); transition: .2s; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-icon { width: 54px; height: 54px; border-radius: 14px; background: linear-gradient(135deg, var(--blue), var(--blue-2)); color: #fff; display: grid; place-items: center; font-family: "Montserrat"; font-weight: 900; font-size: 23px; margin-bottom: 18px; }
.service-card h3 { font-family: "Montserrat"; font-size: 19px; margin: 0 0 10px; }
.service-card p { color: var(--muted); margin: 0; }

.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: center; }
.about-image { background: #fff; border-radius: 26px; padding: 25px; box-shadow: var(--shadow); border: 1px solid #edf0f5; }
.about-image img { border-radius: 18px; }
.about-copy p { color: var(--muted); font-size: 17px; }
.check-list { list-style: none; padding: 0; margin: 26px 0 32px; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 30px; font-weight: 600; }
.check-list li:before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }

.quote {
  background:
    linear-gradient(120deg, rgba(11,47,120,.96), rgba(189,17,23,.92)),
    url("assets/banner-emplac.png") center/cover;
  color: #fff;
}
.quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.quote p { color: #e7ecf7; font-size: 18px; }
.quote-form { background: #fff; color: var(--dark); border-radius: 22px; padding: 30px; box-shadow: var(--shadow); }
.quote-form label { display: block; font-weight: 700; margin-bottom: 16px; }
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%;
  border: 1px solid #d9dfeb;
  border-radius: 12px;
  padding: 13px 14px;
  margin-top: 7px;
  outline: none;
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--blue-2); box-shadow: 0 0 0 3px rgba(21,79,168,.12); }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 34px; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-cards article { background: var(--light); border-radius: 16px; padding: 24px; border: 1px solid #e4e9f1; }
.contact-cards h3 { margin: 0 0 8px; font-size: 17px; color: var(--blue); }
.contact-cards p, .contact-cards a { margin: 0; color: var(--muted); }
.contact-cards a:hover { color: var(--red); }
.map-wrap { border-radius: 20px; overflow: hidden; min-height: 430px; box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 430px; border: 0; }

.cta-band { background: linear-gradient(135deg, var(--red), #7e080d); color: #fff; padding: 42px 0; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-band h2 { font-size: clamp(26px, 3vw, 38px); }
.cta-band p { margin: 8px 0 0; color: #ffdada; }

.site-footer { background: #0a101c; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; padding: 58px 0; }
.footer-brand img { width: 220px; border-radius: 10px; background: #fff; }
.footer-grid h3 { margin-top: 0; font-family: "Montserrat"; font-size: 17px; }
.footer-grid a, .footer-grid p { display: block; color: #b9c4d7; margin: 8px 0; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0; color: #8995a8; font-size: 14px; }

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  background: var(--green);
  color: #fff;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  box-shadow: 0 14px 30px rgba(0,0,0,.22);
  font-weight: 800;
}
.floating-whatsapp:before { content: "●"; margin-right: 9px; font-size: 18px; }

.privacy { max-width: 900px; margin: 60px auto; padding: 0 20px 80px; }
.privacy h1, .privacy h2 { font-family: "Montserrat"; }
.privacy p, .privacy li { color: var(--muted); }

@media (max-width: 1050px) {
  .header-cta { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 760px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .quote-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-image { max-width: 650px; margin: 0 auto; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 26px, 1180px); }
  .section { padding: 68px 0; }
  .topbar-inner { justify-content: center; text-align: center; padding: 9px 0; }
  .topbar-links { display: none; }
  .nav-inner { height: 76px; }
  .brand { width: 165px; }
  .brand img { height: 60px; }
  .menu-toggle { display: block; margin-left: auto; }
  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    background: #fff;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 20px;
    border-bottom: 1px solid #e4e8ef;
    box-shadow: 0 18px 32px rgba(16,23,38,.12);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 6px; }
  .hero { padding: 50px 0 62px; }
  .hero h1 { font-size: 43px; }
  .hero-copy > p { font-size: 18px; }
  .hero-actions .btn { width: 100%; }
  .trust-row { grid-template-columns: 1fr; }
  .benefits-grid, .services-grid, .contact-cards, .footer-grid { grid-template-columns: 1fr; }
  .benefits { padding: 36px 0; }
  .quote-form { padding: 22px; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .floating-whatsapp { right: 14px; bottom: 14px; padding: 0 17px; }
}
