:root {
  --brand: #d91e18;
  --brand-dark: #a51611;
  --brand-soft: #fff0ee;
  --ink: #1d1d20;
  --muted: #5f6068;
  --line: #e3e3e6;
  --surface: #ffffff;
  --soft: #f7f7f8;
  --dark: #19191c;
  --shadow: 0 22px 70px rgba(29, 29, 32, 0.12);
  --radius: 24px;
  --content: 1200px;
}

.guarantee-strip{max-width:1180px;margin:1.25rem auto;padding:1.15rem 1.35rem;display:grid;grid-template-columns:auto 1fr auto;gap:1.2rem;align-items:center;border:1px solid #ead4d2;border-radius:16px;background:#fff8f7}.guarantee-strip strong{color:#a91310;font-size:1.03rem}.guarantee-strip p{margin:0;color:#4e4e4e}.guarantee-strip a{color:#a91310;font-weight:800;text-decoration:none;white-space:nowrap}@media(max-width:760px){.guarantee-strip{margin:1rem;grid-template-columns:1fr;gap:.45rem}.guarantee-strip a{margin-top:.25rem}}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a, summary { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { overflow-wrap: break-word; }

:focus-visible { outline: 3px solid #2b6fff; outline-offset: 4px; }
.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
}
.header-inner {
  width: min(calc(100% - 40px), var(--content));
  height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand-logo { display: inline-block; flex: 0 0 auto; line-height: 0; }
.brand-logo img { width: 172px; height: auto; }
.site-header nav { display: flex; align-items: center; gap: 22px; margin-left: auto; }
.site-header nav a { font-size: 13px; font-weight: 750; }
.site-header nav a:hover { color: var(--brand); }
.header-menu { position: relative; flex: 0 0 auto; }
.header-menu > summary { width: 46px; height: 46px; padding: 12px; display: grid; align-content: center; gap: 5px; border: 1px solid var(--line); border-radius: 10px; background: white; cursor: pointer; list-style: none; }
.header-menu > summary::-webkit-details-marker { display: none; }
.header-menu > summary span { height: 2px; border-radius: 2px; background: var(--ink); }
.header-menu > div { position: absolute; top: calc(100% + 10px); right: 0; width: 220px; padding: 10px; display: grid; gap: 2px; border: 1px solid var(--line); border-radius: 14px; background: white; box-shadow: var(--shadow); }
.header-menu > div a { padding: 11px 12px; border-radius: 8px; font-size: 12px; font-weight: 750; }
.header-menu > div a:hover { background: var(--brand-soft); color: var(--brand); }
.language-switch {
  min-height: 38px;
  padding: 5px 9px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
  color: #8a8a91;
  font-size: 10px;
  font-weight: 850;
}
.language-switch a { padding: 6px 4px; }
.language-switch a[aria-current="page"] { color: var(--brand); }
.language-switch a:hover { color: var(--brand-dark); }
.header-cta,
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.2;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.header-cta { padding: 12px 17px; background: var(--brand); color: white; }
.header-cta svg,
.button svg,
.floating-whatsapp svg { width: 20px; height: 20px; flex: 0 0 auto; fill: currentColor; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 10%, rgba(217, 30, 24, 0.12), transparent 31%),
    linear-gradient(180deg, #fff 0%, #fafafa 100%);
}
.hero::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  left: -250px;
  bottom: -190px;
  border: 55px solid rgba(217, 30, 24, 0.07);
  border-radius: 50%;
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--content));
  min-height: 660px;
  margin: 0 auto;
  padding: 66px 0 70px;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: clamp(44px, 6vw, 88px);
}
.hero-copy { min-width: 0; }
.eyebrow {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}
.eyebrow > span { width: 26px; height: 2px; flex: 0 0 auto; background: currentColor; }
.hero h1,
.section h2,
.problem-section h2,
.process-section h2,
.faq-section h2,
.area-section h2,
.final-cta h2 {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.02;
}
.hero h1 { max-width: 680px; font-size: clamp(48px, 5.6vw, 76px); }
.hero h1 em { color: var(--brand); font-style: normal; }
.hero-lead {
  max-width: 620px;
  margin: 26px 0 30px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
.hero-actions { display: flex; align-items: center; gap: 12px; }
.button { padding: 16px 21px; }
.button-primary { background: var(--brand); color: white; box-shadow: 0 13px 28px rgba(217, 30, 24, 0.22); }
.button-secondary { border: 1px solid #cfcfd3; background: white; color: var(--ink); }
.quick-facts {
  max-width: 600px;
  margin: 38px 0 0;
  padding: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  list-style: none;
}
.quick-facts li { display: flex; flex-direction: column; gap: 5px; }
.quick-facts li + li { padding-left: 22px; border-left: 1px solid var(--line); }
.quick-facts strong { font-size: 19px; line-height: 1.1; }
.quick-facts span { color: var(--muted); font-size: 11px; }

.hero-visual { position: relative; min-width: 0; }
.photo-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 90px 18px 18px 18px;
  background: #ececee;
  box-shadow: var(--shadow);
}
.photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(25, 25, 28, 0.05), transparent 45%);
  pointer-events: none;
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.price-card,
.location-card {
  position: absolute;
  z-index: 2;
  background: white;
  box-shadow: 0 18px 45px rgba(29, 29, 32, 0.18);
}
.price-card {
  top: 28px;
  right: -22px;
  min-width: 150px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  border-left: 4px solid var(--brand);
  border-radius: 4px 12px 12px 4px;
}
.price-card small { color: var(--muted); font-size: 8px; font-weight: 850; letter-spacing: 0.12em; }
.price-card strong { margin: 5px 0 2px; color: var(--brand); font-size: 30px; line-height: 1; }
.price-card span { color: var(--muted); font-size: 9px; }
.location-card {
  left: -24px;
  bottom: 25px;
  padding: 13px 17px;
  display: flex;
  align-items: center;
  gap: 11px;
  border-radius: 12px;
}
.location-card > b {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
}
.location-card > span { display: flex; flex-direction: column; gap: 3px; }
.location-card strong { font-size: 11px; }
.location-card small { color: var(--muted); font-size: 9px; }

.trust-strip {
  min-height: 64px;
  padding: 18px max(20px, calc((100% - var(--content)) / 2));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  background: var(--brand);
  color: white;
}
.trust-strip div { text-align: center; font-size: 11px; font-weight: 800; letter-spacing: 0.03em; }
.trust-strip span { margin-right: 6px; }

.deferred { content-visibility: auto; contain-intrinsic-size: auto 760px; }
.section { padding: 104px max(20px, calc((100% - var(--content)) / 2)); }
.section-heading {
  margin-bottom: 50px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 52px;
}
.section-heading h2,
.problem-section h2,
.process-section h2,
.faq-section h2,
.area-section h2,
.final-cta h2 { font-size: clamp(38px, 4.3vw, 60px); }
.section-heading > p { max-width: 430px; margin: 0 0 4px; color: var(--muted); font-size: 14px; line-height: 1.75; }
.section-heading.compact { margin-bottom: 42px; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  position: relative;
  min-width: 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  color: inherit;
  text-decoration: none;
}
.service-card-image { width: calc(100% + 60px); max-width: none; height: 210px; margin: -30px -30px 0; object-fit: cover; border-radius: var(--radius) var(--radius) 0 0; }
.service-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--brand-soft);
  color: var(--brand);
}
.service-icon svg { width: 42px; height: 42px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2.2; }
.service-number { position: absolute; top: 34px; right: 30px; color: #c7c7cc; font-size: 11px; font-weight: 900; letter-spacing: 0.12em; }
.service-card h3 { margin: 25px 0 12px; font-size: 22px; letter-spacing: -0.025em; }
.service-card > p { min-height: 72px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.75; }
.service-card ul { margin: 20px 0; padding: 20px 0; display: flex; flex-wrap: wrap; gap: 7px; border-block: 1px solid var(--line); list-style: none; }
.service-card li { padding: 6px 9px; border-radius: 999px; background: var(--soft); color: var(--muted); font-size: 10px; font-weight: 700; }
.service-card-cta { margin-top: 14px; display: flex; align-items: center; justify-content: space-between; color: var(--brand); font-size: 12px; font-weight: 850; }
.why-section { padding-block: 72px; background: var(--soft); }
.why-section .section-heading { margin-bottom: 30px; }
.why-section .section-heading h2 { font-size: clamp(32px, 3.7vw, 48px); }
.why-grid { max-width: 920px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.why-grid article { padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: white; }
.why-grid h3 { margin: 0 0 7px; font-size: 17px; }
.why-grid p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.58; }
.combined-results { background: white; }
.area-list { margin: 24px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.area-list li { padding: 8px 11px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; background: rgba(255,255,255,.08); color: white; font-size: 10px; font-weight: 750; }

.pricing-section { padding: 104px 20px; background: var(--soft); }
.pricing-inner { width: min(100%, var(--content)); margin: 0 auto; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.price-panel {
  min-width: 0;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 14px 40px rgba(29, 29, 32, 0.06);
}
.price-panel.featured { border-color: #efaaa7; box-shadow: 0 18px 48px rgba(217, 30, 24, 0.1); }
.price-panel-link { display: block; color: inherit; text-decoration: none; }
.price-kicker { color: var(--brand); font-size: 9px; font-weight: 900; letter-spacing: 0.14em; }
.price-panel h3 { margin: 9px 0 22px; font-size: 23px; letter-spacing: -0.03em; }
.price-subtitle { margin: 0 0 8px; color: var(--muted); font-size: 10px; font-weight: 850; letter-spacing: 0.1em; text-transform: uppercase; }
.price-subtitle.office { margin-top: 22px; }
.price-list { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.price-list li,
.price-extras li { min-height: 52px; padding: 13px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; border-bottom: 1px solid var(--line); }
.price-list li > span,
.price-extras li > span { color: var(--muted); font-size: 12px; line-height: 1.45; }
.price-list strong,
.price-extras strong { flex: 0 0 auto; color: var(--ink); font-size: 14px; text-align: right; }
.compact-list li { min-height: 46px; }
.mattress-list li { min-height: 45px; }
.price-extras { margin-top: 18px; border: 1px solid #f0c9c6; border-radius: 12px; background: var(--brand-soft); }
.price-extras summary { min-height: 48px; padding: 12px 14px; display: flex; align-items: center; justify-content: space-between; gap: 14px; color: var(--brand-dark); cursor: pointer; font-size: 12px; font-weight: 850; list-style: none; }
.price-extras summary::-webkit-details-marker { display: none; }
.price-extras summary span { font-size: 19px; font-weight: 500; transition: transform 150ms ease; }
.price-extras[open] summary span { transform: rotate(45deg); }
.price-extras ul { margin: 0; padding: 0 14px 8px; list-style: none; }
.price-extras li { min-height: 45px; border-color: #ecc3c0; }
.price-extras li:last-child { border-bottom: 0; }
.price-extras li > span { font-size: 10px; }
.price-extras strong { max-width: 60%; font-size: 10px; }
.price-page-link { margin-top: 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px; color: var(--brand); font-size: 11px; font-weight: 850; }
.pricing-action { margin-top: 28px; padding: 24px; display: flex; align-items: center; justify-content: space-between; gap: 28px; border-radius: 16px; background: var(--dark); color: white; }
.pricing-action p { max-width: 650px; margin: 0; color: #c4c4ca; font-size: 12px; line-height: 1.7; }
.poster-heading { margin: 86px 0 34px; display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.poster-heading h3 { margin: 0; font-size: clamp(28px, 3vw, 42px); letter-spacing: -0.04em; }
.poster-heading > p { max-width: 390px; margin: 0 0 4px; color: var(--muted); font-size: 12px; line-height: 1.7; }
.poster-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.poster-card { overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: white; box-shadow: 0 16px 45px rgba(29, 29, 32, 0.08); }
.poster-card img { width: 100%; height: auto; background: white; }
.poster-card > span { min-height: 60px; padding: 14px 17px; display: flex; align-items: center; justify-content: space-between; gap: 14px; color: var(--muted); font-size: 11px; font-weight: 750; }
.poster-card b { width: 29px; height: 29px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; background: var(--brand-soft); color: var(--brand); font-size: 14px; }

.results-section { background: white; }
.results-category + .results-category { margin-top: 68px; }
.results-category-heading {
  margin-bottom: 20px;
  padding-bottom: 14px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
}
.results-category-heading h3 { margin: 0; font-size: 24px; letter-spacing: -0.03em; }
.results-category-heading span { color: var(--brand); font-size: 9px; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.results-category-heading span b { margin-left: 7px; font-size: 15px; }
.results-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 40px) / 3);
  gap: 20px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 2px 2px 16px;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--brand) #ececef;
  scrollbar-width: thin;
}
.results-slider::-webkit-scrollbar { height: 7px; }
.results-slider::-webkit-scrollbar-track { border-radius: 999px; background: #ececef; }
.results-slider::-webkit-scrollbar-thumb { border-radius: 999px; background: var(--brand); }
.results-carousel { position: relative; }
.results-controls { min-height: 44px; margin-bottom: 12px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.results-controls > span { color: var(--muted); font-size: 11px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.results-controls > div { display: flex; gap: 8px; }
.results-controls button { width: 40px; height: 40px; border: 1px solid #d7d7da; border-radius: 50%; background: white; color: var(--ink); cursor: pointer; font-size: 18px; font-weight: 800; }
.results-controls button:hover { border-color: var(--brand); color: var(--brand); }
.result-card {
  min-width: 0;
  overflow: hidden;
  margin: 0;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: white;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 14px 38px rgba(29, 29, 32, 0.07);
}
.result-image-wrap { position: relative; overflow: hidden; aspect-ratio: 1; background: #ececee; }
.result-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.comparison-label {
  position: absolute;
  top: 12px;
  min-width: 64px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  color: white;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(5px);
}
.before-label { left: 12px; background: rgba(25, 25, 28, 0.78); }
.after-label { right: 12px; background: rgba(181, 22, 17, 0.88); }
.result-caption { padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px; color: var(--muted); font-size: 10px; font-weight: 750; }
.result-caption b { color: var(--brand); font-size: 15px; }
.problem-section {
  padding: 90px max(20px, calc((100% - var(--content)) / 2));
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
  background: var(--dark);
  color: white;
}
.eyebrow-light { color: #ffaaa7; }
.problem-copy > p:not(.eyebrow) { max-width: 650px; margin: 24px 0 0; color: #bdbdc4; font-size: 14px; line-height: 1.8; }
.problem-list { margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; list-style: none; }
.problem-list li { padding: 17px; display: flex; align-items: center; gap: 10px; border: 1px solid #3b3b41; border-radius: 12px; background: #222226; font-size: 12px; font-weight: 750; }
.problem-list span { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: rgba(217, 30, 24, 0.18); color: #ff8d89; }

.process-section {
  padding: 104px max(20px, calc((100% - var(--content)) / 2));
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(28px, 4vw, 56px);
  background: var(--brand-soft);
}
.process-intro { align-self: start; position: sticky; top: 112px; }
.process-intro > p:not(.eyebrow) { margin: 24px 0 28px; color: var(--muted); font-size: 14px; line-height: 1.75; }
.steps { margin: 0; padding: 0; list-style: none; }
.steps li { padding: 19px 0; display: grid; grid-template-columns: 52px 1fr; gap: 16px; border-bottom: 1px solid #edc9c6; }
.steps li:first-child { padding-top: 0; }
.steps li > span { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: var(--brand); color: white; font-size: 10px; font-weight: 900; }
.steps h3 { margin: 0 0 8px; font-size: 18px; letter-spacing: -0.02em; }
.steps p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }

.info-section { background: white; }
.info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); }
.info-grid article { min-width: 0; padding: 30px; background: white; }
.info-grid span { color: var(--brand); font-size: 10px; font-weight: 900; letter-spacing: 0.12em; }
.info-grid h3 { margin: 30px 0 12px; font-size: 17px; letter-spacing: -0.02em; }
.info-grid p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.75; }

.faq-section {
  padding: 104px max(20px, calc((100% - var(--content)) / 2));
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(50px, 8vw, 110px);
  background: var(--soft);
}
.faq-intro > p:not(.eyebrow) { max-width: 420px; margin: 24px 0 0; color: var(--muted); font-size: 14px; line-height: 1.75; }
.faq-list { border-top: 1px solid #d7d7da; }
.faq-list details { border-bottom: 1px solid #d7d7da; }
.faq-list summary { min-height: 72px; padding: 20px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; font-size: 14px; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { width: 30px; height: 30px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; background: white; color: var(--brand); font-size: 20px; font-weight: 500; transition: transform 150ms ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 650px; margin: -5px 44px 22px 0; color: var(--muted); font-size: 13px; line-height: 1.75; }

.area-section {
  padding: 86px max(20px, calc((100% - var(--content)) / 2));
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: end;
  background: var(--dark);
  color: white;
}
.area-section > p { margin: 0 0 4px; color: #bdbdc4; font-size: 14px; line-height: 1.8; }

.final-cta {
  padding: 96px max(20px, calc((100% - var(--content)) / 2));
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: end;
  background: var(--brand);
  color: white;
}
.final-cta .eyebrow-light { color: #ffd0ce; }
.final-cta-copy { max-width: 440px; justify-self: end; }
.final-cta-copy p { margin: 0 0 24px; color: #ffe2e0; font-size: 14px; line-height: 1.75; }
.button-white { width: max-content; background: white; color: var(--brand-dark); }

footer { padding: 58px max(20px, calc((100% - var(--content)) / 2)) 28px; background: #111113; color: white; }
.footer-top { display: grid; grid-template-columns: 1.4fr 0.8fr 0.8fr; gap: 60px; align-items: start; }
.footer-logo { padding: 7px 10px; border-radius: 12px; background: white; }
.footer-logo img { width: 230px; }
.footer-top > div:first-child p { max-width: 390px; margin: 18px 0 0; color: #929299; font-size: 12px; line-height: 1.7; }
.footer-links { display: flex; flex-direction: column; gap: 13px; font-size: 12px; font-weight: 750; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact small { color: #929299; font-size: 9px; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase; }
.footer-contact a { font-size: 19px; font-weight: 850; }
.footer-contact span { color: #929299; font-size: 11px; }
.footer-bottom { margin-top: 42px; padding-top: 24px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid #29292d; color: #707078; font-size: 10px; }

.floating-whatsapp {
  position: fixed;
  z-index: 40;
  right: 20px;
  bottom: 18px;
  min-height: 50px;
  padding: 13px 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 999px;
  background: #087a38;
  color: white;
  box-shadow: 0 14px 34px rgba(8, 122, 56, 0.28);
  font-size: 12px;
  font-weight: 850;
}

/* Dedicated service landing pages */
.service-page .site-header nav { gap: 16px; }
.service-page .site-header nav a { font-size: 12px; }
.service-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 5%, rgba(217, 30, 24, 0.13), transparent 30%),
    linear-gradient(180deg, #fff 0%, #fafafa 100%);
}
.service-hero::before {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  left: -260px;
  bottom: -250px;
  border: 58px solid rgba(217, 30, 24, 0.06);
  border-radius: 50%;
}
.service-hero-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--content));
  min-height: 640px;
  margin: 0 auto;
  padding: 64px 0 70px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(44px, 6vw, 82px);
}
.breadcrumbs {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
}
.breadcrumbs a { color: var(--brand); }
.service-hero h1,
.service-overview h2,
.service-pricing h2,
.service-results h2,
.service-process h2,
.service-article h2,
.service-reviews h2,
.service-areas h2,
.related-services h2 {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.03;
}
.service-hero h1 { max-width: 720px; font-size: clamp(46px, 5.2vw, 72px); }
.service-hero-lead { max-width: 650px; margin: 25px 0 30px; color: var(--muted); font-size: 16px; line-height: 1.78; }
.service-facts {
  max-width: 640px;
  margin: 36px 0 0;
  padding: 23px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  list-style: none;
}
.service-facts li { display: flex; flex-direction: column; gap: 6px; }
.service-facts li + li { padding-left: 22px; border-left: 1px solid var(--line); }
.service-facts strong { font-size: 18px; line-height: 1.1; }
.service-facts span { color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.service-hero-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 90px 18px 18px 18px;
  background: #ececee;
  box-shadow: var(--shadow);
}
.service-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(25, 25, 28, 0.04), transparent 45%);
  pointer-events: none;
}
.service-hero-media > img { width: 100%; height: 100%; object-fit: cover; }
.service-hero-media .comparison-label { z-index: 2; top: 16px; }
.service-price-badge {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 18px;
  min-width: 134px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-radius: 12px;
  background: white;
  box-shadow: 0 16px 40px rgba(29, 29, 32, 0.2);
}
.service-price-badge small { color: var(--muted); font-size: 8px; font-weight: 900; letter-spacing: 0.1em; }
.service-price-badge strong { color: var(--brand); font-size: 27px; line-height: 1; }

.overview-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 24px; align-items: stretch; }
.service-check-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  list-style: none;
}
.service-check-list li {
  min-height: 70px;
  padding: 17px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  font-size: 12px;
  font-weight: 760;
}
.service-check-list span { width: 28px; height: 28px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; background: var(--brand-soft); color: var(--brand); }
.suitable-card { padding: 28px; border-radius: 20px; background: var(--dark); color: white; }
.suitable-card .eyebrow { color: #ffaaa7; }
.suitable-card ul { margin: 26px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 9px; list-style: none; }
.suitable-card li { padding: 9px 11px; border: 1px solid #424248; border-radius: 999px; background: #242428; color: #d1d1d6; font-size: 10px; font-weight: 730; }

.service-pricing { padding: 104px 20px; background: var(--soft); }
.service-pricing-inner { width: min(100%, var(--content)); margin: 0 auto; }
.service-price-layout { display: grid; grid-template-columns: 1fr minmax(270px, 390px); gap: 26px; align-items: start; }
.service-price-panel { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 16px 45px rgba(29, 29, 32, 0.06); }
.service-price-heading { margin-bottom: 22px; display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.service-price-heading span { color: var(--brand); font-size: 10px; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.service-price-heading strong { color: var(--brand); font-size: 30px; line-height: 1; }
.service-price-panel > .button { margin-top: 25px; }
.service-addons { margin-top: 26px; padding: 22px; border-radius: 15px; background: var(--brand-soft); }
.service-addons h3 { margin: 0 0 10px; color: var(--brand-dark); font-size: 15px; }
.service-addons ul { margin: 0; padding: 0; list-style: none; }
.service-addons li { min-height: 44px; padding: 10px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; border-bottom: 1px solid #edc5c2; }
.service-addons li:last-child { border-bottom: 0; }
.service-addons span { color: var(--muted); font-size: 11px; }
.service-addons strong { color: var(--ink); font-size: 11px; text-align: right; }
.service-poster { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 16px 45px rgba(29, 29, 32, 0.08); }
.service-poster img { width: 100%; height: auto; }
.service-poster > span { min-height: 72px; padding: 15px 18px; display: flex; flex-direction: column; justify-content: center; gap: 4px; }
.service-poster b { color: var(--ink); font-size: 12px; }
.service-poster small { color: var(--muted); font-size: 10px; }

.service-results { background: white; }
.service-mid-cta {
  padding: 46px max(20px, calc((100% - var(--content)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: var(--brand);
  color: white;
}
.service-mid-cta h2 { margin: 0; font-size: clamp(30px, 3.5vw, 46px); letter-spacing: -0.04em; }
.service-mid-cta p { max-width: 630px; margin: 10px 0 0; color: #ffe0de; font-size: 13px; line-height: 1.7; }
.service-process .process-intro { top: 106px; }

.service-article { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: clamp(50px, 8vw, 110px); align-items: start; background: white; }
.service-article .article-intro { position: sticky; top: 110px; }
.service-article h2 { max-width: 470px; font-size: clamp(38px, 4.3vw, 60px); }
.article-content { display: grid; gap: 42px; }
.article-content article { padding-bottom: 40px; border-bottom: 1px solid var(--line); }
.article-content article:last-child { padding-bottom: 0; border-bottom: 0; }
.article-content h3 { margin: 0 0 18px; font-size: clamp(24px, 2.7vw, 34px); letter-spacing: -0.035em; }
.article-content p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.9; }
.article-content p + p { margin-top: 18px; }

.service-reviews { padding: 88px max(20px, calc((100% - var(--content)) / 2)); overflow: hidden; background: var(--soft); }
.testimonial-heading { margin-bottom: 30px; }
.review-carousel { position: relative; }
.review-controls { min-height: 44px; margin-bottom: 12px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.review-controls > span { color: var(--muted); font-size: 11px; font-weight: 850; letter-spacing: .12em; }
.review-controls > div { display: flex; gap: 8px; }
.review-controls button { width: 40px; height: 40px; border: 1px solid #d7d7da; border-radius: 50%; background: white; color: var(--ink); cursor: pointer; font-size: 18px; font-weight: 800; }
.review-controls button:hover { border-color: var(--brand); color: var(--brand); }
.review-viewport { width: 100%; overflow-x: auto; padding: 4px 2px 12px; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: var(--brand) #e7e7e9; overscroll-behavior-inline: contain; }
.review-grid { width: max-content; display: flex; gap: 14px; }
.review-card { position: relative; width: min(300px, calc(100vw - 54px)); flex: 0 0 auto; padding: 14px; border: 1px solid var(--line); border-radius: 15px; background: white; box-shadow: 0 9px 24px rgba(29, 29, 32, 0.05); scroll-snap-align: start; }
.review-card-heading { min-height: 42px; }
.review-stars { color: #d78400; font-size: 15px; letter-spacing: 0.08em; }
.review-card h3 { margin: 3px 0 0; font-size: 14px; line-height: 1.25; }
.facebook-embed { margin-top: 9px; height: 248px; overflow: hidden; border: 1px solid #e3e3e6; border-radius: 10px; background: #f5f6f7; }
.facebook-embed iframe { display: block; width: 100%; max-width: 100%; height: 300px; border: 0; background: white; pointer-events: none; }
.review-card-link { position: absolute; z-index: 2; inset: 3px; border-radius: 13px; touch-action: pan-x; }
.review-card-link:focus-visible { outline-offset: 1px; }
.facebook-page-link { margin-top: 26px; display: flex; justify-content: center; }
.facebook-page-link a { min-height: 50px; padding: 12px 18px; display: inline-flex; align-items: center; gap: 10px; border: 1px solid #d7d7da; border-radius: 999px; background: white; color: var(--dark); font-size: 12px; font-weight: 850; }
.facebook-page-link a > span { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; background: #1877f2; color: white; font-family: Arial, sans-serif; font-size: 18px; font-weight: 900; }
.facebook-page-link a > b { color: var(--brand); }

.service-areas {
  padding: 88px max(20px, calc((100% - var(--content)) / 2));
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(50px, 8vw, 100px);
  align-items: center;
  background: var(--dark);
  color: white;
}
.service-areas h2 { font-size: clamp(38px, 4.3vw, 58px); }
.service-areas > div > p:not(.eyebrow) { max-width: 610px; margin: 22px 0 0; color: #bdbdc4; font-size: 13px; line-height: 1.8; }
.service-areas ul { margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 9px; list-style: none; }
.service-areas li { padding: 10px 12px; border: 1px solid #3d3d43; border-radius: 999px; background: #232327; color: #d1d1d5; font-size: 10px; font-weight: 750; }

.related-services { background: white; }
.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.related-card { position: relative; padding: 30px; border: 1px solid var(--line); border-radius: 20px; background: white; }
.related-card > span { color: #b9b9bf; font-size: 10px; font-weight: 900; letter-spacing: 0.12em; }
.related-card h3 { margin: 0 0 11px; font-size: 24px; letter-spacing: -0.03em; }
.related-card p { max-width: 520px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.75; }
.related-card b { margin-top: 24px; display: block; color: var(--brand); font-size: 11px; }
.service-page .footer-links small { margin-bottom: 2px; color: #929299; font-size: 9px; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase; }

@media (hover: hover) {
  .facebook-page-link a, .related-card, .service-poster { transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease; }
  .facebook-page-link a:hover, .related-card:hover, .service-poster:hover { transform: translateY(-4px); border-color: #efb0ac; box-shadow: 0 20px 50px rgba(29, 29, 32, 0.1); }
}

@media (hover: hover) {
  .button:hover, .header-cta:hover { transform: translateY(-2px); }
  .button-primary:hover { box-shadow: 0 18px 34px rgba(217, 30, 24, 0.3); }
  .service-card, .price-panel-link, .poster-card, .result-card, .results-category-heading { transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, color 180ms ease; }
  .service-card:hover { transform: translateY(-5px); border-color: #f2b4b0; box-shadow: 0 20px 50px rgba(29, 29, 32, 0.09); }
  .price-panel-link:hover .price-page-link, .poster-card:hover > span, .result-card:hover .result-caption, .results-category-heading:hover h3 { color: var(--brand); }
  .footer-links a:hover, .service-card:hover .service-card-cta { text-decoration: underline; text-underline-offset: 4px; }
}

@media (max-width: 960px) {
  .site-header nav { display: none; }
  .hero-inner { min-height: auto; grid-template-columns: 1fr; padding-top: 54px; gap: 52px; }
  .hero-copy { max-width: 720px; }
  .hero-visual { width: min(720px, 100%); }
  .service-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card > p { min-height: 0; }
  .price-grid { grid-template-columns: 1fr; }
  .poster-grid { grid-template-columns: repeat(2, 1fr); }
  .results-slider { grid-auto-columns: calc((100% - 20px) / 2); }
  .problem-section, .process-section, .faq-section, .area-section, .final-cta { grid-template-columns: 1fr; }
  .problem-list { max-width: 680px; }
  .process-intro { position: static; }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .final-cta-copy { max-width: 620px; justify-self: start; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-contact { grid-column: 2; grid-row: 1; }
  .service-hero-inner { min-height: auto; grid-template-columns: 1fr; padding-top: 50px; }
  .service-hero-copy { max-width: 760px; }
  .service-hero-media { width: min(720px, 100%); }
  .overview-grid, .service-article, .service-areas { grid-template-columns: 1fr; }
  .service-price-layout { grid-template-columns: 1fr minmax(250px, 340px); }
  .service-article .article-intro { position: static; }
}

@media (max-width: 640px) {
  html { scroll-padding-top: 70px; }
  .header-inner { width: calc(100% - 32px); height: 70px; }
  .brand-logo img { width: 145px; }
  .header-inner { gap: 10px; }
  .language-switch { min-height: 36px; padding: 4px 7px; gap: 5px; }
  .header-cta { min-width: 46px; min-height: 46px; padding: 10px; }
  .header-cta span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .hero-inner { width: calc(100% - 36px); padding: 44px 0 48px; gap: 40px; }
  .eyebrow { font-size: 9px; letter-spacing: 0.1em; }
  .hero h1 { font-size: clamp(41px, 12vw, 52px); }
  .hero-lead { margin: 22px 0 26px; font-size: 14px; line-height: 1.7; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .quick-facts { margin-top: 30px; padding-top: 20px; }
  .quick-facts li + li { padding-left: 12px; }
  .quick-facts strong { font-size: 16px; }
  .quick-facts span { font-size: 9px; }
  .photo-frame { border-radius: 58px 12px 12px 12px; }
  .price-card { top: 16px; right: -8px; min-width: 130px; padding: 14px 16px; }
  .price-card strong { font-size: 25px; }
  .location-card { left: 10px; bottom: 12px; padding: 10px 13px; }
  .location-card > b { width: 30px; height: 30px; }
  .trust-strip { padding: 17px 20px; grid-template-columns: 1fr 1fr; gap: 13px; }
  .trust-strip div { text-align: left; font-size: 9px; }
  .section, .problem-section, .process-section, .faq-section, .area-section, .final-cta { padding: 74px 20px; }
  .section-heading { margin-bottom: 34px; align-items: start; flex-direction: column; gap: 20px; }
  .section-heading h2, .problem-section h2, .process-section h2, .faq-section h2, .area-section h2, .final-cta h2 { font-size: 39px; }
  .service-card { padding: 24px; border-radius: 18px; }
  .service-card-image { width: calc(100% + 48px); height: 210px; margin: -24px -24px 0; border-radius: 18px 18px 0 0; }
  .why-section { padding-block: 56px; }
  .why-section .section-heading { margin-bottom: 24px; }
  .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .why-grid article { padding: 15px; border-radius: 13px; }
  .why-grid h3 { margin: 0 0 6px; font-size: 14px; }
  .why-grid p { font-size: 10px; line-height: 1.5; }
  .service-icon { width: 55px; height: 55px; }
  .service-number { top: 29px; right: 24px; }
  .pricing-section { padding: 74px 20px; }
  .price-panel { padding: 24px; border-radius: 18px; }
  .pricing-action { align-items: stretch; flex-direction: column; }
  .poster-heading { margin-top: 66px; align-items: start; flex-direction: column; gap: 18px; }
  .poster-grid { grid-template-columns: 1fr; }
  .results-category + .results-category { margin-top: 52px; }
  .results-slider { grid-auto-columns: 88%; gap: 16px; margin-inline: -2px; }
  .problem-list { grid-template-columns: 1fr; }
  .problem-list li { padding: 14px; }
  .process-section { gap: 28px; }
  .steps li { grid-template-columns: 46px 1fr; }
  .info-grid { grid-template-columns: 1fr; background: transparent; }
  .info-grid article { padding: 26px 0; border-bottom: 1px solid var(--line); }
  .info-grid h3 { margin-top: 18px; }
  .faq-section { gap: 42px; }
  .faq-list summary { font-size: 13px; }
  .button-white { width: 100%; }
  footer { padding: 50px 20px 100px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-contact { grid-column: 1; grid-row: auto; }
  .footer-bottom { align-items: start; flex-direction: column; }
  .floating-whatsapp { left: 14px; right: 14px; bottom: 12px; min-height: 54px; }
  .service-hero-inner { width: calc(100% - 36px); padding: 38px 0 48px; gap: 38px; }
  .breadcrumbs { margin-bottom: 24px; }
  .service-hero h1 { font-size: clamp(39px, 11vw, 50px); }
  .service-hero-lead { margin: 21px 0 25px; font-size: 14px; line-height: 1.72; }
  .service-facts { margin-top: 28px; padding-top: 19px; }
  .service-facts li + li { padding-left: 11px; }
  .service-facts strong { font-size: 15px; }
  .service-facts span { font-size: 7px; }
  .service-hero-media { border-radius: 58px 12px 12px 12px; }
  .service-price-badge { right: 12px; bottom: 12px; min-width: 116px; padding: 12px 14px; }
  .service-price-badge strong { font-size: 23px; }
  .service-check-list { grid-template-columns: 1fr; }
  .service-check-list li { min-height: 62px; }
  .suitable-card { padding: 24px; }
  .service-pricing, .service-reviews { padding: 74px 20px; }
  .service-price-layout { grid-template-columns: 1fr; }
  .service-price-panel { padding: 24px; border-radius: 18px; }
  .service-price-heading strong { font-size: 25px; }
  .service-addons { padding: 18px; }
  .service-addons li { align-items: start; flex-direction: column; gap: 5px; }
  .service-addons strong { text-align: left; }
  .service-poster { border-radius: 18px; }
  .service-mid-cta { padding: 44px 20px; align-items: stretch; flex-direction: column; gap: 24px; }
  .service-mid-cta .button { width: 100%; }
  .service-article { gap: 42px; }
  .service-article h2, .service-areas h2 { font-size: 39px; }
  .article-content { gap: 34px; }
  .article-content article { padding-bottom: 32px; }
  .article-content p { font-size: 13px; line-height: 1.82; }
  .review-card { width: min(286px, calc(100vw - 46px)); padding: 12px; }
  .facebook-embed { height: 232px; }
  .facebook-embed iframe { height: 285px; }
  .service-areas { padding: 74px 20px; gap: 38px; }
  .service-areas li { padding: 9px 11px; }
  .related-grid { grid-template-columns: 1fr; }
  .related-card { padding: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
  .review-viewport { scroll-behavior: auto; }
  .results-slider { scroll-behavior: auto; }
}
