@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  --background: #ffffff;
  --surface: #f7f7f7;
  --surface-strong: #eeeeee;
  --text: #141414;
  --muted: #666666;
  --line: #dedede;
  --dark: #151515;
  --dark-soft: #222222;
  --on-dark: #ffffff;
  --accent: #299966;
  --accent-dark: #1d7650;
  --accent-soft: #e8f6ef;
  --warning: #f5bd37;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: "Space Grotesk", Arial, sans-serif;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

main {
  padding-top: 80px;
}

body.floating-header main {
  padding-top: 0;
}

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

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

a:hover {
  color: var(--accent);
}

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Outfit", Arial, sans-serif;
  line-height: 1.12;
  color: inherit;
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
}

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 200;
  background: var(--accent);
  color: var(--on-dark);
  padding: 10px 14px;
  border-radius: var(--radius);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

body.floating-header .site-header:not(.scrolled):not(.menu-active) {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.site-header .container {
  width: min(100% - 64px, 1400px);
}

.nav {
  height: 80px;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Outfit", Arial, sans-serif;
  font-weight: 800;
}

.brand img {
  width: auto;
  height: 128px;
  max-width: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0.875rem;
  font-weight: 500;
}

.nav-links a {
  color: var(--text);
  transition: color 0.2s ease;
}

body.floating-header .site-header:not(.scrolled):not(.menu-active) .nav-links a {
  color: rgba(255, 255, 255, 0.9);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 8px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

body.floating-header .site-header:not(.scrolled):not(.menu-active) .menu-toggle {
  color: var(--on-dark);
}

.nav-panel {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--on-dark);
  font-weight: 800;
  line-height: 1.15;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  color: var(--on-dark);
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-sm {
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
}

.nav-call {
  gap: 6px;
  white-space: nowrap;
}

.phone-mark {
  flex: 0 0 auto;
  line-height: 1;
}

.btn.secondary {
  background: transparent;
  color: var(--on-dark);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn.light {
  background: var(--background);
  color: var(--text);
}

.btn.light:hover {
  background: var(--surface-strong);
  color: var(--text);
}

.btn.outline {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.btn.outline:hover {
  background: var(--accent-soft);
  color: var(--accent-dark);
  border-color: var(--accent);
}

.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
  color: var(--on-dark);
}

.hero.compact {
  min-height: auto;
  padding: 105px 0 82px;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.44));
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 780px;
  padding: 112px 0 96px;
}

.hero.compact .hero-content {
  padding: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 7px 12px;
  border: 1px solid rgba(41, 153, 102, 0.4);
  border-radius: var(--radius);
  background: rgba(41, 153, 102, 0.16);
  color: #c8f2db;
  font-size: 0.88rem;
  font-weight: 800;
}

.eyebrow.dark {
  color: var(--accent-dark);
  background: var(--accent-soft);
}

.hero h1 {
  max-width: 860px;
  font-size: 4.5rem;
  font-weight: 900;
  letter-spacing: 0;
}

.hero h1 .accent {
  color: #48ce8f;
}

.hero p {
  max-width: 700px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.18rem;
}

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

.hero-actions.center {
  justify-content: center;
}

.section {
  padding: 82px 0;
}

.section.alt {
  background: var(--surface);
}

.section.dark {
  background: var(--dark);
  color: var(--on-dark);
}

.section.accent {
  background: var(--accent);
  color: var(--on-dark);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-head.left {
  margin-inline: 0;
  text-align: left;
}

.section-label {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.84rem;
}

.section.dark .section-label,
.section.accent .section-label {
  color: #d7f8e7;
}

.section h2 {
  font-size: 2.65rem;
  font-weight: 850;
}

.section-head p,
.muted {
  color: var(--muted);
}

.section.dark .muted,
.section.accent .muted {
  color: rgba(255, 255, 255, 0.76);
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--background);
  overflow: hidden;
}

.card.pad {
  padding: 26px;
}

.card.hover {
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.card.hover:hover {
  border-color: rgba(41, 153, 102, 0.5);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.service-card img,
.project-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card .body,
.project-card .body {
  padding: 22px;
}

.service-card h3,
.project-card h3,
.feature h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.service-card p,
.project-card p,
.feature p,
.testimonial p {
  color: var(--muted);
  font-size: 0.96rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  color: var(--accent-dark);
  font-weight: 800;
}

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

.stat {
  padding: 28px 18px;
  text-align: center;
}

.stat strong {
  display: block;
  color: var(--accent-dark);
  font-family: "Outfit", Arial, sans-serif;
  font-size: 2.35rem;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.price-list {
  overflow: hidden;
  color: var(--text);
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row strong {
  color: var(--accent-dark);
  text-align: right;
}

.price-row span {
  color: var(--text);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 46px;
  align-items: center;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  list-style: none;
}

.check-list.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-dark);
  font-weight: 900;
}

.feature {
  text-align: center;
}

.icon-box {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: var(--radius);
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 900;
}

.cta {
  text-align: center;
}

.cta h2 {
  color: var(--on-dark);
}

.cta p {
  max-width: 650px;
  margin: 14px auto 26px;
  color: rgba(255, 255, 255, 0.8);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.filter-button {
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--background);
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
}

.filter-button.active {
  background: var(--accent);
  color: var(--on-dark);
  border-color: var(--accent);
}

.city-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--background);
  font-size: 0.94rem;
}

.steps {
  counter-reset: step;
}

.step {
  text-align: center;
}

.step-num {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--on-dark);
  font-family: "Outfit", Arial, sans-serif;
  font-weight: 850;
}

.faq {
  max-width: 860px;
  margin-inline: auto;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--background);
  padding: 0 20px;
}

details + details {
  margin-top: 12px;
}

summary {
  cursor: pointer;
  padding: 18px 0;
  font-family: "Outfit", Arial, sans-serif;
  font-weight: 800;
}

details p {
  padding: 0 0 18px;
  color: var(--muted);
}

.lead-form {
  display: grid;
  gap: 14px;
}

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

.field {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--background);
  padding: 12px 14px;
  color: var(--text);
}

textarea.field {
  min-height: 135px;
  resize: vertical;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}

.form-success {
  display: none;
  border: 1px solid rgba(41, 153, 102, 0.35);
  border-radius: var(--radius);
  background: var(--accent-soft);
  color: var(--accent-dark);
  padding: 14px;
  font-weight: 800;
}

.form-success.active {
  display: block;
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
}

.contact-item strong {
  display: block;
  font-family: "Outfit", Arial, sans-serif;
}

.breadcrumb {
  padding: 20px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--accent-dark);
  font-weight: 800;
}

.article {
  max-width: 860px;
  margin-inline: auto;
  padding: 44px 0 86px;
}

.article h1 {
  margin-bottom: 16px;
  font-size: 3.15rem;
}

.article-meta {
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 0.95rem;
}

.article-content {
  display: grid;
  gap: 24px;
}

.article-content h2 {
  margin-top: 24px;
  font-size: 2rem;
}

.article-content h3 {
  margin-top: 10px;
  font-size: 1.35rem;
}

.article-content ul {
  padding-left: 22px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

th,
td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

tr:last-child td {
  border-bottom: 0;
}

th {
  font-family: "Outfit", Arial, sans-serif;
  background: var(--surface);
}

.ad-unit {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  margin: 10px 0;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.85rem;
}

.adsbygoogle {
  display: block;
  width: 100%;
}

.text-dark {
  color: var(--text);
}

.text-center {
  text-align: center;
}

.narrow {
  max-width: 760px;
  margin: 0 auto;
}

.no-pad {
  padding: 0;
}

.mt-10 {
  margin-top: 10px;
}

.mt-14 {
  margin-top: 14px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-18 {
  margin-top: 18px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-42,
.article-faq {
  margin-top: 42px;
}

.mb-18 {
  margin-bottom: 18px;
}

.price-highlight {
  color: var(--accent-dark);
  font-weight: 800;
}

.pricing-proof {
  margin-top: 20px;
  color: #66dfa5;
  font-weight: 800;
}

.blog-card-title {
  font-size: 1.5rem;
  margin-top: 10px;
}

.thank-you-card {
  max-width: 650px;
  margin: 40px auto;
}

.thank-you-copy {
  margin: 16px 0 26px;
}

.site-footer {
  background: var(--dark);
  color: var(--on-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 34px;
  padding: 58px 0 38px;
}

.site-footer img {
  width: 120px;
  margin-bottom: 12px;
  filter: brightness(1.8);
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
}

.site-footer a:hover {
  color: #60dca1;
}

.site-footer h3 {
  margin-bottom: 14px;
  font-size: 1.1rem;
}

.site-footer ul {
  display: grid;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.map-frame {
  width: 100%;
  height: 180px;
  border: 0;
  border-radius: var(--radius);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sticky-actions {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  z-index: 90;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.sticky-actions a {
  pointer-events: auto;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--on-dark);
  box-shadow: var(--shadow);
  font-weight: 900;
}

.sticky-actions a.whatsapp {
  background: #25d366;
}

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

@media (max-width: 980px) {
  main {
    padding-top: 64px;
  }

  body.floating-header main {
    padding-top: 0;
  }

  .site-header .container {
    width: min(100% - 48px, 1400px);
  }

  .nav {
    height: 64px;
    min-height: 64px;
  }

  .brand img {
    height: 112px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav-panel {
    position: fixed;
    inset: 64px 0 auto 0;
    display: none;
    max-height: calc(100vh - 64px);
    overflow: auto;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
  }

  .nav-panel.active {
    display: block;
  }

  .nav-panel .container {
    display: grid;
    gap: 10px;
    padding: 16px 0 18px;
  }

  .nav-panel a {
    color: var(--text);
    padding: 8px 0;
    font-weight: 500;
  }

  .nav-panel .btn {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
    padding: 12px;
    color: var(--on-dark);
    font-weight: 600;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .split,
  .grid.two,
  .grid.three,
  .grid.four,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .brand img {
    height: 96px;
  }

  .hero {
    min-height: 520px;
  }

  .hero-content {
    padding: 82px 0 70px;
  }

  .hero h1,
  .article h1 {
    max-width: 100%;
    font-size: 2rem;
    overflow-wrap: break-word;
  }

  .hero p {
    max-width: 100%;
    font-size: 1rem;
    overflow-wrap: break-word;
  }

  .section {
    padding: 62px 0;
  }

  .section h2 {
    font-size: 2rem;
    overflow-wrap: break-word;
  }

  .split,
  .grid.two,
  .grid.three,
  .grid.four,
  .stats,
  .check-list.two,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .price-row {
    grid-template-columns: 1fr;
  }

  .price-row strong {
    text-align: left;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 420px) {
  .hero h1,
  .article h1 {
    font-size: 1.82rem;
  }

  .hero p {
    font-size: 0.96rem;
  }

  .section h2 {
    font-size: 1.74rem;
  }
}
