:root {
  --orange: #ff8139;
  --teal: #296673;
  --cream: #f5f3f5;
  --black: #1a1a1a;
  --ink: #243238;
  --muted: #647174;
  --line: #e7e4e3;
  --white: #fff;
  --shadow: 0 24px 70px rgba(26, 26, 26, .11);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Poppins, system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--black); color: white; padding: 10px; z-index: 9; }
.skip-link:focus { left: 10px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(245, 243, 245, .94);
  border-bottom: 1px solid rgba(41, 102, 115, .14);
  backdrop-filter: blur(16px);
}
.brand img { width: min(285px, 54vw); }
.site-nav { display: flex; justify-content: center; gap: 20px; font-size: 14px; font-weight: 600; }
.site-nav a { text-decoration: none; }
.site-nav a:hover, .text-link:hover { color: var(--orange); }
.header-cta, .btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 2px solid transparent;
  border-radius: 6px;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
}
.header-cta, .btn.primary { background: var(--orange); color: var(--black); }
.btn.secondary { background: var(--teal); color: white; }
.btn.ghost { border-color: rgba(255,255,255,.35); color: white; }
.menu-toggle { display: none; }

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
  padding: clamp(42px, 7vw, 96px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(115deg, rgba(26,26,26,.88), rgba(41,102,115,.82)),
    url("https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1800&q=80") center/cover;
  color: white;
}
.hero-copy { max-width: 820px; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
h1, h2, h3 { line-height: 1.08; margin: 0 0 18px; color: var(--black); letter-spacing: 0; }
.hero h1, .page-hero h1, .article h1 { font-size: clamp(42px, 8vw, 86px); color: inherit; max-width: 980px; }
h2 { font-size: clamp(28px, 4vw, 48px); }
h3 { font-size: 22px; }
.hero p, .page-hero p, .lead { font-size: clamp(18px, 2.4vw, 24px); max-width: 850px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-panel {
  background: rgba(245, 243, 245, .95);
  color: var(--ink);
  padding: clamp(22px, 4vw, 42px);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.hero-panel img { width: 240px; margin-bottom: 22px; }
.hero-panel ul { padding-left: 20px; margin-bottom: 0; }

.breadcrumbs, .section, .page-hero, .article {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}
.breadcrumbs { padding: 22px 0 0; display: flex; flex-wrap: wrap; gap: 8px; font-size: 13px; color: var(--muted); }
.breadcrumbs a { text-decoration: none; color: var(--teal); }
.page-hero {
  padding: clamp(52px, 8vw, 104px) 0 clamp(28px, 6vw, 70px);
}
.page-hero p { color: var(--muted); }
.page-hero .eyebrow { color: var(--orange); }
.service-hero {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 460px);
  gap: 42px;
  align-items: center;
}
.service-hero img, .service-card img, .service-row img {
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.section { padding: clamp(38px, 7vw, 86px) 0; }
.intro-grid, .split, .form-section, .contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}
.card-grid, .feature-grid, .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.service-card, .feature-grid article, .blog-grid article, .area-grid a {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 14px 45px rgba(41,102,115,.08);
}
.service-card div, .feature-grid article, .blog-grid article { padding: 22px; }
.service-card h3, .blog-grid h3 { margin-bottom: 10px; }
.text-link { color: var(--teal); font-weight: 800; text-decoration: none; }

.service-list { display: grid; gap: 28px; }
.service-row {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 30px;
  align-items: center;
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.check-list li {
  padding: 14px 16px 14px 42px;
  background: white;
  border-left: 5px solid var(--orange);
  border-radius: 6px;
  position: relative;
}
.check-list li::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--teal); position: absolute; left: 18px; top: 24px; }
.link-grid, .area-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.link-grid a, .link-grid span, .area-grid a {
  padding: 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
}
.area-grid a { display: grid; gap: 6px; }
.area-grid span { color: var(--muted); font-weight: 500; font-size: 14px; }

.cta-band {
  width: min(1180px, calc(100% - 36px));
  margin: clamp(30px, 5vw, 70px) auto;
  padding: clamp(30px, 5vw, 56px);
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  background: var(--black);
  color: white;
  border-radius: 8px;
}
.cta-band h2 { color: white; }
.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(20px, 3vw, 30px);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
label { display: grid; gap: 7px; font-weight: 700; }
input, select, textarea {
  width: 100%;
  border: 1px solid #d8d6d7;
  border-radius: 6px;
  padding: 13px 12px;
  font: inherit;
  background: #fff;
}
textarea { resize: vertical; }
.full { grid-column: 1 / -1; }
.form-note { color: var(--muted); font-size: 13px; }
.honeypot { position: absolute; left: -9999px; opacity: 0; }

.faq-list { display: grid; gap: 12px; }
details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 16px 18px;
}
summary { font-weight: 800; cursor: pointer; }
.article { max-width: 890px; padding: clamp(46px, 7vw, 90px) 0; }
.article h2 { margin-top: 38px; font-size: clamp(26px, 3vw, 36px); }

.site-footer {
  margin-top: 50px;
  background: var(--black);
  color: white;
  padding: clamp(36px, 6vw, 70px) clamp(18px, 5vw, 72px) 90px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 32px;
  max-width: 1180px;
  margin: 0 auto;
}
.footer-logo { width: 150px; margin-bottom: 16px; background: white; border-radius: 8px; padding: 10px; }
.site-footer h2 { color: white; font-size: 18px; margin-bottom: 14px; }
.site-footer a { display: block; color: #f5f3f5; text-decoration: none; margin: 8px 0; }

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 30;
  background: var(--teal);
  color: white;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: var(--shadow);
}
.mobile-cta { display: none; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: auto auto; }
  .menu-toggle { display: inline-flex; justify-self: end; border: 1px solid var(--line); background: white; padding: 10px 12px; border-radius: 6px; font-weight: 800; }
  .site-nav, .header-cta { display: none; }
  .site-nav.open {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 0;
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px;
  }
  .site-nav.open a { padding: 12px; }
  .hero, .service-hero, .intro-grid, .split, .form-section, .contact-grid, .service-row, .footer-grid { grid-template-columns: 1fr; }
  .card-grid, .feature-grid, .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .link-grid, .area-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  body { padding-bottom: 64px; }
  .hero { min-height: auto; }
  .hero h1, .page-hero h1, .article h1 { font-size: 42px; }
  .card-grid, .feature-grid, .blog-grid, .link-grid, .area-grid, .quote-form { grid-template-columns: 1fr; }
  .service-row { padding: 16px; }
  .cta-band { display: grid; }
  .whatsapp-float { bottom: 76px; }
  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 31;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,.14);
  }
  .mobile-cta a {
    color: white;
    text-align: center;
    padding: 13px 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
  }
}
