:root {
  --ink: #172421;
  --muted: #66736f;
  --paper: #f8faf8;
  --white: #ffffff;
  --teal: #087a74;
  --teal-dark: #075c58;
  --coral: #e05c45;
  --gold: #f2bd5c;
  --line: #dfe7e3;
  --shadow: 0 18px 50px rgba(16, 35, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(14, 32, 29, 0.74), rgba(14, 32, 29, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  color: var(--ink);
  background: var(--gold);
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a {
  opacity: 0.92;
}

.nav-links a:hover {
  opacity: 1;
}

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

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.language-button {
  min-width: 42px;
  border: 0;
  border-radius: 999px;
  padding: 6px 10px;
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 900;
}

.language-button.active {
  color: var(--ink);
  background: var(--gold);
}

.hero {
  position: relative;
  display: grid;
  min-height: 82svh;
  align-items: center;
  overflow: hidden;
  padding: 110px clamp(20px, 6vw, 76px) 64px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(10, 24, 22, 0.92) 0%, rgba(10, 24, 22, 0.72) 42%, rgba(10, 24, 22, 0.2) 78%),
    url("assets/hero-local-seo.png") center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(248, 250, 248, 0), var(--paper));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 5.3vw, 5.1rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
}

.hero-actions,
.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 20px;
  cursor: pointer;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 14px 30px rgba(224, 92, 69, 0.26);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.hero-metrics {
  margin: 36px 0 0;
}

.hero-metrics div {
  min-width: 128px;
  padding-right: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.26);
}

.hero-metrics div:last-child {
  border-right: 0;
}

.hero-metrics dt {
  font-size: 1.55rem;
  font-weight: 900;
}

.hero-metrics dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(110px, 1fr));
  gap: 1px;
  max-width: 1160px;
  margin: -22px auto 0;
  padding: 0 clamp(18px, 4vw, 30px);
  position: relative;
  z-index: 3;
}

.trust-strip span {
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  background: var(--white);
  font-weight: 800;
  color: var(--teal-dark);
  text-align: center;
}

.section {
  padding: clamp(64px, 8vw, 112px) clamp(20px, 6vw, 76px);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(30px, 6vw, 70px);
  align-items: start;
  max-width: 1240px;
  margin: 0 auto;
}

.section-copy p,
.section-heading p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

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

.service-card,
.expertise-card,
.price-card,
.process-list li,
.review-card,
.review-form,
.lead-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(32, 49, 45, 0.06);
}

.service-card {
  padding: 26px;
}

.service-card p,
.expertise-card p,
.process-list p,
.price-card li,
.review-card p {
  color: var(--muted);
}

.icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 8px;
  color: var(--teal);
  background: #e5f4f0;
}

.icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-section {
  background: #eef4f1;
}

.expertise-section {
  max-width: 1240px;
  margin: 0 auto;
}

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

.expertise-card {
  padding: 26px;
}

.expertise-card h3::before {
  content: "";
  display: block;
  width: 34px;
  height: 4px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--coral);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.process-list li {
  padding: 28px;
}

.process-list span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--coral);
  font-size: 0.86rem;
  font-weight: 900;
}

.pricing-section {
  max-width: 1240px;
  margin: 0 auto;
}

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

.price-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
}

.price-card.featured {
  border-color: rgba(224, 92, 69, 0.5);
  box-shadow: var(--shadow);
}

.tag {
  display: inline-flex;
  margin-bottom: 16px;
  border-radius: 999px;
  padding: 5px 11px;
  color: var(--teal-dark);
  background: #e5f4f0;
  font-size: 0.86rem;
  font-weight: 900;
}

.featured .tag {
  color: #74301f;
  background: #ffe4db;
}

.discount-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  margin: 0 0 18px;
  border-radius: 8px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 14px 28px rgba(224, 92, 69, 0.22);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 900;
  line-height: 1;
}

.discount-badge.teal {
  background: var(--teal);
  box-shadow: 0 14px 28px rgba(8, 122, 116, 0.18);
}

.discount-badge.neutral {
  color: var(--teal-dark);
  background: #e5f4f0;
  box-shadow: none;
  font-size: 1.25rem;
}

.custom-card {
  border-color: rgba(8, 122, 116, 0.32);
}

.was-price {
  margin-bottom: 10px;
  color: var(--muted);
  font-weight: 800;
}

.was-price s {
  color: #8a9792;
  text-decoration-thickness: 2px;
}

.price-card h3 {
  margin-bottom: 4px;
  font-size: clamp(2.1rem, 3.2vw, 3.4rem);
  line-height: 1;
  white-space: nowrap;
}

.price-card h3 span {
  font-size: 1rem;
  color: var(--muted);
}

.price-note {
  color: var(--teal-dark);
  font-weight: 800;
}

.price-card ul {
  display: grid;
  gap: 9px;
  margin: 24px 0 0;
  padding: 0 0 0 20px;
}

.addon-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
  border: 1px solid #f0d18f;
  border-radius: 8px;
  padding: 18px 20px;
  background: #fff7e6;
  text-align: center;
}

.addon-bar b {
  color: var(--coral);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(30px, 6vw, 70px);
  align-items: start;
  background: var(--ink);
  color: var(--white);
}

.contact-copy {
  max-width: 560px;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  color: var(--ink);
}

label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(8, 122, 116, 0.14);
}

.full {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--teal-dark);
  font-weight: 800;
}

.hidden-frame {
  position: absolute;
  width: 1px;
  height: 1px;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.faq-section {
  max-width: 1040px;
  margin: 0 auto;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px 24px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(32, 49, 45, 0.06);
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 900;
}

.faq-list p {
  margin: 14px 0 0;
  color: var(--muted);
}

.reviews-section {
  max-width: 1240px;
  margin: 0 auto;
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(310px, 0.9fr);
  gap: 22px;
  align-items: start;
}

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

.review-card {
  padding: 24px;
}

.review-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.review-card strong {
  font-size: 1.05rem;
}

.review-meta {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 8px;
  border-radius: 999px;
  padding: 4px 9px;
  color: var(--teal-dark) !important;
  background: rgba(8, 122, 116, 0.1);
  font-size: 0.78rem;
  font-weight: 900;
}

.stars {
  color: #c98211;
  font-weight: 900;
  white-space: nowrap;
}

.review-form {
  display: grid;
  gap: 16px;
  padding: 26px;
}

.review-form .button.secondary {
  color: var(--teal-dark);
  border-color: var(--line);
  background: #e5f4f0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 6vw, 76px);
  color: rgba(255, 255, 255, 0.78);
  background: #101917;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--gold);
  font-weight: 900;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
  }

  .header-actions {
    justify-content: flex-end;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 88svh;
    background:
      linear-gradient(180deg, rgba(10, 24, 22, 0.94) 0%, rgba(10, 24, 22, 0.76) 58%, rgba(10, 24, 22, 0.44) 100%),
      url("assets/hero-local-seo.png") center / cover no-repeat;
  }

  .trust-strip,
  .split-section,
  .process-list,
  .expertise-grid,
  .pricing-grid,
  .contact-section,
  .reviews-layout {
    grid-template-columns: 1fr;
  }

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

  .section-heading {
    text-align: left;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 12px;
    padding-top: 16px;
  }

  .brand {
    font-size: 0.92rem;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .language-button {
    min-width: 38px;
    padding: 5px 8px;
  }

  .hero {
    padding-top: 92px;
  }

  .hero-actions,
  .button,
  .addon-bar,
  .site-footer {
    width: 100%;
  }

  .hero-metrics div {
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 12px;
  }

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

  .discount-badge {
    width: 100%;
  }

  .addon-bar,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}
