/* ═══════════════════════════════════════════
   eGlobe Thailand — style.css
   Palette (from logo):
   --navy   #1B2A4A  deep navy
   --navy-2 #10203C  darker navy
   --red    #ED3B24  eGlobe red-orange
   --red-2  #C42B17  deep red
   --ink    #22293A  body text
   --grey   #F5F6F9  light section bg
   ═══════════════════════════════════════════ */

:root {
  --navy: #1B2A4A;
  --navy-2: #10203C;
  --red: #ED3B24;
  --red-2: #C42B17;
  --ink: #22293A;
  --muted: #5B6478;
  --grey: #F5F6F9;
  --white: #FFFFFF;
  --line: #E3E6EE;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(16, 32, 60, .10);
  --font-display: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 { font-family: var(--font-display); color: var(--navy); line-height: 1.15; }

a { color: var(--red); text-decoration: none; }

.container { width: min(1140px, 92%); margin: 0 auto; }

/* ── Signature: red dot (from logo tagline) ── */
.dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  flex: none;
}
.dot--lg { width: 14px; height: 14px; }

.tagline {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-size: .78rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
}
.tagline--sm { font-size: .68rem; gap: 9px; }

.eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: .8rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.eyebrow--light { color: #FF7A66; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600; font-size: .95rem;
  padding: 14px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }

.btn--red  { background: var(--red); color: #fff; box-shadow: 0 8px 20px rgba(237, 59, 36, .30); }
.btn--red:hover { background: var(--red-2); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-2); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn--ghost:hover { border-color: #fff; }
.btn--sm { padding: 10px 22px; font-size: .85rem; }
.btn--full { width: 100%; }

/* ── Navbar: floating capsule ── */
.nav {
  position: sticky; top: 0; z-index: 200;
  padding: 16px 0 0;
  pointer-events: none; /* only the inner bar catches clicks, lets page show through the gutter */
}
.nav__inner {
  pointer-events: auto;
  display: flex; align-items: center; gap: 22px;
  height: 68px;
  padding: 0 10px 0 22px;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(16,32,60,.10), 0 1px 0 rgba(255,255,255,.6) inset;
  transition: box-shadow .25s ease, transform .25s ease, background .25s ease, border-radius .25s ease;
}
.nav.is-scrolled .nav__inner {
  box-shadow: 0 14px 40px rgba(16,32,60,.16), 0 1px 0 rgba(255,255,255,.6) inset;
  background: rgba(255,255,255,.94);
}

.nav__logo { flex: none; display: flex; align-items: center; }
.nav__logo img { height: 45px; width: auto; }

/* -- link group + signature travelling dot -- */
.nav__links {
  position: relative;
  display: flex; align-items: center; gap: 30px;
  margin: 0 auto 0 8px;
}
.nav__links a {
  font-weight: 600; font-size: .93rem; color: var(--navy);
  position: relative;
  padding: 6px 0;
}
.nav__links a span { position: relative; z-index: 1; }
.nav__links a.is-active { color: var(--red); }

.nav__track {
  position: absolute; left: 0; bottom: -3px;
  width: 100%; height: 2px;
  background: var(--line);
  border-radius: 2px;
  font-style: normal;
  pointer-events: none;
}
.nav__dot {
  position: absolute; top: 50%; left: 0;
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 5px rgba(237,59,36,.16);
  transition: left .35s cubic-bezier(.65,0,.35,1);
}

.nav__actions { flex: none; display: flex; align-items: center; gap: 14px; }

.lang-toggle {
  display: flex; align-items: center;
  background: rgba(16,32,60,.06);
  border-radius: 999px;
  padding: 3px;
  flex: none;
}
.lang-toggle__btn {
  border: none; background: transparent; cursor: pointer;
  font-family: var(--font-display); font-weight: 700; font-size: .78rem;
  letter-spacing: .02em;
  color: var(--muted);
  padding: 7px 14px;
  border-radius: 999px;
  transition: background .18s ease, color .18s ease, box-shadow .18s ease;
}
.lang-toggle__btn.is-active {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 4px 12px rgba(16,32,60,.25);
}
.lang-toggle__btn:hover:not(.is-active) { color: var(--navy); }

.lang-toggle--panel {
  align-self: flex-start;
  margin-bottom: -6px;
}

.nav__call {
  display: flex; align-items: center; gap: 7px;
  font-weight: 600; font-size: .88rem; color: var(--navy);
  white-space: nowrap;
}
.nav__call svg { width: 17px; height: 17px; color: var(--red); flex: none; }
.nav__call:hover { color: var(--red); }

.nav__burger {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 42px; height: 42px; flex: none;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.nav__burger span {
  width: 22px; height: 2.5px; background: var(--navy);
  border-radius: 2px; transition: transform .2s, opacity .2s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* -- Mobile slide-in panel -- */
.nav__overlay {
  position: fixed; inset: 0; z-index: 210;
  background: rgba(16,32,60,.45);
  backdrop-filter: blur(2px);
  opacity: 0; visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.nav__overlay.is-open { opacity: 1; visibility: visible; }

.nav__panel {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 220;
  width: min(340px, 84%);
  background: var(--white);
  box-shadow: -20px 0 50px rgba(16,32,60,.18);
  padding: 100px 30px 40px;
  display: flex; flex-direction: column; gap: 28px;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.65,0,.35,1);
  overflow-y: auto;
}
.nav__panel.is-open { transform: translateX(0); }

.nav__panel-links { display: flex; flex-direction: column; }
.nav__panel-links a {
  font-family: var(--font-display); font-weight: 700; font-size: 1.15rem;
  color: var(--navy); padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.nav__panel-links a:hover { color: var(--red); }

.nav__panel-info { display: flex; flex-direction: column; gap: 16px; }
.nav__panel-info a,
.nav__panel-info .nav__panel-address {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .88rem; color: var(--muted); font-weight: 500;
  line-height: 1.4;
}
.nav__panel-info a { color: var(--navy); }
.nav__panel-info a:hover { color: var(--red); }
.nav__panel-info svg { width: 18px; height: 18px; flex: none; color: var(--red); margin-top: 1px; }

/* ── Hero ── */
.hero {
  position: relative;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(237,59,36,.22), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  padding: 100px 0 110px;
  overflow: hidden;
}
.hero__canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  opacity: .65;
  pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}
.hero .tagline { color: #FF7A66; margin-bottom: 26px; }
.hero h1 {
  color: #fff;
  font-size: clamp(2.3rem, 4.6vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 22px;
}
.hero h1 em { font-style: normal; color: var(--red); }
.hero__sub {
  color: #C4CBDD; font-size: 1.1rem; max-width: 34em;
  margin-bottom: 36px;
}
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.panel-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 22px;
  backdrop-filter: blur(6px);
}
.panel-card--main {
  grid-column: 1 / -1;
  background: rgba(237,59,36,.12);
  border-color: rgba(237,59,36,.35);
}
.panel-card__label {
  font-size: .7rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: #FF8A78;
}
.panel-card h3 { color: #fff; font-size: 1.25rem; margin: 8px 0 6px; }
.panel-card p { color: #C4CBDD; font-size: .9rem; }
.panel-card a { font-weight: 600; font-size: .9rem; display: inline-block; margin-top: 10px; }

/* ── Sections ── */
.section { padding: 96px 0; }
.section--navy {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #D4DAE8;
}
.section--navy .section__title { color: #fff; }
.section--grey { background: var(--grey); }

.section__title {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -.015em;
  margin-bottom: 16px;
}
.section__lead { color: var(--muted); font-size: 1.08rem; max-width: 44em; margin-bottom: 48px; }
.section__cta { text-align: center; margin-top: 48px; }

.products-intro {
  border-top: 1px solid var(--line);
  padding-top: 64px;
  margin-top: 72px;
  text-align: center;
  max-width: 62em;
  margin-left: auto;
  margin-right: auto;
}
.products-intro .eyebrow { justify-content: center; }
.products-intro__title {
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: 14px;
}
.products-intro__lead { color: var(--muted); font-size: 1.02rem; margin-bottom: 40px; }

/* ── Grid & cards ── */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  transform: perspective(700px);
  will-change: transform;
}
.card:hover {
  transform: perspective(700px) translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(237,59,36,.35);
}
.card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 50%), rgba(237,59,36,.10), transparent 65%);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.card.is-tilting::before { opacity: 1; }
.card__icon { font-size: 1.9rem; margin-bottom: 14px; }
.card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .95rem; }

/* ── Split layout ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.split--reverse .split__text { order: 2; }
.split--reverse .split__visual { order: 1; }
.split__text p { margin-bottom: 16px; }
.split__text .btn { margin-top: 12px; }

.checklist { list-style: none; margin: 22px 0 10px; }
.checklist li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
}
.checklist li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--red);
}

/* ── Channel diagram ── */
.channel-diagram {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 46px 36px;
  text-align: center;
}
.channel-diagram__hub {
  width: 120px; height: 120px;
  margin: 0 auto 34px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-family: var(--font-display); font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 14px rgba(237,59,36,.14), 0 0 0 28px rgba(237,59,36,.06);
}
.channel-diagram__nodes { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.channel-diagram__nodes span {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  color: #fff; font-size: .85rem; font-weight: 600;
}

/* ── Partner badge ── */
.partner-badge {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 48px 36px 40px;
  text-align: center;
  box-shadow: var(--shadow);
}
.partner-badge__eyebrow {
  display: inline-block;
  font-family: var(--font-display); font-weight: 700; font-size: .74rem;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 34px;
}
.partner-badge__logos {
  display: flex; align-items: center; justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.partner-badge__logo { width: auto; display: block; }
.partner-badge__logo--eglobe { height: 40px; }
.partner-badge__logo--akinsoft { height: 68px; }
.partner-badge__link { display: inline-flex; align-items: center; justify-content: center; flex: none; }
.partner-badge p {
  margin-top: 30px;
  font-family: var(--font-display); font-weight: 600;
  color: var(--navy); font-size: 1.15rem;
}

/* ── About ── */
.about__text { font-size: 1.08rem; max-width: 52em; margin-bottom: 46px; }
.about__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.pillar .dot { margin-bottom: 14px; width: 11px; height: 11px; }
.pillar h3 { font-size: 1.05rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 8px; }
.pillar p { color: var(--muted); font-size: .93rem; }

/* ── About: intro two-column (text + image) ── */
.about__lead {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 54px;
  align-items: center;
  margin-bottom: 8px;
}
.about__lead-text .about__text { margin-top: 0; }
.about__lead-text .about__text--secondary { margin-top: 20px; max-width: none; }

.about__media {
  position: relative;
  margin: 0;
}
.about__media-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  aspect-ratio: 5 / 6;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
}
.about__media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.about__media:hover .about__media-frame img { transform: scale(1.04); }

/* Brand accent frame behind the image */
.about__media::before {
  content: '';
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 2px solid rgba(237, 59, 36, .35);
  border-radius: 20px;
  z-index: -1;
}

/* Floating badge */
.about__badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px 14px 16px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(16, 32, 60, .18);
}
.about__badge span { display: flex; flex-direction: column; line-height: 1.25; }
.about__badge strong {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  font-size: .98rem;
}
.about__badge em { font-style: normal; color: var(--muted); font-size: .82rem; }

@media (max-width: 960px) {
  .about__lead { grid-template-columns: 1fr; gap: 40px; }
  .about__media { max-width: 480px; }
  .about__media::before { inset: 14px -14px -14px 14px; }
}




/* ── Contact ── */
.contact-list { list-style: none; margin-top: 26px; }
.contact-list li {
  display: flex; gap: 18px; align-items: baseline;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.contact-list strong { min-width: 90px; color: var(--navy); font-family: var(--font-display); font-size: .9rem; }

.contact-form {
  background: var(--grey);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
}
.contact-form label {
  display: block;
  font-family: var(--font-display); font-weight: 600;
  font-size: .85rem; color: var(--navy);
  margin-bottom: 18px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 9px;
  font-family: var(--font-body); font-size: .95rem;
  background: var(--white);
  color: var(--ink);
  transition: border-color .15s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--red);
}
.contact-form textarea { resize: vertical; }
.contact-form__status { margin-top: 14px; font-size: .9rem; font-weight: 600; color: var(--red); text-align: center; min-height: 1.2em; }
.contact-form__status.ok { color: #1B8A4A; }

/* Honeypot — hidden from real visitors, still reachable by bots that fill every field */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

.btn.is-loading { opacity: .7; pointer-events: none; }

/* ── Footer ── */
.footer {
  background: var(--navy-2);
  color: #98A2BC;
  padding: 60px 0 40px;
}
.footer__inner { text-align: center; }
.footer__brand img {
  height: 52px; width: auto;
  margin: 0 auto 16px;
  background: #fff;
  padding: 8px 16px;
  border-radius: 10px;
}
.footer__brand .tagline { justify-content: center; color: #C4CBDD; margin-bottom: 28px; }
.footer__links {
  display: flex; justify-content: center; gap: 30px; flex-wrap: wrap;
  margin-bottom: 28px;
}
.footer__links a { color: #C4CBDD; font-size: .92rem; }
.footer__links a:hover { color: var(--red); }

.footer__contact {
  list-style: none;
  display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 26px;
  margin-bottom: 22px;
  font-size: .88rem;
}
.footer__contact a { color: #C4CBDD; }
.footer__contact a:hover { color: var(--red); }
.footer__contact li { position: relative; }
.footer__contact li:not(:last-child)::after {
  content: "•"; position: absolute; right: -16px; color: #4A5578;
}
@media (max-width: 680px) {
  .footer__contact li::after { display: none; }
}

.footer__copy { font-size: .85rem; }

/* ── Reveal on scroll ── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .card { transition: none; }
}

/* ── Floating action buttons ── */
.fab-stack {
  position: fixed; right: 24px; bottom: 24px; z-index: 300;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.fab {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: none; cursor: pointer;
  box-shadow: 0 10px 26px rgba(16,32,60,.22);
  transition: transform .18s ease, box-shadow .18s ease, opacity .25s ease, visibility .25s ease;
}
.fab:hover { transform: translateY(-3px) scale(1.05); }
.fab:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }

.fab--top {
  background: var(--navy);
  color: #fff;
  opacity: 0; visibility: hidden; transform: translateY(12px) scale(.9);
}
.fab--top.is-visible { opacity: 1; visibility: visible; transform: none; }
.fab--top svg { width: 22px; height: 22px; }

.fab--whatsapp {
  width: 60px; height: 60px;
  background: #25D366;
  color: #fff;
  position: relative;
}
.fab--whatsapp svg { width: 30px; height: 30px; }
.fab--whatsapp::before {
  content: "";
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: .55;
  animation: fabPulse 2.2s ease-out infinite;
}
@keyframes fabPulse {
  0%   { transform: scale(.9); opacity: .55; }
  70%  { transform: scale(1.35); opacity: 0; }
  100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .fab--whatsapp::before { animation: none; display: none; }
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .split { grid-template-columns: 1fr; gap: 44px; }
  .split--reverse .split__text { order: 1; }
  .split--reverse .split__visual { order: 2; }
  .grid--3 { grid-template-columns: 1fr 1fr; }
  .about__pillars { grid-template-columns: 1fr; }
}

@media (max-width: 960px) {
  .nav__call { display: none; }
}

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__inner { padding: 0 8px 0 20px; }
  .nav__actions .lang-toggle { display: none; }
}

@media (max-width: 680px) {
  .nav { padding: 12px 0 0; }
  .nav__inner { height: 70px; }
  .nav__logo img { height: 40px; }
  .nav__panel { padding: 96px 24px 32px; }

  .hero { padding: 70px 0 80px; }
  .grid--3 { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .hero__panel { grid-template-columns: 1fr; }
  .partner-badge { padding: 40px 24px 34px; }
  .partner-badge__logo--eglobe { height: 32px; }
  .partner-badge__logo--akinsoft { height: 54px; }
  .partner-badge__logos { gap: 20px; }

  .fab-stack { right: 16px; bottom: 16px; gap: 12px; }
  .fab { width: 50px; height: 50px; }
  .fab--whatsapp { width: 56px; height: 56px; }
}

@media (max-width: 400px) {
  .nav__actions .btn--sm { padding: 9px 16px; font-size: .82rem; }
}

/* ═══════════════════════════════════════════
   Extended: Hotel Channel Mgmt + About
   ═══════════════════════════════════════════ */

/* ── Steps (How it works) ── */
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 18px;
  margin-top: 56px;
}
.step {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.step__num {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.6rem; color: var(--red);
  display: block; margin-bottom: 10px;
}
.step h3 { color: #fff; font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: #C6CEE0; font-size: .95rem; }
.step__arrow {
  align-self: center;
  width: 30px; height: 2px;
  background: rgba(255,255,255,.25);
  position: relative;
}
.step__arrow::after {
  content: ''; position: absolute; right: -1px; top: 50%;
  width: 8px; height: 8px;
  border-top: 2px solid rgba(255,255,255,.4);
  border-right: 2px solid rgba(255,255,255,.4);
  transform: translateY(-50%) rotate(45deg);
}

/* ── Cards on navy background ── */
.grid--on-navy { margin-top: 56px; }
.card--dark {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
}
.card--dark h3 { color: #fff; }
.card--dark p { color: #C6CEE0; }
.card--dark:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(237,59,36,.4);
}

/* ── Channel strip ── */
.channel-strip {
  margin-top: 54px;
  text-align: center;
  padding: 34px 24px;
  background: rgba(255,255,255,.04);
  border: 1px dashed rgba(255,255,255,.18);
  border-radius: var(--radius);
}
.channel-strip__label {
  font-family: var(--font-display); font-weight: 600;
  color: #fff; letter-spacing: .04em;
  margin-bottom: 20px;
}
.channel-strip__pills {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
}
.channel-strip__pills span {
  padding: 9px 20px; border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff; font-size: .9rem; font-weight: 600;
  transition: background .15s ease, transform .15s ease;
}
.channel-strip__pills span:hover { background: var(--red); transform: translateY(-2px); }

/* ── Who it's for ── */
.fit-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 40px;
}
.fit { display: flex; gap: 14px; align-items: flex-start; }
.fit .dot { margin-top: 9px; }
.fit h4 { color: #fff; font-family: var(--font-display); font-size: 1.02rem; margin-bottom: 4px; }
.fit p { color: #C6CEE0; font-size: .92rem; }

/* ── About: secondary text ── */
.about__text--secondary {
  color: var(--muted);
  font-size: 1.05rem;
  margin-top: 22px;
  max-width: 860px;
}

/* ── Mission / Vision ── */
.mv-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 22px; margin-top: 52px;
}
.mv-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 30px 30px;
  box-shadow: var(--shadow);
}
.mv-card__label {
  display: inline-block;
  font-family: var(--font-display); font-weight: 700;
  font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--red); margin-bottom: 12px;
}
.mv-card p { color: var(--ink); font-size: 1.02rem; }

/* ── Fast facts ── */
.facts {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 18px; margin-top: 44px;
}
.fact {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 16px;
}
.fact strong {
  display: block;
  font-family: var(--font-display); font-weight: 800;
  font-size: 2rem; color: var(--navy);
  line-height: 1;
}
.fact span { display: block; margin-top: 8px; color: var(--muted); font-size: .9rem; }

/* ── Why choose us ── */
.why { margin-top: 60px; }
.why__title {
  text-align: center; font-size: 1.6rem;
  margin-bottom: 34px;
}
.grid--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.why-card {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 26px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.why-card .card__icon { font-size: 1.8rem; flex: none; }
.why-card h4 { font-family: var(--font-display); color: var(--navy); font-size: 1.08rem; margin-bottom: 6px; }
.why-card p { color: var(--muted); font-size: .95rem; }

/* ── Responsive: extended blocks ── */
@media (max-width: 960px) {
  .steps { grid-template-columns: 1fr; }
  .step__arrow { display: none; }
  .fit-row { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .grid--2 { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .facts { grid-template-columns: 1fr 1fr; }
  .fact strong { font-size: 1.7rem; }
  .why-card { flex-direction: column; gap: 10px; }
}
