:root {
  --bg: #faf7f5;
  --ink: #1c1a19;
  --muted: #6f6660;
  --accent: #b07a6b;
  --accent-dark: #996759;
  --card: #ffffff;
  --line: rgba(0,0,0,0.08);
  --shadow: 0 20px 35px rgba(0,0,0,0.12);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

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

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

.container { width: min(1100px, 90vw); margin: 0 auto; }

.section { padding: 72px 0; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  color: var(--muted);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 1rem;
}

.logo img {
  height: 72px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a:hover { color: var(--ink); }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(176,122,107,0.35);
  background: transparent;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  display: block;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn-desktop { display: inline-flex; }

.nav-links .btn-menu {
  display: none;
  justify-content: center;
  margin-top: 6px;
}

.nav-solid {
  background: rgba(250,247,245,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 20px rgba(0,0,0,0.08);
}

.hero {
  padding: 0 0 72px;
  background:
    linear-gradient(180deg, rgba(250,247,245,0.9), rgba(250,247,245,0.85)),
    url("../img/hero-fondo.png") center/cover no-repeat;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
  padding-top: 88px;
}

.hero-animate .hero-text {
  opacity: 0;
  transform: translateY(16px);
  animation: heroFadeUp 700ms ease forwards;
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin: 12px 0 16px;
  line-height: 1.05;
}

.lead { color: var(--muted); font-size: 1.05rem; max-width: 520px; }

.hero-actions {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 18px;
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-trust strong {
  display: block;
  font-size: 1.1rem;
  color: var(--ink);
}

.hero-media {
  display: grid;
  gap: 16px;
}

.hero-photo {
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(176,122,107,0.18), rgba(255,255,255,0.7)),
    url("../img/foto-elegante.png") center/cover no-repeat;
  min-height: 520px;
  display: grid;
  place-items: center;
  color: var(--muted);
  text-align: center;
  border: 1px dashed rgba(176,122,107,0.35);
}

.hero-photo span {
  padding: 16px 20px;
  background: rgba(255,255,255,0.8);
  border-radius: 999px;
  font-size: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  border: 1px solid var(--accent);
  box-shadow: 0 12px 20px rgba(176,122,107,0.25);
  transition: transform 0.15s ease, background 0.15s ease;
  position: relative;
  overflow: hidden;
}

.btn:hover { transform: translateY(-2px); background: var(--accent-dark); }

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}

.btn:hover::after { transform: translateX(120%); }

.btn-outline {
  background: transparent;
  color: var(--accent-dark);
  border-color: rgba(176,122,107,0.4);
  box-shadow: 0 8px 16px rgba(176,122,107,0.18);
}

.btn-outline:hover { background: rgba(176,122,107,0.1); }

.hero-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.hero-card .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(176,122,107,0.12);
  color: var(--accent-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.82rem;
  width: fit-content;
}

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

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

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.card-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  background: linear-gradient(135deg, #f1e7e3, #fff);
  border: 1px dashed rgba(176,122,107,0.35);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.treatment-card {
  position: relative;
  display: grid;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.treatment-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 30px rgba(0,0,0,0.15);
}

.treatment-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(176,122,107,0.9);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 0 0 0 rgba(176,122,107,0.35);
  animation: badgeGlow 2.4s ease-in-out infinite;
}

.treatment-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.treatment-chips span {
  background: rgba(176,122,107,0.12);
  color: var(--accent-dark);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
}

@keyframes badgeGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(176,122,107,0.35); }
  50% { box-shadow: 0 0 16px 4px rgba(176,122,107,0.25); }
}

.card h3 { margin: 0 0 8px; font-size: 1.1rem; }

.card p { margin: 0; color: var(--muted); }

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.before-after .frame {
  background: linear-gradient(135deg, #f1e7e3, #fff);
  border: 1px dashed rgba(176,122,107,0.35);
  border-radius: 18px;
  padding: 28px;
  text-align: center;
  color: var(--muted);
}

.before-after.single {
  grid-template-columns: 1fr;
}

.before-after.single img {
  width: 100%;
  display: block;
  border-radius: 18px;
  border: 1px solid rgba(176,122,107,0.2);
  box-shadow: var(--shadow);
}

.testimonials-carousel {
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: testimonialsScroll 60s linear infinite;
}

.testimonials-carousel:hover .testimonials-track {
  animation-play-state: paused;
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  box-shadow: none;
  display: grid;
  gap: 10px;
  min-width: 280px;
}

.testimonial-header {
  display: flex;
  gap: 12px;
  align-items: center;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(176,122,107,0.15);
  color: var(--accent-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  overflow: hidden;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-header strong {
  display: block;
  font-size: 1rem;
}

.testimonial-header span {
  color: var(--muted);
  font-size: 0.85rem;
}

.testimonial-stars {
  color: #c08b1a;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
}

.testimonial-card p {
  margin: 0;
  color: var(--muted);
}

@keyframes testimonialsScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.cta {
  background:
    linear-gradient(180deg, rgba(250,247,245,0.7), rgba(250,247,245,0.55)),
    url("../img-cta/cta-final.png") center/cover no-repeat;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
}

.cta-content h2 {
  font-family: "Playfair Display", serif;
  margin: 8px 0 12px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.cta-points {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.cta-point {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
}

.cta-point span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(176,122,107,0.18);
  color: var(--accent-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex: 0 0 24px;
  margin-top: 2px;
}

.cta-point p {
  margin: 0;
}

.cta-box {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.cta-box input, .cta-box select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font: inherit;
}

.cta-box .btn {
  padding: 14px 22px;
  font-size: 1rem;
  min-height: 52px;
}

.why-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
}

.why-intro {
  position: relative;
  padding-left: 16px;
}

.why-intro::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, rgba(176,122,107,0.45), rgba(176,122,107,0.05));
}

.why-intro h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 10px 0 12px;
}

.why-cards {
  display: grid;
  gap: 14px;
}

.why-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 28px rgba(0,0,0,0.14);
}

.why-card h3 { margin: 0 0 6px; font-size: 1.05rem; }

.why-card p { margin: 0; color: var(--muted); }

.why-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(176,122,107,0.12);
  color: var(--accent-dark);
  font-size: 1rem;
  flex: 0 0 40px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-card:hover .why-icon {
  transform: scale(1.06);
  box-shadow: 0 8px 18px rgba(176,122,107,0.2);
}
.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: var(--shadow);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  float: right;
  color: var(--muted);
  margin-left: auto;
}

.faq details[open] summary::after { content: "-"; }

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

.faq details[open] {
  border-color: rgba(176,122,107,0.35);
  box-shadow: 0 16px 26px rgba(176,122,107,0.12);
  background: rgba(176,122,107,0.06);
}

.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(176,122,107,0.15);
  color: var(--accent-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex: 0 0 30px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 16px;
}

.contact-card p { margin: 6px 0 0; }

.contact-main {
  min-height: 100%;
}

.contact-person {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin: 12px 0;
}

.contact-person img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.contact-person strong {
  display: block;
}

.contact-person span {
  color: var(--muted);
  font-size: 0.85rem;
}

.copy-btn {
  background: transparent;
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.85rem;
}

.copy-btn:hover { border-color: rgba(176,122,107,0.4); }

.contact-line { color: var(--muted); }

.contact-profile .contact-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}

.contact-avatars {
  position: relative;
  width: 64px;
  height: 40px;
}

.contact-avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  position: absolute;
  top: 0;
}

.contact-avatars img:first-child { left: 0; z-index: 2; }
.contact-avatars img:last-child { left: 22px; z-index: 1; }

.contact-profile .contact-header strong {
  display: block;
  font-size: 1.05rem;
}

.contact-profile .contact-header span {
  color: var(--muted);
  font-size: 0.85rem;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #59c46b;
  box-shadow: 0 0 0 4px rgba(89,196,107,0.15);
}

.contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 16px 0 12px;
}

.contact-actions .btn {
  width: 100%;
  justify-content: center;
}

.contact-numbers {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  margin-bottom: 10px;
  background: rgba(255,255,255,0.6);
}

.contact-numbers span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.contact-numbers strong {
  font-size: 0.98rem;
}

.contact-map .map-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.contact-map .map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 12px;
}

.map-info h3 { margin: 0 0 6px; font-size: 1rem; }

.map-info p { margin: 0; color: var(--muted); }

.process-timeline {
  position: relative;
  display: grid;
  gap: 16px;
  padding-left: 30px;
}

.process-line {
  position: absolute;
  left: 12px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, rgba(176,122,107,0.4), rgba(176,122,107,0.1));
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 0.6s ease;
}

.process-timeline.is-visible .process-line {
  transform: scaleY(1);
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.process-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 28px rgba(0,0,0,0.14);
}
.process-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(176,122,107,0.15);
  color: var(--accent-dark);
  font-weight: 700;
  flex: 0 0 32px;
}

.process-step h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.process-step p {
  margin: 0;
  color: var(--muted);
}

footer {
  padding: 28px 7vw 36px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.65);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-left {
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.footer-social a {
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.6);
}

.footer-social a:hover {
  color: var(--ink);
  border-color: rgba(176,122,107,0.4);
}

.footer .social-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 26px;
  object-fit: cover;
}

.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: #ffffff;
  color: #25d366;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.25);
  z-index: 20;
  border: 1px solid rgba(37, 211, 102, 0.25);
}

.wa-float:hover {
  transform: translateY(-2px);
}

.wa-float img {
  width: 42px;
  height: 42px;
  display: block;
}

.wa-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 30;
}

.wa-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.wa-modal-card {
  width: min(320px, 90vw);
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 34px rgba(0,0,0,0.2);
  padding: 16px;
  position: relative;
}

.wa-modal-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.wa-modal-card p {
  margin: 0 0 14px;
  color: var(--muted);
}

.wa-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.wa-close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: none;
  background: transparent;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .grid-4, .grid-3, .testimonials { grid-template-columns: 1fr 1fr; }
  .cta-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: column; gap: 8px; }
  .benefits-row { grid-template-columns: 1fr 1fr; }
  .why-layout { grid-template-columns: 1fr; }
  .map-info { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .grid-4, .grid-3, .testimonials, .before-after { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .nav-inner {
    grid-template-columns: 1fr auto;
  }
  .nav-toggle { display: inline-flex; }
  .btn-desktop { display: none; }
  .nav-links .btn-menu { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    right: 5vw;
    left: 5vw;
    display: grid;
    gap: 10px;
    padding: 16px;
    background: rgba(250,247,245,0.98);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.12);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .nav-links.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .benefits-strip {
    overflow: hidden;
  }
  .benefits-row {
    display: flex !important;
    gap: 14px;
    width: max-content;
    animation: none;
    flex-wrap: nowrap;
    align-items: center;
  }
  .benefit-item {
    min-width: 260px;
    flex: 0 0 260px;
  }
  .benefit-dup {
    display: flex !important;
  }
  .hero-text {
    order: 1;
  }
  .hero-image {
    display: none;
  }
  .hero {
    background:
      linear-gradient(180deg, rgba(250,247,245,0.65), rgba(250,247,245,0.5)),
      url("../img/foto-elegante.png") center/cover no-repeat;
  }
  .why-intro {
    padding-left: 0;
  }
  .why-intro::before {
    display: none;
  }
  .why-intro h2 {
    font-size: 1.6rem;
  }
  .why-cards {
    margin-top: 16px;
  }
  .footer {
    flex-direction: column;
    text-align: center;
  }
  .wa-float {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }
  .wa-modal {
    padding: 16px;
  }
}
.benefits-strip {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.5);
}

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

.benefit-dup {
  display: none;
}

.benefit-item {
  display: flex;
  gap: 12px;
  align-items: center;
}

.benefit-item.benefit-dup {
  display: none;
}

.benefit-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(176,122,107,0.12);
  color: var(--accent-dark);
  font-size: 1rem;
  flex: 0 0 36px;
}

.benefit-item strong {
  display: block;
  font-size: 0.98rem;
}

.benefit-item span {
  color: var(--muted);
  font-size: 0.85rem;
}

.reveal-up {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes benefitsScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

