:root {
  --ink: #17202a;
  --muted: #5d6875;
  --line: #dce2ea;
  --surface: #ffffff;
  --soft: #f4f7fb;
  --brand: #d72638;
  --brand-dark: #9f1826;
  --accent: #f7b32b;
  --deep: #1f2d3d;
  font-family: Tahoma, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.8;
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: var(--brand);
  border-radius: 8px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, 2vw, 24px);
  color: var(--muted);
  font-size: 0.96rem;
}

nav a:hover,
.text-link:hover {
  color: var(--brand);
}

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  padding: clamp(56px, 9vw, 120px) clamp(18px, 5vw, 78px);
  overflow: hidden;
  color: #fff;
  background: var(--deep);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 32, 42, 0.22), rgba(23, 32, 42, 0.82) 56%, rgba(23, 32, 42, 0.94));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: 4.8rem;
  line-height: 1.12;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.75rem;
  line-height: 1.25;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.lead {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 800;
  border: 1px solid transparent;
}

.btn.primary {
  color: #fff;
  background: var(--brand);
}

.btn.primary:hover {
  background: var(--brand-dark);
}

.btn.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-strip div {
  display: grid;
  gap: 2px;
  min-height: 104px;
  place-items: center;
  padding: 18px;
  text-align: center;
  background: var(--surface);
}

.quick-strip strong {
  color: var(--brand);
  font-size: 1.6rem;
}

.quick-strip span {
  color: var(--muted);
}

.section {
  padding: clamp(58px, 9vw, 104px) clamp(18px, 5vw, 78px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.split > div:first-child p:not(.eyebrow),
.feature-band p,
.contact p,
.faq p {
  color: var(--muted);
}

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

.service-grid article,
.cards article {
  min-height: 168px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.service-grid article {
  border-top: 4px solid var(--brand);
}

.service-grid p,
.cards p {
  color: var(--muted);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(42px, 7vw, 84px) clamp(18px, 5vw, 78px);
  background: var(--soft);
}

.feature-band img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(23, 32, 42, 0.18);
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--brand);
  font-weight: 800;
}

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

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.area-list span {
  padding: 10px 18px;
  color: var(--deep);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
}

.map-section {
  padding: clamp(42px, 7vw, 84px) clamp(18px, 5vw, 78px);
  background: var(--soft);
}

.map-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 44px rgba(23, 32, 42, 0.12);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.testimonials {
  background: var(--surface);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.cards article {
  background: #fff;
}

.cards strong {
  color: var(--brand);
}

.faq {
  max-width: 980px;
  margin: 0 auto;
}

details {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 1.08rem;
}

details p {
  margin: 12px 0 0;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(42px, 7vw, 76px) clamp(18px, 5vw, 78px);
  color: #fff;
  background: var(--deep);
}

.contact h2 {
  margin-bottom: 10px;
}

.contact p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.whatsapp-float {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  padding: 0;
  color: #fff;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(18, 140, 74, 0.34);
}

.whatsapp-float:hover {
  background: #1ebe5d;
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.whatsapp-float span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

footer {
  padding: 26px clamp(18px, 5vw, 78px);
  color: #dce2ea;
  background: #111922;
}

footer p {
  margin: 0;
}

.credit {
  margin-top: 8px;
  color: #9ea8b5;
  font-size: 0.85rem;
}

@media (max-width: 860px) {
  .site-header,
  .contact {
    align-items: flex-start;
    flex-direction: column;
  }

  h1 {
    font-size: 3.3rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero {
    min-height: 560px;
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(23, 32, 42, 0.42), rgba(23, 32, 42, 0.9));
  }

  .quick-strip,
  .split,
  .feature-band,
  .cards {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  body {
    line-height: 1.72;
  }

  .site-header {
    gap: 12px;
    padding: 10px 14px;
    overflow: hidden;
  }

  .brand {
    font-size: 1rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  nav {
    width: 100%;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  nav::-webkit-scrollbar {
    display: none;
  }

  nav a {
    flex: 0 0 auto;
    padding: 5px 10px;
    color: var(--deep);
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.4;
  }

  h1 {
    max-width: 100%;
    margin-bottom: 14px;
    font-size: 2.05rem;
    line-height: 1.18;
  }

  h2 {
    margin-bottom: 12px;
    font-size: 1.72rem;
  }

  h3 {
    font-size: 1.08rem;
  }

  .lead {
    font-size: 1rem;
  }

  .eyebrow {
    margin-bottom: 8px;
    font-size: 0.92rem;
  }

  .hero {
    min-height: 520px;
    align-items: end;
    padding: 150px 16px 34px;
    width: 100%;
  }

  .hero-media img {
    object-position: 44% center;
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(23, 32, 42, 0.12), rgba(23, 32, 42, 0.48) 36%, rgba(23, 32, 42, 0.94));
  }

  .hero-content {
    max-width: 100%;
    width: 100%;
    min-width: 0;
    text-align: right;
  }

  .actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 18px;
  }

  .btn {
    min-height: 46px;
    padding: 10px 14px;
    font-size: 0.95rem;
  }

  .hero .actions,
  .contact .actions {
    width: 100%;
  }

  .quick-strip div {
    min-height: 86px;
    padding: 12px 8px;
  }

  .quick-strip strong {
    font-size: 1.26rem;
  }

  .quick-strip span {
    font-size: 0.9rem;
  }

  .section {
    padding: 42px 16px;
  }

  .service-grid {
    gap: 10px;
  }

  .service-grid article,
  .cards article {
    min-height: 0;
    padding: 18px;
  }

  .feature-band {
    gap: 22px;
    padding: 42px 16px;
  }

  .feature-band img {
    aspect-ratio: 16 / 11;
    object-position: center;
    box-shadow: 0 14px 34px rgba(23, 32, 42, 0.14);
  }

  .section-head {
    margin-bottom: 18px;
  }

  .area-list {
    gap: 8px;
  }

  .area-list span {
    padding: 8px 12px;
    font-size: 0.92rem;
  }

  .map-section {
    padding: 42px 16px;
  }

  .map-frame iframe {
    height: 320px;
  }

  .quick-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  details {
    padding: 15px 0;
  }

  summary {
    font-size: 1rem;
  }

  .contact {
    padding: 38px 16px 86px;
  }

  .contact .actions {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    left: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-float svg {
    width: 31px;
    height: 31px;
  }

  footer {
    padding: 22px 16px;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 1.86rem;
  }

  .hero {
    min-height: 500px;
    padding-top: 130px;
  }

  .actions {
    grid-template-columns: 1fr;
  }
}
