/* Paleta y tipografía de la línea Nederin (Psicocicios es una herramienta de Nederin).
   Los valores son los de nederin-website/index.css y apps/web/src/styles/tailwind.css:
   usar siempre las variables, nunca literales sueltos. */
:root {
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --accent: #E88821;
  --accent-deep: #D17A19;
  --accent-soft: rgba(232, 136, 33, 0.5);
  --accent-tint: rgba(232, 136, 33, 0.08);

  --brand-green: #2E3E36;
  --brand-green-soft: #4A5E54;
  --brand-green-tint: rgba(46, 62, 54, 0.06);

  --bg: #F4F1EA;
  --surface: #FBF9F4;
  --surface-2: #EFEBE2;

  --ink: #1F2A24;
  --ink-2: #4A5550;
  --ink-3: #8C8A80;
  --ink-4: #B8B4A8;

  --line: rgba(46, 62, 54, 0.12);
  --line-soft: rgba(46, 62, 54, 0.06);

  --success: #3B6D11;
  --warning: #BA7517;
  --danger: #993C1D;

  --on-dark: #FBF9F4;
  --on-dark-2: rgba(244, 241, 234, 0.7);
  --on-dark-3: rgba(244, 241, 234, 0.5);
  --on-dark-line: rgba(244, 241, 234, 0.12);

  --radius: 12px;
  --radius-sm: 8px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Hoja de iconos SVG: solo define <symbol>, nunca se pinta. */
.svg-sprite {
  display: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

::selection {
  background: var(--accent-soft);
  color: var(--ink);
}

img {
  max-width: 100%;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Enlace para saltar al contenido: invisible hasta que recibe el foco. */
.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  background: var(--ink);
  color: var(--bg);
  padding: 10px 16px;
  border-radius: 99px;
  font-size: 13px;
  text-decoration: none;
  z-index: 100;
  transition: top 0.15s;
}

.skip-link:focus {
  top: 16px;
}

/* ========== TOPBAR ========== */
.topbar {
  padding: 22px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.top-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  flex-shrink: 0;
}

.top-brand-mark {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  display: block;
}

.brand-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.brand-by {
  font-size: 9.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  margin-top: 3px;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.top-nav-link {
  font-size: 13.5px;
  color: var(--ink-2);
  text-decoration: none;
  font-weight: 450;
  transition: color 0.15s;
}

.top-nav-link:hover {
  color: var(--ink);
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-login {
  font-size: 13.5px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
}

.top-login:hover {
  color: var(--accent);
}

.top-cta {
  background: var(--ink);
  border: 1px solid var(--ink);
  color: var(--bg);
  padding: 8px 18px;
  border-radius: 99px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.top-cta:hover {
  background: var(--brand-green);
  border-color: var(--brand-green);
}

.top-cta svg {
  width: 12px;
  height: 12px;
}

/* ========== HERO ========== */
.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 32px 96px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}

.hero-text {
  padding: 20px 0;
}

.hero-meta {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-3);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.hero-meta::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--accent);
}

.hero-title {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.028em;
  line-height: 1.04;
  margin-bottom: 26px;
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-title-line {
  display: inline-block;
}

.hero-lead {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--ink-2);
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 36px;
  padding-left: 18px;
  border-left: 2px solid var(--accent);
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 24px;
}

.btn-primary {
  background: var(--accent);
  color: white;
  border: none;
  padding: 14px 26px;
  border-radius: 99px;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.15s;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--accent-deep);
  transform: translateY(-1px);
}

.btn-primary svg {
  width: 14px;
  height: 14px;
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
  padding: 13px 24px;
  border-radius: 99px;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

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

.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-family: var(--serif);
  font-size: 13.5px;
  font-style: italic;
  color: var(--ink-3);
}

.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-trust-item svg {
  width: 14px;
  height: 14px;
  color: var(--success);
  flex-shrink: 0;
}

/* ========== Hero phone mockup (portal del paciente) ========== */
.hero-mockup-wrap {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1.05;
}

.hero-mockup {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(232, 136, 33, 0.12) 0%, transparent 65%);
}

.phone-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-3deg);
  width: 62%;
  aspect-ratio: 9 / 18.5;
  background: var(--ink);
  border-radius: 38px;
  padding: 10px;
  box-shadow: 0 30px 60px rgba(46, 62, 54, 0.25), 0 0 0 1px rgba(31, 42, 36, 0.5);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--bg);
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.phone-statusbar {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px 0 26px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
}

.phone-statusbar-right {
  display: flex;
  align-items: center;
  gap: 4px;
}

.phone-statusbar-dot {
  width: 4px;
  height: 4px;
  background: var(--ink);
  border-radius: 50%;
}

.phone-statusbar-battery {
  width: 16px;
  height: 8px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  position: relative;
  margin-left: 2px;
}

.phone-statusbar-battery::after {
  content: "";
  position: absolute;
  inset: 1px;
  background: var(--ink);
  border-radius: 1px;
}

.phone-content {
  flex: 1;
  padding: 12px 14px 14px;
  overflow: hidden;
}

.phone-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.phone-title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.phone-bell {
  position: relative;
  width: 22px;
  height: 22px;
  color: var(--ink);
}

.phone-bell svg {
  width: 100%;
  height: 100%;
}

.phone-bell-badge {
  position: absolute;
  top: -5px;
  right: -6px;
  min-width: 14px;
  height: 14px;
  padding: 0 3px;
  border-radius: 99px;
  background: var(--accent);
  color: white;
  font-size: 8.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-meta {
  font-size: 8.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  font-weight: 500;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  overflow: hidden;
}

.phone-meta::before {
  content: "";
  width: 12px;
  height: 1px;
  background: var(--accent);
}

.phone-meta.is-next {
  margin-top: 12px;
}

.phone-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 7px;
}

.phone-card.featured {
  background: var(--brand-green);
  border-color: var(--brand-green);
}

.phone-card-name {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 2px;
}

.phone-card.featured .phone-card-name {
  color: var(--on-dark);
}

.phone-card-desc {
  font-size: 9px;
  color: var(--ink-3);
  line-height: 1.35;
}

.phone-card.featured .phone-card-desc {
  color: var(--on-dark-3);
}

.phone-card-instr {
  margin-top: 7px;
  padding: 6px 8px;
  border-radius: 6px;
  background: rgba(244, 241, 234, 0.1);
  font-size: 8.5px;
  line-height: 1.4;
  color: var(--on-dark-2);
}

.phone-card-instr strong {
  display: block;
  color: var(--on-dark);
  font-weight: 500;
  margin-bottom: 1px;
}

.phone-card-btn {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  font-weight: 500;
  padding: 5px 9px;
  border-radius: 99px;
  background: var(--accent);
  color: white;
}

.phone-card:not(.featured) .phone-card-btn {
  background: var(--ink);
  color: var(--bg);
}

.phone-card-btn svg {
  width: 9px;
  height: 9px;
}

.phone-row {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 9px 12px;
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 10px;
  color: var(--ink-2);
}

.phone-pill {
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 2px 6px;
  white-space: nowrap;
}

/* Tarjetas flotantes: un aviso a cada lado de la relación */
.notif-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 18px 40px rgba(46, 62, 54, 0.15);
  width: 48%;
  max-width: 220px;
}

.notif-card.notif-1 {
  bottom: 12%;
  left: -2%;
  transform: rotate(-4deg);
}

.notif-card.notif-2 {
  top: 9%;
  right: -2%;
  transform: rotate(3deg);
}

.notif-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.notif-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.notif-icon.entry {
  background: var(--brand-green);
}

.notif-icon.bell {
  background: var(--accent);
}

.notif-icon svg {
  width: 12px;
  height: 12px;
}

.notif-app {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  font-weight: 600;
}

.notif-time {
  font-size: 10px;
  color: var(--ink-4);
  margin-left: auto;
}

.notif-title {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 2px;
}

.notif-body {
  font-size: 10.5px;
  color: var(--ink-2);
  line-height: 1.4;
}

/* ========== SECTION base ========== */
.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 96px 32px;
  scroll-margin-top: 24px;
}

.section-meta {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.section-meta::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--accent);
}

.section-title {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 18px;
  max-width: 720px;
}

.section-title em {
  font-style: italic;
}

.section-lead {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink-2);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 56px;
  max-width: 680px;
}

/* Bandas de ancho completo: el fondo llega a los bordes y el contenido se acota dentro */
.band {
  background: var(--surface);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

/* ========== FEATURES ========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.feature {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 30px 32px;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}

.feature:hover {
  transform: translateY(-2px);
  border-color: var(--ink-4);
}

.feature-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--accent-tint);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon-wrap svg {
  width: 20px;
  height: 20px;
}

.feature-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin-bottom: 8px;
  line-height: 1.25;
}

.feature-title em {
  font-style: italic;
  color: var(--accent);
}

.feature-desc {
  font-family: var(--serif);
  font-size: 15.5px;
  color: var(--ink-2);
  line-height: 1.6;
}

/* ========== SHOWCASE rows (alternating) ========== */
.showcase {
  padding: 0;
  scroll-margin-top: 24px;
}

.showcase-row {
  max-width: 1180px;
  margin: 0 auto;
  padding: 96px 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
  border-top: 1px solid var(--line-soft);
}

.showcase-row:first-child {
  border-top: none;
}

.showcase-row.reverse .showcase-text {
  order: 2;
}

.showcase-row.reverse .showcase-visual {
  order: 1;
}

.showcase-text {
  max-width: 460px;
}

.showcase-title {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.022em;
  line-height: 1.15;
  margin-bottom: 18px;
}

.showcase-title em {
  font-style: italic;
  color: var(--accent);
}

.showcase-desc {
  font-family: var(--serif);
  font-size: 16.5px;
  color: var(--ink-2);
  line-height: 1.65;
  margin-bottom: 22px;
}

.showcase-list {
  list-style: none;
  margin-bottom: 28px;
}

.showcase-list-item {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.5;
  padding: 10px 0;
  padding-left: 28px;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
}

.showcase-list-item:last-child {
  border-bottom: none;
}

.showcase-list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 14px;
  height: 1px;
  background: var(--accent);
}

.showcase-list-item strong {
  color: var(--ink);
  font-weight: 500;
}

.showcase-link {
  color: var(--ink);
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  transition: color 0.15s;
}

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

.showcase-link svg {
  width: 12px;
  height: 12px;
}

/* ===== Showcase visuals ===== */
.showcase-visual {
  width: 100%;
  position: relative;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--bg) 0%, var(--surface) 100%);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(46, 62, 54, 0.06);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Visual 1: el catálogo, captura real dentro de una ventana */
.visual-catalog {
  padding: 26px 24px;
}

.web-window {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 20px rgba(46, 62, 54, 0.06);
}

.web-window-bar {
  background: var(--surface-2);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--line);
}

.web-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ink-4);
}

.web-dot:nth-child(1) {
  background: var(--accent);
}

.web-dot:nth-child(2) {
  background: #E5C440;
}

.web-dot:nth-child(3) {
  background: var(--success);
}

.web-url {
  margin-left: 8px;
  font-family: 'Menlo', monospace;
  font-size: 10.5px;
  color: var(--ink-3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.web-url .url-name {
  color: var(--ink);
  font-weight: 500;
}

.web-body {
  background: var(--bg);
  position: relative;
}

.web-body img {
  width: 100%;
  height: auto;
  display: block;
}

/* Visual 2: el diálogo de asignar */
.assign-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(46, 62, 54, 0.06);
  overflow: hidden;
}

.assign-head {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}

.assign-head span {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-3);
}

.assign-body {
  padding: 14px 18px 16px;
}

.assign-label {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  font-weight: 500;
  margin-bottom: 8px;
}

.assign-label + .assign-label,
.assign-option + .assign-label,
.assign-note + .assign-label,
.assign-days + .assign-label {
  margin-top: 14px;
}

.assign-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 6px;
  background: var(--bg);
}

.assign-option.selected {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-tint);
}

.assign-radio {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid var(--ink-4);
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
}

.assign-option.selected .assign-radio {
  border-color: var(--accent);
}

.assign-option.selected .assign-radio::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--accent);
}

.assign-option-name {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
}

.assign-option-desc {
  font-size: 11px;
  color: var(--ink-3);
  line-height: 1.35;
}

.assign-option-tag {
  margin-left: auto;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 2px 7px;
  white-space: nowrap;
  align-self: center;
}

.assign-note {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 12px;
  background: var(--bg);
  font-family: var(--serif);
  font-size: 13px;
  color: var(--ink);
  line-height: 1.45;
}

.assign-days {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

.assign-day {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg);
  font-size: 10.5px;
  font-weight: 500;
  color: var(--ink-3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.assign-day.on {
  background: var(--brand-green);
  border-color: var(--brand-green);
  color: var(--on-dark);
}

.assign-time {
  margin-left: 6px;
  font-size: 11px;
  color: var(--ink-2);
  padding: 4px 9px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--bg);
  font-variant-numeric: tabular-nums;
}

.assign-foot {
  padding: 12px 18px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.assign-preview {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--ink-2);
}

.assign-preview svg {
  width: 13px;
  height: 13px;
}

.assign-submit {
  font-size: 12px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 6px;
  background: var(--brand-green);
  color: var(--on-dark);
}

/* Visual 3: lo que escribe el paciente y lo que anota el profesional */
.entry-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.entry-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  box-shadow: 0 4px 14px rgba(46, 62, 54, 0.05);
  max-width: 92%;
}

.entry-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 11.5px;
  color: var(--ink-2);
}

.entry-head svg {
  width: 13px;
  height: 13px;
  color: var(--ink-3);
}

.entry-tag {
  margin-left: auto;
  font-size: 10px;
  color: var(--ink-2);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 2px 8px;
  white-space: nowrap;
}

.entry-field {
  margin-bottom: 8px;
}

.entry-field:last-child {
  margin-bottom: 0;
}

.entry-field-label {
  font-size: 10.5px;
  color: var(--ink-3);
  margin-bottom: 2px;
}

.entry-field-value {
  font-size: 12.5px;
  color: var(--ink);
  line-height: 1.45;
}

.entry-chips {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.entry-chip {
  font-size: 11px;
  padding: 2px 9px;
  border-radius: 99px;
  border: 1px solid;
}

.entry-chip.anger {
  color: #993C1D;
  border-color: rgba(153, 60, 29, 0.35);
  background: rgba(153, 60, 29, 0.06);
}

.entry-chip.guilt {
  color: #2C5282;
  border-color: rgba(44, 82, 130, 0.35);
  background: rgba(44, 82, 130, 0.06);
}

.entry-scale {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 99px;
  background: var(--surface-2);
  color: var(--ink);
}

.annotation-card {
  align-self: flex-end;
  max-width: 88%;
  background: var(--brand-green);
  color: var(--on-dark);
  border-radius: 10px;
  padding: 12px 16px;
  box-shadow: 0 10px 24px rgba(46, 62, 54, 0.18);
}

.annotation-label {
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.annotation-label svg {
  width: 11px;
  height: 11px;
}

.annotation-text {
  font-family: var(--serif);
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--on-dark);
}

.annotation-meta {
  margin-top: 6px;
  font-size: 10px;
  color: var(--on-dark-3);
}

.digest-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  font-size: 11.5px;
  color: var(--ink-2);
  background: rgba(251, 249, 244, 0.6);
}

.digest-row svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
  flex-shrink: 0;
}

.digest-row strong {
  color: var(--ink);
  font-weight: 500;
}

/* Visual 4: cuestionario con puntuación */
.score-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(46, 62, 54, 0.06);
  padding: 16px 18px 18px;
}

.score-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.score-name {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}

.score-only {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--brand-green);
  background: var(--brand-green-tint);
  border-radius: 99px;
  padding: 3px 9px;
  white-space: nowrap;
}

.score-only svg {
  width: 11px;
  height: 11px;
}

.score-total {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
}

.score-total-value {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}

.score-total-label {
  font-size: 11px;
  color: var(--ink-3);
  line-height: 1.3;
}

.score-total-band {
  margin-left: auto;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--warning);
  background: rgba(186, 117, 23, 0.1);
  border-radius: 99px;
  padding: 3px 10px;
}

.score-bands {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 3px;
  margin-bottom: 4px;
}

.score-band {
  height: 8px;
  border-radius: 3px;
  background: var(--surface-2);
  position: relative;
}

.score-band.active {
  background: var(--accent);
}

.score-band.active::after {
  content: "";
  position: absolute;
  left: 40%;
  top: -4px;
  width: 2px;
  height: 16px;
  background: var(--ink);
  border-radius: 1px;
}

.score-band-labels {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 3px;
  margin-bottom: 14px;
}

.score-band-label {
  font-size: 9.5px;
  color: var(--ink-3);
  line-height: 1.3;
}

.score-band-label strong {
  display: block;
  color: var(--ink-2);
  font-weight: 500;
}

.score-items {
  border-top: 1px solid var(--line-soft);
}

.score-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 11.5px;
  color: var(--ink-2);
}

.score-item:last-child {
  border-bottom: none;
}

.score-item-note {
  font-size: 9.5px;
  color: var(--ink-4);
  margin-left: 6px;
}

.score-item-value {
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 1px 8px;
}

/* ========== TRUST (seguridad y RGPD) ========== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.trust-item {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 24px 26px;
}

.trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--brand-green-tint);
  color: var(--brand-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.trust-icon svg {
  width: 17px;
  height: 17px;
}

.trust-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  line-height: 1.25;
}

.trust-desc {
  font-family: var(--serif);
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.55;
}

.trust-foot {
  margin-top: 28px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14.5px;
  color: var(--ink-2);
  text-align: center;
}

.trust-foot a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 3px;
}

.trust-foot a:hover {
  color: var(--accent);
}

/* ========== GRATIS (en lugar de precios) ========== */
.free-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 8px;
}

.price-card {
  background: var(--brand-green);
  border: 1px solid var(--brand-green);
  border-radius: var(--radius);
  padding: 30px 30px 32px;
  display: flex;
  flex-direction: column;
  color: var(--on-dark);
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(46, 62, 54, 0.18);
}

.price-card::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(232, 136, 33, 0.18) 0%, transparent 60%);
  pointer-events: none;
}

.price-card > * {
  position: relative;
  z-index: 1;
}

.price-tag {
  align-self: flex-start;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--accent);
  background: rgba(232, 136, 33, 0.15);
  padding: 4px 10px;
  border-radius: 99px;
  margin-bottom: 14px;
}

.price-name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-bottom: 4px;
}

.price-tagline {
  font-family: var(--serif);
  font-size: 13.5px;
  color: var(--on-dark-3);
  font-style: italic;
  margin-bottom: 22px;
  line-height: 1.4;
}

.price-amount {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}

.price-period {
  font-size: 12.5px;
  color: var(--on-dark-3);
  margin-bottom: 24px;
}

.price-features {
  list-style: none;
  margin-bottom: 26px;
  flex: 1;
  columns: 2;
  column-gap: 24px;
}

.price-feature {
  font-size: 13px;
  color: rgba(244, 241, 234, 0.85);
  line-height: 1.45;
  padding: 8px 0 8px 22px;
  position: relative;
  border-bottom: 1px solid rgba(244, 241, 234, 0.1);
  break-inside: avoid;
}

.price-feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 12px;
  height: 1px;
  background: var(--accent);
}

.price-feature strong {
  color: var(--on-dark);
  font-weight: 600;
}

.price-cta {
  background: var(--accent);
  border: 1px solid var(--accent);
  color: white;
  padding: 13px 18px;
  border-radius: 99px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  align-self: flex-start;
}

.price-cta:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
}

.price-cta svg {
  width: 14px;
  height: 14px;
}

.why-free {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-free::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--accent);
}

.why-free-meta {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 8px;
}

.why-free-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 12px;
}

.why-free-title em {
  font-style: italic;
  color: var(--accent);
}

.why-free-desc {
  font-family: var(--serif);
  font-size: 15.5px;
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: 14px;
}

.why-free-desc:last-of-type {
  margin-bottom: 22px;
}

.why-free-desc strong {
  color: var(--ink);
  font-weight: 500;
}

.why-free-cta {
  align-self: flex-start;
  color: var(--ink);
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  transition: color 0.15s;
}

.why-free-cta:hover {
  color: var(--accent);
}

.why-free-cta svg {
  width: 12px;
  height: 12px;
}

/* ========== FAQ ========== */
.faq-list {
  margin-top: 24px;
  border-top: 1px solid var(--line);
  max-width: 820px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.faq-q {
  width: 100%;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.faq-q:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}

.faq-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--ink-3);
  transition: transform 0.2s, color 0.15s;
  margin-top: 2px;
}

.faq-icon svg {
  width: 100%;
  height: 100%;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-a {
  font-family: var(--serif);
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-2);
  margin-top: 14px;
  max-width: 720px;
  display: none;
}

.faq-a p + p {
  margin-top: 10px;
}

.faq-a a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 3px;
}

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

.faq-item.open .faq-a {
  display: block;
}

.faq-cta {
  margin-top: 36px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.faq-cta-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16.5px;
  color: var(--ink-2);
  line-height: 1.5;
}

.faq-cta-text strong {
  color: var(--ink);
  font-weight: 500;
  font-style: normal;
}

/* ========== CONTACT ========== */
.contact {
  background: var(--brand-green);
  color: var(--on-dark);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 50%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(232, 136, 33, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.contact-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact .section-meta {
  color: var(--accent);
}

.contact .section-title {
  color: var(--on-dark);
}

.contact .section-title em {
  color: var(--accent);
}

.contact-lead {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.6;
  color: rgba(244, 241, 234, 0.8);
  font-style: italic;
  margin-bottom: 36px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-method {
  background: rgba(244, 241, 234, 0.05);
  border: 1px solid rgba(244, 241, 234, 0.1);
  border-radius: var(--radius);
  padding: 18px 22px;
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.15s;
}

.contact-method:hover {
  background: rgba(244, 241, 234, 0.08);
  border-color: rgba(244, 241, 234, 0.2);
}

.contact-method-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--accent);
  color: white;
}

.contact-method-icon.wa {
  background: #25D366;
}

.contact-method-icon svg {
  width: 18px;
  height: 18px;
}

.contact-method-label {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--on-dark-3);
  font-weight: 500;
  margin-bottom: 2px;
}

.contact-method-value {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
  color: var(--on-dark);
}

/* Tarjeta de la derecha: lo que ayuda a que la conversación vaya rápida */
.contact-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px 32px 28px;
  color: var(--ink);
}

.contact-card-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}

.contact-card-title em {
  font-style: italic;
  color: var(--accent);
}

.contact-card-sub {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--ink-3);
  font-style: italic;
  margin-bottom: 20px;
}

.contact-tips {
  list-style: none;
  margin-bottom: 22px;
}

.contact-tip {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line-soft);
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.5;
}

.contact-tip:last-child {
  border-bottom: 1px solid var(--line-soft);
}

.contact-tip-num {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand-green);
  color: var(--surface);
  font-size: 11px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.contact-tip strong {
  color: var(--ink);
  font-weight: 500;
}

.contact-card-btn {
  width: 100%;
  background: var(--brand-green);
  color: var(--bg);
  border: none;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.15s;
  text-decoration: none;
}

.contact-card-btn:hover {
  background: var(--ink);
}

.contact-card-btn svg {
  width: 15px;
  height: 15px;
}

.contact-card-note {
  margin-top: 14px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--ink-3);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.contact-card-note svg {
  width: 14px;
  height: 14px;
  color: var(--warning);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ========== FINAL CTA ========== */
.final-cta {
  text-align: center;
  padding: 96px 32px;
  max-width: 720px;
  margin: 0 auto;
}

.final-cta .btn-primary {
  margin: 0 auto;
}

.final-cta-title {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 18px;
}

.final-cta-title em {
  font-style: italic;
  color: var(--accent);
}

.final-cta-lead {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink-2);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 32px;
}

.final-cta-stores {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 26px;
}

.store-btn-img {
  display: inline-block;
  transition: transform 0.15s, opacity 0.15s;
  line-height: 0;
}

.store-btn-img:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.store-btn-img img {
  height: 48px;
  width: auto;
  display: block;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--ink);
  color: rgba(244, 241, 234, 0.6);
  padding: 56px 32px 36px;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(244, 241, 234, 0.1);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--on-dark);
  text-decoration: none;
}

.footer-brand .brand-name {
  color: var(--on-dark);
}

.footer-brand .brand-by {
  color: var(--on-dark-3);
}

.footer-brand-mark {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  display: block;
}

.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--on-dark-3);
  max-width: 280px;
}

.footer-col-title {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-link {
  display: block;
  color: var(--on-dark-2);
  text-decoration: none;
  font-size: 13.5px;
  padding: 5px 0;
  transition: color 0.15s;
}

.footer-link:hover {
  color: var(--on-dark);
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  font-size: 12px;
  color: rgba(244, 241, 234, 0.4);
  line-height: 1.5;
}

.footer-legal {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 12px;
  color: var(--on-dark-3);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-legal a:hover {
  color: var(--on-dark);
}

/* ========================================== */
/*           RESPONSIVE                        */
/* ========================================== */

@media (max-width: 980px) {
  .topbar {
    padding: 18px 20px;
  }

  .top-nav {
    display: none;
  }

  .top-login {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 28px 20px 64px;
  }

  .hero-text {
    order: 2;
    padding: 0;
  }

  .hero-mockup-wrap {
    order: 1;
    justify-self: center;
    max-width: 340px;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary {
    justify-content: center;
    text-align: center;
  }

  .section {
    padding: 64px 20px;
  }

  .section-title {
    font-size: 32px;
  }

  .section-lead {
    font-size: 16px;
    margin-bottom: 36px;
  }

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

  .showcase-row {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 64px 20px;
  }

  .showcase-row.reverse .showcase-text {
    order: 1;
  }

  .showcase-row.reverse .showcase-visual {
    order: 2;
  }

  .showcase-title {
    font-size: 28px;
  }

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

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

  .price-features {
    columns: 1;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .final-cta {
    padding: 64px 20px;
  }

  .final-cta-title {
    font-size: 32px;
  }

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

  .footer {
    padding: 48px 20px 28px;
  }
}

@media (max-width: 560px) {
  .hero-title {
    font-size: 34px;
  }

  .hero-mockup-wrap {
    max-width: 300px;
  }

  .notif-card {
    padding: 9px 11px;
    width: 44%;
  }

  .notif-card.notif-2 {
    top: 4%;
    right: -3%;
  }

  .notif-card.notif-1 {
    bottom: 8%;
    left: -3%;
  }

  .notif-title {
    font-size: 10.5px;
  }

  .notif-body {
    font-size: 9.5px;
  }

  .section-title {
    font-size: 28px;
  }

  .showcase-title {
    font-size: 24px;
  }

  .showcase-visual {
    padding: 16px 14px;
  }

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

  .price-card {
    padding: 26px 22px 28px;
  }

  .price-amount {
    font-size: 48px;
  }

  .price-cta {
    align-self: stretch;
  }

  .why-free {
    padding: 24px 22px;
  }

  .contact-card {
    padding: 24px 20px;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
