:root {
  --primary: #1a3a3a;
  --secondary: #d4a373;
  --accent: #f5e6d3;
  --bg: #0f1410;
  --bg-alt: #141b18;
  --card: #161f1c;
  --line: #24332f;
  --text: #f0f2f1;
  --muted: #a8b5b1;
  --success: #4a9d6f;
  --error: #c85555;
  --white: #fff;
  --radius: 20px;
  --container: min(1280px, 92vw);
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  font-size: 16px
}

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

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

.container {
  width: var(--container);
  margin: 0 auto;
  padding: 0 20px
}

.narrow {
  max-width: 860px
}

.center {
  text-align: center
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(15, 20, 16, .96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line)
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px
}

.brand-mark,
.custom-logo {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  overflow: hidden
}

.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent)
}

.brand-text strong {
  display: block;
  font-size: 18px;
  font-family: Cormorant Garamond, serif;
  font-weight: 600
}

.brand-text small {
  display: block;
  color: var(--muted);
  font-size: 12px
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0
}

.nav-links a {
  color: var(--muted);
  font-weight: 500;
  transition: color .2s
}

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

.desktop-cta {
  display: inline-flex
}

.site-main {
  overflow: hidden
}

.hero,
.page-hero {
  background: linear-gradient(135deg, rgba(26, 58, 58, .8), rgba(15, 20, 16, .85)), center/cover no-repeat;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--line)
}

.hero {
  padding: 140px 0 100px
}

@media (min-width: 1024px) {
  .hero {
    background-attachment: fixed
  }
}

.page-hero {
  padding: 100px 0 70px
}

.simple-hero {
  padding: 90px 0 50px
}

.hero-grid,
.split-grid,
.quote-layout,
.two-col-text {
  display: grid;
  gap: 40px;
  align-items: center
}

.hero-grid {
  grid-template-columns: 1fr;
  text-align: center
}

.split-grid,
.quote-layout,
.two-col-text {
  grid-template-columns: 1fr 1fr
}

.eyebrow {
  display: inline-block;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
  opacity: .95
}

h1,
h2,
h3,
h4 {
  font-family: Cormorant Garamond, serif;
  line-height: 1.1;
  margin: 0 0 16px;
  font-weight: 500
}

h1 {
  font-size: clamp(2.8rem, 7vw, 4.8rem);
  letter-spacing: -.02em
}

h2 {
  font-size: clamp(2rem, 5vw, 3.2rem)
}

h3 {
  font-size: 1.6rem;
  font-weight: 600
}

h4 {
  font-size: 1.2rem;
  font-weight: 600
}

p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.7
}

.lead {
  font-size: 1.25rem;
  max-width: 800px;
  font-weight: 400
}

.muted {
  color: var(--muted);
  font-size: .95rem
}

.hero-actions,
.card-actions,
.section-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px
}

.hero-actions.center {
  justify-content: center
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  border: 1.5px solid transparent;
  transition: .3s ease;
  font-family: Inter, sans-serif;
  font-size: 0.95rem;
  cursor: pointer
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2)
}

.btn-primary {
  background: var(--secondary);
  color: var(--bg)
}

.btn-primary:hover {
  background: #e8b887;
  box-shadow: 0 16px 32px rgba(212, 163, 115, .2)
}

.btn-secondary {
  background: transparent;
  border-color: var(--secondary);
  color: var(--secondary)
}

.btn-secondary:hover {
  background: var(--secondary);
  color: var(--bg)
}

.text-link {
  color: var(--secondary);
  font-weight: 600;
  transition: color .2s
}

.text-link:hover {
  color: var(--accent)
}

.section {
  padding: 100px 0
}

.section-alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

.cta-section {
  padding-top: 80px;
  padding-bottom: 100px;
  text-align: center;
  border-top: 1px solid var(--line)
}

.section-text {
  max-width: 860px
}

.card-grid {
  display: grid;
  gap: 20px;
  margin-top: 26px
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr)
}

.card-grid.four {
  grid-template-columns: repeat(4, 1fr)
}

.card,
.post-card,
.placeholder-card,
.newsletter-box,
.quote-form,
.info-box,
.success-box {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all .3s ease
}

.card:hover,
.post-card:hover {
  border-color: var(--secondary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px)
}

.card,
.post-card {
  padding: 28px
}

.post-card+.post-card {
  margin-top: 18px
}

.product-card .muted {
  display: block;
  margin-bottom: 10px
}

.placeholder-card {
  min-height: 360px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(135deg, rgba(26, 58, 58, .3), rgba(212, 163, 115, .2)), center/cover no-repeat;
  border: 2px dashed var(--line)
}

.placeholder-card.small {
  min-height: 280px
}

.placeholder-card.has-bg h3,
.placeholder-card.has-bg p {
  color: var(--accent);
  text-shadow: 0 2px 8px rgba(0, 0, 0, .6)
}

.chip-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 28px
}

.chip-row.left {
  justify-content: flex-start
}

.chip-row span {
  padding: 10px 18px;
  border-radius: 999px;
  background: transparent;
  border: 1.5px solid var(--secondary);
  color: var(--secondary);
  font-weight: 500;
  font-size: 0.9rem;
  transition: all .2s
}

.chip-row span:hover {
  background: var(--secondary);
  color: var(--bg)
}

.newsletter-box {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  padding: 28px
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: var(--bg);
  color: var(--text);
  font: inherit;
  transition: all .2s
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(212, 163, 115, .1)
}

input::placeholder {
  color: var(--muted)
}

textarea {
  min-height: 140px;
  resize: vertical
}

.quote-form {
  padding: 26px
}

.form-grid {
  display: grid;
  gap: 14px;
  margin-bottom: 14px
}

.form-grid.two {
  grid-template-columns: 1fr 1fr
}

.feature-list {
  padding-left: 18px;
  color: var(--muted)
}

.feature-list li {
  margin-bottom: 8px
}

.feature-list.compact li {
  margin-bottom: 5px
}

.compact {
  padding: 20px
}

.product-lines {
  display: grid;
  gap: 16px
}

.line-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px
}

.table-wrap {
  overflow: auto;
  margin: 20px 0
}

.measure-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line)
}

.measure-table th,
.measure-table td {
  padding: 16px;
  border: 1px solid var(--line);
  text-align: left
}

.measure-table th {
  background: var(--primary);
  color: var(--accent);
  font-weight: 600
}

.measure-table td {
  color: var(--muted)
}

.measure-table tbody tr:hover {
  background: rgba(212, 163, 115, .05)
}

.info-box {
  padding: 18px
}

.success-box {
  padding: 18px;
  background: #11301d;
  border-color: #26573a;
  color: #d7f4e0;
  margin-top: 18px
}

.site-footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--line);
  background: linear-gradient(to bottom, var(--bg-alt), var(--bg))
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 40px
}

.site-footer h3 {
  color: var(--accent);
  margin-bottom: 20px
}

.site-footer h4 {
  color: var(--text);
  margin-bottom: 14px;
  font-size: 1rem
}

.site-footer p {
  margin-bottom: 10px;
  font-size: 0.95rem
}

.site-footer a {
  color: var(--secondary);
  transition: color .2s
}

.site-footer a:hover {
  color: var(--accent)
}

.footer-legal {
  padding-top: 20px;
  border-top: 1px solid var(--line);
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.85rem
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  background: #25D366;
  color: #fff;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(37, 211, 102, .3);
  transition: all .2s;
  text-decoration: none
}

.floating-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 40px rgba(37, 211, 102, .4)
}

@media (max-width: 1024px) {

  .hero-grid,
  .split-grid,
  .quote-layout,
  .two-col-text,
  .newsletter-box,
  .card-grid.three,
  .card-grid.four,
  .footer-grid,
  .steps-grid {
    grid-template-columns: 1fr
  }

  .nav-links {
    gap: 20px
  }

  .desktop-cta {
    display: none
  }

  .section {
    padding: 70px 0
  }

  .cta-section {
    padding-top: 60px;
    padding-bottom: 80px
  }

  .steps-grid::before {
    display: none
  }
}

.form-step {
  animation: fadeIn 0.3s ease
}

.form-step h3 {
  color: var(--accent);
  font-size: 1.4rem;
  margin-bottom: 8px
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px)
  }

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

/* ===== ACCESSIBILITY UTILITIES ===== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0
}

/* ===== HERO BADGE ===== */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 163, 115, .12);
  border: 1px solid rgba(212, 163, 115, .3);
  color: var(--secondary);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .05em;
  margin-bottom: 20px
}

.hero-badge .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary);
  animation: pulse-dot 1.8s infinite
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .5;
    transform: scale(1.4)
  }
}

.hero-microcopy {
  color: var(--muted);
  font-size: .85rem;
  margin-top: 12px;
  margin-bottom: 0
}

/* ===== PAIN BLOCK ===== */
.pain-block {
  padding: 80px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px
}

.pain-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px
}

.pain-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block
}

.pain-card h3 {
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 10px
}

.pain-card p {
  font-size: .95rem;
  color: var(--muted);
  margin: 0
}

/* ===== SOCIAL PROOF BAR ===== */
.social-proof-bar {
  padding: 48px 0;
  background: var(--primary);
  border-top: 1px solid rgba(212, 163, 115, .15);
  border-bottom: 1px solid rgba(212, 163, 115, .15)
}

.proof-metrics {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center
}

.proof-metric {
  text-align: center
}

.proof-metric strong {
  display: block;
  font-size: 2.2rem;
  font-family: Cormorant Garamond, serif;
  color: var(--secondary);
  line-height: 1
}

.proof-metric span {
  display: block;
  font-size: .8rem;
  color: rgba(245, 230, 211, .7);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 4px
}

.proof-divider {
  width: 1px;
  height: 48px;
  background: rgba(212, 163, 115, .2)
}

/* ===== HOW IT WORKS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  position: relative
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.6% + 16px);
  right: calc(16.6% + 16px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--secondary), transparent)
}

.step-card {
  text-align: center;
  position: relative;
  padding: 0 16px
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--bg);
  font-size: 1.4rem;
  font-family: Cormorant Garamond, serif;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1
}

.step-card h3 {
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 10px
}

.step-card p {
  font-size: .95rem;
  color: var(--muted)
}

/* ===== FAQ ACCORDION ===== */
.faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .2s
}

.faq-item.open,
.faq-item:hover {
  border-color: rgba(212, 163, 115, .4)
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: Cormorant Garamond, serif;
  font-size: 1.15rem;
  font-weight: 500;
  text-align: left;
  padding: 22px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color .2s
}

.faq-question:hover {
  color: var(--secondary)
}

.faq-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--secondary);
  transition: transform .3s
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg)
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  padding: 0 24px
}

.faq-answer p {
  padding-bottom: 22px;
  color: var(--muted);
  font-size: .95rem;
  margin: 0
}

/* ===== COMPARATIVA TABLE ===== */
.compare-table {
  display: grid;
  gap: 1px;
  margin-top: 40px;
  background: var(--line);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line)
}

.compare-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--primary);
  color: var(--accent)
}

.compare-header span {
  padding: 20px;
  font-weight: 600;
  text-align: center
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px
}

.compare-row span {
  background: var(--card);
  padding: 20px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted)
}

.compare-row span strong {
  color: var(--secondary);
  display: block;
  margin-bottom: 8px
}

.compare-row span:last-child {
  background: rgba(212, 163, 115, .08)
}

/* ===== TESTIMONIOS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: all .3s
}

.testimonial-card:hover {
  border-color: var(--secondary);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15)
}

.testimonial-stars {
  color: var(--secondary);
  font-size: 1.1rem;
  margin-bottom: 12px;
  letter-spacing: 2px
}

.testimonial-quote {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 20px;
  flex-grow: 1
}

.testimonial-author {
  display: flex;
  gap: 12px;
  align-items: flex-start
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0
}

.testimonial-avatar+div {
  flex: 1
}

.testimonial-author strong {
  display: block;
  color: var(--text);
  margin-bottom: 2px;
  font-size: 0.95rem
}

.testimonial-role {
  display: block;
  color: var(--secondary);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 2px
}

.testimonial-country {
  display: block;
  color: var(--muted);
  font-size: 0.85rem
}

/* ===== CONTACT DIRECT (replaces newsletter) ===== */
.contact-direct {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px
}

.contact-channel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: all .3s
}

.contact-channel:hover {
  border-color: var(--secondary);
  transform: translateY(-3px)
}

.contact-channel-icon {
  font-size: 1.8rem;
  flex-shrink: 0
}

.contact-channel h4 {
  margin: 0 0 4px;
  font-size: 1.1rem;
  color: var(--text)
}

.contact-channel p {
  margin: 0;
  font-size: .9rem;
  color: var(--muted)
}

.contact-channel a {
  color: var(--secondary);
  font-weight: 600;
  font-size: .95rem;
  display: block;
  margin-top: 4px
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  padding: 8px;
  transition: border-color .2s
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s ease;
  transform-origin: center
}

.hamburger:hover {
  border-color: var(--secondary)
}

.nav-open .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.nav-open .hamburger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0)
}

.nav-open .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

/* WhatsApp button icon layout */
.floating-whatsapp {
  display: flex;
  align-items: center;
  gap: 10px
}

.floating-whatsapp svg {
  flex-shrink: 0
}

/* ===== ABOUT PAGE STYLES ===== */
/* Problem block (Nosotros page) */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px
}

.problem-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all .3s
}

.problem-card:hover {
  border-color: var(--secondary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15)
}

.problem-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
  line-height: 1
}

.problem-card h3 {
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 10px
}

.problem-card p {
  font-size: .95rem;
  color: var(--muted);
  margin: 0
}

/* Process steps (About page variant) */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
  position: relative
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--secondary), transparent)
}

.process-steps.about {
  grid-template-columns: repeat(4, 1fr)
}

/* Team section */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 40px
}

.team-member {
  text-align: center
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: var(--card);
  border: 2px solid var(--line);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center
}

.team-member h3 {
  color: var(--text);
  margin-bottom: 4px
}

.team-member .muted {
  display: block;
  margin-bottom: 12px;
  font-weight: 500;
  color: var(--secondary)
}

.team-member p {
  max-width: 600px;
  margin: 0 auto 16px;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.6
}

/* Certifications section */
.cert-section {
  display: grid;
  gap: 24px;
  margin-top: 32px
}

.cert-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px
}

.cert-item h4 {
  color: var(--secondary);
  margin: 0 0 8px;
  font-size: 1rem
}

.cert-item p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.6
}

/* ===== COTIZAR: ocultar WhatsApp flotante ===== */
.page-template-template-quote .floating-whatsapp {
  display: none !important;
}

/* ===== PRODUCT HERO STATS ===== */
.product-hero-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.product-stat {
  text-align: center;
}

.product-stat strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--secondary);
  font-family: var(--font-heading);
}

.product-stat span {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===== CERT BADGES STRIP ===== */
.cert-badges-strip {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.cert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cert-badge {
  background: rgba(212, 163, 115, 0.12);
  border: 1px solid rgba(212, 163, 115, 0.3);
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

/* ===== MARKET FLAGS ===== */
.market-flags {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--muted);
}

.market-flags span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ===== TRUST CHIPS (quote hero) ===== */
.trust-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  padding: 5px 12px;
  border-radius: 999px;
}

/* ===== STEPS LIST (quote sidebar) ===== */
.steps-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.steps-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.step-num {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--bg);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nda-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.form-footnote {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
}

.quote-section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-top: 8px;
  margin-bottom: 10px;
  display: block;
}

/* ===== CONTACT PAGE HIERARCHY ===== */
.contact-channel-featured {
  border-color: var(--secondary) !important;
  background: rgba(212, 163, 115, 0.06);
}

.contact-channel-muted {
  opacity: 0.8;
}

.contact-when {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 6px;
  font-style: italic;
}

.response-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 8px;
}

.contact-intro {
  max-width: 560px;
  margin: 0 auto 40px;
  text-align: center;
  color: var(--muted);
}

.llc-note {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 40px;
}

.contact-cta-footer {
  text-align: center;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

/* ===== PRODUCT CATALOG CARDS ===== */
.catalog-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 10px;
}

.catalog-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .3s ease;
}

.catalog-card:hover {
  border-color: var(--secondary);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}

.catalog-card:nth-child(even) {
  direction: rtl;
}

.catalog-card:nth-child(even)>* {
  direction: ltr;
}

.catalog-featured {
  border-color: rgba(212, 163, 115, .3);
  background: linear-gradient(135deg, rgba(26, 58, 58, .15), var(--card));
}

.catalog-card-image {
  min-height: 340px;
  background: linear-gradient(135deg, rgba(26, 58, 58, .4), rgba(212, 163, 115, .15));
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalog-card-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.catalog-eyebrow {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(212, 163, 115, 0.15);
  border: 1px solid rgba(212, 163, 115, 0.35);
  color: var(--secondary);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.catalog-card-body {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.catalog-card-body h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 12px;
}

.catalog-card-body>p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.catalog-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.catalog-card-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}


/* ===== TABLET & MEDIUM SCREENS (768px and below) ===== */
@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem
  }

  h2 {
    font-size: 1.8rem
  }

  h3 {
    font-size: 1.4rem
  }

  h4 {
    font-size: 1.1rem
  }

  .header-inner {
    flex-wrap: nowrap;
    position: relative;
    padding: 12px 0
  }

  .brand-mark,
  .custom-logo {
    width: 44px;
    height: 44px
  }

  .brand-text strong {
    font-size: 16px
  }

  .brand-text small {
    font-size: 11px
  }

  .hamburger {
    display: flex;
    order: 2
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 20, 16, .98);
    border-bottom: 1px solid var(--line);
    padding: 12px 0;
    z-index: 19;
    max-height: 80vh;
    overflow-y: auto
  }

  .nav-open .site-nav {
    display: block
  }

  .site-nav .nav-links {
    flex-direction: column;
    gap: 0
  }

  .site-nav .nav-links li a {
    display: block;
    padding: 14px 20px;
    border-bottom: 1px solid var(--line);
    color: var(--text);
    font-size: 1rem;
    transition: background .2s
  }

  .site-nav .nav-links li a:active {
    background: rgba(212, 163, 115, .1)
  }

  .site-nav .nav-links li:last-child a {
    border-bottom: none
  }

  .desktop-cta {
    display: none
  }

  .hero {
    padding: 80px 0 60px
  }

  .page-hero {
    padding: 70px 0 40px
  }

  .simple-hero {
    padding: 70px 0 40px
  }

  .section {
    padding: 60px 0
  }

  .cta-section {
    padding-top: 50px;
    padding-bottom: 60px
  }

  .pain-grid,
  .steps-grid,
  .contact-direct,
  .problem-grid,
  .process-steps,
  .compare-table,
  .testimonials-grid,
  .why-grid,
  .markets-grid {
    grid-template-columns: 1fr
  }

  .steps-grid::before,
  .process-steps::before {
    display: none
  }

  .compare-header,
  .compare-row {
    grid-template-columns: 1fr
  }

  .form-grid.two {
    grid-template-columns: 1fr
  }

  .container {
    padding: 0 16px
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .chip-row {
    justify-content: center
  }

  .proof-metrics {
    gap: 24px;
    flex-direction: column
  }

  .proof-divider {
    display: none
  }

  .proof-metric strong {
    font-size: 2rem
  }

  .catalog-card {
    grid-template-columns: 1fr
  }

  .catalog-card:nth-child(even) {
    direction: ltr
  }

  .catalog-card-image {
    min-height: 220px
  }

  .catalog-card-body {
    padding: 24px 20px
  }

  .catalog-stats {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr))
  }

  .card-grid.three,
  .card-grid.four {
    grid-template-columns: 1fr
  }

  .pain-block {
    padding: 60px 0
  }

  .pain-icon {
    font-size: 1.8rem
  }

  .product-minicta-inner {
    flex-direction: column;
    align-items: flex-start
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    padding: 12px 16px;
    font-size: 0.9rem
  }

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

  input,
  select,
  textarea {
    padding: 12px 16px;
    font-size: 16px
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    min-height: 44px;
    min-width: 44px
  }

  .newsletter-box {
    grid-template-columns: 1fr;
    padding: 20px
  }

  .newsletter-form {
    grid-template-columns: 1fr;
    gap: 10px
  }

  .table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 16px -16px;
    padding: 0 16px
  }

  .measure-table {
    font-size: 0.85rem
  }

  .measure-table th,
  .measure-table td {
    padding: 12px 8px
  }
}

/* ===== MOBILE (480px and below) ===== */
@media (max-width: 480px) {
  :root {
    --radius: 16px
  }

  body {
    font-size: 15px;
    line-height: 1.5
  }

  h1 {
    font-size: 1.8rem;
    margin-bottom: 12px
  }

  h2 {
    font-size: 1.5rem;
    margin-bottom: 12px
  }

  h3 {
    font-size: 1.2rem;
    margin-bottom: 10px
  }

  h4 {
    font-size: 1rem;
    margin-bottom: 8px
  }

  p {
    margin-bottom: 12px;
    font-size: 0.95rem
  }

  .lead {
    font-size: 1rem;
    line-height: 1.6
  }

  .container {
    width: 100%;
    padding: 0 12px
  }

  .narrow {
    max-width: 100%
  }

  .header-inner {
    gap: 12px;
    padding: 10px 0
  }

  .brand {
    gap: 10px
  }

  .brand-mark,
  .custom-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px
  }

  .brand-text strong {
    font-size: 14px
  }

  .brand-text small {
    font-size: 10px
  }

  .site-header {
    border-bottom: 1px solid var(--line)
  }

  .hamburger {
    width: 36px;
    height: 36px;
    gap: 4px;
    padding: 6px
  }

  .hamburger span {
    height: 2px
  }

  .site-nav {
    padding: 8px 0
  }

  .site-nav .nav-links li a {
    padding: 12px 16px;
    font-size: 0.95rem
  }

  .hero {
    padding: 60px 0 40px
  }

  .page-hero {
    padding: 50px 0 30px
  }

  .simple-hero {
    padding: 50px 0 30px
  }

  .eyebrow {
    font-size: 11px;
    margin-bottom: 10px;
    letter-spacing: .15em
  }

  .hero-actions,
  .card-actions,
  .section-actions {
    gap: 10px;
    margin-top: 16px
  }

  .hero-actions {
    flex-direction: column
  }

  .hero-actions .btn {
    width: 100%
  }

  .btn {
    padding: 11px 20px;
    font-size: 0.85rem;
    border-radius: 12px
  }

  .hero-badge {
    padding: 6px 12px;
    font-size: 11px;
    margin-bottom: 14px;
    gap: 6px
  }

  .hero-badge .pulse {
    width: 6px;
    height: 6px
  }

  .hero-microcopy {
    font-size: 0.78rem;
    margin-top: 10px
  }

  .section {
    padding: 40px 0
  }

  .section-alt {
    padding: 40px 0
  }

  .cta-section {
    padding: 40px 0
  }

  .pain-block {
    padding: 40px 0
  }

  .pain-grid,
  .steps-grid,
  .card-grid {
    gap: 14px;
    margin-top: 20px
  }

  .pain-card,
  .step-card,
  .card {
    padding: 20px;
    border-radius: 14px
  }

  .pain-icon,
  .step-number,
  .why-icon {
    font-size: 1.6rem;
    margin-bottom: 10px
  }

  .step-number {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
    margin-bottom: 14px
  }

  .chip-row {
    gap: 8px;
    margin-top: 16px
  }

  .chip-row span {
    padding: 8px 14px;
    font-size: 0.8rem;
    border-radius: 8px
  }

  .card-grid.three,
  .card-grid.four,
  .contact-direct,
  .product-card {
    grid-template-columns: 1fr
  }

  input,
  select,
  textarea {
    padding: 11px 14px;
    font-size: 16px;
    border-radius: 10px;
    border: 1.5px solid var(--line)
  }

  textarea {
    min-height: 100px
  }

  .form-grid {
    gap: 12px
  }

  .form-grid.two {
    grid-template-columns: 1fr
  }

  .quote-form {
    padding: 18px
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .site-footer {
    padding: 40px 0 30px
  }

  .site-footer h3 {
    font-size: 1.1rem;
    margin-bottom: 14px
  }

  .site-footer h4 {
    font-size: 0.95rem;
    margin-bottom: 10px
  }

  .site-footer p {
    margin-bottom: 8px;
    font-size: 0.9rem
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    padding: 10px 12px;
    border-radius: 28px;
    font-size: 0.8rem;
    gap: 6px
  }

  .floating-whatsapp svg {
    width: 16px;
    height: 16px
  }

  .floating-whatsapp span {
    display: none
  }

  .footer-legal {
    margin-top: 16px;
    padding-top: 16px
  }

  .footer-legal p {
    font-size: 0.8rem;
    line-height: 1.5
  }

  .proof-metrics {
    gap: 16px
  }

  .proof-metric strong {
    font-size: 1.8rem
  }

  .proof-metric span {
    font-size: 0.75rem
  }

  .faq-question {
    padding: 14px 16px;
    font-size: 1rem
  }

  .faq-answer {
    padding: 0 16px
  }

  .faq-answer p {
    padding-bottom: 14px;
    font-size: 0.9rem
  }

  .compare-header,
  .compare-row {
    grid-template-columns: 1fr
  }

  .compare-header span,
  .compare-row span {
    padding: 14px 12px;
    font-size: 0.85rem
  }

  .testimonial-card {
    padding: 18px
  }

  .testimonial-quote {
    font-size: 0.9rem;
    margin: 0 0 14px
  }

  .testimonial-avatar {
    width: 40px;
    height: 40px;
    font-size: 0.8rem
  }

  .testimonial-author strong {
    font-size: 0.9rem
  }

  .testimonial-role {
    font-size: 0.8rem
  }

  .testimonial-country {
    font-size: 0.8rem
  }

  .contact-channel {
    padding: 16px;
    gap: 12px;
    border-radius: 12px
  }

  .contact-channel-icon {
    font-size: 1.4rem
  }

  .contact-channel h4 {
    font-size: 1rem;
    margin-bottom: 3px
  }

  .contact-channel p {
    font-size: 0.85rem;
    margin: 0
  }

  .contact-channel a {
    font-size: 0.9rem;
    margin-top: 3px
  }

  .catalog-card {
    border-radius: 12px
  }

  .catalog-card-body {
    padding: 18px 14px
  }

  .catalog-card-body h2 {
    font-size: 1.4rem;
    margin-bottom: 10px
  }

  .catalog-card-body p {
    font-size: 0.85rem;
    margin-bottom: 14px
  }

  .catalog-stats {
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    gap: 8px;
    padding: 12px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
  }

  .catalog-eyebrow {
    top: 12px;
    left: 12px;
    font-size: 0.65rem;
    padding: 3px 10px
  }

  .newsletter-box {
    padding: 16px;
    border-radius: 12px
  }

  .product-stat strong {
    font-size: 1.2rem
  }

  .product-stat span {
    font-size: 0.7rem
  }

  .market-flags {
    font-size: 0.8rem;
    margin-top: 12px
  }

  .steps-list {
    margin-bottom: 12px;
    gap: 10px
  }

  .step-num {
    width: 24px;
    height: 24px;
    min-width: 24px;
    font-size: 0.75rem
  }

  .nda-note,
  .form-footnote {
    font-size: 0.75rem;
    margin-top: 10px
  }

  .quote-section-label {
    font-size: 0.65rem;
    margin-top: 6px;
    margin-bottom: 8px
  }

  .breadcrumb-list {
    font-size: 0.75rem
  }

  .breadcrumb-list li + li::before {
    margin-right: 4px
  }

  .product-minicta {
    padding: 18px 0
  }

  .product-minicta-inner {
    gap: 12px
  }

  .product-minicta-inner strong {
    font-size: 1rem
  }

  .product-minicta-inner p {
    font-size: 0.8rem
  }

  .product-minicta-actions {
    gap: 8px;
    width: 100%
  }

  .product-minicta-actions .btn {
    flex: 1;
    min-width: auto
  }

  .why-grid,
  .markets-grid {
    grid-template-columns: 1fr;
    gap: 14px
  }

  .why-card,
  .market-card {
    padding: 16px
  }

  .why-card h3,
  .market-card strong {
    font-size: 1rem
  }

  .why-card p,
  .market-card {
    font-size: 0.85rem
  }

  .market-flag {
    font-size: 1.6rem;
    margin-bottom: 6px
  }

  .team-member h3 {
    font-size: 1.1rem
  }

  .team-member .muted {
    font-size: 0.85rem;
    margin-bottom: 8px
  }

  .team-member p {
    font-size: 0.85rem;
    margin-bottom: 12px
  }

  .cert-item {
    padding: 16px;
    border-radius: 12px
  }

  .cert-item h4 {
    font-size: 0.9rem;
    margin-bottom: 6px
  }

  .cert-item p {
    font-size: 0.8rem
  }

  .llc-note {
    padding: 16px 14px;
    margin-top: 24px;
    border-radius: 10px
  }

  .contact-cta-footer {
    margin-top: 32px;
    padding-top: 24px
  }

  .problem-grid {
    gap: 14px
  }

  .problem-card {
    padding: 18px 16px
  }

  .process-steps {
    gap: 14px
  }

  .trust-chip-row {
    gap: 6px;
    margin-top: 10px
  }

  .trust-chip {
    font-size: 0.7rem;
    padding: 4px 10px
  }

  .cert-badges-strip {
    padding: 16px 0
  }

  .cert-badges {
    gap: 6px
  }

  .cert-badge {
    font-size: 0.65rem;
    padding: 3px 10px
  }

  .contact-intro {
    margin-bottom: 24px
  }

  .response-time {
    font-size: 0.7rem;
    margin-top: 6px
  }

  .contact-when {
    font-size: 0.7rem;
    margin-top: 4px
  }

  #successModal {
    padding: 16px;
  }

  #successModal > div {
    max-width: 95vw;
    padding: 24px;
  }

  #successModal > div > div:first-child {
    font-size: 2.5rem;
    margin-bottom: 12px
  }

  #successModal h2 {
    font-size: 1.3rem;
    margin-top: 0
  }

  #successModal p {
    font-size: 0.85rem;
    margin-bottom: 16px
  }

  #successModal .btn {
    width: 100%;
    padding: 12px 20px
  }
}

/* ===== SMALL MOBILE (320px and below) ===== */
@media (max-width: 360px) {
  h1 {
    font-size: 1.6rem
  }

  h2 {
    font-size: 1.3rem
  }

  .hero {
    padding: 50px 0 30px
  }

  .container {
    padding: 0 10px
  }

  .btn {
    padding: 10px 16px;
    font-size: 0.8rem;
    border-radius: 10px
  }

  .hero-actions .btn {
    width: 100%
  }

  .floating-whatsapp {
    padding: 8px 10px;
    right: 8px;
    bottom: 8px;
    font-size: 0.75rem
  }

  .section {
    padding: 30px 0
  }

  .card,
  .pain-card,
  .step-card {
    padding: 14px
  }

  .footer-grid {
    gap: 16px
  }
}

/* ===== LANDSCAPE MOBILE (480px height) ===== */
@media (max-width: 768px) and (max-height: 600px) {
  .hero {
    padding: 60px 0 40px
  }

  .page-hero {
    padding: 50px 0 30px
  }

  .section {
    padding: 50px 0
  }
}

/* ===== PRODUCT PAGE UPGRADE — Premium SEO + Funneling ===== */

/* Breadcrumb nav */
.product-breadcrumb {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.breadcrumb-list {
  display: flex;
  gap: 8px;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.breadcrumb-list li + li::before {
  content: '/';
  margin-right: 8px;
  opacity: 0.4;
}

.breadcrumb-list a {
  color: var(--secondary);
  transition: color 0.2s;
}

.breadcrumb-list a:hover {
  color: var(--accent);
}

.breadcrumb-list li[aria-current] {
  color: var(--text);
}

/* Mid-page mini CTA banner */
.product-minicta {
  background: var(--primary);
  border-top: 1px solid rgba(212, 163, 115, 0.2);
  border-bottom: 1px solid rgba(212, 163, 115, 0.2);
  padding: 28px 0;
}

.product-minicta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.product-minicta-inner strong {
  display: block;
  color: var(--accent);
  font-family: Cormorant Garamond, serif;
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.product-minicta-inner p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(245, 230, 211, 0.65);
}

.product-minicta-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* Why Us cards grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.why-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.2s;
}

.why-card:hover {
  border-color: rgba(212, 163, 115, 0.4);
}

.why-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}

.why-card h3 {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* Markets grid */
.markets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.market-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
}

.market-flag {
  font-size: 2rem;
  display: block;
  margin-bottom: 8px;
}

.market-card strong {
  display: block;
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

/* Responsive */
@media (max-width: 768px) {
  .why-grid,
  .markets-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-minicta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .why-grid,
  .markets-grid {
    grid-template-columns: 1fr;
  }
}