.seo-body {
  background: #f7f9fb;
}

.seo-header {
  position: relative;
  color: var(--navy);
  background: var(--white);
  border-bottom: 1px solid #e2e9ef;
}

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

.seo-brand {
  width: 88px;
  display: block;
}

.seo-brand img {
  display: block;
}

.seo-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.seo-nav > a:not(.button) {
  font-size: .84rem;
  font-weight: 800;
  text-decoration: none;
}

.article-hero {
  padding: 72px 0 82px;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 0, rgba(82, 184, 232, .18), transparent 30%),
    linear-gradient(128deg, #061630, #0b3b69);
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .62fr);
  align-items: center;
  gap: clamp(52px, 8vw, 110px);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 44px;
  color: #9eb6cc;
  font-size: .72rem;
}

.breadcrumbs a {
  color: #d4e3f0;
  text-decoration: none;
}

.article-hero h1 {
  max-width: 790px;
  margin-bottom: 24px;
  font-size: clamp(2.9rem, 5.8vw, 5rem);
}

.article-lead {
  max-width: 700px;
  margin-bottom: 26px;
  color: #ccdaea;
  font-size: 1.08rem;
}

.article-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  color: #a9c3d8;
  font-size: .72rem;
}

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

.article-proof i {
  color: #50dc9f;
}

.article-booking-card {
  padding: 30px;
  color: var(--ink);
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, .25);
}

.booking-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--orange-dark);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.article-booking-card h2 {
  margin-bottom: 10px;
  font-size: 1.8rem;
}

.article-booking-card > p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: .82rem;
}

.article-booking-card form {
  display: grid;
  gap: 13px;
}

.article-booking-card .field-group {
  padding: 11px 14px;
  background: #f3f6f8;
  border: 1px solid #e2e9ef;
  border-radius: 12px;
}

.article-booking-card .button {
  width: 100%;
}

.booking-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--green);
  font-size: .75rem;
  font-weight: 800;
  text-decoration: none;
}

.article-layout {
  padding: 88px 0 105px;
}

.article-layout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: start;
  gap: clamp(50px, 8vw, 100px);
}

.article-content {
  max-width: 790px;
}

.article-summary {
  margin-bottom: 54px;
  padding: 25px 27px;
  background: #e8f5fb;
  border-left: 4px solid var(--blue);
  border-radius: 0 15px 15px 0;
}

.article-summary strong {
  display: block;
  margin-bottom: 7px;
  color: var(--blue);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.article-summary p {
  margin: 0;
  font-weight: 700;
}

.article-section {
  margin-bottom: 58px;
  scroll-margin-top: 30px;
}

.article-section h2 {
  margin-bottom: 20px;
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
}

.article-section h3 {
  margin: 30px 0 12px;
  font-size: 1.25rem;
}

.article-section p,
.article-section li {
  color: #45556d;
  font-size: .98rem;
  line-height: 1.8;
}

.article-section a {
  color: #0874b2;
  font-weight: 700;
}

.article-section ul,
.article-section ol {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.article-table {
  width: 100%;
  margin: 26px 0;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(7, 26, 56, .07);
  overflow: hidden;
}

.article-table th,
.article-table td {
  padding: 15px 17px;
  border-bottom: 1px solid #e4ebf0;
  text-align: left;
  font-size: .8rem;
}

.article-table th {
  color: var(--white);
  background: var(--navy-soft);
}

.article-table td {
  color: #4c5c72;
}

.article-faq details {
  border-bottom: 1px solid #d5dfe7;
}

.article-faq summary {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

.article-faq summary span {
  color: var(--blue);
  font-size: 1.4rem;
}

.article-faq details[open] summary span {
  transform: rotate(45deg);
}

.article-faq details div {
  padding: 0 35px 22px 0;
  color: var(--muted);
  font-size: .9rem;
}

.article-cta {
  padding: 38px;
  color: var(--white);
  background: linear-gradient(135deg, #0a4c7f, #071a38);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.article-cta h2 {
  margin-bottom: 12px;
  font-size: 2rem;
}

.article-cta > p:not(.eyebrow) {
  color: #c0d2e2;
}

.article-cta > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.article-cta .button-outline {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, .3);
}

.article-sidebar {
  position: sticky;
  top: 28px;
  display: grid;
  gap: 16px;
}

.sidebar-card,
.sidebar-trust {
  padding: 24px;
  background: var(--white);
  border: 1px solid #e0e7ed;
  border-radius: 17px;
  box-shadow: 0 12px 35px rgba(7, 26, 56, .05);
}

.sidebar-card > strong,
.sidebar-trust > strong {
  display: block;
  margin-bottom: 15px;
  font-family: "Bricolage Grotesque", "Manrope", sans-serif;
}

.sidebar-card ol,
.sidebar-trust ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding-left: 19px;
}

.sidebar-card a {
  color: #59687c;
  font-size: .76rem;
  text-decoration: none;
}

.sidebar-trust {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.sidebar-trust li {
  color: #bfd0e0;
  font-size: .75rem;
}

.related-guides {
  padding: 84px 0;
  background: #eaf1f5;
}

.related-heading {
  margin-bottom: 32px;
}

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

.related-card {
  position: relative;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #dce5eb;
  border-radius: 18px;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(7, 26, 56, .09);
}

.related-card span {
  margin-bottom: 9px;
  color: var(--blue);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.related-card strong {
  max-width: 240px;
  font-family: "Bricolage Grotesque", "Manrope", sans-serif;
  font-size: 1.1rem;
  line-height: 1.25;
}

.related-card i {
  position: absolute;
  top: 22px;
  right: 22px;
  color: var(--orange);
}

.seo-footer {
  color: #b9cadd;
  background: #06142b;
}

.seo-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 70px;
  padding: 65px 0;
}

.seo-footer-grid > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.seo-footer-grid img {
  width: 95px;
}

.seo-footer-grid p {
  max-width: 320px;
  color: #839bb2;
  font-size: .8rem;
}

.seo-footer-grid strong {
  margin-bottom: 8px;
  color: var(--white);
  font-size: .76rem;
  text-transform: uppercase;
}

.seo-footer-grid a {
  color: #a9bdd0;
  font-size: .78rem;
  text-decoration: none;
}

.seo-footer-bottom {
  padding: 17px 0;
  color: #71899f;
  background: #040f21;
  font-size: .68rem;
}

@media (max-width: 900px) {
  .article-hero-grid,
  .article-layout-grid {
    grid-template-columns: 1fr;
  }

  .article-booking-card {
    max-width: 560px;
  }

  .article-content {
    max-width: none;
  }

  .article-sidebar {
    position: static;
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 620px) {
  .seo-header-inner {
    min-height: 78px;
  }

  .seo-brand {
    width: 72px;
  }

  .seo-nav > a:not(.button) {
    display: none;
  }

  .article-hero {
    padding: 50px 0 62px;
  }

  .breadcrumbs {
    margin-bottom: 32px;
  }

  .article-hero h1 {
    font-size: clamp(2.55rem, 13vw, 3.9rem);
  }

  .article-booking-card {
    padding: 24px 20px;
  }

  .article-layout {
    padding: 67px 0 80px;
  }

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

  .article-table {
    display: block;
    overflow-x: auto;
  }

  .article-cta {
    padding: 28px 23px;
  }

  .article-cta > div,
  .article-cta .button {
    width: 100%;
  }

  .related-grid,
  .seo-footer-grid {
    grid-template-columns: 1fr;
  }

  .related-card {
    min-height: 155px;
  }

  .seo-footer-grid {
    gap: 32px;
  }
}
