@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");

:root {
  --dark: #0f172a;
  --green: #1e6b3c;
  --green-dark: #144a29;
  --slate: #334155;
  --muted: #64748b;
  --line: #e2e8f0;
  --soft: #f8fafc;
  --white: #ffffff;
  --rose: #e11d48;
  --shadow: 0 24px 55px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--slate);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
  background: transparent;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(100% - 64px, 1206px);
  margin-inline: auto;
}

.topbar {
  background: var(--dark);
  color: #e2e8f0;
  font-size: 12px;
}

.topbar-inner {
  min-height: 33px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar-group {
  display: flex;
  align-items: center;
  gap: 34px;
}

.topbar span,
.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.topbar strong {
  color: var(--green);
}

.divider {
  width: 1px;
  height: 16px;
  background: #334155;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #f1f5f9;
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.09);
}

.header-inner {
  height: 89px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.brand strong {
  display: block;
  color: var(--dark);
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.02em;
}

.brand small {
  display: block;
  margin-top: 5px;
  color: #475569;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.27em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: #334155;
  font-size: 14px;
  font-weight: 700;
}

.main-nav button,
footer button {
  color: inherit;
}

.main-nav button {
  padding-block: 8px;
}

.main-nav button:hover,
footer button:hover,
.topbar a:hover {
  color: var(--green);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--dark);
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
}

.phone-badge {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(30, 107, 60, 0.1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 800;
  font-size: 14px;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.btn:active {
  transform: scale(0.97);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}

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

.btn-outline {
  border: 2px solid var(--line);
  color: var(--dark);
}

.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
}

.btn-large {
  min-height: 60px;
  border-radius: 12px;
  padding: 16px 32px;
  font-size: 16px;
}

.mobile-toggle {
  width: 40px;
  height: 40px;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
}

.mobile-toggle span {
  height: 2px;
  width: 100%;
  background: var(--dark);
  border-radius: 2px;
}

.mobile-menu {
  border-top: 1px solid var(--line);
  padding: 10px 32px 18px;
  background: var(--white);
}

.mobile-menu button {
  display: block;
  width: 100%;
  padding: 12px 0;
  text-align: left;
  color: var(--dark);
  font-weight: 700;
}

.section-white {
  background: var(--white);
  border-bottom: 1px solid #f1f5f9;
}

.section-muted {
  background: var(--soft);
  border-bottom: 1px solid #f1f5f9;
}

.hero {
  padding: 96px 0;
}

.hero-grid,
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(350px, 0.685fr);
  align-items: center;
  gap: 64px;
}

.hero-copy {
  min-width: 0;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  background: rgba(30, 107, 60, 0.1);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-kicker {
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.hero h1 {
  margin: 32px 0 0;
  color: var(--dark);
  font-size: 60px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.hero h1 em {
  color: var(--green);
  font-style: normal;
}

.hero-copy > p {
  max-width: 620px;
  margin: 34px 0 0;
  color: #475569;
  font-size: 18px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 14px 22px;
  margin-top: 36px;
  color: #475569;
  font-size: 14px;
  font-weight: 700;
}

.feature-strip span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.hero-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero-media::after,
.image-frame::after,
.project-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.28), transparent);
}

.guarantee-card {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(68%, 300px);
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

.guarantee-card h4 {
  margin: 0;
  color: var(--dark);
  font-size: 16px;
  line-height: 1.2;
}

.guarantee-card p {
  margin: 5px 0 0;
  color: #64748b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.check-circle {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
}

.services,
.why,
.projects,
.reviews {
  padding: 112px 0;
}

.split-grid {
  grid-template-columns: minmax(350px, 0.685fr) minmax(0, 1fr);
}

.split-grid.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(350px, 0.685fr);
}

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  object-fit: cover;
}

.image-frame.tall img {
  aspect-ratio: 3 / 4;
}

.image-frame.van img {
  aspect-ratio: 4 / 5;
}

.section-copy h2,
.section-head h2,
.cta h2 {
  margin: 12px 0 0;
  color: var(--dark);
  font-size: 36px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.015em;
}

.lead {
  max-width: 670px;
  margin: 20px 0 0;
  color: #475569;
  font-size: 17px;
  line-height: 1.7;
}

.service-list {
  margin-top: 34px;
  display: grid;
  gap: 18px;
}

.service-list article,
.benefits article {
  display: flex;
  gap: 16px;
  padding: 20px;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  background: var(--white);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.service-list article:hover,
.benefits article:hover,
.project-card:hover,
.review-grid article:hover {
  transform: translateY(-2px);
  border-color: rgba(30, 107, 60, 0.25);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.service-list article.emergency {
  border-color: #fee2e2;
  background: #fff7f7;
}

.service-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 12px;
  background: rgba(30, 107, 60, 0.1);
  color: var(--green);
}

.emergency .service-icon {
  background: rgba(225, 29, 72, 0.1);
  color: var(--rose);
}

.service-list h3,
.benefits h4,
.project-card h3,
.review-grid h4 {
  margin: 0;
  color: var(--dark);
  font-size: 19px;
  line-height: 1.25;
}

.service-list h3 b {
  display: inline-flex;
  margin-left: 7px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #ffe4e6;
  color: var(--rose);
  font-size: 11px;
  vertical-align: middle;
}

.service-list p,
.benefits p {
  margin: 8px 0 0;
  color: #64748b;
  font-size: 15px;
  line-height: 1.6;
}

.service-list button {
  margin-top: 10px;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.emergency button {
  color: var(--rose);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.stats {
  position: relative;
  padding: 64px 0;
  background: var(--dark);
  color: var(--white);
}

.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
  background-size: 24px 24px;
}

.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.stats-grid div {
  text-align: center;
}

.stats-grid p {
  margin: 0;
  color: var(--white);
  font-size: 38px;
  line-height: 1;
  font-weight: 800;
}

.stats-grid span {
  display: block;
  margin-top: 14px;
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.benefits {
  margin-top: 30px;
  display: grid;
  gap: 14px;
}

.benefits article {
  padding: 0;
  border: 0;
  box-shadow: none;
}

.benefits article:hover {
  box-shadow: none;
}

.benefits .icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  background: rgba(30, 107, 60, 0.1);
  color: var(--green);
}

.benefits h4 {
  font-size: 17px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
}

.section-head .text-link {
  margin-top: 0;
  flex: 0 0 auto;
}

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

.project-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.project-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 500ms ease;
}

.project-card:hover img {
  transform: scale(1.05);
}

.project-card::after {
  top: 0;
  bottom: auto;
  height: 210px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.18), transparent 58%);
}

.project-card div {
  padding: 22px 20px 20px;
}

.project-card span {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-card h3 {
  margin-top: 8px;
}

.project-card p {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 28px 0 0;
  padding-top: 18px;
  border-top: 1px solid #f1f5f9;
  color: #64748b;
  font-size: 14px;
  font-weight: 700;
}

.review-grid article {
  min-height: 218px;
  padding: 30px;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.stars {
  color: #f59e0b;
  letter-spacing: 0.06em;
}

.review-grid p {
  margin: 20px 0 24px;
  color: #475569;
  font-size: 16px;
  line-height: 1.65;
  font-style: italic;
}

.review-grid span {
  display: block;
  margin-top: 6px;
  color: #64748b;
  font-size: 14px;
}

.cta {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  background: var(--dark);
  color: var(--white);
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(410px, 0.8fr);
  align-items: center;
  gap: 56px;
}

.cta h2 {
  color: var(--white);
  font-size: 42px;
}

.cta p {
  max-width: 680px;
  margin: 20px 0 0;
  color: #cbd5e1;
  font-size: 17px;
  line-height: 1.75;
}

.cta-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.cta-badges span {
  border-radius: 999px;
  background: rgba(30, 107, 60, 0.18);
  color: #dcfce7;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.cta-card {
  min-height: 238px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.cta-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cta-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(30, 107, 60, 0.2);
  color: #86efac;
}

.cta-card strong {
  margin-top: 18px;
  font-size: 20px;
}

.cta-card small {
  margin-top: 10px;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.55;
}

.cta-card b {
  margin-top: auto;
  color: #86efac;
}

footer {
  padding: 64px 0 28px;
  background: var(--dark);
  color: #cbd5e1;
  border-top: 1px solid #1e293b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.15fr;
  gap: 52px;
}

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

footer .brand small {
  color: #cbd5e1;
}

.footer-brand p {
  max-width: 380px;
  margin: 22px 0;
  color: #94a3b8;
  line-height: 1.7;
}

.footer-brand > span {
  display: block;
  margin-top: 10px;
  color: #cbd5e1;
  font-size: 14px;
}

footer h4 {
  margin: 0 0 20px;
  color: var(--white);
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

footer button {
  display: flex;
  width: 100%;
  padding: 0;
  margin-top: 10px;
  text-align: left;
  color: #cbd5e1;
  font-size: 14px;
}

.urgent {
  padding: 22px;
  border: 1px solid #334155;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.urgent > span {
  color: #fb7185;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.urgent h4 {
  margin-top: 10px;
  margin-bottom: 8px;
}

.urgent p {
  margin: 0;
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.6;
}

.urgent a {
  display: flex;
  justify-content: center;
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--rose);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #1e293b;
  color: #94a3b8;
  font-size: 13px;
}

.whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 12px 16px;
  border-radius: 999px;
  background: #25d366;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 18px 38px rgba(37, 211, 102, 0.24);
  transition: transform 180ms ease, background 180ms ease;
}

.whatsapp:hover {
  transform: scale(1.04);
  background: #1ebe5d;
}

.booking-dialog {
  width: min(92vw, 520px);
  border: 0;
  border-radius: 18px;
  padding: 0;
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.28);
}

.booking-dialog::backdrop {
  background: rgba(15, 23, 42, 0.5);
}

.booking-dialog form {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 30px;
}

.booking-dialog h3 {
  margin: 0 0 6px;
  color: var(--dark);
  font-size: 28px;
}

.booking-dialog label {
  display: grid;
  gap: 6px;
  color: var(--dark);
  font-size: 13px;
  font-weight: 800;
}

.booking-dialog input,
.booking-dialog select,
.booking-dialog textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--slate);
}

.booking-dialog textarea {
  min-height: 92px;
  resize: vertical;
}

.dialog-close {
  position: absolute;
  top: 16px;
  right: 18px;
  color: #64748b;
  font-size: 28px;
  line-height: 1;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
}

.icon::before {
  content: "";
  display: block;
  width: 1.1em;
  height: 1.1em;
  background: currentColor;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.shield::before { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10Z'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10Z'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E"); }
.pin::before { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 10c0 6-8 12-8 12S4 16 4 10a8 8 0 1 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 10c0 6-8 12-8 12S4 16 4 10a8 8 0 1 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E"); }
.mail::before { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='20' height='16' x='2' y='4' rx='2'/%3E%3Cpath d='m22 7-10 6L2 7'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='20' height='16' x='2' y='4' rx='2'/%3E%3Cpath d='m22 7-10 6L2 7'/%3E%3C/svg%3E"); }
.phone::before { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.96.34 1.9.65 2.8a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.9.31 1.84.53 2.8.65A2 2 0 0 1 22 16.92Z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.96.34 1.9.65 2.8a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.9.31 1.84.53 2.8.65A2 2 0 0 1 22 16.92Z'/%3E%3C/svg%3E"); }
.whatsapp-icon::before { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='black' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19.05 4.91A9.82 9.82 0 0 0 12.04 2C6.58 2 2.13 6.45 2.13 11.91c0 1.75.46 3.45 1.33 4.95L2.05 22l5.25-1.38a9.9 9.9 0 0 0 4.74 1.21h.01c5.46 0 9.91-4.45 9.91-9.91a9.86 9.86 0 0 0-2.91-7.01Zm-7 15.24h-.01a8.23 8.23 0 0 1-4.19-1.15l-.3-.18-3.11.82.83-3.04-.2-.31a8.2 8.2 0 0 1-1.26-4.38c0-4.53 3.69-8.22 8.23-8.22a8.18 8.18 0 0 1 5.82 2.42 8.18 8.18 0 0 1 2.41 5.82c0 4.53-3.69 8.22-8.22 8.22Zm4.51-6.16c-.25-.12-1.47-.73-1.7-.81-.23-.08-.39-.12-.56.12-.16.25-.64.81-.78.98-.14.16-.29.18-.54.06-.25-.12-1.04-.38-1.98-1.22-.73-.65-1.23-1.45-1.37-1.7-.14-.25-.02-.38.11-.5.11-.11.25-.29.37-.43.12-.14.16-.25.25-.41.08-.16.04-.31-.02-.43-.06-.12-.56-1.35-.77-1.85-.2-.48-.41-.42-.56-.43h-.48c-.16 0-.43.06-.66.31-.23.25-.87.85-.87 2.07 0 1.22.89 2.4 1.01 2.56.12.16 1.75 2.67 4.24 3.74.59.26 1.05.41 1.41.52.59.19 1.13.16 1.56.1.48-.07 1.47-.6 1.68-1.18.21-.58.21-1.08.14-1.18-.06-.1-.23-.16-.48-.29Z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='black' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19.05 4.91A9.82 9.82 0 0 0 12.04 2C6.58 2 2.13 6.45 2.13 11.91c0 1.75.46 3.45 1.33 4.95L2.05 22l5.25-1.38a9.9 9.9 0 0 0 4.74 1.21h.01c5.46 0 9.91-4.45 9.91-9.91a9.86 9.86 0 0 0-2.91-7.01Zm-7 15.24h-.01a8.23 8.23 0 0 1-4.19-1.15l-.3-.18-3.11.82.83-3.04-.2-.31a8.2 8.2 0 0 1-1.26-4.38c0-4.53 3.69-8.22 8.23-8.22a8.18 8.18 0 0 1 5.82 2.42 8.18 8.18 0 0 1 2.41 5.82c0 4.53-3.69 8.22-8.22 8.22Zm4.51-6.16c-.25-.12-1.47-.73-1.7-.81-.23-.08-.39-.12-.56.12-.16.25-.64.81-.78.98-.14.16-.29.18-.54.06-.25-.12-1.04-.38-1.98-1.22-.73-.65-1.23-1.45-1.37-1.7-.14-.25-.02-.38.11-.5.11-.11.25-.29.37-.43.12-.14.16-.25.25-.41.08-.16.04-.31-.02-.43-.06-.12-.56-1.35-.77-1.85-.2-.48-.41-.42-.56-.43h-.48c-.16 0-.43.06-.66.31-.23.25-.87.85-.87 2.07 0 1.22.89 2.4 1.01 2.56.12.16 1.75 2.67 4.24 3.74.59.26 1.05.41 1.41.52.59.19 1.13.16 1.56.1.48-.07 1.47-.6 1.68-1.18.21-.58.21-1.08.14-1.18-.06-.1-.23-.16-.48-.29Z'/%3E%3C/svg%3E"); }
.check::before { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m20 6-11 11-5-5'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m20 6-11 11-5-5'/%3E%3C/svg%3E"); }
.home::before { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m3 11 9-8 9 8'/%3E%3Cpath d='M5 10v10h14V10'/%3E%3Cpath d='M9 20v-6h6v6'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m3 11 9-8 9 8'/%3E%3Cpath d='M5 10v10h14V10'/%3E%3Cpath d='M9 20v-6h6v6'/%3E%3C/svg%3E"); }
.building::before { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='4' y='2' width='16' height='20' rx='2'/%3E%3Cpath d='M9 22v-4h6v4M8 6h.01M16 6h.01M8 10h.01M16 10h.01M8 14h.01M16 14h.01'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='4' y='2' width='16' height='20' rx='2'/%3E%3Cpath d='M9 22v-4h6v4M8 6h.01M16 6h.01M8 10h.01M16 10h.01M8 14h.01M16 14h.01'/%3E%3C/svg%3E"); }
.bolt::before { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='black' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 2 3 14h8l-1 8 11-13h-8l0-7Z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='black' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 2 3 14h8l-1 8 11-13h-8l0-7Z'/%3E%3C/svg%3E"); }
.receipt::before { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 2v20l3-2 3 2 3-2 3 2 4-2V2l-3 2-3-2-3 2-3-2-4 2Z'/%3E%3Cpath d='M8 8h8M8 12h8M8 16h5'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 2v20l3-2 3 2 3-2 3 2 4-2V2l-3 2-3-2-3 2-3-2-4 2Z'/%3E%3Cpath d='M8 8h8M8 12h8M8 16h5'/%3E%3C/svg%3E"); }
.clock::before { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 6v6l4 2'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 6v6l4 2'/%3E%3C/svg%3E"); }
.award::before { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='8' r='6'/%3E%3Cpath d='m15.5 13 1.5 8-5-3-5 3 1.5-8'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='8' r='6'/%3E%3Cpath d='m15.5 13 1.5 8-5-3-5 3 1.5-8'/%3E%3C/svg%3E"); }
.leaf::before { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 20A7 7 0 0 1 4 13c0-7 9-11 16-9 2 7-2 16-9 16Z'/%3E%3Cpath d='M4 21c4-7 8-9 14-11'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 20A7 7 0 0 1 4 13c0-7 9-11 16-9 2 7-2 16-9 16Z'/%3E%3Cpath d='M4 21c4-7 8-9 14-11'/%3E%3C/svg%3E"); }
.calendar::before { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 2v4M16 2v4M3 10h18'/%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 2v4M16 2v4M3 10h18'/%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3C/svg%3E"); }

@media (max-width: 1100px) {
  .main-nav {
    gap: 18px;
  }

  .phone-link {
    display: none;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-grid,
  .split-grid,
  .split-grid.reverse {
    gap: 42px;
  }
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 40px, 720px);
  }

  .topbar-right,
  .main-nav,
  .header-actions .btn {
    display: none;
  }

  .topbar-group {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .mobile-toggle {
    display: flex;
  }

  .header-inner {
    height: 80px;
  }

  .hero,
  .services,
  .why,
  .projects,
  .reviews {
    padding: 72px 0;
  }

  .hero-grid,
  .split-grid,
  .split-grid.reverse,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .image-frame {
    max-width: 620px;
  }

  .stats-grid,
  .project-grid,
  .review-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 32px, 560px);
  }

  .topbar {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand small {
    font-size: 10px;
    letter-spacing: 0.22em;
  }

  .header-inner {
    height: 76px;
  }

  .hero {
    padding-top: 54px;
  }

  .hero h1 {
    font-size: 42px;
    line-height: 1.08;
  }

  .hero-copy > p,
  .lead,
  .cta p {
    font-size: 16px;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .feature-strip {
    grid-template-columns: 1fr;
  }

  .section-copy h2,
  .section-head h2 {
    font-size: 31px;
  }

  .stats-grid,
  .project-grid,
  .review-grid,
  .footer-grid,
  .cta-cards {
    grid-template-columns: 1fr;
  }

  .cta h2 {
    font-size: 34px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .whatsapp {
    right: 14px;
    bottom: 14px;
    padding: 11px 13px;
  }
}
