﻿/* DentalSoftWeb — sitio público */
:root {
  --blue: #009ee3;
  --blue-dark: #0077b3;
  --blue-light: #e8f6fd;
  --navy: #0f2744;
  --navy-soft: #1a4a7a;
  --orange: #ff6600;
  --orange-dark: #e55a00;
  --orange-light: #fff4eb;
  --text: #334155;
  --text-muted: #64748b;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --border: #e2e8f0;
  --green: #25d366;
  --green-dark: #1da851;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(15, 39, 68, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 39, 68, 0.12);
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --max: 1140px;
  --header-h: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--blue); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--blue-dark); }

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

/* ── Top bar ── */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 0.8125rem;
  padding: 0.4rem 0;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.topbar-contacts { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.topbar-contacts a { color: #fff; display: inline-flex; align-items: center; gap: 0.35rem; }
.topbar-contacts a:hover { color: var(--green); }

.topbar-social { display: flex; gap: 0.75rem; }
.topbar-social a { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.topbar-social a:hover { color: #fff; }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 0.4rem 0.85rem;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(15, 39, 68, 0.06);
}

.logo img { height: 54px; width: auto; max-width: 220px; object-fit: contain; }

.nav { display: flex; align-items: center; gap: 0.25rem; }

.nav a {
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
}

.nav a:hover, .nav a.active { color: var(--blue); background: var(--blue-light); }

.nav-cta {
  background: var(--blue) !important;
  color: #fff !important;
  padding: 0.55rem 1.1rem !important;
  border-radius: 999px !important;
  margin-left: 0.5rem;
}

.nav-cta:hover { background: var(--blue-dark) !important; color: #fff !important; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--navy);
  padding: 0.25rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9375rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); color: #fff; }

.btn-outline { background: transparent; border-color: var(--blue); color: var(--blue); }
.btn-outline:hover { background: var(--blue-light); }

.btn-video-orange {
  background: rgba(255, 102, 0, 0.3);
  border-color: rgba(255, 102, 0, 0.55);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-video-orange:hover {
  background: rgba(255, 102, 0, 0.48);
  border-color: rgba(255, 102, 0, 0.72);
  color: #fff;
}

.btn-whatsapp { background: var(--green); color: #fff; }
.btn-whatsapp:hover { background: var(--green-dark); color: #fff; }

.btn-lg { padding: 0.9rem 1.75rem; font-size: 1rem; }

.btn-block { width: 100%; }

/* ── Hero slider (3 slides originales) ── */
.hero-slider {
  position: relative;
  min-height: min(88vh, 780px);
  background: var(--navy);
  overflow: hidden;
}

.hero-slides { position: relative; width: 100%; height: min(88vh, 780px); }

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.035);
  transition: opacity 0.55s ease, visibility 0.55s, transform 0.85s ease;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  transform: scale(1);
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(15, 39, 68, 0.28) 0%,
    rgba(15, 39, 68, 0.12) 42%,
    rgba(15, 39, 68, 0.04) 68%,
    transparent 100%
  );
  pointer-events: none;
}

.hero-slide .hero-slide-wrap {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 640px;
  width: 100%;
  padding: 2.5rem 0;
  color: #fff;
  text-align: center;
}

.hero-slide-mark {
  width: 54px;
  height: 68px;
  margin-bottom: 0.4rem;
  opacity: 0;
  background: rgba(0, 158, 227, 0.58);
  -webkit-mask-image: url('../img/slider-bg.png');
  mask-image: url('../img/slider-bg.png');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  filter: drop-shadow(0 3px 16px rgba(0, 158, 227, 0.4));
}

.hero-slide-mark img {
  display: none;
}

.hero-slide-inner.is-visible .hero-slide-mark {
  animation: heroMarkFall 1.45s ease-in-out 0.05s both;
}

.hero-slide-inner.is-visible .hero-slide-tag {
  animation: heroRevealUp 0.42s ease 0.66s both;
}

.hero-slide-inner.is-visible h1 {
  animation: heroRevealUp 0.45s ease 0.58s both;
}

.hero-slide-inner.is-visible .hero-slide-lead {
  animation: heroRevealUp 0.45s ease 0.72s both;
}

.hero-slide-inner.is-visible .hero-slide-actions {
  animation: heroRevealUp 0.45s ease 0.78s both;
}

.hero-slide:nth-child(even) .hero-slide-inner.is-visible .hero-slide-mark {
  animation: heroMarkFall 1.45s ease-in-out 0.05s both;
}

.hero-slide:nth-child(even) .hero-slide-inner.is-visible .hero-slide-tag {
  animation: heroRevealDown 0.42s ease 0.66s both;
}

.hero-slide:nth-child(even) .hero-slide-inner.is-visible h1 {
  animation: heroRevealDown 0.45s ease 0.58s both;
}

.hero-slide:nth-child(even) .hero-slide-inner.is-visible .hero-slide-lead {
  animation: heroRevealDown 0.45s ease 0.72s both;
}

.hero-slide:nth-child(even) .hero-slide-inner.is-visible .hero-slide-actions {
  animation: heroRevealDown 0.45s ease 0.78s both;
}

.hero-slide-mark,
.hero-slide-tag,
.hero-slide-inner h1,
.hero-slide-lead,
.hero-slide-actions {
  opacity: 0;
  transform: translateY(10px);
}

.hero-slide-mark {
  transform: translateY(-40px);
}

.hero-slide:nth-child(even) .hero-slide-tag,
.hero-slide:nth-child(even) .hero-slide-inner h1,
.hero-slide:nth-child(even) .hero-slide-lead,
.hero-slide:nth-child(even) .hero-slide-actions {
  transform: translateY(-8px);
}

@keyframes heroMarkFall {
  0% {
    opacity: 0;
    transform: translateY(-40px) rotate(-3deg);
  }
  25% {
    opacity: 0.35;
  }
  75% {
    opacity: 0.92;
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes heroRevealUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroRevealDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transform: none;
    transition: opacity 0.3s ease, visibility 0.3s;
  }

  .hero-slide-mark,
  .hero-slide-tag,
  .hero-slide-inner h1,
  .hero-slide-lead,
  .hero-slide-actions {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}

.hero-slide-inner .btn-primary {
  background: rgba(0, 158, 227, 0.1);
  border: 2px solid rgba(0, 158, 227, 0.55);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero-slide-inner .btn-primary:hover {
  background: rgba(0, 158, 227, 0.5);
  border-color: rgba(0, 158, 227, 0.75);
  color: #fff;
}

.hero-slide-inner .btn-video-orange {
  background: rgba(255, 102, 0, 0.1);
  border-color: rgba(255, 102, 0, 0.55);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero-slide-inner .btn-video-orange:hover {
  background: rgba(255, 102, 0, 0.5);
  border-color: rgba(255, 102, 0, 0.72);
}

.hero-slide-inner .btn-outline {
  border-color: #fff;
  color: #fff;
}

.hero-slide-inner .btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: #fff;
}

.hero-slide-tag {
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ff9944;
  margin-bottom: 0.55rem;
  padding: 0.28rem 0.7rem;
  border-radius: 4px;
  background: rgba(15, 39, 68, 0.05);
  text-shadow:
    0 1px 8px rgba(0, 0, 0, 0.7),
    0 0 1px rgba(0, 0, 0, 0.85);
}

.hero-slide-inner h1 {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  color: #fff;
  padding: 0.15rem 0.45rem;
  border-radius: 6px;
  background: rgba(15, 39, 68, 0.05);
  text-shadow:
    0 2px 14px rgba(0, 0, 0, 0.7),
    0 1px 3px rgba(0, 0, 0, 0.55),
    0 0 1px rgba(0, 0, 0, 0.85);
}

.hero-slide-lead {
  display: block;
  width: fit-content;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.55;
  margin-bottom: 1.75rem;
  color: #fff;
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
  background: rgba(15, 39, 68, 0.05);
  text-shadow:
    0 1px 10px rgba(0, 0, 0, 0.65),
    0 1px 2px rgba(0, 0, 0, 0.5),
    0 0 1px rgba(0, 0, 0, 0.8);
}

.hero-slide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 0.25rem;
}

.hero-slider-controls {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-slider-dots { display: flex; gap: 0.5rem; }

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.65);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s;
}

.hero-dot.active { background: #fff; border-color: #fff; transform: scale(1.15); }

.hero-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s;
}

.hero-slider-arrow:hover { background: rgba(255, 255, 255, 0.35); }
.hero-slider-arrow.prev { left: 1rem; }
.hero-slider-arrow.next { right: 1rem; }

.hero-strip {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}

.hero-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-strip-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hero-strip-trust strong { display: block; font-size: 1.125rem; color: var(--navy); }

/* ── Hero (legacy simple) ── */
.hero {
  padding: 4rem 0 5rem;
  background: linear-gradient(160deg, var(--blue-light) 0%, #fff 55%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #fff;
  border: 1px solid var(--border);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.hero-lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  max-width: 32rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hero-trust strong { display: block; font-size: 1.25rem; color: var(--navy); }

.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--navy);
  aspect-ratio: 4/3;
}

.hero-visual img { width: 100%; height: 100%; object-fit: cover; }

.hero-visual-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 39, 68, 0.18);
}

.hero-visual-play a,
.hero-visual-play button {
  width: 64px;
  height: 64px;
  background: rgba(255, 102, 0, 0.3);
  border: 2px solid rgba(255, 102, 0, 0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(255, 102, 0, 0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}

.hero-visual-play a:hover,
.hero-visual-play button:hover {
  transform: scale(1.06);
  background: rgba(255, 102, 0, 0.48);
  box-shadow: 0 10px 28px rgba(255, 102, 0, 0.3);
}

.benefit-media {
  position: relative;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.benefit-media img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.benefit-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 8px;
  background: rgba(255, 102, 0, 0.3);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.2s;
}

.benefit-play:hover { background: rgba(255, 102, 0, 0.48); }

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.video-modal[hidden] { display: none !important; }

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 35, 0.82);
}

.video-modal-dialog {
  position: relative;
  width: min(60vw, 960px);
  max-height: calc(100vh - 2rem);
  z-index: 1;
}

.video-modal-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.video-modal-close:hover { background: rgba(255, 255, 255, 0.28); }

.video-modal-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.video-modal-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 768px) {
  .video-modal { padding: 0.75rem; }
  .video-modal-dialog { width: 100%; }
  .video-modal-close { top: -2.25rem; right: 0.25rem; }
}

/* ── Sections ── */
section { padding: 4.5rem 0; }
section.alt { background: var(--bg-soft); }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-head h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.section-head p { color: var(--text-muted); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

/* ── Cards grid ── */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.cards-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.85rem;
  height: 100%;
}

.value-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 102, 0, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  font-size: 1.125rem;
  color: var(--navy);
  margin-bottom: 0.65rem;
}

.value-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.value-card p:last-child { margin-bottom: 0; }

.value-card-actions {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.price-ref-note {
  text-align: center;
  margin-top: 1.25rem;
  padding: 0.85rem 1.25rem;
  background: var(--blue-light);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  color: var(--navy);
  line-height: 1.55;
}

.price-ref-note strong { color: var(--blue); }

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.card h3 { font-size: 1.125rem; color: var(--navy); margin-bottom: 0.5rem; }
.card p { font-size: 0.9375rem; color: var(--text-muted); margin-bottom: 1rem; }

.card ul {
  list-style: none;
  font-size: 0.875rem;
  color: var(--text);
}

.card ul li { padding: 0.25rem 0; padding-left: 1.25rem; position: relative; }
.card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

.card details.card-more {
  margin-top: 1rem;
  border: none;
  background: var(--bg-soft);
  border-radius: 8px;
}

.card details.card-more summary {
  padding: 0.65rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--blue);
}

.card details.card-more .detail-body {
  padding: 0 0.85rem 0.85rem;
  border: none;
  font-size: 0.8125rem;
}

.card details.card-more ul { list-style: none; margin: 0; }
.card details.card-more li {
  padding: 0.2rem 0 0.2rem 1rem;
  position: relative;
}
.card details.card-more li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

/* Panel beneficios (fondo azul) */
.benefits-panel {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  background-image: url('../img/home/video-panel-bg.jpg');
  background-size: cover;
  background-blend-mode: overlay;
  color: #fff;
  padding: 4rem 0;
}

.benefits-panel h2, .benefits-panel h3, .benefits-panel h4 { color: #fff; }

.benefits-panel details {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  margin-bottom: 0.5rem;
}

.benefits-panel summary { color: #fff; }
.benefits-panel summary::after { color: rgba(255,255,255,0.8); }
.benefits-panel .detail-body { color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.12); }

.benefit-row { display: flex; gap: 1rem; align-items: flex-start; }
.benefit-row img { width: 72px; height: 72px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }

.content-block {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: start;
}

.content-block-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
}

.content-block-lead { font-size: 1.0625rem; color: var(--navy); font-weight: 600; margin-bottom: 0.5rem; }
.content-block-highlight { color: #c0392b; font-weight: 600; margin-bottom: 1rem; line-height: 1.6; }
.content-block-body p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.75; font-size: 0.96875rem; }
.content-block-body p:last-child { margin-bottom: 0; }

.blog-teaser {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.blog-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.2s;
}

.blog-card:hover { box-shadow: var(--shadow); }

.blog-card-img {
  height: 140px;
  background-size: cover;
  background-position: center;
}

.blog-card-body { padding: 1.25rem; }
.blog-card-body h3 { font-size: 0.9375rem; color: var(--navy); margin-bottom: 0.35rem; }
.blog-card-body p { font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 0.75rem; }

.demo-notice {
  background: var(--blue-light);
  border: 1px solid rgba(0,158,227,0.25);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.demo-notice i { color: var(--blue); margin-top: 0.15rem; flex-shrink: 0; }

.features-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.features-intro img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
}

.features-intro p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.75; }

.features-list {
  max-width: 900px;
  margin: 0 auto;
}

.features-list details summary span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.features-list .detail-body ul { margin: 0.5rem 0 0 1.25rem; }
.features-list .detail-body li { margin-bottom: 0.35rem; }

@media (max-width: 960px) {
  .features-intro { grid-template-columns: 1fr; }
}

.pricing-currency-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-bottom: 1.5rem;
}

.currency-pills {
  display: inline-flex;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.2rem;
}

.currency-pill {
  border: none;
  background: transparent;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}

.currency-pill.active { background: #fff; color: var(--navy); box-shadow: 0 1px 4px rgba(0,0,0,0.08); }

@media (max-width: 960px) {
  .content-block { grid-template-columns: 1fr; }
  .content-block-img { max-height: 220px; aspect-ratio: auto; }
  .blog-teaser { grid-template-columns: 1fr; }
  .hero-slider-arrow { display: none; }
}

/* ── Details / accordion ── */
details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

details[open] { box-shadow: var(--shadow); }

summary {
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  user-select: none;
}

summary::-webkit-details-marker { display: none; }

summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform 0.2s;
}

details[open] summary::after { content: "−"; }

.detail-body {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.detail-body ul { margin: 0.5rem 0 0 1.25rem; }
.detail-body li { margin-bottom: 0.35rem; }

/* ── Stats ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-item {
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  color: #fff;
}

.stat-item strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-item span { font-size: 0.875rem; opacity: 0.9; }

.stats-band {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  padding: 3.5rem 0;
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.testimonial-quote {
  font-size: 0.9375rem;
  color: var(--text);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-author strong { display: block; color: var(--navy); }
.testimonial-author span { font-size: 0.8125rem; color: var(--text-muted); }

.stars { color: #f59e0b; font-size: 0.875rem; margin-bottom: 0.75rem; }

/* ── Pricing ── */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.pricing-toggle span { font-size: 0.9375rem; font-weight: 500; color: var(--text-muted); }
.pricing-toggle span.active { color: var(--navy); font-weight: 700; }

.toggle-switch {
  width: 52px;
  height: 28px;
  background: var(--border);
  border-radius: 999px;
  border: none;
  cursor: pointer;
  position: relative;
  transition: background 0.2s;
}

.toggle-switch.on { background: var(--blue); }

.toggle-switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.toggle-switch.on::after { transform: translateX(24px); }

.save-badge {
  background: #dcfce7;
  color: #166534;
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.pricing-annual-hint {
  text-align: center;
  max-width: 640px;
  margin: -1.5rem auto 2rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.pricing-annual-hint i {
  color: var(--blue);
  margin-right: 0.35rem;
}

.pricing-annual-hint strong { color: var(--navy); }

.page-hero.page-hero-pricing p {
  max-width: 960px;
  line-height: 1.7;
  font-size: 1.0625rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
}

.price-card.featured {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}

.price-card .plan-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
}

.price-card h3 { font-size: 1.125rem; color: var(--navy); margin-bottom: 0.25rem; }
.price-card .plan-for { font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 1.25rem; }

.price-amount {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.price-amount small { font-size: 1rem; font-weight: 500; color: var(--text-muted); }

.price-period { font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 1.5rem; }

.price-features { list-style: none; margin-bottom: 1.75rem; }

.price-features li {
  font-size: 0.875rem;
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  border-bottom: 1px solid var(--bg-soft);
}

.price-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

.price-features li.no::before { content: "✗"; color: #cbd5e1; }

.pricing-model {
  background: linear-gradient(135deg, var(--blue-light) 0%, #fff 72%);
  border: 1px solid rgba(0, 158, 227, 0.22);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  margin-bottom: 2rem;
}

.pricing-model h2 {
  color: var(--navy);
  font-size: 1.25rem;
  margin-bottom: 0.65rem;
}

.pricing-model > p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
  max-width: none;
}

.pricing-model-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  list-style: none;
}

.pricing-model-points li {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  font-size: 0.875rem;
  line-height: 1.45;
}

.pricing-model-points li strong {
  display: block;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.pricing-model-points li i {
  color: var(--blue);
  margin-right: 0.35rem;
}

.pricing-hc-note {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid rgba(0, 158, 227, 0.28);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  margin-bottom: 2rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.pricing-hc-note > i {
  color: var(--blue);
  font-size: 1.35rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.pricing-hc-note strong { color: var(--navy); }

.pricing-hc-note .hc-example {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--navy);
}

.price-features-more {
  margin: -0.35rem 0 1.25rem;
  font-size: 0.875rem;
}

.price-features-more summary {
  cursor: pointer;
  color: var(--blue);
  font-weight: 600;
  list-style: none;
  padding: 0.35rem 0;
}

.price-features-more summary::-webkit-details-marker { display: none; }

.price-features-more summary::after {
  content: " +";
  font-weight: 700;
}

.price-features-more[open] summary::after { content: " −"; }

.price-features-full {
  list-style: none;
  margin-top: 0.65rem;
  max-height: 260px;
  overflow-y: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-soft);
}

.price-features-full li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.4rem 0.75rem;
  font-size: 0.8125rem;
  border-bottom: 1px solid var(--border);
}

.price-features-full li:last-child { border-bottom: none; }

.price-features-full li span:last-child {
  font-weight: 600;
  color: var(--blue-dark);
  white-space: nowrap;
}

.price-features-full li.is-no span:last-child { color: #94a3b8; }

.price-card .price-features { margin-bottom: 0.75rem; }

.currency-select {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.8125rem;
  margin-bottom: 0.75rem;
}

/* Full pricing tables (hidden by default) */
.full-plans { margin-top: 3rem; }
.full-plans > summary {
  text-align: center;
  background: var(--bg-soft);
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.pricing-table-wrap { overflow-x: auto; margin-bottom: 2rem; }

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
  min-width: 480px;
}

.pricing-table th {
  background: var(--navy);
  color: #fff;
  padding: 0.75rem 1rem;
  text-align: left;
}

.pricing-table td {
  padding: 0.5rem 1rem;
  border-bottom: 1px solid var(--border);
}

.pricing-table tr:nth-child(even) td { background: var(--bg-soft); }

/* ── Page hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a4a7a 100%);
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}

.page-hero h1 { font-size: clamp(1.75rem, 4vw, 2.25rem); margin-bottom: 0.5rem; }
.page-hero p { opacity: 0.85; max-width: 540px; margin: 0 auto; }

/* ── Forms ── */
.form-section { max-width: 640px; margin: 0 auto; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group { margin-bottom: 1rem; }
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.9375rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,158,227,0.15);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.form-card + .form-card { margin-top: 2rem; }

.form-card h2 { font-size: 1.25rem; color: var(--navy); margin-bottom: 0.5rem; }
.form-card > p { color: var(--text-muted); font-size: 0.9375rem; margin-bottom: 1.5rem; }

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-alert {
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.form-alert.success { background: #dcfce7; color: #166534; }
.form-alert.error { background: #fee2e2; color: #991b1b; }

/* ── Video grid ── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.video-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.2s;
}

.video-card:hover { box-shadow: var(--shadow); }

.video-thumb {
  aspect-ratio: 16/9;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.video-thumb img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }

.video-thumb button {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 0;
  margin: 0;
  background: rgba(15, 39, 68, 0.12);
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.video-thumb button:hover {
  background: rgba(255, 102, 0, 0.28);
  color: #fff;
}

.video-card-body { padding: 1.25rem; }
.video-card-body h3 { font-size: 0.9375rem; color: var(--navy); margin-bottom: 0.35rem; }
.video-card-body p { font-size: 0.8125rem; color: var(--text-muted); }

/* ── Team ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.team-card {
  text-align: center;
  padding: 1.75rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.team-card h3 { font-size: 1rem; color: var(--navy); margin-bottom: 0.25rem; }
.team-card .role { font-size: 0.8125rem; color: var(--blue); font-weight: 600; margin-bottom: 0.75rem; }
.team-card p { font-size: 0.875rem; color: var(--text-muted); }

/* ── Two col layout ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* ── CTA band ── */
.cta-band {
  background: var(--navy);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}

.cta-band h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.75rem; }
.cta-band p { opacity: 0.85; margin-bottom: 1.75rem; max-width: 520px; margin-inline: auto; }
.cta-band .btn { margin: 0 0.35rem; }

/* ── Footer ── */
.site-footer {
  background: #0a1e33;
  color: rgba(255,255,255,0.75);
  padding: 0 0 1.5rem;
  font-size: 0.875rem;
}

.footer-body {
  padding-top: 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-grid h4 {
  color: #fff;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 0.4rem; }
.footer-grid a { color: rgba(255,255,255,0.65); }
.footer-grid a:hover { color: #fff; }

.footer-brand p {
  line-height: 1.65;
  max-width: 280px;
}

.footer-credit {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.75rem;
}

.footer-credit a { color: rgba(255,255,255,0.65); }
.footer-credit a:hover { color: #fff; }

.footer-logo img {
  height: 52px;
  width: auto;
  max-width: 200px;
  margin-bottom: 1rem;
  background: #fff;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  object-fit: contain;
}

.footer-reps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 3rem;
  padding: 2rem 0 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-reps h4 {
  color: #fff;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-reps h4 i {
  color: var(--orange);
  font-size: 0.9rem;
}

.footer-reps-list {
  list-style: none;
}

.footer-reps-list li {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.35rem 0;
  font-size: 0.8125rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.footer-reps-list li span {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  min-width: 6.5rem;
}

.footer-reps-list li em {
  font-style: normal;
  color: rgba(255,255,255,0.55);
  text-align: right;
}

.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-dark); color: #fff; }

.btn-dist {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.35rem;
  background: var(--orange);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: 999px;
  border: 2px solid var(--orange);
  box-shadow: 0 4px 16px rgba(255, 102, 0, 0.35);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.btn-dist:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 102, 0, 0.45);
}

.btn-dist-lg {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
}

.footer-distribuidores {
  margin-top: 1.25rem;
}

.footer-distribuidores .btn-dist { width: 100%; max-width: 280px; }

.footer-dist-bar {
  background: rgba(255, 102, 0, 0.12);
  border-top: 1px solid rgba(255, 102, 0, 0.25);
  border-bottom: 1px solid rgba(255, 102, 0, 0.18);
  padding: 0.65rem 0;
}

.footer-dist-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-dist-bar p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  margin: 0;
  max-width: 520px;
  line-height: 1.4;
}

.footer-dist-bar strong { color: #fff; }

.footer-dist-bar .btn-dist {
  padding: 0.55rem 1.25rem;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8125rem;
}

/* ── WhatsApp float ── */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.wa-float-menu {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  display: none;
  min-width: 200px;
}

.wa-float-menu.open { display: block; }

.wa-float-menu a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  color: var(--text);
  font-size: 0.8125rem;
  font-weight: 500;
}

.wa-float-menu a:hover { background: var(--bg-soft); color: var(--green-dark); }

.wa-float-btn {
  width: 56px;
  height: 56px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.75rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  border: none;
  cursor: pointer;
  transition: transform 0.2s;
}

.wa-float-btn:hover { transform: scale(1.08); color: #fff; }

/* ── Contact info ── */
.contact-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.contact-intro strong { color: var(--navy); }

.form-required-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: -0.75rem 0 1.25rem;
  font-style: italic;
}

.contact-partner-note {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: linear-gradient(135deg, var(--blue-light) 0%, #fff 70%);
  border: 1px solid rgba(0, 158, 227, 0.22);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.5rem;
  margin-top: 2.5rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.contact-partner-note > i {
  color: var(--orange);
  font-size: 1.35rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.contact-partner-note strong { color: var(--navy); }

.contact-partner-note a { font-weight: 600; }

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-card {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-soft);
  border-radius: var(--radius);
}

.contact-card i { font-size: 1.5rem; color: var(--blue); margin-bottom: 0.75rem; }
.contact-card h3 { font-size: 0.9375rem; color: var(--navy); margin-bottom: 0.35rem; }
.contact-card p, .contact-card a { font-size: 0.875rem; color: var(--text-muted); }

/* ── Responsive ── */
@media (max-width: 960px) {
  .hero-grid, .two-col { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-height: 280px; }
  .cards-3, .testimonials-grid, .pricing-grid, .team-grid, .stats-row, .contact-cards { grid-template-columns: 1fr; }
  .cards-2 { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-reps { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }

  .nav {
    position: fixed;
    top: calc(var(--header-h) + 36px);
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: none;
  }

  .nav.open { display: flex; }
  .nav a { width: 100%; text-align: center; }
  .nav-cta { margin-left: 0 !important; margin-top: 0.5rem; }

  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 3rem 0; }
}
