:root {
  --bg: #fbfaf7;
  --ink: #122022;
  --muted: #5d6a6d;
  --line: #dce7e2;
  --teal: #0f766e;
  --teal-dark: #134e4a;
  --green: #16a34a;
  --rose: #a1435b;
  --amber: #d97706;
  --white: #ffffff;
  --shadow: 0 18px 46px rgba(18, 32, 34, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img,
svg {
  display: block;
}

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

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(251, 250, 247, 0.88);
  border-bottom: 1px solid rgba(15, 118, 110, 0.12);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  min-height: 78px;
  padding: 12px clamp(18px, 5vw, 72px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  display: flex;
  gap: 12px;
  min-width: 250px;
}

.brand strong {
  display: block;
  font-size: 1.02rem;
  font-weight: 800;
}

.brand small {
  color: var(--muted);
  display: block;
  font-size: 0.72rem;
  margin-top: 2px;
}

.brand-logo {
  align-items: center;
  border-radius: 8px;
  flex: 0 0 54px;
  height: 54px;
  object-fit: contain;
  width: 54px;
}

.main-nav {
  align-items: center;
  color: #425052;
  display: flex;
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.9rem;
  font-weight: 700;
}

.main-nav a:hover {
  color: var(--teal);
}

.header-call,
.button {
  align-items: center;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 800;
  gap: 10px;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.header-call,
.button.primary,
.form-submit {
  color: var(--white);
}

.button.primary,
.form-submit {
  background: var(--ink);
}

.header-call {
  background: #ff9f3f;
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(255, 159, 63, 0.28);
  min-width: 214px;
}

.button.secondary {
  background: var(--white);
  color: var(--teal-dark);
}

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

.hero {
  min-height: 92vh;
  overflow: hidden;
  position: relative;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 26, 28, 0.82) 0%, rgba(8, 26, 28, 0.58) 43%, rgba(8, 26, 28, 0.18) 100%),
    linear-gradient(0deg, rgba(8, 26, 28, 0.26), transparent 45%);
  inset: 0;
  position: absolute;
}

.hero-content {
  color: var(--white);
  max-width: 700px;
  padding: clamp(124px, 14vh, 158px) clamp(18px, 5vw, 72px) 68px;
  position: relative;
}

.eyebrow,
.label {
  align-items: center;
  display: inline-flex;
  font-size: 0.84rem;
  font-weight: 800;
  gap: 8px;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.eyebrow {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  padding: 10px 12px;
}

.label {
  color: var(--teal);
}

.hero h1 {
  font-size: clamp(2.7rem, 5.8vw, 5.5rem);
  line-height: 1.02;
  margin: 0;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.02rem, 2vw, 1.28rem);
  line-height: 1.75;
  margin: 18px 0 0;
  max-width: 650px;
}

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

.hero-stats {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(90px, 1fr));
  margin: 30px 0 0;
  max-width: 520px;
}

.hero-stats div {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 14px;
}

.hero-stats dt {
  font-size: 1.7rem;
  font-weight: 800;
}

.hero-stats dd {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  margin: 4px 0 0;
}

.trust-strip,
.section,
.about-section,
.seo-service-section,
.local-seo-section,
.faq-section,
.contact-section,
.site-footer {
  padding-left: clamp(18px, 5vw, 72px);
  padding-right: clamp(18px, 5vw, 72px);
}

.trust-strip {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  padding-bottom: 44px;
  padding-top: 44px;
}

.trust-strip article,
.service-grid article,
.process-grid article,
.testimonials article,
.detail-grid article,
.appointment-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 26px rgba(18, 32, 34, 0.06);
}

.trust-strip article,
.service-grid article,
.process-grid article,
.testimonials article,
.detail-grid article {
  padding: 24px;
}

.trust-strip span[data-icon],
.service-grid span[data-icon] {
  align-items: center;
  background: #e5f3ee;
  border-radius: 8px;
  color: var(--teal);
  display: inline-flex;
  height: 44px;
  justify-content: center;
  margin-bottom: 18px;
  width: 44px;
}

.trust-strip h2,
.service-grid h3,
.process-grid h3,
.testimonials h2,
.detail-grid h3 {
  font-size: 1.08rem;
  margin: 0;
}

.trust-strip p,
.service-grid p,
.process-grid p,
.testimonials p,
.seo-copy p,
.detail-grid p,
.local-seo-section p,
.faq-grid p,
.section-heading p,
.about-copy p,
.contact-panel p,
.privacy-note {
  color: var(--muted);
  line-height: 1.72;
}

.section {
  padding-bottom: 76px;
  padding-top: 76px;
}

.section-heading {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  margin-bottom: 38px;
}

.section-heading.centered {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 640px;
  text-align: center;
}

.section-heading h2,
.about-copy h2,
.contact-panel h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.08;
  margin: 0;
}

.section-heading .label {
  grid-column: 1 / -1;
  margin-bottom: -8px;
}

.section-heading p:not(.label) {
  margin: 0;
}

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

.service-grid article {
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.service-grid article:hover {
  border-color: rgba(15, 118, 110, 0.42);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.seo-service-section {
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
  padding-bottom: 80px;
}

.seo-copy h2,
.local-seo-section h2,
.faq-section h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08;
  margin: 0;
}

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

.process-section {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

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

.process-grid article {
  background: var(--bg);
}

.process-grid strong {
  color: rgba(15, 118, 110, 0.28);
  display: block;
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 18px;
}

.about-section {
  background: var(--ink);
  color: var(--white);
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  padding-bottom: 80px;
  padding-top: 80px;
}

.local-seo-section {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  padding-bottom: 76px;
  padding-top: 76px;
}

.about-section .label {
  color: #83d6c8;
}

.about-copy p {
  color: #c6d1d3;
  font-size: 1.04rem;
  max-width: 720px;
}

.about-photo {
  align-self: center;
  justify-self: end;
  margin: 0;
  max-width: 430px;
  width: 100%;
}

.about-photo img {
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.28);
  height: auto;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.session-list {
  align-self: center;
  display: grid;
  gap: 14px;
}

.session-list p {
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  display: flex;
  gap: 12px;
  margin: 0;
  padding: 18px;
}

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

.faq-section {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  padding-bottom: 76px;
  padding-top: 76px;
}

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

.faq-grid details {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
}

.faq-grid summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-grid p {
  margin: 12px 0 0;
}

.stars {
  color: var(--amber);
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.contact-section {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  padding-bottom: 84px;
  padding-top: 76px;
}

.contact-panel {
  background: var(--teal-dark);
  border-radius: 8px;
  color: var(--white);
  padding: clamp(28px, 5vw, 48px);
}

.contact-panel .label,
.contact-panel p {
  color: #d7f4ed;
}

.contact-list {
  display: grid;
  font-style: normal;
  gap: 16px;
  margin-top: 28px;
}

.contact-list > a,
.contact-list > span {
  align-items: center;
  display: flex;
  gap: 12px;
}

.contact-location {
  display: grid;
  gap: 4px;
}

.emergency-note {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  margin-top: 28px;
  padding: 16px;
}

.appointment-form {
  display: grid;
  gap: 17px;
  padding: clamp(24px, 5vw, 44px);
}

.appointment-form h2 {
  font-size: 1.6rem;
  margin: 0 0 4px;
}

.appointment-form label {
  display: grid;
  gap: 8px;
}

.appointment-form label span {
  color: #344245;
  font-size: 0.86rem;
  font-weight: 800;
}

input,
select,
textarea {
  border: 1px solid #cbd8d5;
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  min-height: 48px;
  outline: none;
  padding: 12px 14px;
  width: 100%;
}

textarea {
  min-height: 128px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.14);
}

.form-submit {
  margin-top: 8px;
  width: 100%;
}

.privacy-note {
  font-size: 0.8rem;
  margin: -4px 0 0;
  text-align: center;
}

.floating-whatsapp {
  align-items: center;
  background: var(--green);
  border-radius: 50%;
  bottom: 22px;
  box-shadow: 0 16px 34px rgba(22, 163, 74, 0.34);
  color: var(--white);
  display: flex;
  height: 56px;
  justify-content: center;
  position: fixed;
  right: 22px;
  width: 56px;
  z-index: 20;
}

.site-footer {
  align-items: center;
  background: var(--white);
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.9rem;
  gap: 16px;
  justify-content: space-between;
  padding-bottom: 28px;
  padding-top: 28px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 920px) {
  .main-nav {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(8, 26, 28, 0.82), rgba(8, 26, 28, 0.38));
  }

  .section-heading,
  .seo-service-section,
  .about-section,
  .local-seo-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .about-photo {
    justify-self: start;
    max-width: 360px;
  }

  .trust-strip,
  .service-grid,
  .detail-grid,
  .process-grid,
  .faq-grid,
  .testimonials {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 10px;
    min-height: 68px;
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .brand-logo {
    flex-basis: 44px;
    height: 44px;
    width: 44px;
  }

  .brand strong {
    font-size: 0.96rem;
  }

  .header-call {
    font-size: 0.82rem;
    min-height: 42px;
    min-width: 0;
    padding: 10px;
  }

  .hero-content {
    padding: 100px 18px 54px;
  }

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

  .hero-stats,
  .trust-strip,
  .service-grid,
  .detail-grid,
  .process-grid,
  .faq-grid,
  .testimonials {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    max-width: none;
  }

  .floating-whatsapp {
    bottom: 16px;
    height: 52px;
    right: 16px;
    width: 52px;
  }
}
