:root {
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
  --background: #fcfcfc;
  --foreground: #14231b;
  --card: #ffffff;
  --primary: #18432f;
  --primary-foreground: #fafafa;
  --secondary: #edf6ef;
  --muted: #f0f5f1;
  --muted-foreground: #67756d;
  --accent: #6bb82f;
  --accent-foreground: #14231b;
  --border: #e1e9e3;
  --shadow: 0 18px 45px rgba(20, 35, 27, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  line-height: 1.6;
}

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

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

.container {
  width: min(100% - 32px, 1180px);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
}

.site-header.is-scrolled,
.site-header.solid {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 3px 18px rgba(20, 35, 27, 0.06);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.site-header.is-scrolled .brand,
.site-header.solid .brand {
  color: var(--foreground);
}

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

.brand-text {
  display: block;
}

.brand-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 19px;
  line-height: 1;
}

.brand-subtitle {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-header.is-scrolled .brand-subtitle,
.site-header.solid .brand-subtitle {
  color: var(--muted-foreground);
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.site-header.is-scrolled .nav-links a,
.site-header.solid .nav-links a {
  color: rgba(20, 35, 27, 0.74);
}

.nav-links a:hover,
.nav-links a.active,
.site-header.is-scrolled .nav-links a:hover,
.site-header.solid .nav-links a:hover,
.site-header.is-scrolled .nav-links a.active,
.site-header.solid .nav-links a.active {
  color: var(--accent);
}

.phone-link {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.site-header.is-scrolled .phone-link,
.site-header.solid .phone-link {
  color: var(--foreground);
}

.menu-toggle {
  position: relative;
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

.menu-toggle::before {
  content: "";
  width: 20px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 -7px 0 currentColor, 0 7px 0 currentColor;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.menu-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open::before {
  width: 20px;
  height: 2px;
  box-shadow: none;
  transform: rotate(45deg);
}

.menu-toggle.is-open::after {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.site-header.is-scrolled .menu-toggle,
.site-header.solid .menu-toggle {
  background: var(--secondary);
  color: var(--foreground);
}

.mobile-menu {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

.btn-accent {
  background: var(--accent);
  color: var(--accent-foreground);
}

.btn-light {
  border-color: rgba(255, 255, 255, 0.36);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero {
  padding: 150px 0 86px;
  background: var(--primary);
  color: var(--primary-foreground);
  text-align: center;
}

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

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

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.28));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 150px 0 90px;
  color: #fff;
}

.eyebrow {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 9px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 700;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-heading);
  line-height: 1.12;
}

h1 {
  font-size: clamp(42px, 6vw, 68px);
}

h2 {
  font-size: clamp(32px, 4vw, 46px);
}

h3 {
  font-size: 22px;
}

.hero p,
.page-hero p,
.section-intro p {
  color: inherit;
  font-size: 18px;
}

.hero p {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.82);
}

.accent {
  color: var(--accent);
}

.hero-buttons,
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 38px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 700;
}

.section {
  padding: 88px 0;
}

.hero + .section {
  padding-top: 64px;
  background: #fff;
}

.section.alt {
  background: rgba(237, 246, 239, 0.64);
}

.section-intro {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-intro p {
  color: var(--muted-foreground);
}

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

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

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

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

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(24, 67, 47, 0.24);
  box-shadow: var(--shadow);
}

.feature-card,
.testimonial-card,
.contact-card {
  padding: 30px;
  text-align: center;
}

.icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: var(--secondary);
  color: var(--primary);
}

.icon::before {
  display: none;
}

.icon svg {
  width: 28px;
  height: 28px;
  display: block;
  fill: currentColor;
}

.icon-shield {
  --icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2 4 5v6c0 5 3.4 9.7 8 11 4.6-1.3 8-6 8-11V5l-8-3Zm-1.1 14.5-3.6-3.6 1.4-1.4 2.2 2.2 4.8-4.8 1.4 1.4-6.2 6.2Z'/%3E%3C/svg%3E");
}

.icon-leaf {
  --icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M20.7 3.3C13.7 3.1 7.9 5 5 9c-2.4 3.3-1.7 7.1.8 9.1l-2.3 2.3 1.4 1.4 2.4-2.4c2.4 1.3 5.9.9 8.5-1.7 3.4-3.4 4.9-8.8 4.9-14.4ZM8.7 17.4c2.2-4.7 5.4-7.8 8.7-9.6-2.3 2.4-4.1 5.8-5.6 9.7-1.1.5-2.2.5-3.1-.1Z'/%3E%3C/svg%3E");
}

.icon-settings {
  --icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='m19.4 13.5.1-1.5-.1-1.5 2.1-1.6-2-3.5-2.6 1a9 9 0 0 0-2.6-1.5L14 2h-4l-.4 2.9A9 9 0 0 0 7 6.4l-2.6-1-2 3.5 2.1 1.6-.1 1.5.1 1.5-2.1 1.6 2 3.5 2.6-1a9 9 0 0 0 2.6 1.5L10 22h4l.4-2.9a9 9 0 0 0 2.6-1.5l2.6 1 2-3.5-2.2-1.6ZM12 15.5A3.5 3.5 0 1 1 12 8a3.5 3.5 0 0 1 0 7.5Z'/%3E%3C/svg%3E");
}

.icon-star {
  --icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='m12 2 2.9 6 6.6.9-4.8 4.6 1.1 6.5L12 17l-5.8 3 1.1-6.5-4.8-4.6 6.6-.9L12 2Z'/%3E%3C/svg%3E");
}

.icon-home {
  --icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 3 2 11h3v9h6v-6h2v6h6v-9h3L12 3Z'/%3E%3C/svg%3E");
}

.icon-building {
  --icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 21V3h11v4h5v14h-6v-4h-4v4H4Zm3-14h2V5H7v2Zm4 0h2V5h-2v2ZM7 11h2V9H7v2Zm4 0h2V9h-2v2Zm4 0h2V9h-2v2ZM7 15h2v-2H7v2Zm4 0h2v-2h-2v2Zm4 0h2v-2h-2v2Z'/%3E%3C/svg%3E");
}

.icon-sparkle {
  --icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='m12 2 1.8 5.6L19 10l-5.2 2.4L12 18l-1.8-5.6L5 10l5.2-2.4L12 2Zm7 11 1 3 3 1-3 1-1 3-1-3-3-1 3-1 1-3ZM5 14l.8 2.2L8 17l-2.2.8L5 20l-.8-2.2L2 17l2.2-.8L5 14Z'/%3E%3C/svg%3E");
}

.icon-phone {
  --icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.6 10.8c1.5 3 3.7 5.1 6.6 6.6l2.2-2.2c.3-.3.8-.4 1.2-.3 1.3.4 2.7.6 4.1.6.7 0 1.3.6 1.3 1.3v3.6c0 .7-.6 1.3-1.3 1.3C10.4 21.7 2.3 13.6 2.3 3.3 2.3 2.6 2.9 2 3.6 2h3.6c.7 0 1.3.6 1.3 1.3 0 1.4.2 2.8.6 4.1.1.4 0 .9-.3 1.2l-2.2 2.2Z'/%3E%3C/svg%3E");
}

.icon-map {
  --icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a7 7 0 0 0-7 7c0 5.2 7 13 7 13s7-7.8 7-13a7 7 0 0 0-7-7Zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5Z'/%3E%3C/svg%3E");
}

.icon-clock {
  --icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm1 11h5v-2h-4V6h-2v7Z'/%3E%3C/svg%3E");
}

.service-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.service-card .card-body {
  padding: 24px;
}

.service-card p,
.feature-card p,
.testimonial-card p,
.contact-card p,
.split-copy p,
.legal p,
.legal li {
  color: var(--muted-foreground);
}

.learn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 800;
}

.guarantee-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(260px, 0.55fr);
  gap: 28px;
  align-items: center;
  margin-top: 42px;
  padding: 30px;
  border: 1px solid rgba(24, 67, 47, 0.16);
  border-radius: 18px;
  background: linear-gradient(135deg, #ffffff 0%, #f7fbf4 100%);
  box-shadow: 0 18px 45px rgba(20, 35, 27, 0.08);
}

.guarantee-mark {
  width: 112px;
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary);
  color: #f5bd1f;
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.08);
}

.guarantee-mark span {
  max-width: 74px;
  text-align: center;
  line-height: 1.1;
  letter-spacing: 2px;
  font-size: 17px;
}

.guarantee-copy h3 {
  margin-top: 8px;
  font-size: clamp(28px, 3vw, 36px);
}

.guarantee-copy p,
.guarantee-note,
.inline-guarantee p {
  color: var(--muted-foreground);
}

.guarantee-copy p {
  margin-bottom: 0;
}

.guarantee-note {
  padding: 20px;
  border-left: 4px solid var(--accent);
  background: rgba(237, 246, 239, 0.72);
  font-size: 15px;
}

.guarantee-note strong,
.inline-guarantee strong {
  color: var(--foreground);
}

.inline-guarantee {
  margin: 24px 0 4px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(237, 246, 239, 0.58);
}

.inline-guarantee .stars {
  margin-bottom: 8px;
}

.inline-guarantee p {
  margin: 8px 0 0;
  font-size: 15px;
}

.testimonial-card {
  position: relative;
  text-align: left;
}

.stars {
  color: #f5bd1f;
  letter-spacing: 2px;
}

.avatar {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-foreground);
  font-weight: 800;
}

.person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.cta {
  position: relative;
  overflow: hidden;
  background: var(--primary);
  color: var(--primary-foreground);
  text-align: center;
}

.cta p {
  max-width: 680px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.cta .cta-buttons {
  justify-content: center;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.split-image {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.split-image img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.check-list {
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 12px 0;
  padding-left: 30px;
}

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

.service-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.tab-button {
  border: 0;
  border-radius: 999px;
  padding: 13px 18px;
  background: var(--secondary);
  color: var(--primary);
  font: 800 14px var(--font-body);
  cursor: pointer;
}

.tab-button.active {
  background: var(--primary);
  color: var(--primary-foreground);
}

.service-panel {
  display: none;
}

.service-panel.active {
  display: grid;
}

.quote-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.6fr;
  gap: 42px;
  align-items: start;
}

.form-frame {
  width: 100%;
  min-height: 900px;
  border: 0;
  border-radius: 10px;
}

.legal {
  max-width: 860px;
  margin: 0 auto;
}

.legal h2 {
  margin-top: 38px;
  margin-bottom: 14px;
  font-size: 30px;
}

.legal h2:first-child {
  margin-top: 0;
}

.legal p,
.legal li {
  font-size: 16px;
}

.legal ul {
  margin: 0 0 22px;
  padding-left: 22px;
}

.footer {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 64px 0 30px;
}

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

.footer p,
.footer a,
.footer li {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer h4 {
  margin-bottom: 16px;
  font-size: 19px;
}

.footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer li {
  margin: 9px 0;
}

.footer a:hover {
  color: #fff;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand img {
  width: auto;
  height: 48px;
  filter: brightness(0) invert(1);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 46px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom div {
  display: flex;
  gap: 18px;
}

@media (max-width: 900px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu {
    padding: 0 16px 22px;
    background: #fff;
    border-top: 1px solid var(--border);
  }

  .mobile-menu.open {
    display: block;
  }

  .mobile-menu a {
    display: block;
    padding: 12px 0;
    color: var(--foreground);
    font-weight: 700;
  }

  .grid-3,
  .grid-4,
  .footer-grid,
  .quote-layout {
    grid-template-columns: 1fr;
  }

  .grid-2,
  .split,
  .service-panel.active,
  .guarantee-panel {
    grid-template-columns: 1fr;
  }

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

  .guarantee-mark {
    margin: 0 auto;
  }

  .guarantee-note {
    text-align: left;
  }

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

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

  .nav {
    height: 72px;
  }

  .brand-name {
    font-size: 17px;
  }

  .hero-content {
    padding: 120px 0 64px;
  }

  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 68px 0;
  }

  .hero + .section {
    padding-top: 48px;
  }

  .page-hero {
    padding: 124px 0 62px;
  }

  .feature-card,
  .testimonial-card,
  .contact-card {
    padding: 24px;
  }
}
