:root {
  --ink: #17202a;
  --muted: #66717f;
  --line: #d9dee5;
  --paper: #ffffff;
  --soft: #f4f6f8;
  --coal: #111820;
  --accent: #f3b61f;
  --accent-strong: #d89300;
  --green: #20a464;
  --shadow: 0 18px 50px rgba(17, 24, 32, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
  padding: 12px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 222, 229, 0.85);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--coal);
  background: var(--accent);
  border: 2px solid var(--coal);
  border-radius: 8px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: 1.05rem;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 26px;
  color: #42505f;
  font-size: 0.93rem;
  font-weight: 700;
}

.desktop-nav a:hover {
  color: var(--coal);
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  color: var(--coal);
  background: var(--accent);
  border: 1px solid #c78700;
  border-radius: 8px;
  font-weight: 800;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 72px);
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-shade,
.hero-content {
  grid-area: 1 / 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: calc(100svh - 72px);
  object-fit: cover;
  object-position: 58% center;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(17, 24, 32, 0.22), rgba(17, 24, 32, 0.86)),
    linear-gradient(90deg, rgba(17, 24, 32, 0.8), rgba(17, 24, 32, 0.18) 68%);
}

.hero-content {
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: end;
  width: min(760px, 100%);
  padding: 56px clamp(18px, 5vw, 72px) 34px;
  color: #fff;
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 14px;
  font-size: clamp(2.5rem, 12vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.02rem;
  line-height: 1.65;
}

.hero-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: min(100%, 460px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 800;
  text-align: center;
}

.btn-primary {
  color: var(--coal);
  background: var(--accent);
  border: 1px solid var(--accent-strong);
}

.btn-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.trust-row span {
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
}

.quick-search {
  display: grid;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 72px);
  background: var(--coal);
  color: #fff;
}

.quick-search h2 {
  margin-bottom: 0;
  font-size: 1.35rem;
}

.search-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.search-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 800;
  text-align: center;
}

.section {
  padding: 64px clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading.compact {
  margin-bottom: 0;
}

.section-heading h2,
.quote-copy h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 7vw, 3.6rem);
  line-height: 1;
}

.section-heading p,
.quote-copy p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.service-grid {
  display: grid;
  gap: 14px;
}

.service-card {
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(17, 24, 32, 0.06);
}

.card-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--coal);
  background: #fff4cf;
  border-radius: 8px;
}

.service-card h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

.platform-section {
  background: #fbfcfd;
  border-top: 1px solid var(--line);
}

.platform-gallery {
  display: grid;
  gap: 14px;
}

.platform-gallery figure {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(17, 24, 32, 0.06);
}

.platform-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.platform-gallery figcaption {
  padding: 14px 16px 16px;
  color: var(--coal);
  font-size: 0.95rem;
  font-weight: 800;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--line);
  background: var(--soft);
}

.stats-band div {
  min-height: 96px;
  padding: 18px 10px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.stats-band div:last-child {
  border-right: 0;
}

.stats-band strong,
.stats-band span {
  display: block;
}

.stats-band strong {
  margin-bottom: 6px;
  font-size: clamp(1rem, 4vw, 1.45rem);
}

.stats-band span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.split {
  display: grid;
  gap: 28px;
  background: #fbfcfd;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
}

.area-list span {
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #42505f;
  font-weight: 800;
}

.cta-section {
  padding: 54px clamp(18px, 5vw, 72px);
  background: var(--coal);
}

.quote-panel {
  display: grid;
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
  color: #fff;
}

.quote-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-lines {
  display: grid;
  gap: 8px;
  margin: 18px 0 16px;
}

.contact-lines a,
.contact-lines span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 38px;
  padding: 8px 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-weight: 800;
}

.contact-card {
  display: grid;
  gap: 8px;
  padding: 24px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.contact-card span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-card a,
.contact-card p {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(1.1rem, 5vw, 1.55rem);
  font-weight: 800;
  line-height: 1.25;
}

.contact-card a:last-of-type,
.contact-card p:last-child {
  margin-bottom: 0;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  margin-top: 6px;
  padding: 0 16px;
  color: #fff;
  background: var(--green);
  border-radius: 8px;
  font-weight: 800;
}

.site-footer {
  display: grid;
  gap: 6px;
  padding: 28px clamp(18px, 5vw, 72px) 92px;
  color: #fff;
  background: #0b1117;
}

.site-footer span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

.mobile-action-bar {
  position: fixed;
  z-index: 30;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  background: rgba(17, 24, 32, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(14px);
}

.mobile-action-bar a {
  display: grid;
  min-height: 54px;
  place-items: center;
  color: #fff;
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 800;
}

.mobile-action-bar a:first-child {
  color: var(--coal);
  background: var(--accent);
}

.mobile-action-bar svg {
  width: 19px;
  height: 19px;
}

@media (min-width: 560px) {
  .hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .search-buttons {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 860px) {
  .desktop-nav {
    display: flex;
  }

  .hero-content {
    justify-content: center;
    padding-bottom: 64px;
  }

  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .platform-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .quick-search {
    grid-template-columns: 0.85fr 1.3fr;
    align-items: center;
  }

  .split {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
  }

  .quote-panel {
    grid-template-columns: 0.9fr 1fr;
    align-items: center;
  }

  .mobile-action-bar {
    display: none;
  }

  .site-footer {
    padding-bottom: 28px;
  }
}

@media (max-width: 380px) {
  .header-call {
    padding-inline: 12px;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  .search-buttons {
    grid-template-columns: 1fr;
  }

  .stats-band {
    grid-template-columns: 1fr;
  }

  .stats-band div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}
