:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-2: #eef2ff;
  --text: #0f172a;
  --muted: #475569;
  --line: #e2e8f0;

  --primary: #203561;
  --primary-dark: #172747;
  --accent: #289045;

  --primary-soft: #eaf0f8;
  --accent-soft: #edf7f0;

  --shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }
.section { padding: 88px 0; }
.muted {
  background: linear-gradient(180deg, #f8fafc 0%, #edf7f0 100%);
}
.accent-section {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
}
.eyebrow {
  display: inline-block;
  margin: 0 0 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  font-size: .8rem;
}
.accent-section .eyebrow { color: #8fd6a3; }
h1, h2, h3, h4 { line-height: 1.1; margin: 0 0 16px; }
h1 { font-size: clamp(2.8rem, 4.8vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 16px; color: var(--muted); }
.accent-section p, .site-footer p, .site-footer a { color: rgba(255,255,255,.82); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248,250,252,.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226,232,240,.8);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; }
.brand-logo {
  height: 65px;
  width: auto;
  object-fit: contain;
}
.brand-badge {
  width: 60px; height: 60px; border-radius: 12px;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: var(--shadow);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text small { font-size: .7rem; letter-spacing: .16em; color: var(--muted); margin-top: 4px; }
.site-nav { margin-left: auto; }
.nav-links {
  display: flex;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-weight: 500;
}

.nav-links a {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

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

.nav-links a.is-active,
.mobile-menu a.is-active {
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
}

.btn-header.is-active {
  background: #eef4ff;
  border-color: #cbd5e1;
  color: var(--primary);
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; padding: 14px 22px; font-weight: 700;
  transition: .2s ease; border: 1px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 32px rgba(40, 144, 69, 0.22);
}

.btn-primary:hover {
  background: #1f7a39;
}
.btn-secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--text);
}

.btn-secondary:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}
.btn-header {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--text);
  box-shadow: none;
}

.btn-header:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(40, 144, 69, 0.22);
}
.menu-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line);
  border-radius: 12px; background: #fff; padding: 10px; cursor: pointer;
}
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--text); }
.mobile-menu {
  display: none; padding: 0 1rem 1rem; border-top: 1px solid var(--line); background: rgba(248,250,252,.98);
}
.mobile-menu a { display: block; padding: 12px 0; color: var(--muted); font-weight: 600; }
.mobile-menu.is-open { display: block; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(37,99,235,.18), transparent 30%),
    radial-gradient(circle at bottom left, rgba(15,118,110,.14), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-copy {
  max-width: 680px;
}
.hero-copy h1 {
  max-width: 13ch;
}
.hero-text { font-size: 1.1rem; max-width: 62ch; color: var(--text); opacity: 0.8;}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  color: var(--muted);
  font-weight: 600;
}

.hero-trust li {
  position: relative;
  padding-left: 22px;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.hero-trust li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 800;
}

.hero-card {
  width: 100%;
  max-width: 430px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(203, 213, 225, 0.85);
  border-radius: 34px;
  padding: 24px;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.12);
}
.hero-card-top {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.hero-card-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d8e2f0;
}
.hero-visual-label {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.message-card {
  background: #ffffff;
  border: 1px solid rgba(226,232,240,.95);
  border-radius: 24px;
  padding: 18px 20px;
  margin-bottom: 14px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}
.message-card p {
  font-size: 1.02rem;
  line-height: 1.6;
}
.message-card.alt {
  background: linear-gradient(135deg, #eef7f1, #f4fbf6);
  border: 1px solid rgba(40, 144, 69, 0.22);
  box-shadow: 0 12px 28px rgba(40, 144, 69, 0.08);
}
.message-tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.2;
}

.message-card p,
.message-card.alt p {
  color: #334155;
  opacity: 1;
}

.message-card.alt p {
  color: #475569;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.hero-stats div {
  background: #ffffff;
  border: 1px solid rgba(203, 213, 225, 0.85);
  border-radius: 20px;
  padding: 20px 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.hero-stats strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1;
  margin-bottom: 8px;
}

.hero-stats span {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.35;
}

.section-heading { max-width: 740px; margin-bottom: 36px; }
.section-heading.centered { text-align: center; margin-inline: auto auto; }
.problem-grid, .services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.card {
  background: var(--surface); border: 1px solid rgba(226,232,240,.95);
  border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow);
}
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  position: relative; padding-left: 30px; margin-bottom: 14px; color: var(--muted);
}
.check-list li::before {
  content: '✓'; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 800;
}
.problem-list li::before {
  content: "!";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fef3c7;
  color: #b45309;
  display: inline-grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 800;
  top: 3px;
}
.problem-list li {
  padding-left: 32px;
}
.problem-grid .card {
  height: 100%;
}
#problemas .section-heading p {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.problem-conclusion {
  text-align: center;
  margin-top: 28px;
  font-weight: 500;
}

.steps-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-bottom: 28px;
}
.steps-summary {
  text-align: center;
  margin-bottom: 30px;
  font-weight: 500;
}
.step-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow);
}
.step-card span {
  display: inline-grid; place-items: center; width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--accent)); color: #fff;
  border-radius: 12px; font-weight: 800; margin-bottom: 14px;
}
.extras-box {
  margin-top: 28px;
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #edf3fb, #eef8f1);
  border: 1px solid #d8e2f0;
}

.fit-grid {
  display: grid; grid-template-columns: .95fr 1.05fr; gap: 28px; align-items: center;
}
.fit-points { display: grid; gap: 16px; }
.fit-point {
  border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.06);
  border-radius: var(--radius-sm); padding: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fit-point:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.fit-point strong { display: block; font-size: 1.05rem; margin-bottom: 4px; }

.fit-conclusion {
  margin-top: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}

.team-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 44px;
  align-items: start;
}

.team-badge {
  min-height: 220px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: var(--shadow);
  text-align: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.team-badge span {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
}

.team-badge small {
  font-size: 1rem;
  opacity: 0.95;
}

.team-badge::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.15), transparent 40%);
}

.team-trust {
  margin-top: 16px;
  font-weight: 500;
}

blockquote {
  margin: 24px 0 0;
  padding: 28px 30px;
  border-left: 5px solid var(--primary);
  background: #eff6ff;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: #1e293b;
  line-height: 1.7;
}

blockquote p {
  margin: 0 0 14px;
}

blockquote p:last-child {
  margin-bottom: 0;
}

.faq-list { display: grid; gap: 14px; max-width: 900px; margin-inline: auto; }

.faq-intro {
  max-width: 760px;
  margin: 0 auto 12px;
}

.faq-list-custom {
  margin-top: 8px;
  padding-left: 18px;
}

.faq-list-custom li {
  margin-bottom: 6px;
}

.faq-cta {
  text-align: center;
  margin-top: 40px;
}

.faq-cta p {
  margin-bottom: 12px;
}

details {
  background: var(--surface); 
  border: 1px solid var(--line); 
  border-radius: 18px; 
  padding: 18px 20px; 
  box-shadow: var(--shadow);
  margin-bottom: 5px;
}

details[open] {
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

summary { cursor: pointer; font-weight: 700; list-style: none; }
summary::-webkit-details-marker { display: none; }
details div { padding-top: 14px; }
.contact-section {
  background: linear-gradient(180deg, #ffffff 0%, #edf7f0 100%);
}
.contact-grid {
  display: grid; grid-template-columns: .95fr 1.05fr; gap: 30px; align-items: start;
}
.contact-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 24px 0 16px; }
.contact-actions .btn {
  min-width: 160px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;

}

.contact-actions .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.contact-benefits {
  list-style: none;
  padding: 0;
  margin: 18px 0 20px;
  margin-bottom: 24px;
}

.contact-benefits li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 8px;
  color: var(--text);
  font-weight: 500;
}

.contact-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 800;
}

.btn-icon-img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}

.btn-whatsapp:hover {
  background: #1fb85a;
}

.btn-telegram {
  background: #0088cc;
  color: #fff;
  border-color: #0088cc;
}

.btn-telegram:hover {
  background: #0077b3;
}

.btn-email {
  background: #0f172a;
  color: #fff;
  border-color: #0f172a;
}

.btn-email:hover {
  background: #1e293b;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 32px 80px rgba(15, 23, 42, 0.1);
}

.contact-submit {
  min-width: 220px;
}

.contact-cta-text {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.contact-proof {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 8px;
}

.form-row { display: grid; gap: 8px; margin-bottom: 16px; }
label { font-weight: 600; }
input, select, textarea {
  width: 100%; padding: 14px 16px; border-radius: 14px; border: 1px solid var(--line);
  background: #fff; font: inherit;
}
input:focus, select:focus, textarea:focus { outline: 2px solid rgba(37,99,235,.18); border-color: #93c5fd; }
.form-note { font-size: .92rem; margin-top: 14px; }
.form-trust {
  font-size: 0.92rem;
  color: var(--muted);
  margin-top: 12px;
  margin-bottom: 8px;
}
.generic-page__content {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow);
}
.site-footer {
  background: #0f172a; color: #fff; padding: 54px 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 24px;
}
.site-footer h3, .site-footer h4 { color: #fff; }

@media (max-width: 1024px) {
  .hero-grid, .fit-grid, .contact-grid, .team-grid,
  .problem-grid, .services-grid, .steps-grid, .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .team-badge { width: 180px; height: 180px; font-size: 1.8rem; }
}

@media (max-width: 760px) {
  .section { padding: 72px 0; }
  .site-nav, .btn-header { display: none; }
  .menu-toggle { display: block; }
  .hero-grid, .fit-grid, .contact-grid, .team-grid,
  .problem-grid, .services-grid, .steps-grid, .footer-grid,
  .hero-stats { grid-template-columns: 1fr; }
  .header-inner { min-height: 72px; }
  h1 { font-size: 2.55rem; }
  h2 { font-size: 2rem; }
  .team-badge { width: 140px; height: 140px; font-size: 1.4rem; }
}
.comparison-cta {
  text-align: center;
  margin-top: 32px;
}

.comparison-cards {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  margin-top: 40px;
  align-items: stretch;
}

.comparison-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.comparison-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
}

.comparison-card h3 {
  margin-bottom: 22px;
  font-size: 1.35rem;
}

/* Tarjeta tradicional */
.comparison-card--traditional {
  background: #f8fafc;
  border-color: #e2e8f0;
  opacity: 0.86;
}

.comparison-card--traditional h3 {
  color: var(--muted);
  font-size: 1.2rem;
}

/* Tarjeta QONTA destacada */
.comparison-card--highlight {
  background: linear-gradient(180deg, #ffffff 0%, #eef7f1 100%);
  border: 2px solid var(--accent);
  box-shadow: 0 24px 60px rgba(40, 144, 69, 0.14);
  z-index: 1;
}

.comparison-card--highlight:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(40, 144, 69, 0.18);
}

.comparison-card--highlight h3 {
  color: var(--primary);
  font-size: 1.55rem;
}

.comparison-card--highlight .comparison-badge {
  background: linear-gradient(135deg, var(--accent), #1f7a39);
}

/* Badge superior */
.comparison-badge {
  position: absolute;
  top: -12px;
  right: 22px;
  background: linear-gradient(135deg, var(--primary), #2b4779);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(32, 53, 97, 0.25);
}

/* Topline */
.comparison-topline {
  color: #64748b;
  font-weight: 500;
}

.comparison-topline--hidden {
  visibility: hidden;
}

/* Listas */
.comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comparison-list li {
  position: relative;
  padding: 12px 0 12px 30px;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
  color: var(--text);
  transition: background 0.2s ease;
}

.comparison-list li:hover {
  background: rgba(32, 53, 97, 0.04);
}

.comparison-list li:last-child {
  border-bottom: 0;
}

/* Lista negativa */
.comparison-list--negative li::before {
  content: "✕";
  position: absolute;
  left: 0;
  top: 12px;
  color: #ef4444;
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1;
}

/* Lista positiva */
.comparison-list--positive li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--accent);
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1;
}

/* Botón */
.comparison-btn {
  width: 100%;
  margin-top: 28px;
  font-size: 1.05rem;
  padding: 16px;
  box-shadow: 0 10px 25px rgba(32, 53, 97, 0.22);
}

/* Tabla antigua, por si todavía se usa en otra parte */
.comparison-table-wrap {
  overflow-x: auto;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.comparison-table th {
  background: #eff6ff;
  font-size: 0.95rem;
}

.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.comparison-table td:nth-child(2),
.comparison-table th:nth-child(2) {
  background: #f0f9ff;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 760px) {
  .comparison-cards {
    grid-template-columns: 1fr;
  }

  .comparison-card {
    padding: 26px;
  }

  .comparison-card:hover,
  .comparison-card--highlight:hover {
    transform: none;
  }
}



.social-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

.site-footer a:hover,
.site-footer a:focus,
.site-footer a:active {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}


details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
  margin-bottom: 5px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

details:hover {
  border-color: #cbd5e1;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.10);
  transform: translateY(-1px);
}

details[open] {
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  border-color: #bfd0ea;
}

summary {
  position: relative;
  padding-right: 28px;
}

summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  transition: transform 0.2s ease;
}

details[open] summary::after {
  transform: rotate(45deg);
}

@font-face {
  font-family: 'QontaQ';
  src: url('../fonts/qonta_font.woff2') format('woff2'),
       url('../fonts/qonta_font.woff') format('woff'),
       url('../fonts/qonta_font.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.qonta-q {
  font-family: 'QontaQ', serif;
  line-height: 1;
  display: inline-block;
}

.qonta-q-green {
  color: var(--accent);
}

.qonta-q-lowered {
  display: inline-block;
  position: relative;
  top: 0.08em;
  font-size: 1.25em;
  line-height: 0.9;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card h3,
.service-card .services-intro {
  text-align: center;
}

.service-list {
  text-align: left;
}

.service-extra {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.25s ease, margin-top 0.25s ease;
}

.service-card.is-open .service-extra {
  max-height: 500px;
  opacity: 1;
  margin-top: 4px;
}

.service-toggle {
  margin-top: auto;
  padding-top: 18px;
  border: 0;
  background: transparent;
  color: var(--primary);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
}

.service-toggle:hover {
  color: var(--primary-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.form-consent label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 500;
}

.form-consent input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
  flex-shrink: 0;
}

.form-consent span {
  display: block;
  flex: 1;
}

.form-consent a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-direct-list {
  display: grid;
  gap: 4px;
  margin: -2px 0 14px;
}

.contact-direct {
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
}

.contact-direct strong {
  color: var(--primary);
  font-weight: 800;
}

.contact-note {
  font-size: 0.92rem;
  color: var(--muted);
  margin-top: 12px;
}

.footer-brand-note {
  margin-top: 16px;
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(255,255,255,.62);
  max-width: 320px;
}

section[id] {
  scroll-margin-top: 90px;
}

.legal-page__content {
  max-width: 980px;
}

.legal-header {
  margin-bottom: 34px;
}

.legal-header h1 {
  margin-bottom: 14px;
}

.legal-intro {
  max-width: 760px;
  font-size: 1.05rem;
}

.legal-highlight {
  margin: 32px 0;
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary-soft), var(--accent-soft));
  border: 1px solid #d8e2f0;
}

.legal-highlight h2 {
  font-size: 1.35rem;
  margin-bottom: 20px;
}

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

.legal-data-grid div {
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(226,232,240,0.9);
  border-radius: var(--radius-sm);
  padding: 18px;
}

.legal-data-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.legal-data-grid strong {
  color: var(--text);
}

.legal-index {
  margin: 32px 0 44px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.legal-index h2 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.legal-index ul {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 30px;
}

.legal-index li {
  break-inside: avoid;
  margin-bottom: 10px;
}

.legal-index a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

.legal-index a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-content {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.legal-content a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-content strong {
  color: var(--text);
}

.legal-block {
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 100px;
}

.legal-block:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.legal-block h2 {
  margin-bottom: 16px;
  color: var(--text);
  font-size: 1.55rem;
}

.legal-block p {
  margin-bottom: 18px;
}

.legal-content ul {
  margin: 18px 0 24px;
  padding-left: 22px;
}

.legal-content li {
  margin-bottom: 12px;
}

.legal-address {
  padding: 18px 20px;
  border-left: 4px solid var(--primary);
  background: #eff6ff;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

@media (max-width: 760px) {
  .legal-data-grid {
    grid-template-columns: 1fr;
  }

  .legal-index ul {
    columns: 1;
  }

  .legal-highlight,
  .legal-index {
    padding: 20px;
  }
}

.ethical-list {
  margin: 14px 0 24px;
  padding-left: 22px;
}

.ethical-list li {
  margin-bottom: 6px;
  line-height: 1.55;
}

.ethical-list li:last-child {
  margin-bottom: 0;
}


.social-links,
.footer-legal-links {
  display: grid;
  gap: 12px;
}

.social-link,
.footer-legal-links a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 10px;
  color: rgba(255,255,255,.82);
  transition: opacity 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.social-link:hover,
.footer-legal-links a:hover {
  opacity: 1;
  transform: translateY(-1px);
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.social-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

.site-footer a {
  text-decoration: none;
  transition: color 0.2s ease;
}

@media (max-width: 760px) {
  .hero-visual {
    display: none;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .hero {
    text-align: left;
  }
}

@media (max-width: 760px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-card {
    padding: 22px;
  }

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

  .contact-benefits {
    margin-bottom: 18px;
  }
}

.required-note {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: var(--color-text-muted, #666);
}

.required {
    color: #b00020;
    font-weight: 700;
}

.qonta-honeypot {
    display: none;
}

.form-consent label {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.form-consent input[type="checkbox"] {
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.form-consent span {
    display: inline;
    line-height: 1.5;
}

.form-consent a {
    display: inline;
    margin: 0;
    padding: 0;
}

.required-note {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: var(--color-text-muted, #666);
}

.required {
    color: #b00020;
    font-weight: 700;
}

.qonta-honeypot {
    display: none;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    line-height: 1.5;
}

.consent-label input[type="checkbox"] {
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.consent-text {
    display: inline;
}

.consent-text a {
    display: inline;
    margin: 0;
    padding: 0;
    font-weight: 600;
}