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

:root {
  --ink: #151513;
  --text: #252525;
  --muted: #60615f;
  --line: #dedbd4;
  --paper: #ffffff;
  --soft: #f5f3ef;
  --smoke: #eceae4;
  --green: #24b857;
  --green-dark: #168941;
  --gold: #d5ae36;
  --charcoal: #20211f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

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

button,
input {
  font: inherit;
}

.site-page {
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--paper);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgb(21 21 19 / 0.08);
  background: rgb(255 255 255 / 0.94);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  width: min(1180px, calc(100% - 48px));
  min-height: 78px;
  margin: 0 auto;
}

.brand {
  display: inline-grid;
  grid-template-columns: 54px auto;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgb(21 21 19 / 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgb(36 184 87 / 0.16), transparent 55%),
    #151513;
  color: #ffffff;
  font-family: "Montserrat", Arial, sans-serif;
  letter-spacing: 0;
}

.brand-mark::before {
  position: absolute;
  inset: 8px;
  border-top: 2px solid var(--green);
  border-left: 2px solid var(--green);
  content: "";
}

.brand-mark::after {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 18px;
  height: 3px;
  background: var(--gold);
  content: "";
}

.brand-mark strong {
  position: relative;
  z-index: 1;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.brand-mark em {
  position: absolute;
  right: 8px;
  bottom: 12px;
  color: rgb(255 255 255 / 0.78);
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.08;
  text-transform: uppercase;
}

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

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

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

.site-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
}

.site-nav a {
  color: #262622;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:hover {
  color: var(--green-dark);
}

.whatsapp-pill,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.whatsapp-pill {
  min-height: 42px;
  padding: 0 20px;
  background: var(--green);
  color: #ffffff;
  font-size: 14px;
  box-shadow: 0 10px 24px rgb(36 184 87 / 0.22);
}

.button {
  min-height: 48px;
  padding: 0 22px;
  font-size: 14px;
}

.button:hover,
.whatsapp-pill:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--green);
  color: #ffffff;
  box-shadow: 0 14px 30px rgb(36 184 87 / 0.25);
}

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

.button.secondary {
  border: 1px solid rgb(255 255 255 / 0.55);
  background: rgb(255 255 255 / 0.12);
  color: #ffffff;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 650px;
  overflow: hidden;
  background-image: url("/assets/hero.jpg");
  background-position: center;
  background-size: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgb(0 0 0 / 0.78) 0%, rgb(0 0 0 / 0.56) 48%, rgb(0 0 0 / 0.24) 100%),
    linear-gradient(180deg, rgb(0 0 0 / 0.18), rgb(0 0 0 / 0.28));
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 92px;
  background: var(--paper);
  clip-path: polygon(0 58%, 100% 22%, 100% 100%, 0 100%);
  content: "";
}

.hero-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 112px 0 150px;
  color: #ffffff;
}

.eyebrow,
.section-kicker,
.section-heading span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  width: min(820px, 100%);
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(44px, 6vw, 74px);
  font-weight: 800;
  line-height: 0.98;
  text-shadow: 0 4px 18px rgb(0 0 0 / 0.45);
}

.hero-lead {
  width: min(650px, 100%);
  margin: 24px 0 0;
  color: rgb(255 255 255 / 0.88);
  font-size: 19px;
  line-height: 1.55;
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 38px;
}

.hero-proof span {
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid rgb(255 255 255 / 0.25);
  border-radius: 8px;
  background: rgb(255 255 255 / 0.1);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
}

.section-wrap {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  align-items: start;
  gap: 48px;
  margin-bottom: 34px;
}

.section-heading.narrow {
  display: block;
  width: min(760px, 100%);
}

.section-heading h2,
.norm-section h2,
.faq-section h2,
.final-inner h2,
.responsible h2,
.contact-form h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.05;
}

.service-band {
  padding: 84px 0 72px;
  background: var(--paper);
}

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

.service-card {
  min-height: 190px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgb(30 28 24 / 0.06);
}

.service-card h3,
.check-panel h3,
.step-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.2;
}

.service-card h3::before {
  display: block;
  width: 34px;
  height: 4px;
  margin-bottom: 20px;
  background: var(--green);
  content: "";
}

.service-card p,
.norm-section p,
.step-card p,
.contact-form p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.norm-section {
  padding: 78px 0;
  background: var(--soft);
}

.norm-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 72px;
  align-items: start;
}

.norm-section p {
  width: min(620px, 100%);
  margin-top: 24px;
  font-size: 18px;
}

.norm-section .note {
  color: var(--ink);
  font-weight: 800;
}

.check-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

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

.check-panel li {
  position: relative;
  padding-left: 28px;
  color: #343432;
  font-weight: 700;
}

.check-panel li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.process-section {
  padding: 86px 0 88px;
  background: #ffffff;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 42px;
}

.step-card {
  position: relative;
  min-width: 0;
  padding-bottom: 4px;
}

.step-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  object-fit: cover;
}

.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-top: -21px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  background: var(--charcoal);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.step-card h3 {
  margin-top: 18px;
}

.reviews-section {
  padding: 78px 0 84px;
  background: var(--smoke);
}

.reviews-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 2px 14px;
  width: fit-content;
  margin: -8px 0 26px 278px;
  padding: 12px 16px;
  border: 1px solid rgb(21 21 19 / 0.08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgb(0 0 0 / 0.06);
}

.reviews-summary strong {
  grid-row: span 2;
  color: var(--green-dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.reviews-summary span {
  color: var(--ink);
  font-weight: 900;
}

.reviews-summary small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.review-card {
  display: flex;
  min-height: 292px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid rgb(21 21 19 / 0.08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 38px rgb(0 0 0 / 0.07);
}

.review-stars {
  color: var(--gold);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0;
}

.review-card p {
  margin: 18px 0 24px;
  color: #2f312d;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}

.review-card strong,
.review-card span {
  display: block;
}

.review-card strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.review-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.faq-section {
  padding: 82px 0;
  background: #ffffff;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 74px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  padding: 20px 0;
  color: var(--ink);
  cursor: pointer;
  font-size: 17px;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  flex: 0 0 auto;
  margin-left: 18px;
  color: var(--green-dark);
  content: "+";
  font-size: 24px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 44px 22px 0;
  color: var(--muted);
  line-height: 1.62;
}

.final-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-image: url("/assets/cta-bg.jpg");
  background-position: center 45%;
  background-size: cover;
}

.final-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgb(0 0 0 / 0.78), rgb(0 0 0 / 0.42));
}

.final-inner {
  display: flex;
  min-height: 390px;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  color: #ffffff;
}

.final-inner h2 {
  width: min(720px, 100%);
  color: #ffffff;
  font-size: clamp(34px, 5vw, 58px);
}

.contact-section {
  padding: 82px 0 78px;
  background: var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 84px;
  align-items: start;
}

.responsible p,
.responsible strong {
  display: block;
  margin: 8px 0 0;
  color: var(--text);
  font-size: 18px;
}

.responsible strong {
  color: var(--ink);
}

.responsible img {
  width: min(360px, 100%);
  margin-top: 28px;
}

.contact-form {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.contact-form h2 {
  font-size: 28px;
}

.contact-form label {
  display: block;
  margin: 18px 0 7px;
  color: var(--ink);
  font-weight: 800;
}

.contact-form label span {
  color: var(--green-dark);
}

.contact-form input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid #c9c3b8;
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
  outline: none;
}

.contact-form input:focus {
  border-color: var(--green-dark);
  box-shadow: 0 0 0 3px rgb(36 184 87 / 0.12);
}

.contact-form button {
  width: 100%;
  min-height: 48px;
  margin-top: 22px;
  border: 0;
  border-radius: 8px;
  background: var(--green);
  color: #ffffff;
  cursor: pointer;
  font-weight: 900;
}

.form-status {
  display: block;
  margin-top: 12px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.site-footer {
  padding: 30px 24px;
  background: var(--ink);
  color: rgb(255 255 255 / 0.88);
  font-size: 14px;
  text-align: center;
}

.site-footer p {
  margin: 6px 0 0;
}

.site-footer a {
  color: #ffffff;
  font-weight: 700;
}

.fine-print {
  color: rgb(255 255 255 / 0.7);
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: auto 42px;
    gap: 16px;
    width: min(100% - 28px, 1180px);
    min-height: 68px;
  }

  .brand {
    grid-template-columns: 46px auto;
  }

  .brand-mark,
  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand-mark strong {
    font-size: 19px;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--line);
    background: #ffffff;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 16px 24px;
    border-bottom: 1px solid var(--line);
  }

  .whatsapp-pill {
    display: none;
  }

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

  .hero {
    min-height: auto;
  }

  .hero-inner {
    width: min(100% - 36px, 700px);
    padding: 72px 0 114px;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 58px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .section-wrap {
    width: min(100% - 36px, 700px);
  }

  .section-heading,
  .norm-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .service-band,
  .norm-section,
  .process-section,
  .reviews-section,
  .faq-section,
  .contact-section {
    padding: 58px 0;
  }

  .check-panel,
  .contact-form {
    padding: 24px;
  }

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

  .reviews-summary {
    margin-left: 0;
  }

  .final-inner {
    min-height: 360px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .brand-copy strong {
    font-size: 14px;
  }

  .brand-copy small {
    font-size: 9px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .norm-section h2,
  .faq-section h2,
  .final-inner h2,
  .responsible h2 {
    font-size: 30px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .review-card {
    min-height: auto;
  }

  .faq-list summary {
    min-height: 58px;
    font-size: 15px;
  }

  .faq-list p {
    padding-right: 12px;
    font-size: 14px;
  }
}
