/* ==========================================================================
   Homepage Premium — scoped to .gwc-home
   ========================================================================== */

.gwc-home {
  --home-navy: #040810;
  --home-navy-2: #0a1628;
  --home-gold: #b8956a;
  --home-gold-light: #d4b896;
  --home-gold-muted: rgba(212, 184, 150, 0.85);
  --home-cyan: #5eb8c9;
  --home-font: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --home-section-pad: clamp(88px, 11vh, 128px);
  --home-section-pad-sm: clamp(64px, 8vh, 96px);
  --home-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.gwc-home-page .gwc-main {
  padding: 0;
}

/* Reveal */
.gwc-home-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.gwc-home-reveal.is-visible { opacity: 1; transform: none; }
.gwc-home-reveal--d1 { transition-delay: 0.08s; }
.gwc-home-reveal--d2 { transition-delay: 0.16s; }
.gwc-home-reveal--d3 { transition-delay: 0.24s; }

/* Buttons */
.gwc-home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  font-family: var(--home-font);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 12px;
  border: 1px solid transparent;
  text-decoration: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s;
}
.gwc-home-btn:hover { transform: translateY(-2px); }
.gwc-home-btn--gold {
  background: linear-gradient(145deg, #a8865f 0%, #c4a574 52%, #d4b896 100%);
  color: var(--home-navy);
  box-shadow: 0 10px 32px rgba(168, 134, 95, 0.22);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.gwc-home-btn--gold:hover {
  box-shadow: 0 14px 40px rgba(168, 134, 95, 0.28);
}
.gwc-home-btn--outline-dark {
  background: transparent;
  color: var(--home-navy-2);
  border: 1px solid rgba(15, 39, 68, 0.18);
  font-weight: 600;
}
.gwc-home-btn--outline-dark:hover {
  border-color: rgba(184, 149, 106, 0.45);
  color: var(--home-navy);
}
.gwc-home-btn--glass {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
}
.gwc-home-btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.gwc-home-btn--sm { padding: 11px 20px; font-size: 0.82rem; }

/* ========== HERO ========== */
.gwc-home .gwc-hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: block;
  align-items: stretch;
}

@media (max-width: 640px) {
  /* Keep floating CTAs from covering hero actions */
  .gwc-home .gwc-hero {
    padding-bottom: calc(110px + env(safe-area-inset-bottom));
  }
}

.gwc-home .gwc-hero__overlay {
  background:
    linear-gradient(100deg, rgba(4, 8, 16, 0.95) 0%, rgba(4, 8, 16, 0.78) 40%, rgba(10, 22, 40, 0.4) 70%, rgba(10, 22, 40, 0.2) 100%),
    linear-gradient(0deg, rgba(4, 8, 16, 0.88) 0%, transparent 42%);
}

.gwc-home .gwc-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 45% 35% at 78% 38%, rgba(94, 184, 201, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 35% 28% at 68% 58%, rgba(184, 149, 106, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.gwc-home-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(110px, 14vh, 150px) 20px clamp(70px, 10vh, 100px);
  width: 100%;
}

.gwc-home .gwc-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: rgba(4, 8, 16, 0.46);
  border: 1px solid rgba(212, 184, 150, 0.28);
  backdrop-filter: blur(14px);
  margin-bottom: 28px;
}

.gwc-home .gwc-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--home-cyan);
  box-shadow: 0 0 10px rgba(0, 180, 216, 0.55);
}

.gwc-home .gwc-hero__title {
  font-size: clamp(2.4rem, 5.8vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  max-width: none;
}

.gwc-home .gwc-hero__title-line {
  display: block;
}

.gwc-home .gwc-hero__title-line--accent {
  background: linear-gradient(120deg, rgba(255, 255, 255, 1) 15%, rgba(212, 184, 150, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gwc-home .gwc-hero__desc {
  font-size: clamp(1rem, 1.35vw, 1.125rem);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.76);
}

.gwc-home .gwc-hero__buttons {
  margin-bottom: 28px;
}

.gwc-home .gwc-hero__trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}

.gwc-home .gwc-hero__trust li {
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gwc-home-hero__panel {
  position: relative;
}

.gwc-home-hero__card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.22);
  box-shadow: 0 48px 100px rgba(0, 0, 0, 0.45);
}

.gwc-home-hero__photo {
  position: relative;
  aspect-ratio: 4/3.2;
  background-size: cover;
  background-position: center;
}

.gwc-home-hero__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4, 8, 16, 0.85) 0%, transparent 50%);
}

.gwc-home-hero__routes {
  display: none;
}

@keyframes gwc-home-route {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.gwc-home-hero__live {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(4, 8, 16, 0.65);
  border-radius: 100px;
  border: 1px solid rgba(0, 180, 216, 0.35);
  backdrop-filter: blur(10px);
}

.gwc-home-hero__live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e;
}

.gwc-home-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201, 162, 39, 0.25);
  overflow: hidden;
}

.gwc-home-hero__stat {
  padding: 16px 10px;
  text-align: center;
  background: rgba(4, 8, 16, 0.92);
}

.gwc-home-hero__stat strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--home-gold-light);
}

.gwc-home-hero__stat span {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

/* ========== STATS ========== */
.gwc-home .gwc-stats {
  margin-top: -64px;
  padding-bottom: 56px;
  position: relative;
  z-index: 5;
}

.gwc-home .gwc-stats__grid {
  padding: 8px 0;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.95));
}

.gwc-home .gwc-stat {
  padding: 28px 16px;
}

.gwc-home .gwc-stat__num {
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
}

.gwc-home .gwc-stat__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
}

/* ========== SECTIONS rhythm ========== */
.gwc-home .gwc-section {
  padding: clamp(64px, 9vh, 100px) 0;
}

.gwc-home .gwc-section__eyebrow {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gwc-home .gwc-section__title {
  font-family: var(--home-font);
  font-size: clamp(1.75rem, 3.2vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

/* About */
.gwc-home .gwc-about {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

/* About — enterprise editorial */
.gwc-home-about {
  position: relative;
}

.gwc-home-about__header {
  max-width: 980px;
  margin: 0 auto 34px;
}

.gwc-home-about__sub {
  margin-top: 14px;
  font-size: 1.05rem;
  line-height: 1.85;
  color: #475569;
  max-width: 920px;
}

.gwc-home-about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 34px;
  align-items: start;
}

.gwc-home-about__copy .gwc-home-lead {
  margin-top: 0;
}

.gwc-home-about__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}

.gwc-home-about__pillar {
  background: #fff;
  border: 1px solid rgba(15, 39, 68, 0.08);
  border-radius: 14px;
  padding: 18px 18px 16px;
  box-shadow: 0 16px 40px rgba(4, 8, 16, 0.05);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.gwc-home-about__pillar:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 149, 106, 0.26);
  box-shadow: 0 24px 56px rgba(4, 8, 16, 0.08);
}

.gwc-home-about__pillar h3 {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--home-navy-2);
}

.gwc-home-about__pillar p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #64748b;
  margin: 0;
}

.gwc-home-about__checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.gwc-home-about__checks li {
  padding: 10px 12px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(15, 39, 68, 0.08);
  font-size: 0.9rem;
  font-weight: 600;
  color: #334155;
}

.gwc-home-about__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.gwc-home-about__panel {
  border-radius: 18px;
  background: radial-gradient(ellipse 70% 60% at 30% 0%, rgba(184, 149, 106, 0.16) 0%, transparent 58%),
    linear-gradient(180deg, rgba(4, 8, 16, 0.06) 0%, rgba(15, 39, 68, 0.02) 100%);
  border: 1px solid rgba(15, 39, 68, 0.10);
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(4, 8, 16, 0.08);
}

.gwc-home-about__media {
  position: relative;
  padding: 16px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 12px;
}

.gwc-home-about__media-main,
.gwc-home-about__media-side {
  border-radius: 14px;
  min-height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
  position: relative;
}

.gwc-home-about__media-main::after,
.gwc-home-about__media-side::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(4, 8, 16, 0.72) 0%, rgba(4, 8, 16, 0.12) 60%, transparent 100%),
    radial-gradient(ellipse 55% 45% at 50% 0%, rgba(0, 180, 216, 0.10) 0%, transparent 60%);
}

.gwc-home-about__media-side {
  min-height: 220px;
}

.gwc-home-about__caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  padding: 12px 14px;
  background: rgba(4, 8, 16, 0.55);
  border: 1px solid rgba(201, 162, 39, 0.22);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 650;
}

.gwc-home-about__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 16px 14px;
}

.gwc-home-about__metric {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 39, 68, 0.10);
  border-radius: 14px;
  padding: 14px 14px 12px;
}

.gwc-home-about__metric strong {
  display: block;
  font-size: 1.08rem;
  font-weight: 850;
  letter-spacing: -0.02em;
  color: var(--home-navy-2);
}

.gwc-home-about__metric span {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748b;
}

.gwc-home-about__highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 0 16px 16px;
}

.gwc-home-about__hcard {
  background: #fff;
  border: 1px solid rgba(15, 39, 68, 0.10);
  border-radius: 14px;
  padding: 14px 14px 12px;
}

.gwc-home-about__htag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(15, 39, 68, 0.75);
}

.gwc-home-about__hcard p {
  margin: 8px 0 0;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.7;
}

@media (max-width: 980px) {
  .gwc-home-about__grid {
    grid-template-columns: 1fr;
  }
  .gwc-home-about__media {
    grid-template-columns: 1fr;
  }
  .gwc-home-about__media-main,
  .gwc-home-about__media-side {
    min-height: 240px;
  }
}

@media (max-width: 640px) {
  .gwc-home-about__pillars {
    grid-template-columns: 1fr;
  }
  .gwc-home-about__checks {
    grid-template-columns: 1fr;
  }
}

/* Detailed about — photo strip cards */
.gwc-home .gwc-detailed-about {
  position: relative;
  overflow: hidden;
}

.gwc-home .gwc-detailed-about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/photos/airport.jpg") center / cover no-repeat;
  opacity: 0.15;
}

.gwc-home .gwc-detailed-about__lead {
  position: relative;
  font-size: 1.15rem;
  line-height: 1.85;
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
}

.gwc-home .gwc-detailed-about__grid {
  position: relative;
  gap: 20px;
}

.gwc-home .gwc-detailed-about .gwc-card--glass {
  padding: 32px 28px;
  border-left: 3px solid var(--home-gold);
  transition: transform 0.35s, border-color 0.35s;
}

.gwc-home .gwc-detailed-about .gwc-card--glass:hover {
  transform: translateY(-6px);
  border-left-color: var(--home-cyan);
}

/* Services */
.gwc-home .gwc-services {
  background: #f0f4f8;
}

.gwc-home-services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.gwc-home-service {
  position: relative;
  min-height: 300px;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(201, 162, 39, 0.14);
  box-shadow:
    0 22px 52px rgba(4, 8, 16, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  transition:
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.gwc-home-service:hover {
  transform: translateY(-10px);
  border-color: rgba(201, 162, 39, 0.26);
  box-shadow:
    0 34px 84px rgba(4, 8, 16, 0.18),
    0 0 38px rgba(201, 162, 39, 0.08);
}

.gwc-home-service__bg {
  position: absolute;
  inset: 0;
  filter: saturate(0.98) contrast(1.06);
  transition: transform 0.8s ease, filter 0.8s ease;
}

.gwc-home-service:hover .gwc-home-service__bg {
  transform: scale(1.075);
  filter: saturate(1.02) contrast(1.08);
}

.gwc-home-service__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 65% 15%, rgba(0, 180, 216, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 20% 0%, rgba(201, 162, 39, 0.10) 0%, transparent 60%),
    linear-gradient(0deg, rgba(4, 8, 16, 0.94) 0%, rgba(4, 8, 16, 0.22) 68%);
}

.gwc-home-service__body {
  position: relative;
  z-index: 1;
  padding: 22px 22px 24px;
}

.gwc-home-service__index {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: rgba(232, 197, 71, 0.95);
  opacity: 1;
}

.gwc-home-service h3 {
  font-size: 1.08rem;
  font-weight: 800;
  color: #fff;
  margin: 6px 0 8px;
  letter-spacing: -0.02em;
}

.gwc-home-service p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.70);
  margin: 0 0 14px;
  line-height: 1.5;
}

.gwc-home-service .gwc-home-btn--sm {
  border-radius: 10px;
  padding: 10px 18px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.72rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}

.gwc-home-service .gwc-home-btn--sm:hover {
  transform: translateY(-2px);
  background: rgba(201, 162, 39, 0.14);
  border-color: rgba(201, 162, 39, 0.32);
  color: #fff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35), 0 0 26px rgba(201, 162, 39, 0.10);
}

.gwc-home-services__cta {
  text-align: center;
  margin-top: 36px;
}

.gwc-home-services__cta a {
  font-weight: 800;
  color: var(--home-gold);
  font-size: 0.95rem;
}

/* Shared lower-home tokens */
.gwc-home-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0, 180, 216, 0.95);
  margin-bottom: 14px;
}

.gwc-home-eyebrow--gold { color: var(--home-gold-light); }
.gwc-home-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

/* —— Global world network —— */
.gwc-home-world {
  position: relative;
  padding: clamp(72px, 10vh, 110px) 0;
  overflow: hidden;
}

.gwc-home-world__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.gwc-home-world__photo {
  position: absolute;
  inset: 0;
  opacity: 0.35;
}

.gwc-home-world__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(0, 180, 216, 0.12) 0%, transparent 55%),
    linear-gradient(180deg, #040810 0%, #0a1628 45%, #0f2744 100%);
}

.gwc-home-world__routes {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 55%, rgba(201, 162, 39, 0.15) 0%, transparent 8%),
    radial-gradient(circle at 78% 35%, rgba(0, 180, 216, 0.2) 0%, transparent 6%),
    linear-gradient(118deg, transparent 48%, rgba(201, 162, 39, 0.25) 49%, rgba(201, 162, 39, 0.25) 49.5%, transparent 50%),
    linear-gradient(145deg, transparent 62%, rgba(0, 180, 216, 0.2) 63%, transparent 64%);
  animation: gwc-home-route 8s ease-in-out infinite;
}

.gwc-home-world__inner {
  position: relative;
  z-index: 1;
}

.gwc-home-world__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

/* Flow polish: connect Services → World section */
.gwc-home .gwc-services {
  padding-bottom: clamp(56px, 8vh, 84px);
}

.gwc-home-world {
  padding-top: clamp(64px, 9vh, 96px);
}

.gwc-home-world__title {
  font-size: clamp(1.85rem, 3.8vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 16px;
}

.gwc-home-world__lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.62);
}

.gwc-home-world__layout {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(320px, 1.15fr);
  gap: 28px;
  align-items: stretch;
}

.gwc-home-world__viz {
  position: relative;
  min-height: 420px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.2);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
}

.gwc-home-world__map {
  position: absolute;
  inset: 0;
  opacity: 0.55;
}

.gwc-home-world__viz::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(4, 8, 16, 0.7) 0%, transparent 50%, rgba(0, 180, 216, 0.08) 100%);
}

.gwc-home-world__hub {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 18px;
  background: rgba(4, 8, 16, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 12px;
}

.gwc-home-world__hub-dot {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 12px #22c55e;
  animation: gwc-home-pulse 2s ease infinite;
}

@keyframes gwc-home-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.gwc-home-world__hub strong {
  font-size: 1.25rem;
  color: var(--home-gold-light);
  letter-spacing: 0.08em;
}

.gwc-home-world__hub small {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.gwc-home-world__countries {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.gwc-home-country {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 22px 20px 22px 24px;
  background: rgba(4, 8, 16, 0.55);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  text-decoration: none;
  transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s, background 0.35s;
  overflow: hidden;
}

.gwc-home-country::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
}

.gwc-home-country:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 162, 39, 0.45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 32px rgba(201, 162, 39, 0.12);
  background: rgba(15, 39, 68, 0.65);
}

.gwc-home-country:hover::before { opacity: 1; }

.gwc-home-country__code {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--home-gold);
}

.gwc-home-country__name {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.gwc-home-country__meta {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}

.gwc-home-country__arrow {
  position: absolute;
  top: 22px;
  right: 20px;
  font-size: 1.1rem;
  color: var(--home-gold-light);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s, transform 0.3s;
}

.gwc-home-country:hover .gwc-home-country__arrow {
  opacity: 1;
  transform: translateX(0);
}

.gwc-home-world__cta {
  text-align: center;
  margin-top: 40px;
}

/* —— Process timeline —— */
.gwc-home-process {
  position: relative;
  padding: clamp(72px, 10vh, 108px) 0;
  background: linear-gradient(180deg, #0a1628 0%, #040810 100%);
  overflow: hidden;
}

.gwc-home-process__bg {
  position: absolute;
  inset: 0;
  background:
    url("../images/photos/airport.jpg") center / cover no-repeat,
    linear-gradient(180deg, #040810 0%, #0f2744 100%);
  opacity: 0.15;
}

.gwc-home-process__header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.gwc-home-process__title {
  font-size: clamp(1.65rem, 3.2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}

.gwc-home-process__timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  z-index: 1;
}

.gwc-home-process__line {
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.gwc-home-process__line-glow {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--home-gold), rgba(0, 180, 216, 0.9));
  box-shadow: 0 0 20px rgba(201, 162, 39, 0.6);
  transition: width 1.2s ease;
}

.gwc-home-process.is-active .gwc-home-process__line-glow {
  width: 100%;
}

.gwc-home-process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.gwc-home-process__node {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--home-navy-2), #1a3a5c);
  border: 2px solid rgba(201, 162, 39, 0.5);
  box-shadow: 0 0 28px rgba(201, 162, 39, 0.25);
  position: relative;
  z-index: 2;
}

.gwc-home-process__num {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--home-gold-light);
  letter-spacing: 0.06em;
}

.gwc-home-process__card {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
}

.gwc-home-process__step:hover .gwc-home-process__card {
  transform: translateY(-8px);
  border-color: rgba(201, 162, 39, 0.35);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35);
}

.gwc-home-process__thumb {
  height: 100px;
  opacity: 0.85;
}

.gwc-home-process__body {
  padding: 20px 18px 24px;
}

.gwc-home-process__body h3 {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.gwc-home-process__body p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

/* —— Why bento —— */
.gwc-home-why {
  padding: clamp(72px, 10vh, 108px) 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0, 180, 216, 0.08) 0%, transparent 55%),
    linear-gradient(180deg, #0f2744 0%, #040810 100%);
}

.gwc-home-why__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.gwc-home-why__title {
  font-size: clamp(1.75rem, 3.5vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 14px;
}

.gwc-home-why__lead {
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.58);
}

.gwc-home-why__bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(140px, auto);
  gap: 16px;
}

.gwc-home-why__item {
  padding: 26px 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s, background 0.35s;
}

.gwc-home-why__item:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 162, 39, 0.4);
  background: rgba(201, 162, 39, 0.06);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
}

.gwc-home-why__item--featured {
  grid-column: span 2;
  grid-row: span 2;
  padding: 36px 32px;
  background:
    linear-gradient(145deg, rgba(201, 162, 39, 0.12) 0%, rgba(4, 8, 16, 0.4) 100%),
    rgba(255, 255, 255, 0.04);
  border-color: rgba(201, 162, 39, 0.3);
}

.gwc-home-why__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  background:
    linear-gradient(145deg, rgba(201, 162, 39, 0.16) 0%, rgba(4, 8, 16, 0.2) 100%);
  border: 1px solid rgba(201, 162, 39, 0.28);
  border-radius: 12px;
  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  position: relative;
  overflow: hidden;
}

.gwc-home-why__icon::after {
  content: "";
  width: 20px;
  height: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(232, 197, 71, 0.9) 100%);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  opacity: 0.95;
}

/* Premium, consistent icon set (inline SVG masks) */
.gwc-home-why__icon--speed::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 3a9 9 0 1 0 9 9h-2a7 7 0 1 1-7-7V3Zm1 5h-2v6.2l4.3 2.6 1-1.7-3.3-2V8Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 3a9 9 0 1 0 9 9h-2a7 7 0 1 1-7-7V3Zm1 5h-2v6.2l4.3 2.6 1-1.7-3.3-2V8Z'/%3E%3C/svg%3E");
}
.gwc-home-why__icon--shield::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2 4 5v6c0 5 3.4 9.7 8 11 4.6-1.3 8-6 8-11V5l-8-3Zm0 18.9C8.9 19.7 6 16 6 11.6V6.3l6-2.2 6 2.2v5.3c0 4.4-2.9 8.1-6 9.3Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2 4 5v6c0 5 3.4 9.7 8 11 4.6-1.3 8-6 8-11V5l-8-3Zm0 18.9C8.9 19.7 6 16 6 11.6V6.3l6-2.2 6 2.2v5.3c0 4.4-2.9 8.1-6 9.3Z'/%3E%3C/svg%3E");
}
.gwc-home-why__icon--chat::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 4h16v11H7.4L4 18.4V4Zm2 2v7.6L6.6 13H18V6H6Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 4h16v11H7.4L4 18.4V4Zm2 2v7.6L6.6 13H18V6H6Z'/%3E%3C/svg%3E");
}
.gwc-home-why__icon--doc::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6 2h9l3 3v17H6V2Zm2 2v16h10V6.8L14.2 4H8Zm1 6h8v2H9V10Zm0 4h8v2H9v-2Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6 2h9l3 3v17H6V2Zm2 2v16h10V6.8L14.2 4H8Zm1 6h8v2H9V10Zm0 4h8v2H9v-2Z'/%3E%3C/svg%3E");
}
.gwc-home-why__icon--globe::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2Zm7.9 9H16.9a15.6 15.6 0 0 0-1.5-6.3A8 8 0 0 1 19.9 11ZM12 4.1c1.1 1.5 2 3.9 2.4 6.9H9.6c.4-3 1.3-5.4 2.4-6.9ZM4.1 13h3A15.6 15.6 0 0 0 8.6 19.3 8 8 0 0 1 4.1 13ZM7.1 11h-3a8 8 0 0 1 4.5-6.3A15.6 15.6 0 0 0 7.1 11Zm4.9 8.9c-1.1-1.5-2-3.9-2.4-6.9h4.8c-.4 3-1.3 5.4-2.4 6.9ZM15.4 19.3a15.6 15.6 0 0 0 1.5-6.3h3a8 8 0 0 1-4.5 6.3Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2Zm7.9 9H16.9a15.6 15.6 0 0 0-1.5-6.3A8 8 0 0 1 19.9 11ZM12 4.1c1.1 1.5 2 3.9 2.4 6.9H9.6c.4-3 1.3-5.4 2.4-6.9ZM4.1 13h3A15.6 15.6 0 0 0 8.6 19.3 8 8 0 0 1 4.1 13ZM7.1 11h-3a8 8 0 0 1 4.5-6.3A15.6 15.6 0 0 0 7.1 11Zm4.9 8.9c-1.1-1.5-2-3.9-2.4-6.9h4.8c-.4 3-1.3 5.4-2.4 6.9ZM15.4 19.3a15.6 15.6 0 0 0 1.5-6.3h3a8 8 0 0 1-4.5 6.3Z'/%3E%3C/svg%3E");
}
.gwc-home-why__icon--team::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M16 11c1.7 0 3-1.3 3-3s-1.3-3-3-3-3 1.3-3 3 1.3 3 3 3ZM8 11c1.7 0 3-1.3 3-3S9.7 5 8 5 5 6.3 5 8s1.3 3 3 3Zm0 2c-2.3 0-7 1.2-7 3.5V20h14v-3.5C15 14.2 10.3 13 8 13Zm8 0c-.3 0-.7 0-1.1.1 1.2.8 2.1 1.9 2.1 3.4V20h7v-3.2c0-2.6-4.3-3.8-7-3.8Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M16 11c1.7 0 3-1.3 3-3s-1.3-3-3-3-3 1.3-3 3 1.3 3 3 3ZM8 11c1.7 0 3-1.3 3-3S9.7 5 8 5 5 6.3 5 8s1.3 3 3 3Zm0 2c-2.3 0-7 1.2-7 3.5V20h14v-3.5C15 14.2 10.3 13 8 13Zm8 0c-.3 0-.7 0-1.1.1 1.2.8 2.1 1.9 2.1 3.4V20h7v-3.2c0-2.6-4.3-3.8-7-3.8Z'/%3E%3C/svg%3E");
}
.gwc-home-why__icon--quote::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 17h4v-4H7v4Zm6 0h4v-4h-4v4ZM7 7h4V5H5v6h2V7Zm6 0h4V5h-6v6h2V7Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 17h4v-4H7v4Zm6 0h4v-4h-4v4ZM7 7h4V5H5v6h2V7Zm6 0h4V5h-6v6h2V7Z'/%3E%3C/svg%3E");
}
.gwc-home-why__icon--door::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 2h10v20H7V2Zm2 2v16h6V4H9Zm4 8h1v2h-1v-2Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 2h10v20H7V2Zm2 2v16h6V4H9Zm4 8h1v2h-1v-2Z'/%3E%3C/svg%3E");
}

.gwc-home-why__item h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.gwc-home-why__item--featured h3 {
  font-size: 1.35rem;
}

.gwc-home-why__item p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.52);
  margin: 0;
}

.gwc-home-why__item--featured p {
  font-size: 0.95rem;
  max-width: 90%;
}

/* —— Sectors mosaic —— */
.gwc-home-sectors {
  position: relative;
  padding: clamp(64px, 9vh, 96px) 0;
  overflow: hidden;
}

.gwc-home-sectors__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, #040810 0%, #0a1628 50%, #0f2744 100%);
}

.gwc-home-sectors__header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 40px;
}

.gwc-home-sectors__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.gwc-home-sectors__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gwc-home-sector {
  position: relative;
  min-height: 140px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.35s, box-shadow 0.35s;
}

.gwc-home-sector:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

.gwc-home-sector__bg {
  position: absolute;
  inset: 0;
  transition: transform 0.5s;
}

.gwc-home-sector:hover .gwc-home-sector__bg {
  transform: scale(1.08);
}

.gwc-home-sector__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4, 8, 16, 0.92) 0%, rgba(4, 8, 16, 0.2) 70%);
}

.gwc-home-sector__label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 1;
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
}

/* —— Testimonials —— */
.gwc-home-testimonials {
  padding: clamp(72px, 10vh, 100px) 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(201, 162, 39, 0.06) 0%, transparent 50%),
    #060d18;
}

.gwc-home-testimonials__header {
  text-align: center;
  margin-bottom: 44px;
}

.gwc-home-testimonials__title {
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.gwc-home-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.gwc-home-quote {
  position: relative;
  margin: 0;
  padding: 36px 32px 32px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
}

.gwc-home-quote:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 162, 39, 0.35);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.35);
}

.gwc-home-quote__mark {
  font-size: 4rem;
  line-height: 0.8;
  font-family: Georgia, serif;
  color: rgba(201, 162, 39, 0.25);
  margin-bottom: 8px;
}

.gwc-home-quote p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 24px;
}

.gwc-home-quote footer strong {
  display: block;
  font-size: 1rem;
  color: var(--home-gold-light);
  margin-bottom: 4px;
}

.gwc-home-quote footer span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

/* —— FAQ —— */
.gwc-home-faq {
  padding: clamp(64px, 9vh, 96px) 0;
  background: linear-gradient(180deg, #0a1628 0%, #040810 100%);
}

.gwc-home-faq__wrap {
  max-width: 820px;
  margin: 0 auto;
}

.gwc-home-faq__header {
  text-align: center;
  margin-bottom: 36px;
}

.gwc-home-faq__title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.gwc-home .gwc-home-accordion .gwc-accordion__item {
  margin-bottom: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.gwc-home .gwc-home-accordion .gwc-accordion__item:hover {
  border-color: rgba(201, 162, 39, 0.3);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
}

.gwc-home .gwc-home-accordion .gwc-accordion__trigger {
  padding: 22px 26px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  width: 100%;
  text-align: left;
}

.gwc-home .gwc-home-accordion .gwc-accordion__trigger[aria-expanded="true"] {
  color: var(--home-gold-light);
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.1), transparent);
}

.gwc-home .gwc-home-accordion .gwc-accordion__panel {
  padding: 0 26px 22px;
}

.gwc-home .gwc-home-accordion .gwc-accordion__panel p {
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.7;
  margin: 0;
}

.gwc-home .gwc-home-accordion .gwc-accordion__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.15);
  border: 1px solid rgba(201, 162, 39, 0.3);
  flex-shrink: 0;
  position: relative;
  /* Reset global chevron icon to avoid "X" look */
  transform: none;
  border-right: none;
  border-bottom: none;
}

.gwc-home .gwc-home-accordion .gwc-accordion__icon::before,
.gwc-home .gwc-home-accordion .gwc-accordion__icon::after {
  content: "";
  position: absolute;
  background: var(--home-gold-light);
}

.gwc-home .gwc-home-accordion .gwc-accordion__icon::before {
  width: 12px;
  height: 2px;
  top: 50%;
  left: 50%;
  margin: -1px 0 0 -6px;
}

.gwc-home .gwc-home-accordion .gwc-accordion__icon::after {
  width: 2px;
  height: 12px;
  top: 50%;
  left: 50%;
  margin: -6px 0 0 -1px;
  transition: opacity 0.3s;
}

.gwc-home .gwc-home-accordion .gwc-accordion__trigger[aria-expanded="true"] .gwc-accordion__icon::after {
  opacity: 0;
}

/* —— Testimonials meta —— */
.gwc-home-quote__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 14px;
}

.gwc-home-quote__tag {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.gwc-home-quote__sep {
  color: rgba(255, 255, 255, 0.3);
}

.gwc-home-quote__route {
  margin: -10px 0 18px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: rgba(232, 197, 71, 0.85);
}

/* —— Global network map: make it "logistics", not tourism —— */
.gwc-home-world__map {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 700'%3E%3Crect width='1200' height='700' fill='%23040a14'/%3E%3Cg opacity='0.72'%3E%3Cpath d='M128 362c96-40 176-62 246-68 78-6 156 8 236 44 82 36 162 54 240 52 74-2 150-26 230-72' fill='none' stroke='%2300b4d8' stroke-width='2.2' stroke-linecap='round'/%3E%3Cpath d='M208 470c108-54 214-78 320-74 108 4 214 40 320 110 98 64 196 92 292 86' fill='none' stroke='%23c9a227' stroke-width='2' stroke-linecap='round' opacity='0.9'/%3E%3Cpath d='M300 240c90-34 176-50 260-48 98 4 190 34 276 92 82 56 170 82 264 78' fill='none' stroke='%23ffffff' stroke-width='1.4' stroke-linecap='round' opacity='0.32'/%3E%3Cg fill='%23ffffff' opacity='0.25'%3E%3Ccircle cx='340' cy='260' r='6'/%3E%3Ccircle cx='560' cy='310' r='6'/%3E%3Ccircle cx='800' cy='290' r='6'/%3E%3Ccircle cx='640' cy='480' r='6'/%3E%3Ccircle cx='940' cy='430' r='6'/%3E%3C/g%3E%3Cg fill='%2300b4d8' opacity='0.55'%3E%3Ccircle cx='250' cy='450' r='4'/%3E%3Ccircle cx='470' cy='430' r='4'/%3E%3Ccircle cx='710' cy='420' r='4'/%3E%3Ccircle cx='1010' cy='410' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") !important;
  background-size: cover !important;
  background-position: center !important;
  opacity: 0.75;
  filter: saturate(1) contrast(1.05);
}

/* Service card framing: per-service crop tweaks */
.gwc-home-services__grid #yurtdisi-kargo .gwc-home-service__bg { background-position: center 22% !important; }
.gwc-home-services__grid #hava-kargo .gwc-home-service__bg { background-position: center 45% !important; }
.gwc-home-services__grid #ucak-kargo .gwc-home-service__bg { background-position: center 38% !important; }
.gwc-home-services__grid #deniz-yolu-kargo .gwc-home-service__bg { background-position: center 50% !important; }
.gwc-home-services__grid #karayolu-kargo .gwc-home-service__bg { background-position: center 52% !important; }

/* —— Blog —— */
.gwc-home-blog {
  padding: clamp(64px, 9vh, 92px) 0;
  background: #040810;
}

.gwc-home-blog__header {
  text-align: center;
  margin-bottom: 40px;
}

.gwc-home-blog__all {
  display: inline-flex;
  margin-top: 16px;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--gwc-gold, #c9a227);
  text-decoration: none;
  transition: color 0.2s;
}

.gwc-home-blog__all:hover {
  color: #fff;
}

.gwc-home-blog__title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.gwc-home-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gwc-home-blog-card {
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.35s, box-shadow 0.35s;
}

.gwc-home-blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35);
  border-color: rgba(201, 162, 39, 0.25);
}

.gwc-home-blog-card__thumb {
  display: block;
  height: 180px;
  overflow: hidden;
}

.gwc-home-blog-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gwc-home-blog-card:hover .gwc-home-blog-card__thumb img {
  transform: scale(1.06);
}

.gwc-home-blog-card__thumb--ph {
  display: block;
  height: 180px;
}

.gwc-home-blog-card__body {
  padding: 24px 22px 28px;
}

.gwc-home-blog-card__body h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.35;
}

.gwc-home-blog-card__body h3 a {
  color: #fff;
  text-decoration: none;
}

.gwc-home-blog-card__body h3 a:hover {
  color: var(--home-gold-light);
}

.gwc-home-blog-card__body p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.52);
  margin-bottom: 14px;
}

.gwc-home-blog-card__link {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--home-gold);
  text-decoration: none;
}

.gwc-home-blog-card__link:hover {
  color: var(--home-gold-light);
}

/* —— Final CTA —— */
.gwc-home-cta {
  position: relative;
  padding: clamp(100px, 14vh, 140px) 0;
  overflow: hidden;
}

.gwc-home-cta__bg {
  position: absolute;
  inset: 0;
}

.gwc-home-cta__photo {
  position: absolute;
  inset: 0;
}

.gwc-home-cta__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 100%, rgba(201, 162, 39, 0.2) 0%, transparent 55%),
    linear-gradient(180deg, rgba(4, 8, 16, 0.82) 0%, rgba(4, 8, 16, 0.95) 100%);
}

.gwc-home-cta__glow {
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 50%;
  background: radial-gradient(ellipse, rgba(0, 180, 216, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.gwc-home-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.gwc-home-cta__title {
  font-size: clamp(1.85rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 18px;
}

.gwc-home-cta__desc {
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 36px;
}

.gwc-home-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* —— Contact —— */
.gwc-home-contact {
  position: relative;
  padding: clamp(72px, 10vh, 108px) 0;
  overflow: hidden;
}

.gwc-home-contact__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 0% 50%, rgba(0, 180, 216, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #0f2744 0%, #040810 100%);
}

.gwc-home-contact__header {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}

.gwc-home-contact__title {
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.gwc-home-contact__lead {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
}

.gwc-home-contact__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.gwc-home-contact__info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.gwc-home-contact__card {
  padding: 22px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: transform 0.3s, border-color 0.3s;
}

.gwc-home-contact__card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 39, 0.3);
}

/* Icon size: see main.css .gwc-home-contact__icon */

.gwc-home-contact__card h4 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--home-gold);
  margin-bottom: 8px;
}

.gwc-home-contact__card p,
.gwc-home-contact__card a {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.gwc-home-contact__card a:hover {
  color: var(--home-gold-light);
}

.gwc-home-contact__quick {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.gwc-home-form {
  padding: 32px 28px;
  background: rgba(4, 8, 16, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 20px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
}

.gwc-home-form__title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
}

.gwc-home-form__row {
  margin-bottom: 16px;
}

.gwc-home-form__row label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 8px;
}

.gwc-home-form__row input,
.gwc-home-form__row textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #fff;
  font-size: 0.95rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.gwc-home-form__row input:focus,
.gwc-home-form__row textarea:focus {
  outline: none;
  border-color: rgba(201, 162, 39, 0.5);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.12);
}

.gwc-home-form__row--half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.gwc-home-btn--block {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

/* Responsive */
@media (max-width: 1100px) {
  .gwc-home-hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .gwc-home .gwc-hero__desc,
  .gwc-home .gwc-hero__trust {
    margin-left: auto;
    margin-right: auto;
  }
  .gwc-home .gwc-hero__buttons {
    justify-content: center;
  }
  .gwc-home-hero__panel {
    max-width: 520px;
    margin: 0 auto;
  }
  .gwc-home-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gwc-home-world__layout {
    grid-template-columns: 1fr;
  }
  .gwc-home-world__viz {
    min-height: 280px;
  }
  .gwc-home-process__timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  .gwc-home-process__line {
    display: none;
  }
  .gwc-home-why__bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .gwc-home-why__item--featured {
    grid-column: span 2;
    grid-row: span 1;
  }
  .gwc-home-sectors__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gwc-home-blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gwc-home-contact__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .gwc-home-hero__grid {
    padding: 96px 16px 64px;
  }
  .gwc-home .gwc-badge {
    margin-bottom: 18px;
    padding: 9px 16px;
  }
  .gwc-home .gwc-hero__title {
    font-size: clamp(1.9rem, 8.6vw, 2.65rem);
    margin-bottom: 18px;
  }
  .gwc-home .gwc-hero__desc {
    margin-bottom: 22px;
  }
  .gwc-home .gwc-hero__buttons {
    margin-bottom: 18px;
  }
  .gwc-home-hero__panel {
    max-width: 100%;
  }

  /* Reduce negative overlap on mobile to prevent awkward floating */
  .gwc-home .gwc-stats {
    margin-top: -18px;
    padding-bottom: 34px;
  }

  .gwc-home .gwc-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gwc-home .gwc-stat:not(:last-child)::after {
    display: none;
  }
  .gwc-home-services__grid {
    grid-template-columns: 1fr;
  }
  .gwc-home .gwc-about__points {
    grid-template-columns: 1fr;
  }
  .gwc-home .gwc-hero__trust {
    grid-template-columns: 1fr;
  }
  .gwc-home-hero__stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .gwc-home-hero__stat {
    padding: 12px 8px;
  }
  .gwc-home-hero__stat strong {
    font-size: 1.1rem;
  }
  .gwc-home-hero__stat span {
    font-size: 0.58rem;
  }
  .gwc-home-world__countries {
    grid-template-columns: 1fr;
  }
  .gwc-home-process__timeline {
    grid-template-columns: 1fr;
  }
  .gwc-home-why__bento {
    grid-template-columns: 1fr;
  }
  .gwc-home-why__item--featured {
    grid-column: span 1;
  }
  .gwc-home-sectors__grid {
    grid-template-columns: 1fr;
  }
  .gwc-home-testimonials__grid {
    grid-template-columns: 1fr;
  }
  .gwc-home-blog__grid {
    grid-template-columns: 1fr;
  }
  .gwc-home-contact__info {
    grid-template-columns: 1fr;
  }
  .gwc-home-form__row--half {
    grid-template-columns: 1fr;
  }
  .gwc-home-cta__buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .gwc-home-cta__buttons .gwc-home-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   Art direction v2.5 — restraint, rhythm, unified cinema
   ========================================================================== */

/* Unified photography grade */
.gwc-home-cinematic-bg {
  filter: saturate(0.92) contrast(1.05) brightness(0.94);
}

.gwc-home .gwc-hero__photo {
  filter: saturate(0.9) contrast(1.04) brightness(0.92);
}

/* Section rhythm & alternation */
.gwc-home-section {
  padding: var(--home-section-pad) 0;
}

.gwc-home-section--light {
  background: #f7f9fc;
}

.gwc-home-section--calm {
  background: #fff;
}

.gwc-home-section--editorial {
  background: linear-gradient(180deg, #0a1628 0%, #060d18 100%);
}

.gwc-home .gwc-section {
  padding: var(--home-section-pad) 0;
}

.gwc-home-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #64748b;
  max-width: 52ch;
  margin-bottom: 28px;
}

/* Typography hierarchy — calmer weights */
.gwc-home .gwc-section__eyebrow {
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--home-gold);
}

.gwc-home .gwc-section__title {
  font-weight: 700;
  letter-spacing: -0.03em;
}

.gwc-home-eyebrow {
  font-weight: 600;
  letter-spacing: 0.16em;
  color: rgba(94, 184, 201, 0.9);
}

.gwc-home-eyebrow--gold {
  color: var(--home-gold-light);
}

/* Stats — editorial trust strip */
.gwc-home .gwc-stats {
  margin-top: -48px;
  padding-bottom: var(--home-section-pad-sm);
}

.gwc-home .gwc-stats__grid {
  border-radius: 14px;
  border: 1px solid rgba(15, 39, 68, 0.06);
  box-shadow: 0 20px 50px rgba(4, 8, 16, 0.06);
}

.gwc-home .gwc-stat__num {
  font-weight: 700;
  color: var(--home-navy-2);
}

.gwc-home .gwc-stat__label {
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.01em;
}

/* Services — 3-col editorial grid, less card noise */
.gwc-home-services__grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.gwc-home-service {
  min-height: 320px;
  border-radius: 14px;
}

.gwc-home-service:hover {
  transform: translateY(-6px);
}

.gwc-home-service__bg::after {
  background:
    linear-gradient(0deg, rgba(4, 8, 16, 0.93) 0%, rgba(4, 8, 16, 0.18) 72%);
}

.gwc-home-service h3 {
  font-weight: 700;
}

/* World — calmer global section */
.gwc-home-world__routes {
  opacity: 0.35;
  animation: none;
}

.gwc-home-world__title,
.gwc-home-process__title,
.gwc-home-why__title {
  font-weight: 700;
}

.gwc-home-country:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

/* Process — reduced glow */
.gwc-home-process__line-glow {
  box-shadow: none;
}

.gwc-home-process__node {
  box-shadow: 0 0 16px rgba(184, 149, 106, 0.15);
  border-color: rgba(212, 184, 150, 0.35);
}

.gwc-home-process__step:hover .gwc-home-process__card {
  transform: translateY(-4px);
}

/* Why — uniform 3-col, no bento featured */
.gwc-home-why__bento {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 20px;
}

.gwc-home-why__item--featured {
  grid-column: auto;
  grid-row: auto;
  padding: 26px 22px;
  background: rgba(255, 255, 255, 0.04);
}

.gwc-home-why__item {
  padding: 28px 24px;
  border-radius: 14px;
}

.gwc-home-why__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  background: rgba(255, 255, 255, 0.05);
}

.gwc-home-why__item h3 {
  font-weight: 700;
  font-size: 1rem;
}

.gwc-home-why__item--featured h3 {
  font-size: 1rem;
}

.gwc-home-why__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

/* About — compact editorial */
.gwc-home .gwc-about__points--compact {
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}

.gwc-home .gwc-about__points--compact li {
  font-weight: 500;
  font-size: 0.9rem;
  background: #fff;
  border: 1px solid rgba(15, 39, 68, 0.06);
  box-shadow: none;
}

.gwc-home .gwc-check {
  display: inline-flex;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border-radius: 50%;
  background: rgba(184, 149, 106, 0.12);
  border: 1px solid rgba(184, 149, 106, 0.28);
  vertical-align: middle;
  position: relative;
}

.gwc-home .gwc-check::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 3px;
  width: 5px;
  height: 9px;
  border: solid var(--home-gold);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.gwc-home-about__link {
  margin-top: 24px;
}

/* Testimonials — light calm pause */
.gwc-home-testimonials {
  background: #f7f9fc;
}

.gwc-home-testimonials__title {
  color: var(--home-navy-2);
  font-weight: 700;
}

.gwc-home-quote {
  background: #fff;
  border: 1px solid rgba(15, 39, 68, 0.08);
  box-shadow: 0 12px 36px rgba(4, 8, 16, 0.04);
}

.gwc-home-quote:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 149, 106, 0.22);
  box-shadow: 0 20px 48px rgba(4, 8, 16, 0.08);
}

.gwc-home-quote p {
  color: #475569;
}

.gwc-home-quote footer strong {
  color: var(--home-navy-2);
}

.gwc-home-quote footer span {
  color: #94a3b8;
}

.gwc-home-quote__mark {
  color: rgba(184, 149, 106, 0.2);
}

/* FAQ — light editorial */
.gwc-home-faq {
  background: #f7f9fc;
}

.gwc-home-faq__title {
  color: var(--home-navy-2);
  font-weight: 700;
}

.gwc-home .gwc-home-accordion .gwc-accordion__item {
  background: #fff;
  border: 1px solid rgba(15, 39, 68, 0.08);
}

.gwc-home .gwc-home-accordion .gwc-accordion__trigger {
  color: var(--home-navy-2);
  font-weight: 600;
}

.gwc-home .gwc-home-accordion .gwc-accordion__trigger[aria-expanded="true"] {
  color: var(--home-gold);
  background: rgba(184, 149, 106, 0.06);
}

.gwc-home .gwc-home-accordion .gwc-accordion__panel p {
  color: #64748b;
}

/* Blog — calm */
.gwc-home-blog {
  background: #fff;
}

.gwc-home-blog__title {
  color: var(--home-navy-2);
  font-weight: 700;
}

.gwc-home-blog-card {
  background: #fff;
  border: 1px solid rgba(15, 39, 68, 0.08);
}

.gwc-home-blog-card__body h3 a {
  color: var(--home-navy-2);
}

.gwc-home-blog-card__body p {
  color: #64748b;
}

/* Final CTA — restrained */
.gwc-home-cta__overlay {
  background: linear-gradient(180deg, rgba(4, 8, 16, 0.88) 0%, rgba(4, 8, 16, 0.96) 100%);
}

.gwc-home-cta__title {
  font-weight: 700;
}

@media (max-width: 1100px) {
  .gwc-home-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gwc-home-why__bento {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .gwc-home-section,
  .gwc-home .gwc-section {
    padding: var(--home-section-pad-sm) 0;
  }
  .gwc-home .gwc-stats {
    margin-top: -20px;
  }
  .gwc-home-services__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .gwc-home-service {
    min-height: 280px;
  }
  .gwc-home-why__bento {
    grid-template-columns: 1fr;
  }
  .gwc-home .gwc-about__points--compact {
    grid-template-columns: 1fr;
  }
}
