@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@500,700,900&display=swap');

/* ==========================================================
   1) TOKENS / ROOT
========================================================== */
:root {
  --c-white: #fff;
  --c-navy: #032150;
  --c-cyan: #00ccdd;
  --c-green: #69b332;

  --gradient-accent: linear-gradient(90deg, var(--c-cyan) 0%, var(--c-green) 100%);

  --text-main: var(--c-navy);
  --text-muted: #5e6d82;

  --bg-body: var(--c-white);

  --radius-card: 16px;
  --shadow-soft: 0 20px 40px -10px rgba(3, 33, 80, .08);
  --shadow-hover: 0 25px 50px -12px rgba(3, 33, 80, .15);

  --container: 1200px;
}


/* ==========================================================
   2) BASE / RESET
========================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  background: var(--bg-body);
  color: var(--text-main);
  font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: 'Satoshi', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--c-navy);
  text-transform: uppercase;
  letter-spacing: .05em;
}

p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 400;
}

button {
  font-family: 'Satoshi', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
}

body {
  overflow-x: hidden;
}

.sealog-hero,
.sealog-highlight,
.sealog-map,
.sealog-footer {
  width: 100%;
}


/* ==========================================================
   3) TÍTULOS (sealog-section-title)
========================================================== */
.sealog-section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 1.5rem;
  font-size: 2rem;
  font-weight: 700;
}

.sealog-section-title::after {
  content: "";
  position: absolute;
  bottom: .5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--gradient-accent);
  border-radius: 4px;
}

.text-left .sealog-section-title::after {
  left: 0;
  transform: none;
}


/* ==========================================================
   4) CONTAINERS (unificación de anchos internos)
========================================================== */
.sealog-hero__inner,
.sealog-highlight__inner,
.sealog-map__inner,
.sealog-footer-inner,
.sealog-header-main-inner {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}


/* ==========================================================
  5) HEADER
========================================================== */

/* Top bar */
.sealog-header-top-right{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:2rem;
  flex-wrap:wrap;
  font-size:.85rem;
  color:var(--c-white);
  background:var(--c-navy);
  padding-right:1rem;
}

.sealog-header-top-group{
  display:flex;
  align-items:center;
  gap:1rem;
  flex-wrap:wrap;
}

.sealog-header-top-link{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  color:var(--c-white);
  text-decoration:none;
  transition:opacity .18s ease;
}

.sealog-header-top-link:hover{
  opacity:.85;
}

.sealog-header-top-icon{
  width:16px;
  height:16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.sealog-header-top-icon svg{
  width:16px;
  height:16px;
  display:block;
  fill:currentColor;
  opacity:.8;
}

.sealog-header-top-dot{
  color:var(--c-white);
  user-select:none;
}

.sealog-header-main-inner{
  padding:.9rem 1.5rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1.5rem;
}

.sealog-header-logo img{
  height:100px;
  width:auto;
  display:block;
}

.sealog-nav{
  display:flex;
  align-items:center;
  gap:1.8rem;
}

.sealog-nav-link{
  font-size:.9rem;
  color:rgba(2,18,43,.78);
  text-decoration:none;
  transition:color .2s ease;
  text-transform:uppercase;
  letter-spacing:.06em;
  font-weight:600;
}

.sealog-nav-link:hover{
  color:var(--c-navy-strong);
}

.sealog-nav-link.is-active{
  color:var(--c-navy-strong);
  font-weight:800;
}

.sealog-nav-btn{
  font-size:.85rem;
  padding:.50rem .80rem;
  border-radius:999px;
  text-decoration:none;
  text-transform:uppercase;
  letter-spacing:.09em;
  font-weight:700;
  line-height:1;
  background:transparent;
  color:var(--c-navy);
  border:1px solid var(--c-navy);
  transition:background-color .18s ease,color .18s ease,border-color .18s ease,transform .12s ease;
}

.sealog-nav-btn:hover{
  background:var(--c-navy);
  border-color:var(--c-white);
  color:var(--c-white);
  transform:translateY(-1px);
}

.sealog-nav-btn:active{
  transform:translateY(0);
  background:rgba(2,18,43,.10);
}


/* ==========================================================
  6) LANGUAGE FLAGS (desktop + mobile)
========================================================== */

.sealog-lang.sealg-lang--flags > *{
  margin:0 !important;
}

.sealog-lang.sealg-lang--flags{
  display:inline-flex !important;
  align-items:center;
  gap:1rem !important;
}

.sealog-lang__flaglink{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:34px;
  height:28px;
  border-radius:10px;
  text-decoration:none;
  background:rgba(255,255,255,.10);
  transition:transform .12s ease, background .18s ease;
}

.sealog-lang__flaglink:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.16);
}

.sealog-lang__flaglink.is-current{
  outline:1px solid rgba(255,255,255,.45);
  background:rgba(255,255,255,.18);
}

.sealog-lang__flag{
  font-size:18px;
  line-height:1;
}


/* ==========================================================
  7) MOBILE MENU
========================================================== */

.sealog-burger{
  display:none;
  width:44px;
  height:44px;
  border:1px solid rgba(3,33,80,.18);
  background:#fff;
  border-radius:12px;
  padding:10px;
  cursor:pointer;
}

.sealog-mobile-overlay{
  position:fixed;
  inset:0;
  background:rgba(2,18,43,.55);
  backdrop-filter:blur(2px);
  z-index:9998;
}

.sealog-mobile-panel{
  position:fixed;
  top:0;
  right:0;
  height:100vh;
  width:min(75vw,360px);
  background:#fff;
  z-index:9999;
  transform:translateX(100%);
  transition:transform .28s ease;
  padding:20px 18px;
  box-shadow:-20px 0 50px rgba(0,0,0,.18);
  display:flex;
  flex-direction:column;
  gap:12px;
}

.sealog-mobile-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 0 16px;
}

.sealog-mobile-close{
  align-self:flex-end;
  width:44px;
  height:44px;
  border:1px solid rgba(3,33,80,.18);
  background:#fff;
  border-radius:12px;
  font-size:26px;
  line-height:1;
  cursor:pointer;
}

.sealog-mobile-link{
  text-decoration:none;
  color:var(--c-navy);
  font-family:'Satoshi', system-ui, -apple-system, "Segoe UI", sans-serif;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:700;
  padding:12px 10px;
  border-radius:12px;
}

.sealog-mobile-link:hover{
  background:rgba(0,204,221,.08);
}

.sealog-mobile-btn{
  margin-top:6px;
  text-decoration:none;
  text-align:center;
  padding:12px 14px;
  border-radius:999px;
  border:1px solid var(--c-navy);
  color:var(--c-navy);
  font-family:'Satoshi', system-ui, -apple-system, "Segoe UI", sans-serif;
  text-transform:uppercase;
  letter-spacing:.09em;
  font-weight:800;
}

.sealog-mobile-btn:hover{
  background:var(--c-navy);
  color:#fff;
}


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

@media (max-width:768px){
  .sealog-header-top-right{
    justify-content:center;
    padding:.6rem 1rem;
    gap:.6rem 1rem;
  }

  .sealog-header-top-group{
    width:100%;
    justify-content:center;
    gap:.6rem 1rem;
  }

  .sealog-header-top-dot{ display:none; }

  .sealog-header-top-link span:last-child{
    font-size:.82rem;
    letter-spacing:0;
    text-transform:none;
  }

  .sealog-nav{ display:none; }

  .sealog-header-main{
    position:relative;
    z-index:9990;
  }

  .sealog-header-main-inner{
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding:.75rem 1rem;
  }

  .sealog-burger{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    flex:0 0 auto;
    position:relative;
    z-index:9999;
  }

  .sealog-burger::before{
    content:"≡";
    font-size:30px;
    line-height:1;
    color:var(--c-navy);
    transform:translateY(-1px);
  }

  .sealog-header-logo{ min-width:0; }

  .sealog-header-logo img{
    height:72px;
    width:auto;
  }
}


/* ==========================================================
   8) HERO / INICIO (FRONT-PAGE.PHP)
========================================================== */
.sealog-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.sealog-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.sealog-hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease, transform 1.2s ease;
  filter: brightness(.8) saturate(.9);
}

.sealog-hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.sealog-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(3, 33, 80, .30), rgba(3, 33, 80, .65));
}

.sealog-hero__inner {
  position: relative;
  z-index: 10;
  padding: 2rem 1.5rem;
  text-align: center;
}

.sealog-hero__content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.sealog-hero__logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sealog-hero__logo {
  max-width: 800px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .3));
}

/* CTA */
.sealog-hero__cta {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .85rem 2.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .10);
  color: #fff;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
  backdrop-filter: blur(10px);
}

.sealog-hero__cta:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .16);
  border-color: rgba(255, 255, 255, .55);
}

.sealog-hero__cta-icon {
  transition: transform .2s ease;
}

.sealog-hero__cta:hover .sealog-hero__cta-icon {
  transform: translateX(4px);
}

/* Hero viewport fix */
.sealog-hero {
  height: 100svh;
}

@supports not (height: 100svh) {
  .sealog-hero {
    height: 100vh;
  }
}


/* ==========================================================
   9) CÓMO TRABAJAMOS (highlight)
========================================================== */
.sealog-highlight {
  padding: 6rem 1.5rem;
  background: var(--c-white);
}

.sealog-highlight__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.sealog-highlight__header {
  text-align: center;
  margin-bottom: 4rem;
}

.sealog-highlight__header p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.sealog-highlight__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}


/* ==========================================================
   10) CARDS (sealog-card)
========================================================== */
.sealog-card {
  position: relative;
  background: var(--c-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .3s ease, box-shadow .3s ease;
  padding-bottom: 2rem;
  display: flex;
  flex-direction: column;
}

.sealog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.sealog-card::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 60%;
  background-image: var(--card-bg);
  background-size: cover;
  background-position: center;
}

.sealog-card__icon {
  margin-top: -32px;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.sealog-card__icon-circle {
  width: 64px;
  height: 64px;
  background: var(--c-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .05);
}

.sealog-card__icon-svg {
  width: 28px;
  height: 28px;
  display: block;
}

.sealog-card__icon-svg path {
  fill: var(--c-navy) !important;
}

.sealog-card__title {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 1rem;
  color: var(--c-navy);
}

.sealog-card__text {
  text-align: center;
  padding: 0 2rem;
  margin: 0 0 2rem;
  font-size: .95rem;
  flex-grow: 1;
}

.sealog-card__cta {
  align-self: center;
  background: transparent;
  color: var(--c-navy);
  border: 1px solid var(--c-navy);
  padding: .8rem 2rem;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .3s ease, color .3s ease, transform .2s ease;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.sealog-card__cta:hover {
  background: var(--c-navy);
  color: var(--c-white);
  transform: translateY(-1px);
}


/* ==========================================================
   11) MAPA / COBERTURA (sealog-map)
========================================================== */
.sealog-map .sealog-section-title {
  color: var(--c-white);
}

.sealog-map {
  position: relative;
  padding: 6rem 1.5rem;
  color: var(--c-white);
  background: radial-gradient(circle at center, #052c65 0%, #02122b 100%);
  overflow: hidden;
}

.sealog-map__inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.sealog-map__header {
  text-align: center;
  margin-bottom: 4rem;
}

.sealog-map__pill {
  display: inline-block;
  padding: .5rem 1.2rem;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1.5rem;
  color: var(--c-white);
}

.sealog-map__title {
  color: var(--c-white);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.sealog-map__subtitle {
  color: rgba(255, 255, 255, .7);
  font-size: 1.1rem;
}

.sealog-map__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 992px) {
  .sealog-map__grid {
    grid-template-columns: 1.2fr .8fr;
  }
}

.sealog-map__figure {
  display: flex;
  justify-content: center;
}

.sealog-map__figure-inner {
  position: relative;
  width: 100%;
  max-width: 60rem;
  height: 45rem;
  overflow: hidden;
}

.sealog-map__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: .8;
  filter: drop-shadow(0 0 30px rgba(0, 204, 221, .2));
}

/* barcos */
.sealog-map__ships {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sealog-map__ship {
  position: absolute;
  width: 2.2rem;
  height: auto;
  transform: translate(-50%, -50%);
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.sealog-map__ship img {
  display: block;
  width: 100%;
  height: auto;
}

.sealog-map__ship--out-ltr,
.sealog-map__ship--in-ltr {
  left: 30%;
}

.sealog-map__ship--out-rtl,
.sealog-map__ship--in-rtl {
  left: 45%;
}

.sealog-map__ship--out-ltr {
  animation-name: sail-out-right;
}

.sealog-map__ship--out-rtl {
  animation-name: sail-out-left;
  transform: translate(-50%, -50%) scaleX(-1);
}

.sealog-map__ship--in-ltr {
  animation-name: sail-in-right;
}

.sealog-map__ship--in-rtl {
  animation-name: sail-in-left;
  transform: translate(-50%, -50%) scaleX(-1);
}

@keyframes sail-out-right {
  from {
    transform: translate(-50%, -50%);
  }

  to {
    transform: translate(150%, -50%);
  }
}

@keyframes sail-out-left {
  from {
    transform: translate(-50%, -50%) scaleX(-1);
  }

  to {
    transform: translate(-250%, -50%) scaleX(-1);
  }
}

@keyframes sail-in-right {
  from {
    transform: translate(160%, -50%);
  }

  to {
    transform: translate(-50%, -50%);
  }
}

@keyframes sail-in-left {
  from {
    transform: translate(-260%, -50%) scaleX(-1);
  }

  to {
    transform: translate(-50%, -50%) scaleX(-1);
  }
}

.sealog-map__card {
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 20px;
  padding: 2.5rem;
}

.sealog-map__card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.sealog-map__icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sealog-map__card-title {
  color: var(--c-white);
  font-size: 1.2rem;
  margin: 0;
}

.sealog-map__card-text {
  color: rgba(255, 255, 255, .8);
  margin: 0;
  line-height: 1.7;
}


/* ==========================================================
   12) FOOTER
========================================================== */
.sealog-footer {
  background: #02122b;
  color: rgba(255, 255, 255, .88);
  padding: 2.6rem 1.5rem 1.6rem;
  position: relative;
  overflow: hidden;
}

.sealog-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, #8ED1FC, #0693E3, #021C5D);
  opacity: .9;
}

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

.sealog-footer-top {
  display: grid;
  gap: 2rem;
  align-items: start;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
}

@media (min-width:900px) {
  .sealog-footer-top {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, .9fr) minmax(0, 1fr);
    gap: 2.2rem;
  }
}

.sealog-footer-brand {
  min-width: 0;
}

.sealog-footer-brand-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.sealog-footer-logo {
  display: block;
  width: min(260px, 70vw);
  height: auto;
  max-height: 96px;
  object-fit: contain;
}

@media (min-width:900px) {
  .sealog-footer-logo {
    width: 280px;
    max-height: 110px;
  }
}

.sealog-footer-tagline {
  margin: .9rem 0 0 0;
  font-size: .9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, .62);
  max-width: 42ch;
}

.sealog-footer-nav {
  display: grid;
  gap: .55rem;
  align-content: start;
}

.sealog-footer-contact {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.sealog-footer-contact-block {
  display: grid;
  gap: .35rem;
}

.sealog-footer-label {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
}

.sealog-footer-muted {
  font-size: .9rem;
  color: rgba(255, 255, 255, .62);
}

.sealog-footer-link,
.sealog-footer-bottom-link {
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
  transition: color .18s ease, opacity .18s ease;
}

.sealog-footer-link:hover,
.sealog-footer-bottom-link:hover {
  color: #8ED1FC;
}

.sealog-footer-bottom {
  padding-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  justify-content: space-between;
  align-items: flex-start;
}

@media (min-width:768px) {
  .sealog-footer-bottom {
    flex-direction: row;
    align-items: center;
  }
}

.sealog-footer-bottom-text {
  margin: 0;
  font-size: .82rem;
  color: rgba(255, 255, 255, .50);
}

.sealog-footer-bottom-links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}


/* ==========================================================
   13) RESPONSIVE POR SECCIONES
========================================================== */

@media (max-width: 1024px) {
  :root {
    --container: 960px;
  }

  .sealog-highlight {
    padding: 5rem 1.25rem;
  }

  .sealog-map {
    padding: 5rem 1.25rem;
  }

  .sealog-hero__inner {
    padding: 1.75rem 1.25rem;
  }

  .sealog-section-title {
    font-size: 1.8rem;
  }

  .sealog-map__title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .sealog-highlight {
    padding: 4.25rem 1rem;
  }

  .sealog-map {
    padding: 4.25rem 1rem;
  }

  .sealog-hero__inner {
    padding: 1.5rem 1rem;
  }

  .sealog-section-title {
    font-size: 1.55rem;
    padding-bottom: 1.25rem;
  }

  .sealog-section-title::after {
    width: 52px;
  }

  .sealog-map__title {
    font-size: 1.9rem;
  }

  .sealog-map__subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .sealog-hero {
    min-height: 520px;
  }

  .sealog-hero__logo {
    max-width: 520px;
  }
}

@media (max-width: 480px) {
  .sealog-hero {
    min-height: 480px;
  }

  .sealog-hero__logo {
    max-width: 380px;
  }

  .sealog-hero__cta {
    padding: .75rem 1.6rem;
    gap: .5rem;
  }
}

@media (max-width: 768px) {
  .sealog-highlight__header {
    margin-bottom: 2.75rem;
  }

  .sealog-highlight__header p {
    font-size: 1rem;
  }

  .sealog-highlight__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .sealog-card__text {
    padding: 0 1.5rem;
  }

  .sealog-card__cta {
    padding: .75rem 1.6rem;
  }
}

@media (max-width: 420px) {
  .sealog-highlight__grid {
    grid-template-columns: 1fr;
  }

  .sealog-card::before {
    padding-top: 62%;
  }

  .sealog-card__text {
    padding: 0 1.25rem;
  }
}

@media (max-width: 360px) {
  .sealog-card__text {
    padding: 0 1.2rem;
  }

  .sealog-card__cta {
    padding: .7rem 1.3rem;
  }
}

@media (max-width: 992px) {
  .sealog-map__grid {
    gap: 2.75rem;
  }
}

@media (max-width: 768px) {
  .sealog-map__header {
    margin-bottom: 3rem;
  }

  .sealog-map__figure-inner {
    max-width: 22rem;
    height: 30rem;
  }

  .sealog-map__ship {
    width: 2rem;
  }

  .sealog-map__card {
    padding: 2rem;
    border-radius: 18px;
  }

  .sealog-map__card-header {
    gap: .85rem;
    margin-bottom: 1rem;
  }

  .sealog-map__icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }

  .sealog-map__card-title {
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  .sealog-map__figure-inner {
    max-width: 18rem;
    height: 26rem;
  }

  .sealog-map__ship {
    width: 1.7rem;
  }

  .sealog-map__card {
    padding: 1.6rem;
  }
}

@media (max-width: 420px) {
  .sealog-map__figure-inner {
    max-width: 17rem;
    height: 24rem;
  }
}

@media (max-width: 768px) {
  .sealog-header-container {
    padding: 0 1rem;
  }

  .sealog-header-top-inner {
    padding: .4rem 1rem;
  }

  .sealog-header-main-inner {
    padding: .85rem 1rem;
  }

  .sealog-header-logo img {
    height: 84px;
  }

  .sealog-nav {
    width: 100%;
  }

  .sealog-nav-btn {
    padding: .55rem 1.2rem;
  }
}

@media (max-width: 900px) {
  .sealog-footer-top {
    grid-template-columns: 1fr;
  }

  .sealog-footer-tagline {
    max-width: 55ch;
  }
}

@media (max-width: 768px) {
  .sealog-footer {
    padding: 2.5rem 1rem;
  }

  .sealog-footer-grid {
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .sealog-footer-logo {
    height: 68px;
  }

  .sealog-footer-bottom-links {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .sealog-footer {
    padding: 2.2rem 1rem 1.4rem;
  }

  .sealog-footer-bottom-links {
    gap: .8rem;
  }

  .sealog-map__pill {
    padding: .45rem 1rem;
    font-size: .7rem;
  }

  .sealog-map__pill::after {
    width: 56px;
    top: calc(100% + 9px);
  }

  .sealog-map__subtitle {
    margin-top: 1.25rem;
  }
}

.sealog-lang-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 14px;
}

.sealog-lang-btn {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, .12);
  background: #fff;
  display: grid;
  place-items: center;
  padding: 0;
  cursor: pointer;
}

.sealog-lang-icon svg {
  width: 18px;
  height: 18px;
  fill: #0f172a;
  opacity: .75;
}

.sealog-lang-btn:hover .sealog-lang-icon svg {
  opacity: 1;
}

.sealog-lang-panel {
  position: absolute;
  top: 44px;
  right: 0;
  min-width: 140px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(2, 18, 43, .12);
  padding: 8px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform .18s ease, opacity .18s ease;
  z-index: 9999;
}

.sealog-lang-switch.is-open .sealog-lang-panel {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.sealog-lang-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
}

.sealog-lang-panel li {
  margin: 0;
  padding: 0;
}

.sealog-lang-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px;
  border-radius: 10px;
  text-decoration: none;
  color: #0f172a;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .78;
}

.sealog-lang-panel a:hover {
  background: rgba(2, 18, 43, .06);
  opacity: 1;
}