@charset "UTF-8";
:root {
  --brand-navy: #082b78;
  --brand-blue: #1479ee;
  --brand-teal: #00b8a9;
  --ink: #0f172a;
  --muted: #5f6f85;
  --line: #dfe7f1;
  --surface: #ffffff;
  --soft-blue: #edf5ff;
  --soft-teal: #eafbf8;
  display: block;
}

* {
  box-sizing: border-box;
}

.landing-page {
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  background: radial-gradient(circle at 8% 5%, rgba(20, 121, 238, 0.1), transparent 24rem), linear-gradient(180deg, #f8fbff 0%, #ffffff 36%, #f8fbff 100%);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  min-height: 76px;
  padding: 12px max(24px, calc((100vw - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(223, 231, 241, 0.9);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.04);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  width: 178px;
  height: 50px;
  object-fit: contain;
  object-position: left center;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}
.desktop-nav a {
  position: relative;
  padding: 9px 0;
  color: #435269;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-blue);
  transition: right 160ms ease;
}
.desktop-nav a:hover {
  color: var(--brand-blue);
}
.desktop-nav a:hover::after {
  right: 0;
}

.navbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.login-link {
  color: var(--brand-navy) !important;
  font-weight: 800;
}

.nav-cta,
.primary-cta,
.submit-button {
  background: linear-gradient(135deg, var(--brand-blue), #0756c7) !important;
  color: #ffffff !important;
  box-shadow: 0 12px 28px rgba(20, 121, 238, 0.22);
}

.nav-cta {
  height: 44px;
  padding-inline: 20px;
  border-radius: 13px;
  font-weight: 800;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--brand-navy);
  background: #ffffff;
  cursor: pointer;
}

.mobile-nav {
  display: none;
}

.hero {
  width: min(1180px, 100% - 48px);
  min-height: 660px;
  margin: 0 auto;
  padding: 80px 0 72px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
  align-items: center;
  gap: 60px;
}

.eyebrow {
  width: fit-content;
  margin-bottom: 22px;
  padding: 8px 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #cce0fb;
  border-radius: 999px;
  color: #075fcf;
  background: #eef6ff;
  font-size: 13px;
  font-weight: 900;
}
.eyebrow .material-symbols-rounded {
  width: 18px;
  height: 18px;
  color: var(--brand-teal);
  font-size: 18px;
}

.hero-content {
  position: relative;
  z-index: 2;
}
.hero-content h1 {
  margin: 0;
  max-width: 650px;
  color: #0b1f45;
  font-size: clamp(48px, 6.4vw, 76px);
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: -3.5px;
}
.hero-content h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(100deg, var(--brand-blue), var(--brand-teal));
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-description {
  max-width: 630px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-cta,
.secondary-cta {
  min-height: 52px;
  padding-inline: 22px;
  border-radius: 15px;
  font-size: 15px;
  font-weight: 900;
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.secondary-cta {
  border-color: #bdd0e8 !important;
  color: var(--brand-navy) !important;
  background: #ffffff;
}

.hero-trust {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.hero-trust div {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #526176;
  font-size: 13px;
  font-weight: 700;
}
.hero-trust .material-symbols-rounded {
  width: 18px;
  height: 18px;
  color: var(--brand-teal);
  font-size: 18px;
}

.hero-visual {
  position: relative;
  min-width: 0;
  padding: 20px 0 34px;
}

.visual-glow {
  position: absolute;
  inset: 5% -4% 0 8%;
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 121, 238, 0.2), rgba(0, 184, 169, 0.08) 44%, transparent 70%);
  filter: blur(16px);
}

.product-window {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  border: 1px solid #d9e4f1;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 34px 80px rgba(15, 38, 80, 0.18), 0 8px 24px rgba(15, 38, 80, 0.08);
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}

.window-topbar {
  height: 60px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e6edf6;
  background: #ffffff;
}

.window-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--brand-navy);
  font-size: 13px;
  font-weight: 900;
}
.window-brand img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.window-user {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #65748a;
  font-size: 11px;
  font-weight: 700;
}
.window-user span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dceaff, #b8d4fb);
}

.window-content {
  min-height: 390px;
  display: grid;
  grid-template-columns: 62px 1fr;
  background: #f5f8fc;
}

.preview-sidebar {
  padding: 18px 12px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 13px;
  background: linear-gradient(180deg, #0c3d9e, #075dcc);
}
.preview-sidebar span {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  color: rgba(255, 255, 255, 0.72);
}
.preview-sidebar span.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
}
.preview-sidebar .material-symbols-rounded {
  width: 19px;
  height: 19px;
  font-size: 19px;
}

.preview-dashboard {
  min-width: 0;
  padding: 23px;
}

.preview-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}
.preview-heading div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.preview-heading small {
  color: #8290a4;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.preview-heading strong {
  color: #15233b;
  font-size: 20px;
}
.preview-heading > span {
  padding: 6px 9px;
  border: 1px solid #dbe5f1;
  border-radius: 8px;
  color: #617187;
  background: #ffffff;
  font-size: 9px;
  font-weight: 700;
}

.metric-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 10px;
}

.metric-card {
  min-width: 0;
  min-height: 98px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #e0e8f2;
  border-radius: 14px;
  background: #ffffff;
}
.metric-card > span {
  overflow: hidden;
  color: #7b8899;
  font-size: 9px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.metric-card > strong {
  overflow: hidden;
  color: #17253d;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.metric-card > small {
  color: #8390a2;
  font-size: 8px;
}
.metric-card.featured {
  border-color: #cbdfff;
  background: linear-gradient(145deg, #eef6ff, #ffffff);
}
.metric-card.featured > strong {
  color: #075dcc;
}
.metric-card.featured > small {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #059669;
  font-weight: 800;
}
.metric-card.featured .material-symbols-rounded {
  width: 11px;
  height: 11px;
  font-size: 11px;
}

.chart-card {
  margin-top: 12px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid #e0e8f2;
  border-radius: 16px;
  background: #ffffff;
}

.chart-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.chart-header div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.chart-header strong {
  color: #1d2a42;
  font-size: 11px;
}
.chart-header span {
  color: #8a96a6;
  font-size: 8px;
}
.chart-header .material-symbols-rounded {
  width: 18px;
  height: 18px;
  color: #93a0b1;
  font-size: 18px;
}

.chart {
  height: 115px;
  margin-top: 16px;
  padding: 0 10px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid #dfe7f1;
  background: repeating-linear-gradient(to bottom, transparent 0, transparent 28px, #edf1f6 29px);
}
.chart span {
  width: 100%;
  max-width: 28px;
  min-height: 12px;
  border-radius: 7px 7px 2px 2px;
  background: linear-gradient(180deg, var(--brand-teal), var(--brand-blue));
  opacity: 0.86;
}

.floating-card {
  position: absolute;
  right: -22px;
  bottom: 0;
  z-index: 3;
  min-width: 220px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid #dbe5f1;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 42px rgba(15, 38, 80, 0.16);
}
.floating-card > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.floating-card strong {
  color: #16243c;
  font-size: 12px;
}
.floating-card span {
  color: #718096;
  font-size: 10px;
}

.floating-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 11px;
  color: #ffffff;
  background: #0bb99f;
}
.floating-icon .material-symbols-rounded {
  width: 18px;
  height: 18px;
  font-size: 18px;
}

.confidence-strip {
  width: min(1180px, 100% - 48px);
  margin: 0 auto;
  padding: 22px 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(15, 38, 80, 0.06);
}
.confidence-strip > div {
  padding: 6px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-right: 1px solid var(--line);
}
.confidence-strip > div:last-child {
  border-right: 0;
}
.confidence-strip .material-symbols-rounded {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--brand-blue);
  font-size: 28px;
}
.confidence-strip span {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: #758398;
  font-size: 11px;
  line-height: 1.4;
}
.confidence-strip strong {
  color: #253650;
  font-size: 12px;
}

.section {
  width: min(1180px, 100% - 48px);
  margin: 0 auto;
  padding: 96px 0;
  scroll-margin-top: 82px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}
.section-heading h2 {
  margin: 12px 0 0;
  color: #0d2044;
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 950;
  line-height: 1.06;
  letter-spacing: -2px;
}
.section-heading p {
  max-width: 680px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.section-kicker {
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.features-section {
  padding-bottom: 70px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  min-height: 242px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.feature-card:hover {
  border-color: #bad6fa;
  box-shadow: 0 22px 44px rgba(15, 38, 80, 0.08);
  transform: translateY(-5px);
}
.feature-card h3 {
  margin: 20px 0 9px;
  color: #152642;
  font-size: 19px;
  font-weight: 900;
}
.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d7e8fd;
  border-radius: 16px;
  color: var(--brand-blue);
  background: linear-gradient(145deg, #f4f9ff, #eaf3ff);
}
.feature-icon .material-symbols-rounded {
  width: 27px;
  height: 27px;
  font-size: 27px;
}

.operation-section {
  padding: 72px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 72px;
  border-radius: 36px;
  color: #ffffff;
  background: radial-gradient(circle at 12% 20%, rgba(0, 184, 169, 0.16), transparent 32%), linear-gradient(135deg, #071d48, #0b3a8f);
  box-shadow: 0 30px 70px rgba(8, 43, 120, 0.18);
}
.operation-section .section-kicker {
  color: #68e2d3;
}

.operation-copy h2 {
  margin: 12px 0 0;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 950;
  line-height: 1.06;
  letter-spacing: -1.7px;
}
.operation-copy > p {
  margin: 20px 0 0;
  color: #c8d5e9;
  line-height: 1.75;
}

.operation-list {
  margin-top: 26px;
  display: grid;
  gap: 13px;
}
.operation-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e5edf8;
  font-size: 14px;
  font-weight: 700;
}
.operation-list .material-symbols-rounded {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  color: #042e5f;
  background: #63dccd;
  font-size: 16px;
  font-weight: 900;
}

.steps-card {
  padding: 26px;
  display: grid;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.step {
  position: relative;
  padding: 18px 14px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
}
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 37px;
  bottom: -7px;
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.23);
}
.step > span {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  color: #d9fffa;
  background: rgba(0, 184, 169, 0.2);
  font-size: 13px;
  font-weight: 950;
}
.step strong {
  font-size: 16px;
}
.step p {
  margin: 7px 0 0;
  color: #c8d5e9;
  font-size: 13px;
  line-height: 1.55;
}

.plans-section {
  padding-bottom: 70px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 18px;
}

.plan-card {
  position: relative;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: none;
  cursor: pointer;
  outline: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.plan-card:hover {
  border-color: #9cc8fb;
  box-shadow: 0 18px 44px rgba(15, 38, 80, 0.09);
  transform: translateY(-4px);
}
.plan-card:focus-visible {
  box-shadow: 0 0 0 4px rgba(20, 121, 238, 0.18), 0 18px 44px rgba(15, 38, 80, 0.09);
}
.plan-card.highlighted {
  border: 2px solid var(--brand-blue);
  background: linear-gradient(180deg, rgba(237, 245, 255, 0.75), #ffffff 34%);
  box-shadow: 0 28px 62px rgba(20, 121, 238, 0.15);
  transform: translateY(-10px);
}
.plan-card h3 {
  margin: 22px 0 10px;
  color: #142541;
  font-size: 25px;
  font-weight: 950;
}
.plan-card mat-divider {
  margin-top: 22px;
}
.plan-card ul {
  min-height: 354px;
  margin: 24px 0 28px;
  padding: 0;
  display: grid;
  align-content: start;
  gap: 12px;
  list-style: none;
}
.plan-card li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #45556c;
  font-size: 13px;
  line-height: 1.45;
}
.plan-card li .material-symbols-rounded {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  flex-shrink: 0;
  color: #0bb99f;
  font-size: 18px;
}

.plan-top {
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.plan-top > .material-symbols-rounded {
  width: 25px;
  height: 25px;
  color: var(--brand-blue);
  font-size: 25px;
}

.plan-badge {
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  color: #075dcc;
  background: #eaf3ff;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-row {
  min-height: 47px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.price-row strong {
  color: #092e7a;
  font-size: clamp(30px, 3.2vw, 40px);
  font-weight: 950;
  letter-spacing: -1.5px;
}
.price-row span {
  color: #718096;
  font-size: 13px;
  font-weight: 700;
}

.plan-description {
  min-height: 67px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.plan-button {
  width: 100%;
  min-height: 48px;
  margin-top: auto;
  border: 1px solid #bcd0e8;
  border-radius: 14px;
  color: var(--brand-navy);
  background: #f8fbff;
  font-weight: 900;
}

.highlighted .plan-button {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--brand-blue), #0756c7);
  box-shadow: 0 12px 28px rgba(20, 121, 238, 0.2);
}

.plan-button.selected {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--brand-blue), #0756c7);
  box-shadow: 0 12px 28px rgba(20, 121, 238, 0.2);
}

.repair-addon {
  margin-top: 32px;
  padding: 26px 30px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
  border: 1px solid #bce9e4;
  border-radius: 24px;
  background: linear-gradient(115deg, rgba(234, 251, 248, 0.9), rgba(245, 250, 255, 0.9));
  scroll-margin-top: 92px;
}
.repair-addon button {
  min-height: 44px;
  border-color: #73cfc4 !important;
  border-radius: 13px;
  color: #087d71 !important;
  font-weight: 900;
}

.addon-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 17px;
  color: #ffffff;
  background: linear-gradient(135deg, #04b9a5, #058a7b);
}
.addon-icon .material-symbols-rounded {
  width: 29px;
  height: 29px;
  font-size: 29px;
}

.addon-copy > span {
  color: #078174;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.addon-copy h3 {
  margin: 5px 0 4px;
  color: #17314b;
  font-size: 18px;
}
.addon-copy p {
  margin: 0;
  color: #5d6f82;
  font-size: 13px;
  line-height: 1.55;
}

.addon-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  white-space: nowrap;
}
.addon-price strong {
  color: #077d72;
  font-size: 22px;
  font-weight: 950;
}
.addon-price span {
  color: #718096;
  font-size: 11px;
  font-weight: 700;
}

.trial-banner {
  width: min(1180px, 100% - 48px);
  margin: 18px auto 0;
  padding: 48px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  overflow: hidden;
  border-radius: 32px;
  color: #ffffff;
  background: radial-gradient(circle at 83% 20%, rgba(60, 230, 209, 0.24), transparent 22rem), linear-gradient(125deg, #0b347f, #0871dc);
  box-shadow: 0 28px 65px rgba(8, 43, 120, 0.18);
}
.trial-banner > div {
  max-width: 700px;
}
.trial-banner span {
  color: #8ef3e7;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}
.trial-banner h2 {
  margin: 9px 0;
  font-size: clamp(29px, 4vw, 42px);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: -1.4px;
}
.trial-banner p {
  margin: 0;
  color: #d5e5f8;
  line-height: 1.65;
}
.trial-banner button {
  min-width: 210px;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-shrink: 0;
  border-radius: 14px;
  color: #075dcc;
  background: #ffffff;
  font-weight: 950;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 72px;
}

.contact-copy h2 {
  margin: 12px 0 0;
  color: #0d2044;
  font-size: clamp(38px, 4.5vw, 56px);
  font-weight: 950;
  line-height: 1.04;
  letter-spacing: -2px;
}
.contact-copy > p {
  margin: 20px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.contact-benefits {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}
.contact-benefits > div {
  display: flex;
  align-items: center;
  gap: 13px;
}
.contact-benefits .material-symbols-rounded {
  width: 42px;
  height: 42px;
  padding: 10px;
  flex-shrink: 0;
  border-radius: 13px;
  color: var(--brand-blue);
  background: var(--soft-blue);
  font-size: 22px;
}
.contact-benefits span {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: #728096;
  font-size: 12px;
}
.contact-benefits strong {
  color: #263850;
  font-size: 13px;
}

.whatsapp-link {
  width: fit-content;
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #087c71;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}
.whatsapp-link:hover {
  text-decoration: underline;
}
.whatsapp-link .material-symbols-rounded {
  width: 20px;
  height: 20px;
  font-size: 20px;
}

.lead-form {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 28px 68px rgba(15, 38, 80, 0.11);
}

.form-heading {
  margin-bottom: 26px;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 13px;
  border-bottom: 1px solid var(--line);
}
.form-heading img {
  width: 46px;
  height: 46px;
  padding: 4px;
  object-fit: contain;
  border: 1px solid #dce7f4;
  border-radius: 14px;
  background: #f8fbff;
}
.form-heading div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.form-heading strong {
  color: #162a48;
  font-size: 18px;
}
.form-heading span {
  color: #718096;
  font-size: 12px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-grid label > span {
  display: flex;
  justify-content: space-between;
  color: #34455e;
  font-size: 12px;
  font-weight: 850;
}
.form-grid label em {
  color: #8a97a8;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
}
.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #cfdbe9;
  border-radius: 12px;
  outline: none;
  color: #1c2e48;
  background: #fbfdff;
  font: inherit;
  font-size: 14px;
  transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}
.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--brand-blue);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(20, 121, 238, 0.11);
}
.form-grid select {
  cursor: pointer;
}
.form-grid textarea {
  min-height: 104px;
  resize: vertical;
}
.form-grid small {
  color: #d13c3c;
  font-size: 11px;
}

.full-field {
  grid-column: 1/-1;
}

.submit-button {
  width: 100%;
  min-height: 51px;
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 950;
}

.form-success {
  margin-top: 14px;
  padding: 11px 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #bde9df;
  border-radius: 11px;
  color: #087568;
  background: #edfbf8;
  font-size: 12px;
  font-weight: 800;
}
.form-success .material-symbols-rounded {
  width: 19px;
  height: 19px;
  font-size: 19px;
}

.form-note {
  margin: 13px 0 0;
  color: #8793a4;
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

.faq-section {
  max-width: 900px;
  padding-top: 58px;
}

mat-expansion-panel {
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px !important;
  background: #ffffff;
  box-shadow: none !important;
}
mat-expansion-panel mat-panel-title {
  color: #22334e;
  font-size: 14px;
  font-weight: 850;
}
mat-expansion-panel p {
  color: var(--muted);
  line-height: 1.65;
}

.footer {
  padding: 58px max(24px, calc((100vw - 1180px) / 2)) 24px;
  color: #d8e4f3;
  background: radial-gradient(circle at 10% 20%, rgba(0, 184, 169, 0.11), transparent 24rem), #071a3b;
}

.footer-main {
  padding-bottom: 40px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}

.footer-brand {
  max-width: 390px;
}
.footer-brand img {
  width: 210px;
  height: 64px;
  padding: 7px 12px;
  object-fit: contain;
  object-position: left center;
  border-radius: 13px;
  background: #ffffff;
}
.footer-brand p {
  margin: 18px 0 0;
  color: #9eb0c8;
  font-size: 13px;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 54px;
}
.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links strong {
  margin-bottom: 2px;
  color: #ffffff;
  font-size: 13px;
}
.footer-links a {
  color: #9eb0c8;
  font-size: 12px;
  text-decoration: none;
}
.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #7f93ad;
  font-size: 11px;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 45;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  background: #13b99f;
  box-shadow: 0 15px 34px rgba(4, 117, 104, 0.28);
  text-decoration: none;
  transition: transform 160ms ease;
}
.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.03);
}
.floating-whatsapp .material-symbols-rounded {
  width: 26px;
  height: 26px;
  font-size: 26px;
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 18px;
  }
  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(450px, 1.1fr);
    gap: 36px;
  }
  .operation-section {
    padding: 58px;
    gap: 50px;
  }
  .plan-card {
    padding: 25px;
  }
}
@media (max-width: 960px) {
  .desktop-nav,
  .login-link,
  .nav-cta {
    display: none;
  }
  .menu-button {
    display: flex;
  }
  .mobile-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 16px;
    right: 16px;
    padding: 12px;
    display: grid;
    gap: 3px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 22px 54px rgba(15, 38, 80, 0.16);
  }
  .mobile-nav a {
    padding: 13px 14px;
    border-radius: 10px;
    color: #33455e;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
  }
  .mobile-nav a:hover {
    color: var(--brand-blue);
    background: var(--soft-blue);
  }
  .hero {
    min-height: auto;
    padding-top: 56px;
    grid-template-columns: 1fr;
    gap: 54px;
  }
  .hero-content {
    max-width: 760px;
    text-align: center;
    margin: 0 auto;
  }
  .hero-content h1 {
    margin-inline: auto;
  }
  .eyebrow,
  .hero-actions,
  .hero-trust {
    margin-inline: auto;
    justify-content: center;
  }
  .hero-visual {
    width: min(720px, 100%);
    margin: 0 auto;
  }
  .product-window {
    transform: none;
  }
  .confidence-strip {
    grid-template-columns: 1fr 1fr;
  }
  .confidence-strip > div {
    border-right: 0;
  }
  .confidence-strip > div:nth-child(odd) {
    border-right: 1px solid var(--line);
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .operation-section {
    grid-template-columns: 1fr;
  }
  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin-inline: auto;
  }
  .plan-card.highlighted {
    transform: none;
  }
  .plan-card ul {
    min-height: 0;
    grid-template-columns: 1fr 1fr;
  }
  .repair-addon {
    grid-template-columns: auto 1fr auto;
  }
  .repair-addon button {
    grid-column: 2/-1;
    width: 100%;
  }
  .trial-banner {
    align-items: flex-start;
    flex-direction: column;
  }
  .trial-banner button {
    width: 100%;
  }
  .contact-section {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .contact-copy {
    max-width: 720px;
  }
}
@media (max-width: 680px) {
  .navbar {
    min-height: 68px;
    padding: 9px 14px;
  }
  .brand-logo {
    width: 146px;
    height: 45px;
  }
  .hero,
  .section,
  .confidence-strip,
  .trial-banner {
    width: min(100% - 28px, 1180px);
  }
  .hero {
    padding: 40px 0 52px;
    gap: 42px;
  }
  .hero-content h1 {
    font-size: clamp(42px, 13.5vw, 60px);
    letter-spacing: -2.3px;
  }
  .hero-description {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.65;
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .hero-actions .primary-cta,
  .hero-actions .secondary-cta {
    width: 100%;
  }
  .hero-trust {
    align-items: flex-start;
    flex-direction: column;
    width: fit-content;
  }
  .hero-visual {
    padding-bottom: 24px;
  }
  .window-topbar {
    height: 52px;
  }
  .window-content {
    min-height: 320px;
    grid-template-columns: 48px 1fr;
  }
  .preview-sidebar {
    padding: 14px 7px;
  }
  .preview-sidebar span {
    width: 32px;
    height: 32px;
  }
  .preview-dashboard {
    padding: 16px 13px;
  }
  .metric-grid {
    grid-template-columns: 1fr 1fr;
  }
  .metric-grid .metric-card:last-child {
    display: none;
  }
  .metric-card {
    padding: 11px;
  }
  .metric-card > strong {
    font-size: 12px;
  }
  .chart {
    height: 90px;
    gap: 6px;
  }
  .floating-card {
    right: 8px;
    min-width: 190px;
    padding: 11px 13px;
  }
  .confidence-strip {
    padding: 16px;
    grid-template-columns: 1fr;
  }
  .confidence-strip > div,
  .confidence-strip > div:nth-child(odd) {
    padding: 12px 8px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .confidence-strip > div:last-child,
  .confidence-strip > div:nth-child(odd):last-child {
    border-bottom: 0;
  }
  .section {
    padding: 72px 0;
  }
  .section-heading {
    margin-bottom: 34px;
  }
  .section-heading h2 {
    font-size: 35px;
    letter-spacing: -1.4px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature-card {
    min-height: auto;
  }
  .operation-section {
    width: min(100% - 28px, 1180px);
    padding: 38px 24px;
    border-radius: 28px;
  }
  .operation-copy h2 {
    font-size: 34px;
  }
  .steps-card {
    padding: 12px;
  }
  .step {
    padding-inline: 8px;
    grid-template-columns: 42px 1fr;
  }
  .step > span {
    width: 40px;
    height: 40px;
  }
  .step:not(:last-child)::after {
    left: 28px;
  }
  .plan-card {
    padding: 26px 22px;
  }
  .plan-card ul {
    grid-template-columns: 1fr;
  }
  .repair-addon {
    padding: 24px;
    grid-template-columns: 1fr;
  }
  .repair-addon button {
    grid-column: auto;
  }
  .addon-price {
    align-items: flex-start;
  }
  .trial-banner {
    padding: 34px 24px;
    border-radius: 26px;
  }
  .contact-copy h2 {
    font-size: 39px;
  }
  .lead-form {
    padding: 24px 18px;
    border-radius: 24px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .full-field {
    grid-column: auto;
  }
  .footer {
    padding: 46px 22px 24px;
  }
  .footer-main {
    flex-direction: column;
    gap: 36px;
  }
  .footer-links {
    width: 100%;
    gap: 28px;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
  }
}
/* Mejoras generales de lectura */
.landing-page {
  font-size: 17px;
}

.desktop-nav a {
  font-size: 15px;
}

.section-heading p,
.operation-copy > p,
.trial-banner p,
.contact-copy > p {
  font-size: 17px;
}

.feature-card p,
.plan-description {
  font-size: 15px;
}

.plan-card li {
  font-size: 14px;
}

mat-expansion-panel mat-panel-title {
  font-size: 15px;
}
mat-expansion-panel p {
  font-size: 15px;
}

/* La mayoría de los visitantes entrará desde el móvil */
@media (max-width: 680px) {
  .landing-page {
    font-size: 16px;
  }
  .navbar {
    min-height: 72px;
    padding: 10px 14px;
  }
  .brand-logo {
    width: 158px;
    height: 48px;
  }
  .menu-button {
    width: 48px;
    height: 48px;
  }
  .mobile-nav {
    left: 10px;
    right: 10px;
    padding: 10px;
  }
  .mobile-nav a {
    min-height: 50px;
    padding: 15px 14px;
    display: flex;
    align-items: center;
    font-size: 16px;
  }
  .hero,
  .section,
  .confidence-strip,
  .trial-banner {
    width: min(100% - 24px, 1180px);
  }
  .hero {
    padding: 42px 0 56px;
  }
  .eyebrow {
    margin-bottom: 20px;
    padding: 9px 13px;
    font-size: 14px;
  }
  .hero-content h1 {
    font-size: clamp(43px, 13vw, 58px);
    line-height: 1.01;
  }
  .hero-description {
    margin-top: 22px;
    font-size: 18px;
    line-height: 1.65;
  }
  .primary-cta,
  .secondary-cta {
    min-height: 56px;
    font-size: 16px;
  }
  .hero-trust {
    gap: 13px;
  }
  .hero-trust div {
    font-size: 15px;
    line-height: 1.45;
    text-align: left;
  }
  .hero-trust .material-symbols-rounded {
    width: 20px;
    height: 20px;
    font-size: 20px;
  }
  .product-window {
    border-radius: 21px;
  }
  .confidence-strip {
    padding: 14px 18px;
  }
  .confidence-strip > div {
    min-height: 72px;
    gap: 14px;
  }
  .confidence-strip .material-symbols-rounded {
    width: 31px;
    height: 31px;
    font-size: 31px;
  }
  .confidence-strip span {
    font-size: 14px;
  }
  .confidence-strip strong {
    font-size: 15px;
  }
  .section {
    padding: 64px 0;
    scroll-margin-top: 76px;
  }
  .section-heading {
    margin-bottom: 34px;
  }
  .section-heading h2 {
    font-size: clamp(34px, 10vw, 42px);
    line-height: 1.08;
  }
  .section-heading p {
    margin-top: 16px;
    font-size: 17px;
    line-height: 1.65;
  }
  .section-kicker {
    font-size: 13px;
  }
  .features-grid {
    gap: 14px;
  }
  .feature-card {
    padding: 24px 22px;
    border-radius: 21px;
  }
  .feature-card h3 {
    margin-top: 18px;
    font-size: 22px;
  }
  .feature-card p {
    font-size: 16px;
    line-height: 1.65;
  }
  .feature-icon {
    width: 56px;
    height: 56px;
  }
  .feature-icon .material-symbols-rounded {
    width: 29px;
    height: 29px;
    font-size: 29px;
  }
  .operation-section {
    width: min(100% - 24px, 1180px);
    padding: 36px 22px;
  }
  .operation-section .section-kicker {
    font-size: 13px;
  }
  .operation-copy h2 {
    font-size: 36px;
    line-height: 1.08;
  }
  .operation-copy > p {
    font-size: 16px;
    line-height: 1.7;
  }
  .operation-list div {
    align-items: flex-start;
    font-size: 15px;
    line-height: 1.5;
  }
  .step {
    grid-template-columns: 46px 1fr;
    gap: 13px;
  }
  .step > span {
    width: 44px;
    height: 44px;
    font-size: 14px;
  }
  .step strong {
    font-size: 17px;
  }
  .step p {
    font-size: 15px;
    line-height: 1.55;
  }
  .plans-grid {
    gap: 18px;
  }
  .plan-card {
    padding: 27px 22px;
    border-radius: 24px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
  .plan-card:hover, .plan-card.highlighted {
    transform: none;
  }
  .plan-card.highlighted {
    border-width: 3px;
    box-shadow: 0 20px 48px rgba(20, 121, 238, 0.16);
  }
  .plan-card h3 {
    margin-top: 19px;
    font-size: 28px;
  }
  .plan-card ul {
    gap: 14px;
  }
  .plan-card li {
    gap: 10px;
    font-size: 16px;
    line-height: 1.5;
  }
  .plan-card li .material-symbols-rounded {
    width: 21px;
    height: 21px;
    font-size: 21px;
  }
  .plan-badge {
    padding: 8px 12px;
    font-size: 12px;
  }
  .plan-top > .material-symbols-rounded {
    width: 28px;
    height: 28px;
    font-size: 28px;
  }
  .price-row strong {
    font-size: 40px;
  }
  .price-row span {
    font-size: 15px;
  }
  .plan-description {
    min-height: 0;
    font-size: 16px;
    line-height: 1.65;
  }
  .plan-button {
    min-height: 54px;
    font-size: 16px;
  }
  .repair-addon {
    padding: 25px 22px;
    gap: 16px;
    border-radius: 22px;
  }
  .repair-addon button {
    min-height: 52px;
    font-size: 16px;
  }
  .addon-icon {
    width: 58px;
    height: 58px;
  }
  .addon-copy > span {
    font-size: 12px;
  }
  .addon-copy h3 {
    font-size: 22px;
    line-height: 1.25;
  }
  .addon-copy p {
    font-size: 16px;
    line-height: 1.6;
  }
  .addon-price strong {
    font-size: 27px;
  }
  .addon-price span {
    font-size: 14px;
  }
  .trial-banner {
    padding: 34px 22px;
  }
  .trial-banner span {
    font-size: 12px;
  }
  .trial-banner h2 {
    font-size: 35px;
    line-height: 1.1;
  }
  .trial-banner p {
    font-size: 16px;
    line-height: 1.65;
  }
  .trial-banner button {
    min-height: 54px;
    font-size: 16px;
  }
  .contact-section {
    gap: 38px;
  }
  .contact-copy h2 {
    font-size: 39px;
    line-height: 1.07;
  }
  .contact-copy > p {
    font-size: 17px;
    line-height: 1.65;
  }
  .contact-benefits {
    gap: 17px;
  }
  .contact-benefits > div {
    align-items: flex-start;
  }
  .contact-benefits .material-symbols-rounded {
    width: 46px;
    height: 46px;
    padding: 11px;
  }
  .contact-benefits span {
    font-size: 14px;
    line-height: 1.45;
  }
  .contact-benefits strong {
    font-size: 15px;
  }
  .whatsapp-link {
    min-height: 48px;
    font-size: 15px;
  }
  .lead-form {
    padding: 24px 18px;
  }
  .form-heading {
    align-items: flex-start;
  }
  .form-heading img {
    width: 52px;
    height: 52px;
  }
  .form-heading strong {
    font-size: 20px;
  }
  .form-heading span {
    font-size: 14px;
    line-height: 1.4;
  }
  .form-grid {
    gap: 18px;
  }
  .form-grid label > span {
    font-size: 14px;
  }
  .form-grid em {
    font-size: 12px;
  }
  .form-grid input,
  .form-grid select,
  .form-grid textarea {
    min-height: 54px;
    padding: 14px;
    font-size: 16px;
  }
  .form-grid textarea {
    min-height: 118px;
  }
  .form-grid small {
    font-size: 13px;
  }
  .submit-button {
    min-height: 56px;
    font-size: 16px;
  }
  .form-success {
    font-size: 14px;
    line-height: 1.45;
  }
  .form-note {
    font-size: 12px;
    line-height: 1.55;
  }
  mat-expansion-panel mat-panel-title {
    padding-block: 4px;
    font-size: 16px;
    line-height: 1.35;
  }
  mat-expansion-panel p {
    font-size: 15px;
    line-height: 1.65;
  }
  .footer-brand p {
    font-size: 15px;
  }
  .footer-links strong {
    font-size: 15px;
  }
  .footer-links a {
    min-height: 38px;
    display: flex;
    align-items: center;
    font-size: 14px;
  }
  .footer-bottom {
    font-size: 13px;
    line-height: 1.5;
  }
  .floating-whatsapp {
    width: 58px;
    height: 58px;
  }
}
@media (max-width: 420px) {
  .hero-content h1 {
    font-size: 42px;
  }
  .window-user,
  .floating-card {
    display: none;
  }
  .window-content {
    min-height: 288px;
  }
  .chart-card {
    padding: 12px;
  }
  .chart {
    height: 76px;
  }
  .footer-links {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* Adaptaciones para la versión estática servida por Nginx. */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  min-width: 320px;
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f8fbff;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
.primary-cta,
.secondary-cta,
.login-link {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
  cursor: pointer;
}

.login-link,
.primary-cta,
.secondary-cta,
.nav-cta,
.trial-banner button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.material-symbols-rounded {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

[hidden] {
  display: none !important;
}

.plan-card {
  outline: none;
}

.plan-card:focus-visible {
  outline: 4px solid rgba(20, 121, 238, 0.2);
  outline-offset: 4px;
}

.plan-card .selected-check {
  visibility: hidden;
}

.plan-card.highlighted .selected-check {
  visibility: visible;
}

.plan-card hr {
  width: 100%;
  margin: 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.lead-form label small {
  display: none;
}

.lead-form.was-validated input:invalid,
.lead-form.was-validated select:invalid {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.lead-form.was-validated input:invalid + small,
.lead-form.was-validated select:invalid + small {
  display: block;
}

.faq-list {
  width: min(850px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.faq-list summary {
  position: relative;
  min-height: 62px;
  padding: 20px 58px 20px 22px;
  display: flex;
  align-items: center;
  color: #153253;
  font-size: 16px;
  font-weight: 850;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  color: var(--brand-blue);
  font-size: 27px;
  font-weight: 500;
}

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

.faq-list details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 680px) {
  .faq-list summary {
    min-height: 68px;
    padding: 18px 54px 18px 18px;
    font-size: 16px;
  }

  .faq-list summary::after {
    right: 18px;
  }

  .faq-list details p {
    padding: 0 18px 20px;
    font-size: 15px;
  }
}

/*
 * Corrección final de cabecera móvil.
 * Estas reglas deben permanecer al final porque los estilos estáticos de los
 * botones se declaran después de los breakpoints originales.
 */
@media (max-width: 960px) {
  .navbar {
    width: 100%;
    max-width: 100vw;
    min-width: 0;
    padding-inline: 16px;
    gap: 12px;
  }

  .desktop-nav,
  .navbar .login-link,
  .navbar .nav-cta {
    display: none !important;
  }

  .brand {
    min-width: 0;
    max-width: calc(100% - 60px);
    overflow: hidden;
  }

  .brand-logo {
    width: 158px;
    max-width: 100%;
    height: 48px;
  }

  .navbar-actions {
    min-width: 48px;
    margin-left: auto;
    flex: 0 0 48px;
  }

  .menu-button {
    width: 48px;
    height: 48px;
    padding: 0;
    display: flex !important;
    flex: 0 0 48px;
  }

  .mobile-nav {
    max-width: calc(100vw - 24px);
    max-height: calc(100vh - 92px);
    overflow-y: auto;
  }

  .mobile-nav[hidden] {
    display: none !important;
  }
}

@media (max-width: 420px) {
  .navbar {
    min-height: 68px;
    padding: 8px 12px;
  }

  .brand-logo {
    width: 150px;
    height: 44px;
  }

  .navbar-actions,
  .menu-button {
    min-width: 46px;
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }
}
