@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/roboto-variable-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/roboto-variable-italic-latin.woff2") format("woff2");
}

:root {
  --navy-950: #071b2f;
  --navy-900: #0a2540;
  --navy-800: #123b5d;
  --blue-700: #145e8c;
  --blue-100: #eaf4fb;
  --orange-600: #e85b1a;
  --orange-500: #ff7438;
  --orange-100: #fff0e9;
  --ink: #172433;
  --muted: #5d6b78;
  --line: #dce5ec;
  --surface: #f5f8fa;
  --white: #ffffff;
  --success: #16734a;
  --shadow-sm: 0 8px 24px rgba(7, 27, 47, 0.08);
  --shadow-lg: 0 24px 64px rgba(7, 27, 47, 0.16);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

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

button,
.btn,
.service-card,
.contact-chip,
summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #ffd1bd;
  outline-offset: 3px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy-950);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.45rem, 6vw, 5.15rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: 1.25rem;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy-950);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--orange-600);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 3px;
  border-radius: 10px;
  background: currentColor;
  content: "";
}

.accent {
  color: var(--orange-500);
}

.muted {
  color: var(--muted);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(10, 37, 64, 0.08);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--navy-950);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  background: var(--navy-900);
  box-shadow: 0 7px 18px rgba(7, 27, 47, 0.18);
}

.brand-mark svg {
  width: 31px;
  height: 31px;
}

.fan-blades {
  transform-origin: center;
  animation: fan-spin 6s linear infinite;
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-text strong {
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}

.brand-text small {
  margin-top: 5px;
  color: var(--orange-600);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  color: var(--navy-900);
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: none;
}

.site-nav a:not(.btn):hover,
.site-nav a[aria-current="page"] {
  color: var(--orange-600);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--navy-950);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle svg {
  width: 24px;
  margin: auto;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn svg {
  width: 20px;
  height: 20px;
}

.btn-primary {
  color: var(--white);
  background: var(--orange-600);
  box-shadow: 0 10px 28px rgba(232, 91, 26, 0.25);
}

.btn-primary:hover {
  background: #cc4810;
  box-shadow: 0 14px 34px rgba(232, 91, 26, 0.32);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn-navy {
  color: var(--white);
  background: var(--navy-900);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.hero::before {
  position: absolute;
  top: -240px;
  right: -160px;
  width: 660px;
  height: 660px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(255, 255, 255, 0.025), 0 0 0 180px rgba(255, 255, 255, 0.018);
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 690px;
  align-items: center;
  gap: 64px;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  padding-block: 80px;
}

.hero h1 {
  max-width: 900px;
  margin-bottom: 24px;
  color: var(--white);
}

.hero-copy > p {
  max-width: 720px;
  margin-bottom: 32px;
  color: #c9d8e4;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 30px;
  color: #dce8f1;
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-proof span::before {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-950);
  background: var(--orange-500);
  content: "✓";
  font-size: 0.72rem;
  font-weight: 900;
}

.hero-card {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(7, 27, 47, 0.94));
  content: "";
}

.hero-card-content {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  background: rgba(7, 27, 47, 0.78);
  backdrop-filter: blur(12px);
}

.hero-card-content strong {
  display: block;
  font-size: 1.1rem;
}

.hero-card-content span {
  color: #c9d8e4;
  font-size: 0.88rem;
}

.fan-stage {
  display: grid;
  min-height: 470px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at center, rgba(255, 116, 56, 0.18), transparent 42%), #0d3150;
  box-shadow: var(--shadow-lg);
}

.fan-stage-inner {
  position: relative;
  display: grid;
  width: min(78%, 360px);
  aspect-ratio: 1;
  place-items: center;
}

.fan-stage-inner::before,
.fan-stage-inner::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.fan-stage-inner::before {
  inset: 0;
}

.fan-stage-inner::after {
  inset: 14%;
}

.hero-fan {
  width: 58%;
  color: var(--white);
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.22));
}

.fan-note {
  position: absolute;
  right: -2%;
  bottom: 3%;
  padding: 11px 15px;
  border-radius: 999px;
  color: var(--navy-950);
  background: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.trust-bar {
  background: var(--orange-600);
}

.trust-grid {
  display: grid;
  color: var(--white);
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
}

.trust-item:last-child {
  border-right: 0;
}

.section {
  padding-block: 96px;
}

.section-soft {
  background: var(--surface);
}

.section-blue {
  color: var(--white);
  background: var(--navy-900);
}

.section-blue h2,
.section-blue h3 {
  color: var(--white);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.section-heading h2 {
  margin-bottom: 16px;
}

.section-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-blue .section-heading p {
  color: #c9d8e4;
}

.cards-3,
.cards-2,
.cards-6 {
  display: grid;
  gap: 22px;
}

.cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

.cards-2 {
  grid-template-columns: repeat(2, 1fr);
}

.cards-6 {
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.info-card {
  position: relative;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(7, 27, 47, 0.045);
}

a.service-card {
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

a.service-card:hover {
  border-color: #f3ae8e;
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.section-blue .service-card,
.section-blue .info-card {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.card-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 14px;
  color: var(--orange-600);
  background: var(--orange-100);
}

.card-icon svg {
  width: 25px;
  height: 25px;
}

.service-card h3,
.info-card h3 {
  margin-bottom: 12px;
}

.service-card p,
.info-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.section-blue .service-card p,
.section-blue .info-card p {
  color: #c9d8e4;
}

.card-link {
  display: inline-flex;
  margin-top: 20px;
  align-items: center;
  gap: 7px;
  color: var(--orange-600);
  font-size: 0.9rem;
  font-weight: 800;
}

.split {
  display: grid;
  align-items: center;
  gap: 64px;
  grid-template-columns: 1fr 1fr;
}

.split-image {
  position: relative;
}

.split-image img {
  width: 100%;
  min-height: 470px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.split-image-badge {
  position: absolute;
  right: -18px;
  bottom: 26px;
  max-width: 250px;
  padding: 18px 20px;
  border-radius: 16px;
  color: var(--white);
  background: var(--orange-600);
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.check-list {
  display: grid;
  margin: 28px 0 0;
  padding: 0;
  gap: 17px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
}

.check-list li::before {
  position: absolute;
  top: 3px;
  left: 0;
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--orange-600);
  content: "✓";
  font-size: 0.75rem;
  font-weight: 900;
}

.steps {
  display: grid;
  counter-reset: steps;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
}

.step {
  counter-increment: steps;
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.step::before {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy-900);
  content: counter(steps);
  font-weight: 900;
}

.step h3 {
  margin-bottom: 10px;
}

.step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
  box-shadow: 0 5px 18px rgba(7, 27, 47, 0.04);
}

.faq-item summary {
  position: relative;
  padding: 22px 58px 22px 24px;
  color: var(--navy-950);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  color: var(--orange-600);
  content: "+";
  font-size: 1.55rem;
  transform: translateY(-50%);
}

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

.faq-answer {
  padding: 0 24px 22px;
  color: var(--muted);
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.contact-section {
  color: var(--white);
  background: var(--navy-950);
}

.contact-grid {
  display: grid;
  align-items: start;
  gap: 58px;
  grid-template-columns: 0.86fr 1.14fr;
}

.contact-copy h2 {
  color: var(--white);
}

.contact-copy > p {
  color: #c9d8e4;
}

.contact-options {
  display: grid;
  margin-top: 34px;
  gap: 12px;
}

.contact-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  text-decoration: none;
}

.contact-chip:hover {
  background: rgba(255, 255, 255, 0.1);
}

.contact-chip-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: var(--orange-600);
}

.contact-chip-icon svg {
  width: 21px;
}

.contact-chip span {
  display: grid;
  color: var(--white);
  font-weight: 800;
  line-height: 1.25;
}

.contact-chip small {
  margin-bottom: 3px;
  color: #9fb4c5;
  font-weight: 650;
}

.form-card {
  padding: clamp(24px, 5vw, 42px);
  border-radius: var(--radius-md);
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.form-card h3 {
  margin-bottom: 7px;
  font-size: 1.55rem;
}

.form-intro {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.94rem;
}

.form-grid {
  display: grid;
  gap: 17px;
  grid-template-columns: 1fr 1fr;
}

.field {
  display: grid;
  gap: 7px;
}

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

.field label,
.field legend {
  color: var(--navy-950);
  font-size: 0.86rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 49px;
  padding: 12px 14px;
  border: 1px solid #bac9d5;
  border-radius: 10px;
  color: var(--ink);
  background: var(--white);
}

.field textarea {
  min-height: 118px;
  resize: vertical;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: #849bab;
}

.required {
  color: var(--orange-600);
}

.optional {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
}

.consent {
  display: grid;
  align-items: start;
  gap: 10px;
  grid-template-columns: auto 1fr;
}

.consent input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--orange-600);
}

.consent label {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.consent a {
  color: var(--navy-900);
}

.form-card .btn {
  width: 100%;
  margin-top: 4px;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  text-align: center;
}

.form-status {
  display: none;
  margin-bottom: 18px;
  padding: 12px 14px;
  border: 1px solid #efb098;
  border-radius: 10px;
  color: #8b2f08;
  background: #fff0e9;
  font-size: 0.9rem;
}

.form-status.is-visible {
  display: block;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.cta-band {
  padding-block: 72px;
  color: var(--white);
  background: var(--orange-600);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-inner h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.cta-inner p {
  max-width: 700px;
  margin-bottom: 0;
  color: #fff4ef;
}

.page-hero {
  padding-block: 78px;
  color: var(--white);
  background: var(--navy-950);
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(2.3rem, 5vw, 4.5rem);
}

.page-hero p {
  max-width: 760px;
  margin-bottom: 0;
  color: #c9d8e4;
  font-size: 1.15rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 26px;
  gap: 8px;
  color: #9fb4c5;
  font-size: 0.8rem;
}

.breadcrumbs a {
  color: var(--white);
}

.legal {
  max-width: 850px;
}

.legal h2 {
  margin-top: 48px;
  font-size: 1.75rem;
}

.legal h3 {
  margin-top: 32px;
}

.legal a {
  color: var(--blue-700);
}

.success-card {
  max-width: 720px;
  margin-inline: auto;
  padding: clamp(30px, 7vw, 64px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.success-icon {
  display: grid;
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--success);
  font-size: 2rem;
  font-weight: 900;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
  gap: 10px 22px;
  color: #afc2d0;
  font-size: 0.84rem;
  font-weight: 700;
}

.article-layout {
  display: grid;
  align-items: start;
  gap: 64px;
  grid-template-columns: minmax(0, 1fr) 310px;
}

.article-content {
  max-width: 800px;
  color: var(--navy-800);
}

.article-content > :first-child {
  margin-top: 0;
}

.article-content h2 {
  margin: 56px 0 18px;
  color: var(--navy-950);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.article-content h3 {
  margin: 34px 0 12px;
  color: var(--navy-950);
  font-size: 1.3rem;
}

.article-content p,
.article-content li {
  line-height: 1.8;
}

.article-content ul,
.article-content ol {
  display: grid;
  margin: 18px 0 28px;
  padding-left: 22px;
  gap: 10px;
}

.article-content a {
  color: var(--blue-700);
  font-weight: 750;
}

.article-lead {
  margin-bottom: 34px;
  color: var(--navy-950);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.article-callout {
  margin: 34px 0;
  padding: 24px 26px;
  border: 1px solid #f3c9b7;
  border-left: 5px solid var(--orange-600);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: var(--orange-50);
}

.article-callout.is-safety {
  border-color: #f1c3c3;
  border-left-color: #c93c3c;
  background: #fff4f4;
}

.article-callout strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-950);
}

.article-callout p:last-child {
  margin-bottom: 0;
}

.article-figure {
  margin: 40px 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.article-figure img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.article-figure figcaption {
  padding: 14px 18px;
  color: var(--muted);
  background: var(--white);
  font-size: 0.82rem;
}

.article-sidebar {
  position: sticky;
  top: 112px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.article-sidebar h2 {
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.article-sidebar nav {
  display: grid;
  margin-bottom: 24px;
  gap: 8px;
}

.article-sidebar nav a {
  padding: 7px 0;
  color: var(--navy-700);
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
}

.article-sidebar nav a:hover {
  color: var(--orange-600);
}

.article-sidebar .btn {
  width: 100%;
}

.article-table-wrap {
  margin: 28px 0 36px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.article-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

.article-table th,
.article-table td {
  padding: 15px 17px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.article-table th {
  color: var(--navy-950);
  background: var(--blue-50);
  font-size: 0.86rem;
}

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

.blog-card-meta {
  display: block;
  margin-bottom: 13px;
  color: var(--orange-700);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-footer {
  padding: 70px 0 104px;
  color: #c4d2dd;
  background: #041321;
}

.footer-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: 1.2fr 0.8fr 0.9fr;
}

.footer-brand p {
  max-width: 420px;
  margin-top: 20px;
  color: #91a7b8;
}

.footer-title {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.footer-links a {
  color: #c4d2dd;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--orange-500);
}

.footer-bottom {
  display: flex;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #8299aa;
  font-size: 0.78rem;
}

.mobile-actions {
  position: fixed;
  z-index: 90;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: none;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 40px rgba(7, 27, 47, 0.2);
  backdrop-filter: blur(12px);
}

.mobile-actions a {
  display: flex;
  min-height: 46px;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 10px;
  color: var(--navy-950);
  font-size: 0.85rem;
  font-weight: 850;
  text-decoration: none;
}

.mobile-actions a:first-child {
  color: var(--white);
  background: var(--orange-600);
}

.whatsapp-float {
  position: fixed;
  z-index: 91;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  min-height: 56px;
  padding: 0 20px 0 16px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  background: #1fa855;
  box-shadow: 0 12px 32px rgba(7, 39, 25, 0.28);
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float svg {
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
}

.whatsapp-float:hover {
  color: #fff;
  background: #168f47;
  box-shadow: 0 16px 38px rgba(7, 39, 25, 0.34);
  transform: translateY(-2px);
}

.whatsapp-float:focus-visible {
  outline: 3px solid var(--orange-500);
  outline-offset: 4px;
}

@keyframes fan-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1020px) {
  .article-layout {
    gap: 42px;
    grid-template-columns: minmax(0, 1fr) 270px;
  }

  .site-nav {
    position: fixed;
    z-index: 99;
    top: 79px;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 79px);
    padding: 24px 20px 34px;
    border-top: 1px solid var(--line);
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    overflow-y: auto;
    background: var(--white);
    box-shadow: var(--shadow-lg);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 10px;
  }

  .site-nav .btn {
    margin-top: 10px;
  }

  .menu-toggle {
    display: block;
  }

  .hero-inner,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    gap: 42px;
  }

  .hero-card,
  .fan-stage {
    min-height: 390px;
  }

  .cards-6,
  .cards-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .split {
    gap: 40px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand-text small {
    letter-spacing: 0.12em;
  }

  .site-header .header-cta {
    display: none;
  }

  .hero-inner {
    min-height: auto;
    padding-block: 62px;
  }

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

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .hero-card,
  .fan-stage {
    min-height: 330px;
  }

  .fan-note {
    right: 2%;
    bottom: -2%;
  }

  .section {
    padding-block: 70px;
  }

  .cards-6,
  .cards-3,
  .cards-2,
  .steps,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
    order: -1;
  }

  .article-content h2 {
    margin-top: 44px;
  }

  .split-image {
    order: -1;
  }

  .split-image img {
    min-height: 360px;
  }

  .split-image-badge {
    right: 14px;
    bottom: 14px;
  }

  .cta-inner,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

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

  .field-full {
    grid-column: auto;
  }

  .mobile-actions {
    display: flex;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 86px;
    width: 58px;
    min-height: 58px;
    padding: 0;
  }

  .whatsapp-float span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .site-footer {
    padding-bottom: 126px;
  }
}

/* Continuidad editorial en servicios, contenidos y conversión */
.section {
  padding-block: clamp(84px, 9vw, 124px);
}

.section-soft {
  border-top: 1px solid rgba(10, 37, 64, 0.08);
  border-bottom: 1px solid rgba(10, 37, 64, 0.08);
  background:
    linear-gradient(135deg, rgba(234, 244, 251, 0.48), transparent 58%),
    var(--paper);
}

.section-blue {
  background:
    linear-gradient(135deg, rgba(20, 94, 140, 0.28), transparent 48%),
    var(--navy-950);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 54px;
}

.section-heading.centered {
  text-align: left;
  margin-left: 0;
}

.section-heading.centered .eyebrow {
  justify-content: flex-start;
}

.cards-3,
.cards-2,
.cards-6 {
  column-gap: clamp(28px, 4vw, 52px);
  row-gap: 0;
}

.service-card,
.info-card {
  padding: 32px 0 38px;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

a.service-card {
  transition: border-color 180ms ease, color 180ms ease;
}

a.service-card:hover {
  border-color: var(--orange-600);
  box-shadow: none;
  transform: none;
}

a.service-card:hover h3,
a.service-card:hover .card-link {
  color: var(--orange-700);
}

.section-blue .service-card,
.section-blue .info-card {
  border-color: rgba(255, 255, 255, 0.2);
  background: transparent;
}

.card-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 26px;
  border: 1px solid rgba(232, 91, 26, 0.38);
  border-radius: 50%;
  background: transparent;
}

.section-blue .card-icon {
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--orange-500);
}

.service-card h3,
.info-card h3 {
  font-size: clamp(1.25rem, 2vw, 1.48rem);
}

.card-link {
  margin-top: 24px;
}

.cards-6 {
  counter-reset: services;
}

.cards-6 .service-card {
  counter-increment: services;
}

.cards-6 .service-card::after {
  position: absolute;
  top: 36px;
  right: 0;
  color: #9dafbb;
  content: "0" counter(services);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.section-actions {
  justify-content: flex-start;
  margin-top: 42px;
}

.section-actions .btn-secondary {
  border-color: var(--navy-900);
  color: var(--navy-900);
  background: transparent;
}

.section-actions .btn-secondary:hover {
  color: var(--white);
  background: var(--navy-900);
}

.split {
  gap: clamp(54px, 8vw, 108px);
}

.split-image img {
  min-height: 520px;
  border-radius: 72px 2px 72px 2px;
  box-shadow: none;
}

.split-image {
  isolation: isolate;
}

.split-image::after {
  position: absolute;
  z-index: -1;
  right: -18px;
  bottom: -18px;
  width: 72%;
  height: 52%;
  background: rgba(232, 91, 26, 0.12);
  content: "";
}

.split-image-badge {
  position: static;
  max-width: none;
  padding: 18px 0 0;
  border-radius: 0;
  color: var(--navy-900);
  background: transparent;
  box-shadow: none;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}

.check-list {
  border-top: 1px solid var(--line);
  gap: 0;
}

.check-list li {
  padding: 16px 0 16px 36px;
  border-bottom: 1px solid var(--line);
}

.check-list li::before {
  top: 17px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--navy-900);
}

.steps {
  gap: clamp(24px, 4vw, 52px);
}

.step {
  padding: 30px 0 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.step::before {
  display: block;
  width: auto;
  height: auto;
  margin-bottom: 32px;
  color: var(--orange-600);
  background: transparent;
  font-size: 2.5rem;
  font-weight: 350;
  line-height: 1;
}

.faq-list {
  max-width: 980px;
  margin-left: 0;
  gap: 0;
  border-top: 1px solid var(--line);
}

.faq-item {
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.faq-item summary {
  padding: 25px 52px 25px 0;
  font-size: 1.04rem;
}

.faq-item summary::after {
  right: 4px;
  font-weight: 350;
}

.faq-answer {
  max-width: 780px;
  padding: 0 0 26px;
}

.contact-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(20, 94, 140, 0.28), transparent 46%),
    var(--navy-950);
}

.contact-section::after {
  position: absolute;
  right: -140px;
  bottom: -260px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  box-shadow: 0 0 0 86px rgba(255, 255, 255, 0.015);
  content: "";
  pointer-events: none;
}

.contact-grid {
  position: relative;
  z-index: 1;
  gap: clamp(54px, 8vw, 110px);
}

.contact-options {
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-chip {
  padding: 18px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  background: transparent;
}

.contact-chip:hover {
  background: transparent;
}

.contact-chip-icon {
  border-radius: 50%;
}

.form-card {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 2px 54px 2px 54px;
  box-shadow: none;
}

.field input,
.field select,
.field textarea {
  border: 0;
  border-bottom: 1px solid #9eb0bd;
  border-radius: 0;
  background: #f8fafb;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--orange-600);
  outline: 2px solid rgba(232, 91, 26, 0.22);
  outline-offset: 2px;
}

.cta-band {
  border-top: 1px solid #efc5b2;
  border-bottom: 1px solid #efc5b2;
  color: var(--navy-950);
  background: #f8e8df;
}

.cta-inner h2,
.cta-inner p {
  color: var(--navy-950);
}

.cta-band .btn-secondary {
  border-color: var(--navy-900);
  color: var(--navy-900);
  background: transparent;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(72px, 9vw, 116px);
  border-bottom: 1px solid var(--line);
  color: var(--navy-950);
  background:
    linear-gradient(120deg, rgba(234, 244, 251, 0.72), transparent 52%),
    var(--paper);
}

.page-hero::after {
  position: absolute;
  top: -180px;
  right: -160px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(10, 37, 64, 0.08);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--navy-950);
}

.page-hero p {
  color: var(--muted);
}

.page-hero .breadcrumbs {
  color: #6f8392;
}

.page-hero .breadcrumbs a {
  color: var(--navy-900);
}

.page-hero .article-meta {
  color: #6f8392;
}

.article-layout {
  gap: clamp(54px, 8vw, 110px);
}

.article-callout {
  border-width: 0 0 0 3px;
  border-radius: 0;
}

.article-figure {
  border-radius: 44px 2px 44px 2px;
  box-shadow: none;
}

.article-sidebar {
  padding: 8px 0 8px 28px;
  border: 0;
  border-left: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.article-sidebar nav a {
  border-bottom: 1px solid rgba(10, 37, 64, 0.08);
}

.article-table-wrap {
  border-radius: 0;
}

.site-footer {
  border-top: 5px solid var(--orange-600);
  background: #061724;
}

.mobile-actions {
  border-radius: 8px;
}

.mobile-actions a {
  border-radius: 5px;
}

@media (max-width: 1020px) {
  .cards-6,
  .cards-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .section {
    padding-block: 76px;
  }

  .section-heading.centered {
    text-align: left;
  }

  .cards-6,
  .cards-3,
  .cards-2,
  .steps {
    grid-template-columns: 1fr;
  }

  .service-card,
  .info-card,
  .step {
    padding: 28px 0 34px;
  }

  .cards-6 .service-card::after {
    top: 32px;
  }

  .split-image img {
    min-height: 360px;
    border-radius: 48px 2px 48px 2px;
  }

  .split-image::after {
    right: -10px;
    bottom: 18px;
  }

  .form-card {
    border-radius: 2px 34px 2px 34px;
  }

  .article-sidebar {
    padding: 22px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 460px) {
  .brand-text small {
    display: none;
  }

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

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .service-card,
  .info-card,
  .step {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Diseño editorial 2026: menos cajas, más ritmo visual y jerarquía */
:root {
  --navy-700: #1b4b6e;
  --blue-50: #f2f7fa;
  --orange-50: #fff8f4;
  --orange-700: #bc4310;
  --paper: #fbfaf7;
  --shadow-md: 0 20px 50px rgba(7, 27, 47, 0.12);
  --line: #d4dee5;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;
}

body {
  background: var(--paper);
}

h1,
h2,
h3 {
  font-weight: 760;
  letter-spacing: -0.045em;
}

.eyebrow::before {
  width: 38px;
  height: 1px;
  border-radius: 0;
}

.site-header {
  border-bottom-color: rgba(10, 37, 64, 0.12);
  background: rgba(251, 250, 247, 0.9);
  backdrop-filter: blur(20px);
}

.header-inner {
  min-height: 84px;
}

.brand-mark {
  border-radius: 50%;
  box-shadow: none;
}

.site-nav {
  gap: 22px;
}

.site-nav a:not(.btn) {
  position: relative;
  padding-block: 8px;
}

.site-nav a:not(.btn)::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:not(.btn):hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn {
  min-height: 50px;
  padding-inline: 22px;
  border-radius: 8px;
  box-shadow: none;
}

.btn-primary,
.btn-primary:hover {
  box-shadow: none;
}

.hero {
  background:
    linear-gradient(115deg, rgba(255, 116, 56, 0.08), transparent 42%),
    var(--navy-950);
}

.hero::before {
  top: auto;
  right: -8%;
  bottom: -42%;
  width: 560px;
  height: 560px;
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 110px rgba(255, 255, 255, 0.018);
}

.hero-inner {
  min-height: 720px;
  gap: clamp(44px, 7vw, 96px);
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
}

.hero h1 {
  font-size: clamp(2.7rem, 5.6vw, 5.5rem);
}

.hero-card {
  min-height: 530px;
  border: 0;
  border-radius: 2px 96px 2px 96px;
  box-shadow: 28px 28px 0 rgba(255, 116, 56, 0.13);
}

.hero-card::after {
  background: linear-gradient(180deg, transparent 45%, rgba(7, 27, 47, 0.9));
}

.hero-card-content {
  right: 30px;
  bottom: 30px;
  left: 30px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

.hero-card-content strong {
  font-size: 1.2rem;
}

.fan-stage {
  border: 0;
  border-radius: 2px 96px 2px 96px;
  box-shadow: 28px 28px 0 rgba(255, 116, 56, 0.13);
}

.trust-bar {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.trust-grid {
  color: var(--navy-900);
}

.trust-item {
  min-height: 72px;
  border-right-color: var(--line);
  font-size: 0.82rem;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

@media (max-width: 1020px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 450px;
  }

  .site-nav {
    top: 85px;
    max-height: calc(100vh - 85px);
    background: var(--paper);
  }

  .site-nav a:not(.btn)::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .hero-inner {
    padding-block: 58px 76px;
  }

  .hero-card {
    min-height: 360px;
    border-radius: 2px 58px 2px 58px;
    box-shadow: 14px 14px 0 rgba(255, 116, 56, 0.13);
  }
}
