:root {
  --navy: #062d3d;
  --navy2: #041f2b;
  --ink: #123543;
  --cyan: #16b5d1;
  --cyan2: #58d1e2;
  --orange: #f5a623;
  --cream: #f7f6f1;
  --pale: #eef7f8;
  --line: #d6e6e8;
  --muted: #617881;
  --white: #fff;
  --green: #1da66b;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: #fff;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a {
  transition: 0.2s;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
.wrap {
  width: min(1160px, calc(100% - 48px));
  margin: auto;
}
.announcement {
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--navy2);
  color: #b8cdd3;
  font-size: 11px;
  letter-spacing: 0.03em;
}
.announcement a {
  color: var(--cyan2);
  font-weight: bold;
  border-bottom: 1px solid #58d1e277;
}
header {
  height: 80px;
  padding: 0 max(24px, calc((100vw - 1160px) / 2));
  display: flex;
  align-items: center;
  gap: 35px;
  background: white;
  position: relative;
  z-index: 20;
  border-bottom: 1px solid #edf1f2;
}
.brand {
  margin-right: auto;
}
.brand img {
  width: 190px;
  height: 55px;
  object-fit: contain;
}
nav {
  display: flex;
  gap: 25px;
  color: #3e5c66;
  font-size: 13px;
}
nav a:hover {
  color: var(--cyan);
}
.header-cta {
  background: var(--orange);
  padding: 13px 18px;
  font-size: 12px;
  font-weight: 800;
  color: #183743;
}
.hero {
  min-height: 710px;
  position: relative;
  overflow: hidden;
  background: url("assets/hero.jpeg") 74% 50% / cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(3, 34, 47, 0.99) 0%,
    rgba(5, 46, 61, 0.94) 48%,
    rgba(5, 39, 51, 0.55) 76%,
    rgba(3, 30, 40, 0.7) 100%
  );
}
.energy-orbit {
  position: absolute;
  border: 1px solid #49c9dd35;
  border-radius: 50%;
}
.orbit-one {
  width: 460px;
  height: 460px;
  right: -110px;
  top: 30px;
}
.orbit-two {
  width: 680px;
  height: 680px;
  right: -170px;
  top: -80px;
}
.hero-grid {
  min-height: 710px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 70px;
  align-items: center;
  color: white;
}
.hero-copy {
  padding: 70px 0;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: #79d9e8;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
}
.eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--orange);
}
.eyebrow.dark {
  color: #118fa7;
}
.eyebrow.light {
  color: #75d8e7;
}
.hero h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.035em;
}
.hero h1 {
  font-size: 62px;
  line-height: 1.05;
  margin: 0 0 24px;
  max-width: 780px;
}
.hero h1 em,
h2 em {
  font-style: italic;
  color: var(--cyan2);
}
.hero-lead {
  font-size: 17px;
  line-height: 1.75;
  color: #d7e5e8;
  max-width: 690px;
  margin: 0;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 34px;
}
.btn {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 16px 22px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.primary {
  background: var(--orange);
  color: #173641;
}
.primary:hover {
  background: #ffb32d;
  transform: translateY(-1px);
}
.link-btn {
  border: 0;
  border-bottom: 1px solid #ffffffaa;
  background: none;
  color: white;
  padding: 5px 0;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 23px;
  margin-top: 40px;
  color: #bcd1d6;
  font-size: 11px;
}
.hero-proof i {
  font-style: normal;
  color: var(--orange);
  margin-right: 6px;
}
.value-card {
  align-self: center;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  padding: 31px 28px;
  border-top: 5px solid var(--orange);
  box-shadow: 0 25px 60px #0007;
}
.value-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.value-top span,
.value-top strong {
  font:
    29px Georgia,
    serif;
}
.value-top span {
  color: #0797b2;
}
.value-top small {
  color: #8ca1a8;
}
.value-card > p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  margin: 13px 0 22px;
}
.value-line {
  height: 1px;
  background: var(--line);
}
.value-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 7px;
  align-items: center;
  margin: 22px 0;
}
.value-flow > i {
  font-style: normal;
  color: var(--orange);
}
.value-flow b,
.value-flow span {
  display: block;
}
.value-flow b {
  font-size: 9px;
  color: #0994ad;
  letter-spacing: 0.1em;
}
.value-flow span {
  font-size: 9px;
  color: #73888f;
  margin-top: 4px;
  line-height: 1.35;
}
.legal-note {
  font-size: 9px;
  line-height: 1.5;
  color: #82949a;
}
.trust-strip {
  max-width: 1160px;
  margin: -28px auto 0;
  position: relative;
  z-index: 4;
  background: #fff;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  box-shadow: 0 14px 35px #0b354419;
}
.trust-strip > div {
  padding: 23px 25px;
  border-right: 1px solid var(--line);
}
.trust-strip b {
  display: block;
  color: #069ab6;
  font:
    22px Georgia,
    serif;
}
.trust-strip span {
  display: block;
  color: #70848b;
  font-size: 10px;
  margin-top: 4px;
}
.section {
  padding: 105px 0;
}
.explain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.explain-copy h2,
.section-head h2,
.checker h2,
.audiences h2,
.documents h2,
.contact-section h2,
.faq h2,
.final-cta h2 {
  font-size: 49px;
  line-height: 1.08;
  margin: 0;
}
.explain-copy > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.8;
  font-size: 15px;
}
.double-benefit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  margin-top: 34px;
}
.double-benefit > div {
  display: flex;
  gap: 14px;
  padding: 20px;
}
.double-benefit > div + div {
  border-left: 1px solid var(--line);
}
.double-benefit b {
  font: 18px Georgia;
  color: var(--orange);
}
.double-benefit strong,
.double-benefit span {
  display: block;
}
.double-benefit strong {
  font-size: 13px;
  color: var(--ink);
}
.double-benefit span {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.5;
}
.photo-stack {
  position: relative;
  height: 540px;
}
.photo-stack > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-label {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--navy);
  color: white;
  padding: 17px 22px;
}
.photo-label b,
.photo-label span {
  display: block;
}
.photo-label b {
  font-size: 9px;
  color: var(--cyan2);
  letter-spacing: 0.12em;
}
.photo-label span {
  font-size: 11px;
  margin-top: 5px;
}
.stamp {
  position: absolute;
  right: -32px;
  top: 34px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  background: var(--orange);
  color: #173641;
  font: 11px/1.4 Arial;
  box-shadow: 0 10px 28px #0002;
  transform: rotate(8deg);
}
.stamp strong {
  font-size: 15px;
}
.actions-section {
  background: var(--pale);
}
.section-head {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 90px;
  align-items: end;
}
.section-head > p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 14px;
  margin: 0;
}
.action-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 55px;
  border: 1px solid var(--line);
  background: var(--line);
  gap: 1px;
}
.action-grid article {
  position: relative;
  background: white;
  padding: 32px 27px;
  min-height: 265px;
}
.action-num {
  position: absolute;
  right: 20px;
  top: 18px;
  color: #d0e1e4;
  font: 14px Georgia;
}
.action-grid article > i {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid #9ed7e0;
  color: #079bb7;
  font-style: normal;
  font-size: 27px;
}
.action-grid h3 {
  font:
    21px Georgia,
    serif;
  margin: 24px 0 12px;
}
.action-grid p {
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 20px;
}
.action-grid article > span {
  font-size: 9px;
  letter-spacing: 0.1em;
  color: #0d8da4;
  font-weight: bold;
}
.microcopy {
  text-align: center;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 12px;
}
.microcopy button {
  border: 0;
  background: none;
  color: #078fa8;
  font-weight: bold;
  cursor: pointer;
}
.checker {
  padding: 100px 0;
  background: var(--navy);
  color: white;
  position: relative;
  overflow: hidden;
}
.checker:before {
  content: "CAE";
  position: absolute;
  left: -30px;
  bottom: -80px;
  font: bold 310px Arial;
  color: #ffffff08;
  letter-spacing: -0.08em;
}
.checker-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  align-items: center;
}
.checker-copy > p:not(.eyebrow) {
  color: #b9cfd5;
  line-height: 1.75;
}
.checker-list {
  display: grid;
  margin-top: 35px;
}
.checker-list span {
  border-top: 1px solid #ffffff1c;
  padding: 15px 0;
  color: #cfe0e4;
  font-size: 12px;
}
.checker-list b {
  display: inline-grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border: 1px solid #5c8995;
  margin-right: 12px;
  color: var(--orange);
}
.checker-card {
  background: white;
  color: var(--ink);
  padding: 34px;
  display: grid;
  gap: 17px;
  box-shadow: 0 22px 60px #0004;
}
.checker-top {
  display: flex;
  justify-content: space-between;
  color: #168da4;
  font-size: 9px;
  font-weight: bold;
  letter-spacing: 0.14em;
  border-bottom: 1px solid var(--line);
  padding-bottom: 17px;
}
.checker-card label,
form label {
  display: grid;
  gap: 7px;
  font-size: 11px;
  font-weight: bold;
  color: #48646e;
}
.checker-card select,
form input,
form select,
form textarea {
  width: 100%;
  padding: 13px;
  border: 1px solid #d2e2e5;
  background: #fbfdfd;
  color: #263f49;
  outline: none;
}
.checker-card select:focus,
form input:focus,
form select:focus,
form textarea:focus {
  border-color: var(--cyan);
}
.full {
  width: 100%;
}
.checker-disclaimer {
  font-size: 9px;
  color: #84969c;
  text-align: center;
  margin: 0;
}
.result {
  padding: 19px;
  border-left: 4px solid var(--green);
  background: #eef9f4;
}
.result.mid {
  border-color: var(--orange);
  background: #fff7e8;
}
.result.low {
  border-color: #d86c5b;
  background: #fff1ef;
}
.result small,
.result strong {
  display: block;
}
.result small {
  font-size: 8px;
  letter-spacing: 0.13em;
  color: #739087;
}
.result strong {
  font: 19px Georgia;
  margin: 7px 0;
}
.result p {
  font-size: 11px;
  line-height: 1.6;
  color: var(--muted);
}
.result button {
  border: 0;
  background: none;
  padding: 0;
  color: #078fa8;
  font-size: 11px;
  font-weight: bold;
  cursor: pointer;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 55px;
}
.timeline article {
  position: relative;
  padding: 30px 27px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.timeline article + article {
  border-left: 1px solid var(--line);
}
.timeline article > b {
  position: absolute;
  right: 18px;
  top: 18px;
  color: #ccdfe2;
  font: 13px Georgia;
}
.timeline i {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  background: var(--pale);
  color: #079ab5;
  font-style: normal;
  font-size: 21px;
}
.timeline h3 {
  font: 20px Georgia;
  margin: 22px 0 10px;
}
.timeline p {
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted);
}
.audiences {
  background: var(--navy2);
  padding: 70px 0;
  color: white;
}
.audience-tabs {
  display: flex;
  border-bottom: 1px solid #ffffff1c;
}
.audience-tabs button {
  border: 0;
  background: none;
  color: #7897a1;
  padding: 15px 25px;
  font-size: 11px;
  font-weight: bold;
  cursor: pointer;
}
.audience-tabs button.active {
  color: white;
  border-bottom: 3px solid var(--orange);
}
.audience-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
  align-items: center;
}
.audience-panel > div:first-child {
  padding: 55px 75px 55px 0;
}
.audience-panel > div:first-child > p:not(.eyebrow) {
  color: #b7ccd2;
  line-height: 1.75;
  margin-bottom: 28px;
}
.audience-panel > img {
  height: 460px;
  width: 100%;
  object-fit: cover;
}
.b2b-visual {
  height: 330px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 15px !important;
  background: linear-gradient(135deg, #0b4659, #086b7d);
  padding: 0 !important;
}
.b2b-visual span {
  padding: 18px 14px;
  border: 1px solid #ffffff50;
  font-size: 11px;
  letter-spacing: 0.1em;
}
.b2b-visual b {
  color: var(--orange);
  font-size: 25px;
}
.documents {
  background: var(--cream);
}
.documents-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.documents-grid > div:first-child > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
}
.doc-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.doc-list span {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 18px;
  border: 1px solid #e2e5df;
  font-size: 11px;
}
.doc-list i {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #e9f8f2;
  color: var(--green);
  font-style: normal;
}
.contact-section {
  background: var(--navy);
  color: white;
  padding: 100px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 95px;
  align-items: center;
}
.contact-copy > p:not(.eyebrow) {
  color: #bdd1d6;
  line-height: 1.75;
}
.contact-data {
  display: grid;
  gap: 9px;
  margin-top: 30px;
}
.contact-data a {
  color: var(--cyan2);
  font-size: 12px;
}
.contact-section form {
  background: #fff;
  color: var(--ink);
  padding: 34px;
  display: grid;
  gap: 15px;
}
.profile-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #edf5f6;
  padding: 4px;
}
.profile-switch button {
  border: 0;
  background: transparent;
  padding: 11px;
  font-size: 10px;
  font-weight: bold;
  color: #65808a;
  cursor: pointer;
}
.profile-switch button.active {
  background: white;
  color: #078fa8;
  box-shadow: 0 2px 8px #0001;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}
form textarea {
  min-height: 82px;
  resize: vertical;
}
.privacy {
  display: flex !important;
  align-items: flex-start;
  font-weight: normal !important;
}
.privacy input {
  width: 15px !important;
  margin: 1px 4px 0 0;
}
.contact-section form > small {
  text-align: center;
  color: #87989d;
  font-size: 9px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 100px;
}
.faq-grid > div:first-child > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
}
.faq details {
  border-top: 1px solid var(--line);
}
.faq details:last-child {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 21px 0;
  font: 18px Georgia;
  display: flex;
  justify-content: space-between;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary span {
  color: var(--cyan);
}
.faq details[open] summary span {
  transform: rotate(45deg);
}
.faq details p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
  padding: 0 50px 22px 0;
}
.final-cta {
  padding: 90px 0;
  text-align: center;
  background: var(--pale);
}
.final-cta > div > span {
  font-size: 9px;
  letter-spacing: 0.16em;
  color: #138fa6;
  font-weight: bold;
}
.final-cta h2 {
  margin: 18px 0 30px;
}
.final-cta > div > div {
  display: flex;
  justify-content: center;
  gap: 25px;
  align-items: center;
}
.final-cta button {
  border: 0;
  background: none;
  color: #078da6;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
}
footer {
  background: #031d28;
  color: #9fb6bd;
}
.footer-grid {
  padding: 55px 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 70px;
}
.footer-logo {
  display: inline-block;
  background: #fff;
  padding: 8px 13px;
  border-radius: 5px;
}
.footer-logo img {
  width: 210px;
  height: 55px;
  object-fit: contain;
}
.footer-grid p,
.footer-grid a,
.footer-grid span {
  display: block;
  font-size: 11px;
  line-height: 1.7;
  margin: 10px 0;
}
.footer-grid b {
  color: #6ed0df;
  font-size: 9px;
  letter-spacing: 0.13em;
}
.footer-bottom {
  border-top: 1px solid #ffffff12;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: #718e97;
}
.float-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  border: 0;
  border-radius: 30px;
  background: #20b866;
  color: white;
  padding: 13px 18px;
  box-shadow: 0 8px 26px #0004;
  font-weight: bold;
  cursor: pointer;
}
.float-wa span {
  font-size: 11px;
  margin-left: 6px;
}
@media (max-width: 950px) {
  nav {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .value-card {
    display: none;
  }
  .hero-copy {
    max-width: 760px;
  }
  .trust-strip {
    grid-template-columns: 1fr 1fr;
    margin: 0;
  }
  .explain-grid,
  .checker-grid,
  .documents-grid,
  .contact-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .action-grid {
    grid-template-columns: 1fr 1fr;
  }
  .section-head {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .timeline {
    grid-template-columns: 1fr 1fr;
  }
  .audience-panel {
    grid-template-columns: 1fr;
  }
  .audience-panel > img {
    height: 380px;
  }
  .audience-panel > div:first-child {
    padding-right: 0;
  }
  .doc-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .wrap {
    width: calc(100% - 34px);
  }
  .announcement {
    height: auto;
    padding: 8px 17px;
    text-align: center;
    line-height: 1.4;
  }
  header {
    height: 70px;
    padding: 0 17px;
  }
  .brand img {
    width: 165px;
  }
  .header-cta {
    display: none;
  }
  .hero,
  .hero-grid {
    min-height: 730px;
  }
  .hero h1 {
    font-size: 42px;
  }
  .hero-lead {
    font-size: 15px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  .hero-proof {
    display: grid;
    gap: 10px;
  }
  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }
  .trust-strip > div {
    padding: 17px;
  }
  .section,
  .checker,
  .contact-section {
    padding: 72px 0;
  }
  .explain-copy h2,
  .section-head h2,
  .checker h2,
  .audiences h2,
  .documents h2,
  .contact-section h2,
  .faq h2,
  .final-cta h2 {
    font-size: 37px;
  }
  .explain-grid {
    gap: 40px;
  }
  .photo-stack {
    height: 400px;
  }
  .stamp {
    right: -5px;
  }
  .double-benefit {
    grid-template-columns: 1fr;
  }
  .double-benefit > div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .action-grid {
    grid-template-columns: 1fr;
  }
  .checker-card,
  .contact-section form {
    padding: 25px 20px;
  }
  .timeline {
    grid-template-columns: 1fr;
  }
  .timeline article + article {
    border-left: 0;
  }
  .audience-panel > div:first-child {
    padding: 45px 0;
  }
  .b2b-visual {
    height: 270px;
    flex-wrap: wrap;
  }
  .doc-list {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .faq-grid {
    gap: 35px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .footer-bottom {
    display: grid;
    gap: 8px;
  }
  .float-wa span {
    display: none;
  }
  .float-wa {
    width: 50px;
    height: 50px;
    padding: 0;
  }
  .final-cta > div > div {
    flex-direction: column;
  }
}
.legal-links {
  background: #031d28;
  border-top: 1px solid #ffffff12;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  padding: 0 20px 24px;
}
.legal-links button,
.cookie-link {
  border: 0;
  background: none;
  color: #82a1aa;
  font-size: 10px;
  text-decoration: underline;
  cursor: pointer;
}
.cookie-banner {
  position: fixed;
  z-index: 80;
  left: 18px;
  right: 18px;
  bottom: 18px;
  max-width: 1160px;
  margin: auto;
  background: #fff;
  color: var(--ink);
  border-top: 5px solid var(--orange);
  box-shadow: 0 20px 70px #00151fc0;
  padding: 24px 26px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}
.cookie-banner strong {
  font:
    23px Georgia,
    serif;
}
.cookie-banner p {
  margin: 8px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}
.cookie-actions {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}
.cookie-actions button {
  border: 1px solid #b9ced3;
  background: white;
  color: var(--ink);
  padding: 12px 15px;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}
.cookie-actions .accept {
  background: var(--orange);
  border-color: var(--orange);
}
.cookie-options {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin: 15px 0;
}
.cookie-options label {
  border: 1px solid var(--line);
  padding: 10px 12px;
  font-size: 11px;
}
.legal-overlay {
  position: fixed;
  z-index: 100;
  inset: 0;
  background: #00151fdb;
  padding: 25px;
  display: grid;
  place-items: center;
}
.legal-modal {
  position: relative;
  background: #fff;
  width: min(820px, 100%);
  max-height: 90vh;
  overflow: auto;
  padding: 45px;
  color: var(--ink);
  box-shadow: 0 25px 70px #0008;
}
.legal-modal h2 {
  font-size: 38px;
  margin: 0 0 25px;
}
.legal-modal h3 {
  font:
    20px Georgia,
    serif;
  margin: 26px 0 8px;
}
.legal-modal p {
  font-size: 13px;
  line-height: 1.75;
  color: #4f6972;
}
.legal-close {
  position: absolute;
  right: 18px;
  top: 14px;
  border: 0;
  background: none;
  font-size: 28px;
  cursor: pointer;
}
.cookie-table p {
  border-top: 1px solid var(--line);
  margin: 0;
  padding: 12px 0;
}
.cookie-table span {
  display: block;
  color: var(--muted);
  margin-top: 4px;
}
@media (max-width: 720px) {
  .cookie-banner {
    grid-template-columns: 1fr;
    padding: 20px;
    bottom: 8px;
    left: 8px;
    right: 8px;
  }
  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .cookie-actions .accept {
    grid-column: 1/-1;
  }
  .legal-modal {
    padding: 35px 22px;
  }
}

/* Páginas de contenido SEO */
.seo-page header{position:sticky;top:0}.seo-hero{background:linear-gradient(110deg,var(--navy2),#07566a);color:#fff;padding:88px 0 82px;position:relative;overflow:hidden}.seo-hero:after{content:"CAE";position:absolute;right:-30px;bottom:-80px;color:#ffffff08;font:bold 260px Arial}.breadcrumbs{font-size:10px;color:#95bac3;margin-bottom:25px}.breadcrumbs a{color:var(--cyan2)}.seo-hero h1{font:400 56px/1.06 Georgia,serif;letter-spacing:-.035em;max-width:880px;margin:0 0 24px}.seo-hero h1 em{color:var(--cyan2)}.seo-hero .intro{max-width:760px;color:#d0e2e6;font-size:17px;line-height:1.75}.seo-hero .hero-actions{position:relative;z-index:2}.seo-layout{display:grid;grid-template-columns:minmax(0,1fr) 300px;gap:75px;padding:85px 0}.seo-content h2{font:400 38px/1.15 Georgia,serif;margin:60px 0 18px}.seo-content h2:first-child{margin-top:0}.seo-content h3{font:400 24px Georgia,serif;margin:34px 0 12px}.seo-content p,.seo-content li{color:var(--muted);font-size:15px;line-height:1.8}.seo-content ul,.seo-content ol{padding-left:22px}.seo-highlight{border-left:5px solid var(--orange);background:var(--pale);padding:25px 28px;margin:32px 0}.seo-highlight strong{display:block;font:23px Georgia,serif;color:var(--ink);margin-bottom:8px}.seo-steps{display:grid;gap:1px;background:var(--line);border:1px solid var(--line);margin:30px 0}.seo-steps div{background:#fff;padding:22px;display:grid;grid-template-columns:44px 1fr;gap:15px}.seo-steps b{color:var(--orange);font:22px Georgia}.seo-steps strong{display:block;margin-bottom:5px}.seo-sidebar{position:relative}.seo-card{position:sticky;top:105px;background:var(--navy);color:#fff;border-top:5px solid var(--orange);padding:28px}.seo-card h2{font:28px/1.1 Georgia,serif;margin:0 0 14px}.seo-card p{color:#bdd1d6;font-size:12px;line-height:1.65}.seo-card .btn{width:100%;margin:10px 0}.seo-card button{border:0;width:100%}.related{background:var(--pale);padding:80px 0}.related h2{font:40px Georgia,serif;margin:0 0 35px}.related-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.related-grid a{background:#fff;border:1px solid var(--line);padding:25px;min-height:155px}.related-grid small{color:#0b91aa;font-weight:bold;letter-spacing:.1em}.related-grid strong{display:block;font:22px Georgia,serif;margin:15px 0 8px}.related-grid span{font-size:12px;color:var(--muted);line-height:1.5}.seo-faq{margin-top:55px}.seo-faq details{border-top:1px solid var(--line)}.seo-faq details:last-child{border-bottom:1px solid var(--line)}.seo-faq summary{padding:18px 0;font:19px Georgia,serif;cursor:pointer}.seo-faq details p{margin-top:0}.seo-photo{width:100%;max-height:480px;object-fit:cover;margin:28px 0}.seo-page .footer-grid a{color:#b8d0d6}@media(max-width:900px){.seo-layout{grid-template-columns:1fr}.seo-sidebar{order:-1}.seo-card{position:static}.related-grid{grid-template-columns:1fr 1fr}}@media(max-width:620px){.seo-hero{padding:58px 0}.seo-hero h1{font-size:41px}.seo-layout{padding:58px 0;gap:35px}.seo-content h2{font-size:32px;margin-top:45px}.related-grid{grid-template-columns:1fr}.related{padding:58px 0}}
