:root {
  --ink: #13201c;
  --muted: #5f6f69;
  --paper: #fbfbf7;
  --soft: #eef4ef;
  --mint: #cfe6d8;
  --maroon: #780026;
  --maroon-2: #a40039;
  --emerald: #0e5c4d;
  --emerald-2: #147862;
  --gold: #d8a94b;
  --gold-2: #f1d58c;
  --white: #ffffff;
  --line: rgba(19, 32, 28, 0.12);
  --shadow: 0 24px 70px rgba(19, 32, 28, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", Arial, sans-serif;
  overflow-x: hidden;
}

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

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

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

.section-shell {
  width: min(1440px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 10;
  width: min(1440px, calc(100% - 32px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 14px 16px;
  color: var(--white);
  background: rgba(15, 38, 33, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  color: var(--white);
  padding: 10px 14px;
  background: rgba(9, 21, 18, 0.64);
  border-color: rgba(241, 213, 140, 0.24);
  box-shadow: 0 14px 40px rgba(3, 10, 8, 0.18);
}

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

.brand span {
  display: block;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: 70px;
  height: 70px;
  flex: 0 0 auto;
  object-fit: contain;
  background: var(--maroon);
  border: 1px solid rgba(241, 213, 140, 0.7);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.logo-shine {
  position: relative;
  display: block;
  width: 70px;
  height: 70px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 8px;
  isolation: isolate;
}

.logo-shine .brand-logo {
  width: 100%;
  height: 100%;
}

.logo-shine::before,
.logo-shine::after {
  position: absolute;
  content: "";
  pointer-events: none;
  border-radius: inherit;
}

.logo-shine::before {
  inset: 0;
  z-index: 1;
  box-shadow: inset 0 0 18px rgba(241, 213, 140, 0.18);
  animation: logoGlow 3.8s ease-in-out infinite;
}

.logo-shine::after {
  top: -35%;
  bottom: -35%;
  left: -80%;
  z-index: 2;
  width: 42%;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 28%,
    rgba(255, 245, 190, 0.56) 50%,
    rgba(255, 255, 255, 0.1) 72%,
    transparent 100%
  );
  filter: blur(1px);
  transform: skewX(-18deg);
  animation: logoShine 3.8s ease-in-out infinite;
}

.site-header .brand {
  gap: 14px;
}

.site-header .logo-shine,
.site-header .brand-logo {
  width: 108px;
  height: 108px;
}

.site-header.is-scrolled .logo-shine,
.site-header.is-scrolled .brand-logo {
  width: 88px;
  height: 88px;
}

.brand strong,
.brand b,
.brand small {
  display: block;
  line-height: 1.08;
  white-space: nowrap;
}

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

.brand b {
  font-size: 1.28rem;
  font-weight: 800;
}

@keyframes logoShine {
  0%,
  42% {
    left: -80%;
    opacity: 0;
  }

  52% {
    opacity: 1;
  }

  74%,
  100% {
    left: 135%;
    opacity: 0;
  }
}

@keyframes logoGlow {
  0%,
  100% {
    box-shadow: inset 0 0 18px rgba(241, 213, 140, 0.16), 0 0 0 rgba(241, 213, 140, 0);
  }

  52% {
    box-shadow: inset 0 0 22px rgba(241, 213, 140, 0.26), 0 0 28px rgba(216, 169, 75, 0.32);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-shine::before,
  .logo-shine::after,
  .whatsapp-float,
  .whatsapp-float svg,
  .whatsapp-chat {
    animation: none;
  }
}

.brand small {
  color: var(--gold-2);
  font-size: 1.04rem;
  font-weight: 800;
  opacity: 1;
}

.site-header .brand strong,
.site-header .brand b {
  color: var(--white);
  line-height: 1.03;
}

.site-header .brand strong {
  font-size: 2.12rem;
}

.site-header.is-scrolled .brand strong {
  font-size: 1.72rem;
}

.brand .brand-gold,
.site-header.is-scrolled .brand .brand-gold {
  display: inline;
  color: var(--gold-2);
}

.site-header .brand b {
  font-size: 1.38rem;
}

.site-header.is-scrolled .brand b {
  font-size: 1.14rem;
}

.site-header .brand small {
  color: var(--gold-2);
  font-size: 1.08rem;
  line-height: 1.08;
  font-weight: 800;
  opacity: 1;
}

.site-header.is-scrolled .brand strong,
.site-header.is-scrolled .brand b {
  color: var(--white);
}

.site-header.is-scrolled .brand small {
  color: var(--gold-2);
  font-size: 0.96rem;
}

.site-nav {
  display: flex;
  min-width: 0;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 8px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0.88;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.15);
}

.site-nav a.is-active {
  color: var(--gold-2);
  background: rgba(255, 255, 255, 0.14);
}

.site-header.is-scrolled .site-nav a:hover {
  background: rgba(255, 255, 255, 0.14);
}

.site-header.is-scrolled .site-nav a.is-active {
  color: var(--gold-2);
  background: rgba(255, 255, 255, 0.14);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 800;
  white-space: nowrap;
}

.header-action {
  color: var(--ink);
  background: var(--gold);
}

.button-primary {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 18px 38px rgba(216, 169, 75, 0.24);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.button-outline {
  color: var(--emerald);
  background: var(--white);
  border: 1px solid var(--line);
}

.button svg,
.header-action svg,
.nav-toggle svg {
  width: 18px;
  height: 18px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  color: currentColor;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  filter: saturate(0.9) contrast(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 18, 15, 0.92), rgba(5, 18, 15, 0.72) 48%, rgba(5, 18, 15, 0.18)),
    linear-gradient(0deg, rgba(5, 18, 15, 0.64), transparent 42%);
}

.hero-content {
  position: relative;
  width: min(1440px, calc(100% - 40px));
  margin: 0 auto;
  padding: 170px 0 72px;
}

.hero-panel {
  position: absolute;
  right: 0;
  bottom: 78px;
  display: grid;
  gap: 8px;
  width: min(330px, 32vw);
  padding: 22px;
  color: var(--white);
  background: rgba(120, 0, 38, 0.62);
  border: 1px solid rgba(241, 213, 140, 0.42);
  border-radius: 8px;
  backdrop-filter: blur(16px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.hero-panel span {
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.eyebrow,
.section-kicker {
  width: fit-content;
  margin: 0 0 18px;
  padding: 7px 11px;
  color: var(--maroon);
  background: linear-gradient(135deg, rgba(241, 213, 140, 0.72), rgba(216, 169, 75, 0.2));
  border: 1px solid rgba(216, 169, 75, 0.34);
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  max-width: 100%;
  margin-bottom: 20px;
  padding: 0;
  color: var(--gold-2);
  background: transparent;
  border: 0;
  font-size: clamp(1rem, 1.45vw, 1.65rem);
  font-weight: 900;
  line-height: 1.12;
  white-space: nowrap;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.42);
}

.hero h1,
.about h2,
.section-heading h2,
.feature-layout h2,
.testimonial-layout h2,
.contact h1,
.contact h2 {
  margin: 0;
  color: var(--maroon);
  font-weight: 800;
  line-height: 1.03;
}

.hero h1 {
  max-width: 720px;
  color: var(--white);
  font-size: clamp(2.45rem, 4.9vw, 4.65rem);
  overflow-wrap: anywhere;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
  line-height: 1.75;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.hero-actions {
  margin-top: 32px;
}

.trust-row {
  margin-top: 44px;
  gap: 18px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.trust-row strong {
  margin-right: 6px;
  color: var(--white);
}

.partners {
  padding: 20px 0;
  color: var(--white);
  background: linear-gradient(90deg, var(--emerald), var(--maroon));
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
}

.partners-grid span {
  min-height: 70px;
  display: grid;
  place-items: center;
  padding: 14px;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
}

.about {
  padding: 96px 0;
}

.metrics-band {
  padding: 28px 0;
  background: var(--maroon);
  color: var(--white);
}

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

.metrics-grid div {
  min-height: 126px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.metrics-grid strong {
  color: var(--gold-2);
  font-size: 2.25rem;
  line-height: 1;
}

.metrics-grid span {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.about h2,
.section-heading h2,
.feature-layout h2,
.testimonial-layout h2,
.contact h1,
.contact h2 {
  font-size: clamp(2.28rem, 4.35vw, 3.75rem);
}

.text-column p,
.section-heading p,
.feature-layout p,
.quality p,
.plan-card li,
.testimonial-layout blockquote,
.contact p,
.faq p,
.site-footer p {
  color: var(--muted);
  line-height: 1.72;
}

.text-column p {
  margin-top: 0;
  font-size: 1.04rem;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  color: var(--ink);
  font-weight: 700;
}

.check-list svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--emerald);
}

.services,
.plans {
  padding: 96px 0;
  background: var(--soft);
}

.image-gallery {
  padding: 96px 0;
  background: var(--paper);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading.compact {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}

.section-heading p {
  margin: 18px 0 0;
}

.section-heading .section-kicker {
  margin: 0 0 20px;
  color: var(--maroon);
}

.section-heading.compact .section-kicker {
  margin-inline: auto;
}

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

.service-card,
.quality-grid article,
.plan-card,
.quote-form,
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card {
  position: relative;
  min-height: 235px;
  padding: 28px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(120, 0, 38, 0.24);
  font-size: 1.6rem;
  font-weight: 800;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 169, 75, 0.65);
  box-shadow: 0 18px 42px rgba(19, 32, 28, 0.1);
}

.service-card svg,
.quality-grid svg {
  width: 42px;
  height: 42px;
  color: var(--emerald);
  padding: 9px;
  background: var(--mint);
  border-radius: 8px;
}

.service-card h3,
.quality-grid h3,
.step h3,
.plan-card h3 {
  margin: 22px 0 10px;
  font-size: 1.18rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.gallery-card {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(19, 32, 28, 0.1);
}

.gallery-card.wide {
  grid-column: span 2;
}

.gallery-card.fit-landscape {
  aspect-ratio: 1538 / 1023;
  min-height: 0;
}

.gallery-card.fit-landscape img {
  min-height: 0;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform 240ms ease;
}

.gallery-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(8, 30, 25, 0.86), rgba(8, 30, 25, 0.08) 58%);
}

.gallery-card:hover img {
  transform: scale(1.035);
}

.gallery-card figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  display: grid;
  gap: 6px;
}

.gallery-card strong {
  font-size: 1.2rem;
}

.gallery-card span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.feature-band {
  padding: 96px 0;
  background:
    linear-gradient(135deg, rgba(19, 32, 28, 0.96), rgba(120, 0, 38, 0.88)),
    var(--ink);
  color: var(--white);
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.feature-layout p {
  color: rgba(255, 255, 255, 0.72);
}

.feature-band .feature-layout h2 {
  color: var(--white);
}

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

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

.steps {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.step {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
}

.step span {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  color: var(--ink);
  background: var(--gold);
  border-radius: 8px;
  font-weight: 800;
}

.step h3,
.step p {
  margin: 0;
}

.quality {
  padding: 96px 0;
}

.service-showcase {
  padding: 96px 0;
  background: var(--paper);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
}

.showcase-grid h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
}

.showcase-grid p {
  color: var(--muted);
  line-height: 1.72;
}

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

.showcase-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 98px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(19, 32, 28, 0.08);
}

.showcase-list svg {
  width: 44px;
  height: 44px;
  padding: 10px;
  color: var(--maroon);
  background: rgba(216, 169, 75, 0.24);
  border-radius: 8px;
}

.showcase-list span {
  font-weight: 800;
  line-height: 1.45;
}

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

.quality-grid article {
  padding: 26px;
}

.quality-grid p {
  margin: 0;
}

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

.plan-card {
  display: grid;
  align-content: start;
  gap: 20px;
  padding: 30px;
}

.plan-card.featured {
  color: var(--white);
  background: linear-gradient(145deg, var(--emerald), #123c35);
  box-shadow: var(--shadow);
}

.plan-label {
  width: fit-content;
  margin: 0;
  padding: 7px 10px;
  color: var(--emerald);
  background: var(--mint);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 800;
}

.featured .plan-label {
  color: var(--ink);
  background: var(--gold);
}

.plan-card h3,
.plan-price {
  margin: 0;
}

.plan-price {
  color: var(--emerald);
  font-size: 1.8rem;
  font-weight: 800;
}

.featured .plan-price,
.featured li {
  color: rgba(255, 255, 255, 0.82);
}

.plan-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.testimonial-band {
  padding: 86px 0;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(241, 213, 140, 0.98), rgba(216, 169, 75, 0.92) 52%, rgba(120, 0, 38, 0.88)),
    var(--gold);
}

.price-hero {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
  color: var(--white);
  background: #10231f;
}

.price-hero-media,
.price-hero-overlay {
  position: absolute;
  inset: 0;
}

.price-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.price-hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 18, 15, 0.92), rgba(5, 18, 15, 0.62) 54%, rgba(120, 0, 38, 0.26)),
    linear-gradient(0deg, rgba(5, 18, 15, 0.62), transparent 52%);
}

.price-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  min-height: 78vh;
  padding-top: 150px;
  padding-bottom: 76px;
}

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

.price-hero-content p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.18rem;
  line-height: 1.75;
}

.price-section {
  padding: 72px 0;
}

.price-list-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 24px 0 20px;
}

.price-list-tabs a {
  min-width: 112px;
  padding: 10px 16px;
  color: var(--maroon);
  font-weight: 900;
  text-align: center;
  background: linear-gradient(135deg, rgba(241, 213, 140, 0.88), rgba(216, 169, 75, 0.52));
  border: 1px solid rgba(120, 0, 38, 0.12);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(120, 0, 38, 0.1);
}

.price-list-panel {
  max-width: 1060px;
  margin: 20px auto 0;
  overflow: hidden;
  scroll-margin-top: 150px;
  background:
    linear-gradient(145deg, rgba(120, 0, 38, 0.94), rgba(92, 0, 29, 0.96)),
    var(--maroon);
  border: 1px solid rgba(241, 213, 140, 0.24);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.price-list-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 16px;
  align-items: end;
  padding: 18px 20px 12px;
  color: var(--white);
}

.price-list-header .plan-label {
  grid-column: 1 / -1;
  color: var(--maroon);
  background: var(--gold-2);
}

.price-list-header h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  line-height: 1;
}

.price-list-header span {
  color: var(--gold-2);
  font-weight: 900;
  text-align: right;
}

.price-table-wrap {
  margin: 0 20px 20px;
  overflow-x: auto;
  border: 1px solid rgba(241, 213, 140, 0.22);
  border-radius: 8px;
}

.price-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  color: var(--white);
  font-size: 0.82rem;
  background: rgba(255, 255, 255, 0.05);
}

.price-table th,
.price-table td {
  padding: 7px 9px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  text-align: center;
  vertical-align: middle;
}

.price-table th:first-child,
.price-table td:first-child {
  min-width: 260px;
  text-align: left;
}

.price-table th {
  color: var(--maroon);
  background: rgba(255, 255, 255, 0.94);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-table td {
  font-weight: 800;
}

.price-table td:first-child {
  position: relative;
  padding-left: 24px;
}

.price-table td:first-child::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 4px;
  height: 4px;
  background: var(--gold-2);
  border-radius: 50%;
  transform: translateY(-50%);
}

.price-table td:nth-child(4),
.price-table td:nth-child(7),
.household-table td:nth-child(4) {
  color: var(--maroon);
  background: rgba(255, 255, 255, 0.92);
}

.household-table {
  min-width: 620px;
}

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

.price-card {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(19, 32, 28, 0.08);
}

.price-card.featured {
  color: var(--white);
  background:
    linear-gradient(150deg, rgba(120, 0, 38, 0.92), rgba(14, 92, 77, 0.96)),
    var(--emerald);
}

.price-icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--emerald);
  background: var(--soft);
  border-radius: 8px;
}

.price-card.featured .price-icon {
  color: var(--ink);
  background: var(--gold-2);
}

.price-icon svg {
  width: 22px;
  height: 22px;
}

.price-card h3,
.price-note {
  margin: 0;
}

.price-note {
  color: var(--emerald);
  font-size: 1.1rem;
  font-weight: 800;
}

.price-card.featured .price-note,
.price-card.featured li {
  color: rgba(255, 255, 255, 0.84);
}

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

.blog-hero {
  position: relative;
  min-height: 76vh;
  overflow: hidden;
  color: var(--white);
  background: #10231f;
}

.blog-hero-media,
.blog-hero-overlay {
  position: absolute;
  inset: 0;
}

.blog-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.blog-hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 18, 15, 0.94), rgba(5, 18, 15, 0.58) 58%, rgba(120, 0, 38, 0.34)),
    linear-gradient(0deg, rgba(5, 18, 15, 0.66), transparent 54%);
}

.blog-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  min-height: 76vh;
  padding-top: 150px;
  padding-bottom: 76px;
}

.blog-hero-content h1 {
  max-width: 820px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.55rem, 5.5vw, 5.2rem);
  line-height: 1.02;
}

.blog-hero-content p:not(.eyebrow) {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.16rem;
  line-height: 1.75;
}

.blog-section {
  padding: 96px 0;
}

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

.blog-card {
  display: grid;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(216, 169, 75, 0.26);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(19, 32, 28, 0.08);
}

.blog-card-featured {
  grid-column: span 2;
  grid-template-columns: 1fr 1fr;
  color: var(--white);
  background:
    linear-gradient(140deg, rgba(120, 0, 38, 0.96), rgba(14, 92, 77, 0.96)),
    var(--maroon);
}

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

.blog-card-featured img {
  height: 100%;
  min-height: 360px;
}

.blog-card div {
  display: grid;
  align-content: start;
  gap: 13px;
  padding: 24px;
}

.blog-meta {
  width: fit-content;
  margin: 0;
  padding: 7px 10px;
  color: var(--maroon);
  background: rgba(241, 213, 140, 0.62);
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card h3,
.blog-card p {
  margin: 0;
}

.blog-card h3 {
  font-size: 1.2rem;
  line-height: 1.22;
}

.blog-card p:not(.blog-meta) {
  color: var(--muted);
  line-height: 1.68;
}

.blog-card-featured p:not(.blog-meta) {
  color: rgba(255, 255, 255, 0.78);
}

.blog-card a {
  width: fit-content;
  color: var(--gold-2);
  font-weight: 900;
}

.blog-tips-band {
  padding: 86px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(14, 92, 77, 0.95), rgba(120, 0, 38, 0.92)),
    var(--emerald);
}

.blog-tips-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 44px;
  align-items: start;
}

.blog-tips-layout h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.04;
}

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

.blog-tip-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(241, 213, 140, 0.22);
  border-radius: 8px;
}

.blog-tip-list svg {
  width: 48px;
  height: 48px;
  padding: 12px;
  color: var(--ink);
  background: var(--gold-2);
  border-radius: 8px;
}

.blog-tip-list span {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
  line-height: 1.55;
}

.offers-band {
  padding: 86px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(120, 0, 38, 0.96), rgba(14, 92, 77, 0.96)),
    var(--maroon);
}

.offers-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: start;
}

.offers-layout p {
  color: rgba(255, 255, 255, 0.76);
}

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

.offer-list article {
  display: grid;
  gap: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.offer-list strong {
  color: var(--gold-2);
  font-size: 1.1rem;
}

.offer-list span {
  color: rgba(255, 255, 255, 0.78);
}

.price-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding-top: 86px;
  padding-bottom: 86px;
}

.price-cta h2 {
  max-width: 760px;
  margin: 0;
  color: var(--maroon);
  font-size: clamp(2rem, 3.7vw, 3.4rem);
  line-height: 1.05;
}

.price-cta p {
  max-width: 680px;
}

.price-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.thank-you-hero {
  display: grid;
  min-height: 100vh;
  align-items: center;
  padding: 170px 0 88px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(9, 21, 18, 0.9), rgba(120, 0, 38, 0.82)),
    url("assets/real-contact-laundry.jpg") center/cover;
}

.thank-you-card {
  max-width: 760px;
}

.thank-you-card h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.02;
}

.thank-you-card p:not(.section-kicker) {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
  line-height: 1.75;
}

.testimonial-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 50px;
  align-items: center;
}

.testimonial-layout .section-kicker {
  color: var(--maroon);
  background: rgba(255, 255, 255, 0.42);
  border-color: rgba(120, 0, 38, 0.16);
}

.testimonial-layout h2 {
  color: var(--ink);
}

.testimonial-layout blockquote {
  margin: 0;
  color: rgba(19, 32, 28, 0.9);
  font-size: 1.32rem;
}

.testimonial-layout cite {
  display: block;
  margin-top: 18px;
  color: var(--maroon);
  font-size: 0.96rem;
  font-style: normal;
  font-weight: 800;
}

.customer-reviews {
  padding: 96px 0;
  background:
    linear-gradient(180deg, var(--paper), #fffaf0);
}

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

.review-card {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 26px;
  background: var(--white);
  border: 1px solid rgba(216, 169, 75, 0.28);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(19, 32, 28, 0.08);
}

.review-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.review-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.review-card footer {
  display: grid;
  gap: 4px;
  padding-top: 4px;
}

.review-card strong {
  color: var(--ink);
  font-size: 1rem;
}

.review-card span {
  color: var(--maroon);
  font-size: 0.86rem;
  font-weight: 800;
}

.faq {
  padding: 96px 0;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin: 34px auto 0;
}

.faq details {
  padding: 22px 24px;
}

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

.faq p {
  margin: 14px 0 0;
}

.contact {
  padding: 96px 0;
  background:
    linear-gradient(rgba(19, 32, 28, 0.88), rgba(19, 32, 28, 0.9)),
    url("assets/real-contact-laundry.jpg") center/cover;
  color: var(--white);
}

.contact-page {
  min-height: 100vh;
  padding-top: 180px;
}

.contact .section-kicker,
.offers-layout .section-kicker {
  color: var(--gold-2);
  background: rgba(120, 0, 38, 0.42);
  border-color: rgba(241, 213, 140, 0.34);
}

.contact h1,
.contact h2,
.offers-layout h2 {
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.72fr);
  gap: 70px;
  align-items: start;
}

.contact p {
  color: rgba(255, 255, 255, 0.75);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.contact-cards a,
.contact-cards > span {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  overflow-wrap: anywhere;
}

.contact-cards a:not(.social-contact),
.contact-cards > span {
  grid-column: 1 / -1;
}

.contact-cards svg {
  width: 20px;
  height: 20px;
  color: var(--gold-2);
}

.contact-cards a.social-contact {
  gap: 14px;
  min-height: 74px;
  padding: 15px 18px;
  border-color: rgba(241, 213, 140, 0.22);
  font-size: 1.05rem;
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.contact-cards a.social-contact:hover,
.social-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(241, 213, 140, 0.5);
  background: rgba(255, 255, 255, 0.14);
}

.social-mark {
  position: relative;
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.social-mark--instagram {
  background:
    radial-gradient(circle at 32% 108%, #feda75 0 20%, transparent 36%),
    radial-gradient(circle at 18% 92%, #fa7e1e 0 22%, transparent 38%),
    radial-gradient(circle at 82% 18%, #515bd4 0 24%, transparent 40%),
    linear-gradient(135deg, #833ab4, #fd1d1d 52%, #fcb045);
}

.social-mark--instagram::before {
  content: "";
  width: 19px;
  height: 19px;
  border: 2px solid var(--white);
  border-radius: 7px;
}

.social-mark--instagram::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 5px;
  height: 5px;
  background: var(--white);
  border-radius: 50%;
}

.social-mark--facebook {
  background: #1877f2;
  border-radius: 50%;
  font-family: Arial, sans-serif;
}

.social-mark--facebook::before {
  content: "f";
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  transform: translateY(4px);
}

.contact-cards a.social-contact--instagram,
.social-links a.social-contact--instagram {
  background:
    linear-gradient(90deg, rgba(131, 58, 180, 0.22), rgba(253, 29, 29, 0.1)),
    rgba(255, 255, 255, 0.09);
}

.contact-cards a.social-contact--facebook,
.social-links a.social-contact--facebook {
  background:
    linear-gradient(90deg, rgba(24, 119, 242, 0.22), rgba(24, 119, 242, 0.07)),
    rgba(255, 255, 255, 0.09);
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #f8faf8;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--emerald-2);
  box-shadow: 0 0 0 4px rgba(20, 120, 98, 0.12);
}

.site-footer {
  padding: 30px 0;
  color: var(--white);
  background: #091512;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
}

.footer-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: flex;
  gap: 16px;
  justify-self: end;
  font-weight: 800;
}

.social-links {
  display: flex;
  gap: 10px;
  align-items: center;
}

.social-links a {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 12px 8px 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.social-links svg {
  width: 17px;
  height: 17px;
  color: var(--gold-2);
}

.social-links .social-mark {
  width: 32px;
  height: 32px;
  flex-basis: 32px;
  box-shadow: none;
}

.social-links .social-mark--instagram::before {
  width: 14px;
  height: 14px;
  border-radius: 5px;
}

.social-links .social-mark--instagram::after {
  top: 9px;
  right: 9px;
  width: 4px;
  height: 4px;
}

.social-links .social-mark--facebook {
  padding-top: 0;
}

.social-links .social-mark--facebook::before {
  font-size: 1.55rem;
  transform: translateY(3px);
}

.footer-grid .copyright-line {
  grid-column: 1 / -1;
  padding-top: 18px;
  color: var(--gold-2);
  text-align: center;
  font-size: 1rem;
  font-weight: 800;
  border-top: 1px solid rgba(241, 213, 140, 0.18);
}

.whatsapp-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 12;
  display: grid;
  justify-items: end;
  gap: 14px;
}

.whatsapp-chat {
  width: min(340px, calc(100vw - 40px));
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(216, 169, 75, 0.34);
  border-radius: 8px;
  box-shadow: 0 24px 68px rgba(8, 30, 25, 0.28);
  transform-origin: bottom right;
  animation: whatsappChatIn 180ms ease both;
}

.whatsapp-chat[hidden] {
  display: none;
}

.whatsapp-chat-header {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  color: var(--white);
  background: linear-gradient(135deg, #128c4a, #075e54);
}

.whatsapp-chat-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: #25d366;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

.whatsapp-chat-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.whatsapp-chat-header strong,
.whatsapp-chat-header small {
  display: block;
  line-height: 1.2;
}

.whatsapp-chat-header small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
}

.whatsapp-close {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  cursor: pointer;
}

.whatsapp-close svg {
  width: 18px;
  height: 18px;
}

.whatsapp-chat-body {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.whatsapp-chat-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.whatsapp-chat textarea {
  width: 100%;
  min-height: 108px;
  resize: vertical;
  color: var(--ink);
  background: #f4faf6;
  border: 1px solid rgba(18, 140, 74, 0.22);
  border-radius: 8px;
  outline: none;
}

.whatsapp-chat textarea:focus {
  border-color: #25d366;
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.14);
}

.whatsapp-send {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--white);
  background: linear-gradient(135deg, #25d366, #128c4a);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
}

.whatsapp-send svg {
  width: 18px;
  height: 18px;
}

.whatsapp-float {
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(135deg, #25d366, #128c4a);
  border: 2px solid rgba(241, 213, 140, 0.78);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 18px 44px rgba(8, 30, 25, 0.34), 0 0 0 8px rgba(37, 211, 102, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease;
  animation: whatsappFloat 2.8s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 24px 54px rgba(8, 30, 25, 0.42), 0 0 0 10px rgba(37, 211, 102, 0.16);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
  animation: whatsappIconPulse 2.8s ease-in-out infinite;
}

.whatsapp-float span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.back-to-top {
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 11;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  color: var(--gold-2);
  background: rgba(9, 21, 18, 0.36);
  border: 1px solid rgba(241, 213, 140, 0.5);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(8, 30, 25, 0.18);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  backdrop-filter: blur(12px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.back-to-top:hover {
  background: rgba(9, 21, 18, 0.62);
  border-color: rgba(241, 213, 140, 0.82);
}

.back-to-top svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.8;
}

@keyframes whatsappFloat {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 18px 44px rgba(8, 30, 25, 0.34), 0 0 0 8px rgba(37, 211, 102, 0.12);
  }

  50% {
    transform: translateY(-5px);
    box-shadow: 0 24px 56px rgba(8, 30, 25, 0.4), 0 0 0 12px rgba(37, 211, 102, 0.18);
  }
}

@keyframes whatsappIconPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

@keyframes whatsappChatIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav,
  .header-action {
    display: none;
  }

  .site-nav.is-open {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    padding: 10px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open a {
    padding: 14px;
  }

  .partners-grid,
  .metrics-grid,
  .service-grid,
  .gallery-grid,
  .quality-grid,
  .plan-grid,
  .review-grid,
  .price-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .feature-layout,
  .showcase-grid,
  .testimonial-layout,
  .contact-grid,
  .offers-layout,
  .blog-tips-layout,
  .price-cta,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about,
  .services,
  .image-gallery,
  .feature-band,
  .quality,
  .plans,
  .customer-reviews,
  .price-section,
  .blog-section,
  .blog-tips-band,
  .offers-band,
  .faq,
  .contact {
    padding: 72px 0;
  }

  .contact.contact-page {
    padding-top: 160px;
  }

  .blog-card-featured {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }

  .blog-card-featured img {
    min-height: 280px;
  }

  .price-cta {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .price-cta-actions {
    justify-content: flex-start;
  }

  .image-panel img {
    height: 420px;
  }
}

@media (max-width: 640px) {
  .section-shell,
  .hero-content {
    width: min(1180px, calc(100% - 28px));
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    gap: 10px;
    padding: 11px 12px;
  }

  .site-header .brand {
    gap: 10px;
  }

  .site-header .brand strong {
    font-size: 1.42rem;
    line-height: 1;
  }

  .site-header .brand b {
    font-size: 1.02rem;
    line-height: 1.02;
  }

  .site-header .brand small {
    font-size: 0.86rem;
    line-height: 1.05;
  }

  .site-header .logo-shine,
  .site-header .brand-logo {
    width: 86px;
    height: 86px;
  }

  .site-header.is-scrolled .logo-shine,
  .site-header.is-scrolled .brand-logo {
    width: 76px;
    height: 76px;
  }

  .site-header.is-scrolled .brand strong {
    font-size: 1.24rem;
  }

  .site-header.is-scrolled .brand b {
    font-size: 0.94rem;
  }

  .site-header.is-scrolled .brand small {
    font-size: 0.78rem;
  }

  .hero {
    min-height: 96vh;
  }

  .hero-content {
    padding-bottom: 44px;
  }

  .hero h1 {
    max-width: 330px;
    font-size: 1.92rem;
    line-height: 1.08;
  }

  .hero-copy {
    max-width: 340px;
  }

  .eyebrow,
  .section-kicker {
    font-size: 0.82rem;
  }

  .hero .eyebrow {
    margin-bottom: 16px;
    font-size: clamp(0.62rem, 2.15vw, 0.82rem);
    line-height: 1.1;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 18, 15, 0.92), rgba(5, 18, 15, 0.72) 64%, rgba(5, 18, 15, 0.36)),
      linear-gradient(0deg, rgba(5, 18, 15, 0.7), transparent 42%);
  }

  .hero-media img {
    object-position: 56% center;
  }

  .hero-copy {
    font-size: 1rem;
  }

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

  .price-hero {
    min-height: 82vh;
  }

  .blog-hero {
    min-height: 82vh;
  }

  .price-hero-content {
    min-height: 82vh;
    padding-top: 136px;
    padding-bottom: 54px;
  }

  .blog-hero-content {
    min-height: 82vh;
    padding-top: 136px;
    padding-bottom: 54px;
  }

  .price-hero-content h1 {
    max-width: 340px;
    font-size: 2.12rem;
    line-height: 1.06;
  }

  .blog-hero-content h1 {
    max-width: 350px;
    font-size: 2.12rem;
    line-height: 1.06;
  }

  .price-hero-content p:not(.eyebrow) {
    max-width: 350px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .blog-hero-content p:not(.eyebrow) {
    max-width: 350px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .trust-row span {
    width: 100%;
  }

  .hero-panel {
    position: static;
    width: 310px;
    max-width: 100%;
    margin-top: 22px;
  }

  .partners-grid,
  .metrics-grid,
  .service-grid,
  .gallery-grid,
  .quality-grid,
  .plan-grid,
  .review-grid,
  .price-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .price-list-panel {
    scroll-margin-top: 128px;
  }

  .price-list-header {
    grid-template-columns: 1fr;
    padding: 16px 14px 10px;
  }

  .price-list-header span {
    text-align: left;
  }

  .price-table-wrap {
    margin: 0 10px 14px;
  }

  .price-table {
    min-width: 720px;
    font-size: 0.76rem;
  }

  .price-table th,
  .price-table td {
    padding: 7px 8px;
  }

  .price-table th:first-child,
  .price-table td:first-child {
    min-width: 230px;
  }

  .blog-card-featured {
    grid-column: span 1;
  }

  .blog-card-featured img,
  .blog-card img {
    height: 250px;
    min-height: 0;
  }

  .gallery-card.wide {
    grid-column: span 1;
  }

  .gallery-card,
  .gallery-card img {
    min-height: 300px;
  }

  .gallery-card.fit-landscape,
  .gallery-card.fit-landscape img {
    min-height: 0;
  }

  .partners-grid span {
    min-height: 58px;
  }

  .step {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    gap: 34px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-self: start;
  }

  .social-links {
    flex-wrap: wrap;
  }

  .whatsapp-widget {
    right: 16px;
    bottom: 16px;
  }

  .whatsapp-float {
    width: 58px;
    height: 58px;
  }

  .whatsapp-float svg {
    width: 31px;
    height: 31px;
  }

  .back-to-top {
    bottom: 84px;
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.84rem;
  }
}

@media (max-width: 380px) {
  .site-header .brand {
    gap: 9px;
  }

  .site-header .logo-shine,
  .site-header .brand-logo {
    width: 74px;
    height: 74px;
  }

  .site-header .brand strong {
    font-size: 1.18rem;
  }

  .site-header .brand b {
    font-size: 0.9rem;
  }

  .site-header .brand small {
    font-size: 0.76rem;
  }

  .site-header.is-scrolled .logo-shine,
  .site-header.is-scrolled .brand-logo {
    width: 66px;
    height: 66px;
  }

  .contact-cards {
    gap: 10px;
  }

  .contact-cards a.social-contact {
    gap: 10px;
    min-height: 64px;
    padding: 12px;
    font-size: 0.9rem;
  }

  .contact-cards .social-mark {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }
}
