:root {
  --color-evergreen: #0a281b;
  --color-white: #ffffff;
  --color-off-white: #fcfbfa;
  --color-cream: #ebe8e4;
  --color-muted: #8a8874;
  --color-gold: #d89a19;
  --color-gold-dark: #a96e00;
  --color-border: #ddd8d0;
  --color-text: #18231e;
  --font-heading: "DM Serif Display", Georgia, serif;
  --font-body: "DM Sans", Arial, sans-serif;
  --shadow-soft: 0 10px 28px rgba(10, 40, 27, 0.09);
  --radius: 10px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  color: var(--color-text);
  background: var(--color-off-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

main {
  flex: 1;
}

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid #e7ad35;
  outline-offset: 3px;
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 88px 0;
}

.section-small {
  padding: 56px 0;
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--color-cream);
  background: rgba(255, 255, 255, 0.98);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  width: min(300px, 38vw);
}

.brand img {
  width: 100%;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 42px;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}

.phone-link svg {
  width: 24px;
  height: 24px;
}

.phone-link span {
  display: grid;
}

.phone-link strong {
  font-size: 16px;
}

.phone-link small {
  font-size: 13px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

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

.button svg {
  width: 19px;
  height: 19px;
  flex: none;
}

.button-primary {
  color: var(--color-white);
  background: var(--color-evergreen);
  box-shadow: 0 7px 15px rgba(10, 40, 27, 0.18);
}

.button-outline {
  color: var(--color-evergreen);
  border-color: var(--color-evergreen);
  background: rgba(255, 255, 255, 0.78);
}

.button-wide {
  width: 100%;
}

.button-gold {
  color: var(--color-white);
  background: var(--color-gold);
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.2);
}

.button-light-outline {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(5, 29, 19, 0.5);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 42px 0 40px;
  background: radial-gradient(circle at 15% 30%, #fff 0, #fcfbfa 44%, #f7f4ef 100%);
}

.hero-decoration {
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: clamp(85px, 10vw, 160px);
  max-height: 42%;
  object-fit: contain;
  object-position: left bottom;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.77fr) minmax(0, 1.55fr);
  align-items: start;
  gap: 46px;
}

.hero-copy {
  padding: 8px 0 0 8px;
}

.eyebrow {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding: 8px 15px;
  border: 1px solid #e4d9c4;
  border-radius: 999px;
  background: #faf5eb;
  color: var(--color-evergreen);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.eyebrow svg {
  width: 18px;
  height: 18px;
}

.address {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
  font-weight: 600;
}

.address svg {
  width: 21px;
  height: 21px;
  color: var(--color-evergreen);
  fill: var(--color-evergreen);
}

.hero h1 {
  margin-bottom: 14px;
  color: var(--color-evergreen);
  font-family: var(--font-heading);
  font-size: clamp(46px, 4.5vw, 64px);
  font-weight: 400;
  line-height: 1.02;
}

.hero h1 span {
  color: var(--color-gold-dark);
}

.hero-intro {
  max-width: 520px;
  margin-bottom: 18px;
  font-size: 17px;
  line-height: 1.5;
}

.scan-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding: 12px 14px;
  border: 1px solid #e8ddcb;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 600;
}

.scan-note > svg {
  width: 32px;
  height: 32px;
  flex: none;
}

.scan-note .sparkle {
  width: 24px;
  height: 24px;
  margin-left: auto;
  color: var(--color-gold);
}

.secondary-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 12px;
}

.preview-column {
  min-width: 0;
}

.comparison {
  position: relative;
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 500px;
  overflow: hidden;
  border-radius: 14px;
  background: #192a27;
  box-shadow: var(--shadow-soft);
}

.comparison figure {
  position: relative;
  min-width: 0;
  margin-bottom: 0;
  overflow: hidden;
}

.comparison figure:first-child {
  border-right: 2px solid rgba(255, 255, 255, 0.9);
}

.comparison img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.comparison figcaption {
  position: absolute;
  top: 22px;
  padding: 8px 20px;
  border-radius: 999px;
  color: var(--color-white);
  background: rgba(7, 25, 24, 0.78);
  font-size: 13px;
  font-weight: 700;
}

.comparison figure:first-child figcaption {
  left: 22px;
}

.comparison figure:nth-child(2) figcaption {
  right: 22px;
  background: var(--color-gold);
}

.comparison-handle {
  position: absolute;
  top: 50%;
  left: 42%;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--color-evergreen);
  background: var(--color-white);
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.25);
  transform: translate(-50%, -50%);
}

.comparison-handle svg {
  width: 30px;
  height: 30px;
}

.trust-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  padding: 18px 24px;
  border: 1px solid #e7ddcf;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 5px 14px rgba(10, 40, 27, 0.05);
}

.trust-strip p {
  margin: 0;
  font-size: 14px;
}

.trust-strip > strong {
  display: grid;
  font-size: 20px;
  line-height: 1.1;
}

.trust-strip > strong small {
  font-size: 12px;
  font-weight: 500;
}

.rating {
  display: flex;
  color: var(--color-gold);
}

.rating svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke-width: 1;
}

.avatars {
  display: flex;
  padding-left: 10px;
}

.avatars img {
  width: 38px;
  height: 38px;
  margin-left: -10px;
  border: 2px solid var(--color-white);
  border-radius: 50%;
  object-fit: cover;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 34px;
  color: var(--color-evergreen);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.07em;
  text-align: center;
}

.section-title::before,
.section-title::after {
  width: 48px;
  height: 1px;
  content: "";
  background: var(--color-gold);
}

.section-title.title-case {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0;
}

.packages {
  background: var(--color-off-white);
}

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

.package-card {
  position: relative;
  padding: 24px;
  border: 1px solid var(--color-evergreen);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 20px rgba(10, 40, 27, 0.04);
}

.package-card.featured {
  border-color: var(--color-gold);
  background: #fffaf1;
  box-shadow: 0 12px 28px rgba(175, 111, 0, 0.12);
}

.package-card > p:not(.popular) {
  min-height: 48px;
  margin: 12px 0 18px 64px;
  font-size: 14px;
}

.package-heading {
  display: flex;
  align-items: center;
  gap: 16px;
}

.package-heading img {
  width: 48px;
  height: 58px;
  object-fit: contain;
}

.package-heading h3 {
  margin-bottom: 0;
  color: var(--color-evergreen);
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.1;
}

.package-heading strong {
  font-size: 14px;
}

.popular {
  position: absolute;
  top: 0;
  left: 50%;
  width: 190px;
  margin: 0;
  padding: 7px 12px;
  border-radius: 0 0 7px 7px;
  color: var(--color-white);
  background: var(--color-gold-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  transform: translate(-50%, -1px);
}

.featured .package-heading {
  margin-top: 22px;
}

.package-photo {
  width: 100%;
  aspect-ratio: 2.8 / 1;
  border-radius: 7px;
  object-fit: cover;
  object-position: center;
}

.check-list {
  display: grid;
  gap: 5px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}

.check-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before {
  position: absolute;
  left: 2px;
  top: 0;
  width: 7px;
  height: 12px;
  content: "";
  border-right: 2px solid var(--color-gold-dark);
  border-bottom: 2px solid var(--color-gold-dark);
  transform: rotate(45deg);
}

.personalize {
  background: #fdfcfb;
}

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

.option-card {
  padding: 16px 14px 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
  text-align: center;
  box-shadow: 0 5px 15px rgba(10, 40, 27, 0.035);
}

.option-card h3 {
  margin: 12px 0 2px;
  color: var(--color-evergreen);
  font-size: 17px;
  line-height: 1.2;
}

.option-card p {
  margin-bottom: 0;
  color: #3e4943;
  font-size: 13px;
  line-height: 1.35;
}

.option-image {
  height: 92px;
  overflow: hidden;
  border-radius: 7px;
  background: #12241e;
}

.option-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.option-image.transparent {
  background: transparent;
}

.option-image.transparent img {
  object-fit: contain;
}

.services {
  padding-top: 24px;
  background: var(--color-off-white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
}

.service-grid article {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 22px 18px;
}

.service-grid article + article {
  border-left: 1px solid var(--color-border);
}

.service-grid img {
  width: 46px;
  height: 46px;
  flex: none;
  object-fit: contain;
}

.service-grid h3 {
  margin-bottom: 3px;
  color: var(--color-evergreen);
  font-size: 15px;
  line-height: 1.25;
}

.service-grid p {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.35;
}

.guarantees {
  padding: 26px 0;
  color: var(--color-white);
  background: var(--color-evergreen);
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.guarantee-grid article {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 0 20px;
}

.guarantee-grid article + article {
  border-left: 1px solid rgba(216, 154, 25, 0.55);
}

.guarantee-grid img {
  width: 42px;
  height: 42px;
  flex: none;
  object-fit: contain;
}

.guarantee-grid h3 {
  margin-bottom: 2px;
  font-size: 14px;
  line-height: 1.3;
}

.guarantee-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  line-height: 1.35;
}

.social-proof {
  padding-bottom: 64px;
  background: #fffefd;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: start;
  gap: 32px;
}

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

.testimonial-card {
  display: flex;
  gap: 12px;
  min-height: 205px;
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
}

.quote-mark {
  width: 26px;
  height: 26px;
  flex: none;
  color: var(--color-gold);
  fill: var(--color-gold);
  stroke: none;
}

.testimonial-card blockquote {
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 1.55;
}

.testimonial-card footer {
  display: grid;
  font-size: 13px;
}

.text-rating {
  margin-top: 7px;
  color: var(--color-gold);
  letter-spacing: 0.1em;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 205px;
  padding: 24px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
}

.benefit-grid article {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  text-align: center;
}

.benefit-grid img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.benefit-grid h3 {
  margin: 14px 0 0;
  color: var(--color-evergreen);
  font-size: 14px;
  line-height: 1.3;
}

.process {
  padding-top: 16px;
  background: var(--color-off-white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  padding: 28px 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
}

.process-grid article {
  position: relative;
  padding: 0 24px;
  text-align: left;
}

.process-grid article:not(:last-child)::after {
  position: absolute;
  top: 29px;
  right: -7px;
  width: 28px;
  height: 1px;
  content: "";
  background: var(--color-muted);
}

.process-grid span {
  position: absolute;
  top: 0;
  left: 24px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--color-white);
  background: var(--color-evergreen);
  font-weight: 700;
}

.process-grid img {
  width: 48px;
  height: 48px;
  margin: 0 0 14px 45px;
  object-fit: contain;
}

.process-grid h3 {
  margin-bottom: 7px;
  color: var(--color-evergreen);
  font-size: 15px;
}

.process-grid p {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.4;
}

.closing-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--color-white);
  background:
    radial-gradient(circle at 12% 26%, rgba(224, 182, 96, 0.20), transparent 9%),
    radial-gradient(circle at 26% 74%, rgba(224, 182, 96, 0.14), transparent 7%),
    radial-gradient(circle at 68% 22%, rgba(224, 182, 96, 0.16), transparent 8%),
    radial-gradient(circle at 88% 68%, rgba(224, 182, 96, 0.18), transparent 9%),
    radial-gradient(circle at 48% 90%, rgba(224, 182, 96, 0.10), transparent 6%),
    var(--color-evergreen);
}

.closing-background {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.closing-cta::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: rgba(3, 35, 23, 0.28);
}

.closing-decoration {
  position: absolute;
  z-index: -1;
  right: -10px;
  bottom: -15px;
  width: clamp(130px, 18vw, 270px);
  transform: scaleX(-1);
}

.closing-inner {
  min-height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 52px;
  padding-top: 32px;
  padding-bottom: 32px;
}

.closing-home {
  width: 170px;
  height: 170px;
  flex: none;
  border: 4px solid var(--color-white);
  border-radius: 50%;
  object-fit: cover;
}

.closing-content {
  text-align: center;
}

.closing-content h2 {
  margin-bottom: 0;
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.4vw, 46px);
  font-weight: 400;
  line-height: 1.1;
}

.closing-content > p {
  margin-bottom: 16px;
  font-size: 17px;
}

.closing-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.closing-points {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
}

.closing-points li {
  position: relative;
  padding-left: 18px;
}

.closing-points li::before {
  position: absolute;
  top: 5px;
  left: 0;
  width: 9px;
  height: 9px;
  content: "";
  border: 2px solid var(--color-gold);
  border-radius: 50%;
}

@media (max-width: 820px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 720px;
    padding-left: 0;
  }

  .comparison {
    min-height: 470px;
  }

  .package-grid {
    gap: 18px;
  }

  .package-card {
    padding: 20px;
  }

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

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

  .service-grid article + article,
  .guarantee-grid article + article {
    border-left: 0;
  }

  .service-grid article,
  .guarantee-grid article {
    border-bottom: 1px solid var(--color-border);
  }

  .guarantee-grid article {
    padding: 18px;
    border-color: rgba(216, 154, 25, 0.35);
  }

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

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

  .process-grid article:not(:last-child)::after {
    content: none;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 64px 0;
  }

  .section-small {
    padding: 44px 0;
  }

  .header-inner {
    min-height: 76px;
  }

  .brand {
    width: 220px;
  }

  .header-nav {
    gap: 10px;
  }

  .phone-link {
    display: none;
  }

  .header-nav .button {
    min-height: 42px;
    padding: 10px 13px;
    font-size: 13px;
  }

  .hero {
    padding-top: 30px;
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 54px);
  }

  .hero-intro {
    font-size: 16px;
  }

  .comparison {
    min-height: 390px;
  }

  .trust-strip {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

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

  .package-card > p:not(.popular) {
    min-height: 0;
  }

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

  .testimonial-grid,
  .benefit-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .closing-inner {
    flex-direction: column;
    gap: 20px;
  }

  .closing-home {
    width: 140px;
    height: 140px;
  }

  .closing-actions,
  .closing-points {
    flex-wrap: wrap;
  }
}

@media (max-width: 520px) {
  .brand {
    width: 180px;
  }

  .header-nav .button svg {
    display: none;
  }

  .hero-decoration {
    opacity: 0.35;
  }

  .eyebrow {
    font-size: 11px;
  }

  .secondary-actions {
    grid-template-columns: 1fr;
  }

  .comparison {
    min-height: 300px;
    grid-template-columns: 44% 56%;
  }

  .comparison-handle {
    left: 44%;
    width: 48px;
    height: 48px;
  }

  .comparison figcaption {
    top: 12px;
    padding: 6px 11px;
    font-size: 11px;
  }

  .comparison figure:first-child figcaption {
    left: 10px;
  }

  .comparison figure:nth-child(2) figcaption {
    right: 10px;
  }

  .trust-strip p {
    width: 100%;
  }

  .section-title {
    gap: 10px;
    font-size: 16px;
  }

  .section-title::before,
  .section-title::after {
    width: 24px;
  }

  .option-grid,
  .service-grid,
  .guarantee-grid,
  .testimonial-grid,
  .benefit-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-grid article,
  .guarantee-grid article {
    border-bottom: 1px solid var(--color-border);
  }

  .testimonial-card {
    min-height: 0;
  }

  .benefit-grid {
    gap: 12px;
  }

  .benefit-grid article {
    padding: 18px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
  }

  .process-grid {
    gap: 32px;
  }

  .process-grid article {
    padding: 0 8px;
  }

  .process-grid span {
    left: 8px;
  }

  .closing-actions {
    display: grid;
  }

  .closing-points {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}
/* --- polish: personalize toggle/radio controls + before/after label sides --- */
.option-card { display: flex; flex-direction: column; align-items: center; }
.option-card p { margin-bottom: 0; }
.opt-toggle { margin-top: 13px; width: 42px; height: 24px; border-radius: 999px; background: #cfd4cf; position: relative; flex: none; }
.opt-toggle::after { content: ""; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: #fff; box-shadow: 0 1px 2px rgba(0,0,0,.28); }
.opt-toggle.on { background: var(--color-evergreen); }
.opt-toggle.on::after { left: 21px; }
.opt-radio { margin-top: 13px; width: 22px; height: 22px; border-radius: 50%; border: 2px solid #c2c8c2; flex: none; position: relative; }
.opt-radio.on { border-color: var(--color-evergreen); }
.opt-radio.on::after { content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--color-evergreen); }
.comparison figure:first-of-type figcaption { left: 18px; }
.comparison figure:last-of-type figcaption { right: 18px; }

/* fix: before/after images must fully cover their columns (no dark seam) */
.comparison figure { width: 100%; height: 100%; }
.comparison img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* fix: before/after must fill edge-to-edge (grid was shifting the figures +40px) */
.comparison { display: flex !important; }
.comparison figure { position: relative; margin: 0; overflow: hidden; min-width: 0; }
.comparison figure:first-child { flex: 0 0 42%; }
.comparison figure:last-child { flex: 1 1 58%; }
.comparison img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
