/* ============================================================
   SATGURU MICE — main.css
   Full light theme | Primary: #2A7634 (green) · #E87C32 (orange)
   Section structure: svyazi-agency.ru style
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap');

/* ── Variables ── */
:root {
  /* Satguru brand */
  --green: #2A7634;
  --green-dark: #1e5526;
  --green-light: #339940;
  --green-bg: #eef6f0;
  --green-glow: rgba(42, 118, 52, 0.12);
  --green-border: rgba(42, 118, 52, 0.25);
  --orange: #E87C32;
  --orange-dark: #c5611e;
  --orange-bg: #fef4ec;
  --orange-border: rgba(232, 124, 50, 0.25);
  --orange-glow: rgba(232, 124, 50, 0.18);

  /* Light backgrounds */
  --bg-white: #ffffff;
  --bg-soft: #f7f9fc;
  --bg-gray: #f0f3f7;
  --bg-card: #ffffff;

  /* Text */
  --text-dark: #111827;
  --text-mid: #374151;
  --text-muted: #6b7280;
  --text-light: #9ca3af;

  /* Borders */
  --border: #e5e7eb;
  --border-mid: #d1d5db;

  /* Typography */
  --font-head: 'Open Sans', -apple-system, sans-serif;
  --font-body: 'Open Sans', -apple-system, sans-serif;

  /* Misc */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 50px;
  --transition: 0.2s ease-in-out;
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.06);
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.11);
  --shadow-green: 0 8px 24px rgba(42, 118, 52, 0.22);
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  scrollbar-gutter: stable;
}

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

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

/* ── 1600px Container ── */
.container-custom {
  width: 100%;
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 60px;
}

/* ── Section skins (all light) ── */
.section-white {
  background: var(--bg-white);
  padding: 110px 0;
}

.section-soft {
  background: var(--bg-soft);
  padding: 110px 0;
}

.section-gray {
  background: var(--bg-gray);
  padding: 110px 0;
}

/* ── Animate.css utilities — elements always visible (animations disabled) ── */
.scroll-animate {
  opacity: 1;
}

.scroll-animate.animate__animated {
  opacity: 1;
}

/* ── Section header ── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--green);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: #000;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  text-align: center;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-inline: auto;
  text-align: center;
}

/* ── Colour helpers ── */
.text-green {
  color: var(--green) !important;
}

.text-orange {
  color: var(--orange) !important;
}

.text-muted-c {
  color: var(--text-muted) !important;
}

/* Force black on all coloured spans inside section titles */
.section-title .text-green,
.section-title .text-orange {
  color: #000 !important;
}

/* Override section-title colour inside green CTA section */
#cta-scatter .section-title {
  color: #fff;
}

/* ── Divider ── */
.section-divider {
  height: 1px;
  background: var(--border);
  margin: 0;
  border: none;
}

/* ── Buttons (svyazi pill style) ── */
.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  padding: 0.75rem 2rem;
  border-radius: var(--radius-pill);
  border: 2px solid var(--orange);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-green:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 124, 50, 0.35);
}

.btn-outline-green {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--green);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  padding: 0.75rem 2rem;
  border-radius: var(--radius-pill);
  border: 2px solid var(--green);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-outline-green:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

.btn-orange {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.75rem 2rem;
  border-radius: var(--radius-pill);
  border: 2px solid var(--orange);
  transition: all var(--transition);
  cursor: pointer;
}

.btn-blue:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================================
   NAVBAR  — 2-column: [logo left] [button right]
   ============================================================ */
#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.35s ease;
  background: rgba(255, 255, 255, 0);
}

#mainNav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

/* 2-column flex: logo left, button right */
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  justify-content: flex-start;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  justify-content: flex-end;
}

/* Logo */
.nav-logo {
  height: 48px;
  width: auto;
  display: block;
  transition: height 0.35s ease;
}

#mainNav.scrolled .nav-logo {
  height: 38px;
}

.navbar-brand {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
  white-space: nowrap;
}

.brand-dmc {
  color: var(--green);
}

.brand-satguru {
  color: #fff;
  transition: color 0.35s ease;
}

#mainNav.scrolled .brand-satguru {
  color: var(--text-dark);
}

/* Nav buttons */
.nav-btn {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  padding: 0.42rem 1rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--green);
  background: var(--green);
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-btn:hover {
  background: #1e5c20;
  border-color: #1e5c20;
  color: #fff;
}

#mainNav.scrolled .nav-btn {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

#mainNav.scrolled .nav-btn:hover {
  background: #1e5c20;
  border-color: #1e5c20;
  color: #fff;
}

/* Match "Submit a request" size to other nav buttons */
.nav-right .btn-green {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.42rem 1rem;
  border-width: 1.5px;
}

/* ── Left group: logo + audience buttons ── */
.nav-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* ── Logo-adjacent button group ── */
.nav-logo-btns {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 991px) {
  .nav-logo-btns {
    display: none;
  }
}

/* ── Corporate & Agent nav buttons ── */
.nav-corp-btn,
.nav-agent-btn {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.42rem 1rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  transition: all var(--transition);
  text-decoration: none;
}

/* Green filled — corporate */
.nav-corp-btn {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.nav-corp-btn:hover {
  background: #1e5c20;
  border-color: #1e5c20;
  color: #fff;
}

#mainNav.scrolled .nav-corp-btn {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

#mainNav.scrolled .nav-corp-btn:hover {
  background: #1e5c20;
  border-color: #1e5c20;
}

/* Orange filled — agents */
.nav-agent-btn {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.nav-agent-btn:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: #fff;
}

#mainNav.scrolled .nav-agent-btn {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

#mainNav.scrolled .nav-agent-btn:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: #fff;
}

/* Hide on small screens to save space */
@media (max-width: 991px) {

  .nav-corp-btn,
  .nav-agent-btn {
    display: none;
  }
}

/* ── Hamburger button ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 19px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 0.25rem;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--green);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 991px) {
  .nav-hamburger {
    display: flex;
  }
}

/* ── Mobile nav menu ── */
.nav-mobile-menu {
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid var(--border);
}

.nav-mobile-inner {
  display: flex;
  flex-direction: column;
  padding-top: 0.75rem;
  padding-bottom: 1rem;
  padding-inline: 1rem !important;
  gap: 0.5rem;
}

/* Make desktop-styled buttons full-width inside mobile menu */
.nav-mobile-inner .nav-corp-btn,
.nav-mobile-inner .nav-agent-btn {
  display: flex !important;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  padding: 0.7rem 1rem;
  border-radius: 8px;
}

.nav-mobile-inner .nav-btn {
  display: flex !important;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  background: var(--green) !important;
  border-color: var(--green) !important;
  color: #fff !important;
}

.nav-mobile-inner .nav-btn:hover {
  background: #1e5c20 !important;
  border-color: #1e5c20 !important;
  color: #fff !important;
}

.nav-mobile-inner .btn-green {
  width: 100%;
  display: flex !important;
  text-align: left;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  margin-top: 0.25rem;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  background:
    url('../assets/images/freepik__enhance__88606.png') center center / cover no-repeat;
  overflow: hidden;
}

/* Top + bottom vignette — clear in the middle */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.82) 0%, transparent 38%),
    linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, transparent 42%);
  pointer-events: none;
  z-index: 1;
}

/* Remove old glow — hero image provides visual interest */
#hero::after {
  content: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-top: 40px;
  padding-bottom: 110px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.25rem;
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(3.8rem, 8vw, 9rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  padding-left: 37px;
}

/* ── Wave letters (MICE in hero headline) ── */
@keyframes waveLetter {

  0%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-14px);
  }
}

.hero-mice-word {
  display: inline;
}

.hero-headline-rest {
  display: inline;
}

.wave-letter {
  display: inline-block;
  position: relative;
  animation: waveLetter 1.8s ease-in-out infinite;
  cursor: default;
}

.wave-letter:nth-child(1) {
  animation-delay: 0s;
}

.wave-letter:nth-child(2) {
  animation-delay: 0.15s;
}

.wave-letter:nth-child(3) {
  animation-delay: 0.30s;
}

.wave-letter:nth-child(4) {
  animation-delay: 0.45s;
}

/* Hero letter tooltip — disabled (replaced by glass panel overlays) */
.hero-letter-tooltip {
  display: none;
}

/* ── Glass Panel Overlays ── */
.hero-panels {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-panel {
  position: absolute;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s ease;
  pointer-events: none;
}

.hero-panel.active {
  background: rgba(0, 0, 0, 0.62);
}

/* Panel horizontal positions — set dynamically by JS (positionHeroPanels) */

/* Panel inner content — hidden until active */
.hero-panel-inner {
  text-align: center;
  padding: clamp(1rem, 2vw, 2rem) clamp(0.75rem, 1.2vw, 1.2rem);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease 0.08s, transform 0.35s ease 0.08s;
}

.hero-panel.active .hero-panel-inner {
  opacity: 1;
  transform: translateY(0);
}

.hero-panel-letter {
  display: block;
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.15);
  line-height: 1;
  margin-bottom: 0.6rem;
  letter-spacing: -0.04em;
}

.hero-panel-title {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(0.72rem, 1.1vw, 1.1rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.hero-panel-desc {
  font-size: clamp(0.6rem, 0.75vw, 0.8rem);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  margin: 0;
}

.hero-panel-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
  max-height: 65vh;
  overflow-y: auto;
}

.hero-panel-list li {
  font-size: clamp(0.58rem, 0.85vw, 0.73rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.35;
  padding: 0.28rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-left: 1rem;
  position: relative;
}

.hero-panel-list li::before {
  content: '—';
  color: var(--orange);
  position: absolute;
  left: 0;
  font-size: 0.6rem;
  top: 0.38rem;
}

.hero-panel-list li:last-child {
  border-bottom: none;
}

/* "Event" word in hero — hover tooltip, no wave */
.hero-event-word {
  display: inline-block;
  position: relative;
  cursor: default;
}

.hero-tagline {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
}

/* ── Typed cursor ── */
.typed-cursor {
  display: inline-block;
  margin-left: 2px;
  color: var(--orange);
  font-weight: 300;
  animation: cursorBlink 0.75s step-end infinite;
}

.typed-cursor--pause {
  animation: none;
  opacity: 1;
}

@keyframes cursorBlink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

/* ── MICE Interactive Bar ── */
.mice-bar {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 0;
  border-radius: 14px;
  overflow: hidden;
  width: 100%;
  max-width: 860px;
  background: linear-gradient(to right, #7a6928 0%, #c47c28 100%);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.mice-letter-wrap {
  flex: 1;
  position: relative;
}

.mice-letter {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 72px;
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  background: transparent;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
  border: none;
  outline: none;
  position: relative;
}

.mice-letter:hover,
.mice-letter.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

/* vertical divider between letters */
.mice-letter-wrap+.mice-letter-wrap .mice-letter::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.mice-desc {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 240px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.65;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
  pointer-events: none;
  white-space: normal;
  box-shadow: var(--shadow-md);
}

.mice-desc strong {
  display: block;
  color: var(--green);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.mice-desc::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 20px;
  width: 9px;
  height: 9px;
  background: var(--bg-white);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  transform: rotate(45deg);
}

.mice-desc.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mice-letter-wrap:last-child .mice-desc {
  left: auto;
  right: 0;
}

.mice-letter-wrap:last-child .mice-desc::before {
  left: auto;
  right: 20px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* On hero, outline btn uses white */
.hero-cta-group .btn-outline-green {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.hero-cta-group .btn-outline-green:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
  box-shadow: none;
}



/* ============================================================
   HERO STATS (transparent bar inside hero, bottom)
   ============================================================ */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.stats-bar-inner {
  display: flex;
  align-items: stretch;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 1.4rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  transition: background var(--transition);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.stat-number {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2vw, 2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
}

/* ============================================================
   ABOUT — STATEMENT + CASE CARDS
   ============================================================ */
.about-head {
  max-width: 780px;
  margin-bottom: 0.5rem;
}

.about-statement {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: #000;
  letter-spacing: -0.03em;
  margin-bottom: 0;
}

.about-statement .text-green {
  color: var(--green) !important;
}

/* Case cards */
#about .row {
  align-items: flex-start;
}

.case-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  box-shadow: none;
  overflow: hidden;
  height: auto;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.case-card:hover {
  border-color: var(--border);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.09);
}

/* Image — padded inside card so all 4 corners are rounded */
.case-img-placeholder {
  width: calc(100% - 2rem);
  height: 220px;
  margin: 1rem 1rem 0;
  overflow: hidden;
  background: var(--bg-gray);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  transition: filter 0.3s ease;
}

.case-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.case-card:hover .case-img-placeholder img {
  transform: scale(1.05);
}

.case-img-placeholder::after {
  content: '';
  font-family: 'Bootstrap Icons';
  font-size: 2.5rem;
  color: var(--border-mid);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-card:hover .case-img-placeholder {
  filter: brightness(0.95);
}

/* Card text body — left-aligned with image */
.case-body {
  padding: 1rem 1rem 1.25rem;
  text-align: left;
  transition: transform 0.3s ease;
}

.case-card:hover .case-body {
  transform: translateX(8px);
}

.case-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.case-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ── About section — photo strip + text below ── */
.about-photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 0;
}

.about-photo-strip img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.about-item-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.about-item-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   ABOUT / OFFER CARDS (legacy — kept for safety)
   ============================================================ */
.offer-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  height: 100%;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.offer-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.offer-card:hover {
  border-color: var(--green-border);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.offer-card:hover::after {
  transform: scaleX(1);
}

.offer-img-placeholder {
  width: 100%;
  height: 240px;
  border-radius: var(--radius-sm);
  background: var(--bg-gray);
  border: 1.5px dashed var(--border-mid);
  margin-bottom: 1.25rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.offer-img-placeholder::after {
  content: '\F3B5';
  font-family: 'Bootstrap Icons';
  font-size: 2rem;
  color: var(--border-mid);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-card:hover .offer-img-placeholder {
  border-color: var(--green-border);
  background: var(--green-bg);
}

.offer-card:hover .offer-img-placeholder::after {
  color: var(--green);
}

.offer-card h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.offer-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

/* ============================================================
   CTA SCATTER SECTION
   ============================================================ */
.cta-scatter-section {
  position: relative;
  background: var(--green) url('../assets/images/CTA-Banner.webp') center center / cover no-repeat;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding: 5rem 0;
}

/* Overlay on bg — solid black on left, fades to transparent on right */
.cta-scatter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0.1) 75%, transparent 100%);
  z-index: 1;
}

/* Left-aligned content */
.scatter-center {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 600px;
}

.cta-scatter-section .section-title {
  color: #fff;
  text-align: left;
}

.scatter-tagline {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.scatter-heading {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}

.scatter-btn {
  border-radius: var(--radius-pill);
  padding: 0.85rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  background: transparent !important;
  border: 2px solid rgba(255, 255, 255, 0.7) !important;
  color: #fff !important;
}

.scatter-btn:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: #fff !important;
  color: #fff !important;
  box-shadow: 0 8px 28px rgba(255, 255, 255, 0.25) !important;
}

/* Browser window frame */
.scatter-browser {
  position: absolute;
  top: 10%;
  bottom: 10%;
  left: 22%;
  right: 22%;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(2px);
  z-index: 0;
  overflow: hidden;
}

.scatter-browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.scatter-browser-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

/* Floating image placeholders */
.scatter-img {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  z-index: 1;
}

.scatter-img::after {
  content: '\F3B5';
  font-family: 'Bootstrap Icons';
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.35);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Individual placements — inset from edges, uneven sizes */
.scatter-img--tl {
  width: 200px;
  height: 145px;
  top: 8%;
  left: 16%;
  transform: rotate(-4deg);
}

.scatter-img--tr {
  width: 155px;
  height: 125px;
  top: 5%;
  right: 18%;
  transform: rotate(3deg);
}

.scatter-img--bl {
  width: 170px;
  height: 155px;
  bottom: 7%;
  left: 19%;
  transform: rotate(2.5deg);
}

.scatter-img--br {
  width: 210px;
  height: 140px;
  bottom: 6%;
  right: 16%;
  transform: rotate(-2deg);
}

/* Central slogan */
.central-slogan {
  border-top: 1.5px solid var(--border);
  margin-top: 4rem;
  padding-top: 4rem;
  text-align: center;
}

.slogan-text {
  font-family: var(--font-head);
  font-size: clamp(1.15rem, 2.2vw, 1.8rem);
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  line-height: 1.5;
}

.slogan-text span {
  color: var(--green);
}

/* ============================================================
   DESTINATIONS — HEADER ROW + ALL-COUNTRIES DROPDOWN
   ============================================================ */

.dest-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

/* ── "All countries" button ── */
.dest-all-wrap {
  position: relative;
  flex-shrink: 0;
  padding-bottom: 0.25rem;
}

.dest-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: var(--green);
  border: none;
  border-radius: var(--radius-pill);
  padding: 0.5rem 1.1rem;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.dest-all-btn:hover {
  background: #1e5c20;
}

.dest-all-chevron {
  font-size: 0.7rem;
  transition: transform 0.25s ease;
}

.dest-all-btn.open .dest-all-chevron {
  transform: rotate(180deg);
}

/* ── Dropdown panel ── */
.dest-all-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
  border: 1px solid var(--border);
  min-width: 230px;
  max-height: 380px;
  overflow-y: auto;
  overflow-x: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 100;
  scrollbar-width: thin;
  scrollbar-color: var(--green) #f0f0f0;
}

.dest-all-dropdown::-webkit-scrollbar {
  width: 4px;
}

.dest-all-dropdown::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 4px;
}

.dest-all-dropdown::-webkit-scrollbar-thumb {
  background: var(--green);
  border-radius: 4px;
}

.dest-all-dropdown.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

/* Group label */
.dest-dd-group-label {
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.35);
  padding: 0.6rem 1rem 0.3rem;
  background: #f8f9fa;
  position: sticky;
  top: 0;
  z-index: 1;
}

.dest-dd-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 1rem;
  text-decoration: none;
  color: var(--text-dark);
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dest-dd-item:last-child {
  border-bottom: none;
}

.dest-dd-item:hover {
  background: var(--green-bg);
  color: var(--green);
}

.dest-dd-flag {
  width: 24px;
  height: 16px;
  object-fit: cover;
  border-radius: 3px;
  flex-shrink: 0;
  display: block;
}

/* ============================================================
   DESTINATIONS — ACCORDION EXPAND
   ============================================================ */
.dest-viewport {
  width: 100%;
  overflow: hidden;
}

.dest-track {
  display: flex;
  gap: 12px;
  height: 500px;
}

.dest-card {
  flex: 1;
  min-width: 0;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: flex 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: flex;
}

.dest-card.active {
  flex: 3.5;
}

.dest-card.dest-hidden {
  display: none;
}

@keyframes destSlideIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.dest-card.entering {
  animation: destSlideIn 0.35s ease;
}

/* Default image — always visible */
.dest-img--default {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 1;
  transition: opacity 0.35s ease;
  will-change: opacity;
}

/* Hover image — fades in on active */
.dest-img--hover {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  will-change: opacity;
}

.dest-card.active .dest-img--default {
  opacity: 0;
}

.dest-card.active .dest-img--hover {
  opacity: 1;
}

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.2) 55%, transparent 80%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.dest-tag {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border-radius: 20px;
  margin-bottom: 0.5rem;
  width: fit-content;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.25s ease 0.1s, transform 0.25s ease 0.1s;
  will-change: opacity, transform;
}

.dest-card.active .dest-tag {
  opacity: 1;
  transform: translateY(0);
}

/* Name — fixed size, no font-size animation (layout-heavy) */
.dest-name {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: none;
}

.dest-card.active .dest-name {
  font-size: 1.4rem;
  white-space: normal;
  text-overflow: unset;
  overflow: visible;
}

/* Desc — opacity + translateY only (no max-height animation) */
.dest-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.28s ease 0.12s, transform 0.28s ease 0.12s;
  margin: 0;
  will-change: opacity, transform;
}

.dest-card.active .dest-desc {
  max-height: 160px;
  /* instant — no layout animation */
  opacity: 1;
  transform: translateY(0);
}

/* Nav buttons */
.dest-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.dest-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  color: var(--text-mid);
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.dest-nav-btn:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.dest-nav-btn:disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* ============================================================
   SERVICES
   ============================================================ */
.challenge-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 3.5rem;
}

.challenge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--bg-white);
  color: var(--text-dark);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.challenge-pill i {
  color: var(--green);
}

.challenge-pill:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  box-shadow: var(--shadow-green);
}

.challenge-pill:hover i {
  color: #fff;
}

/* ============================================================
   SERVICES — TWO-COLUMN LAYOUT (process boxes + honeycomb)
   ============================================================ */

/* ── Outer stacked layout ── */
.svc-layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 3rem;
}

/* ── Two boxes side by side (legacy) ── */
.svc-2boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

/* ── 2-column layout: 35% | 1fr ── */
.svc-3col {
  display: grid;
  grid-template-columns: 35% 1fr;
  gap: 1.25rem;
  align-items: stretch;
  position: relative;
  margin-top: 3rem;
  overflow: visible;
}

/* ── Merged caps + honeycomb block ── */
.svc-merged {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  height: 100%;
}

.svc-merged-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--border);
}

.svc-merged-body {
  display: grid;
  grid-template-columns: 1fr 370px;
  gap: 1.25rem;
  align-items: start;
  flex: 1;
}

.svc-merged-body .svc-caps-list {
  min-width: 0;
}

.svc-merged-body .svc-col-hc--inline {
  width: 370px;
  flex-shrink: 0;
}

/* ── Vertical honeycomb (3 cols × 4 rows, small hexagons) ── */
.honeycomb--v {
  width: 338px !important;
  height: 592px !important;
}

/* ── Small hexagon variant ── */
.hc-hex.hc-sm {
  width: 130px;
  height: 112px;
}

.hc-sm .hc-icon {
  font-size: 1.3rem;
  margin-bottom: 3px;
}

.hc-sm .hc-name {
  font-size: 0.58rem;
  line-height: 1.2;
  font-weight: 600;
}

.hc-sm .hc-sub {
  display: none;
}

/* ── Honeycomb inline (no background panel) ── */
.svc-col-hc--inline {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 1.75rem 1.5rem;
  min-height: unset;
  overflow: visible !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-col-hc--inline .honeycomb-wrap {
  justify-content: center;
  overflow: visible !important;
}

.svc-col-hc--inline .honeycomb--v {
  overflow: visible !important;
  transform-origin: top left;
  transform: scale(1);
}

/* ── Equal height: stretch boxes to grid row height ── */
.svc-box {
  height: 100%;
}

/* ── Box base ── */
.svc-box {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Goals box */
.svc-box--goals {
  background: #fff;
  height: 100%;
  box-sizing: border-box;
}

/* ── Box header: icon + title inline ── */
.svc-box-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--border);
}

.svc-box-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.svc-box-icon--green {
  background: rgba(42, 118, 52, 0.12);
  color: var(--green);
}

.svc-box-icon--orange {
  background: rgba(232, 124, 50, 0.12);
  color: var(--orange);
}

.svc-box-title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin: 0;
}

/* ── Goals list ── */
.svc-goals-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.svc-goals-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.svc-goals-list li i {
  flex-shrink: 0;
  color: var(--green);
  font-size: 1rem;
  margin-top: 2px;
}

/* ── Capabilities list ── */
.svc-caps-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.svc-cap-item {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--green);
}

.svc-cap-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.svc-cap-item p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* ── Pair link animation states ── */
.svc-goals-list li {
  border-radius: 8px;
  padding: 0.85rem 1rem;
  margin: 0 -0.5rem;
  transition: background 0.4s ease, transform 0.4s ease;
}

.svc-goals-list li.pair-active {
  background: rgba(42, 118, 52, 0.12);
  transform: translateX(4px);
}

.svc-goals-list li.pair-active i {
  animation: goalPulse 0.6s ease;
  color: var(--green);
}

@keyframes goalPulse {
  0% {
    transform: scale(1);
  }

  40% {
    transform: scale(1.5);
  }

  100% {
    transform: scale(1);
  }
}

.svc-cap-item {
  transition: background 0.4s ease, border-left-color 0.4s ease,
    transform 0.4s ease, box-shadow 0.4s ease;
}

.svc-cap-item.pair-active {
  background: rgba(42, 118, 52, 0.07);
  border-left-color: var(--orange);
  transform: translateX(-4px);
  box-shadow: 0 3px 14px rgba(42, 118, 52, 0.12);
}

.svc-cap-item.pair-active strong {
  color: var(--orange);
}

/* ── SVG connector overlay ── */
.svc-connector-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
  z-index: 5;
}

.svc-connector-path {
  fill: none;
  stroke: var(--green);
  stroke-width: 1.5;
  stroke-dasharray: 5 5;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.svc-connector-path.visible {
  opacity: 0.65;
}

.svc-connector-dot {
  fill: var(--orange);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.svc-connector-dot.visible {
  opacity: 1;
}

/* ── Orange connector (caps → hexagons) ── */
.svc-connector-svg--hc {
  z-index: 6;
}

.svc-connector-path--orange {
  stroke: var(--orange);
}

.svc-connector-dot--orange {
  fill: var(--green);
}

/* ── Active hex glow when connected ── */
.hc-hex.hc-pair-active {
  filter: drop-shadow(0 0 14px rgba(232, 124, 50, 0.85)) drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
  transform: scale(1.10) translateY(-6px);
  z-index: 10;
}

.hc-hex.hc-pair-active .hc-outline-fill {
  background: rgba(255, 255, 255, 0.92);
}

/* ── Honeycomb section (full width below boxes) ── */
.svc-col-hc {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background: linear-gradient(145deg, #111c14 0%, #1a2b1e 55%, #0f1a12 100%);
  border-radius: 28px;
  padding: 1rem 1rem 1rem;
  position: relative;
  overflow: hidden;
}

.svc-col-hc::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(42, 118, 52, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 75% 30%, rgba(218, 110, 42, 0.12) 0%, transparent 55%);
  pointer-events: none;
}

.svc-hc-eyebrow {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0rem;
  text-align: center;
  position: relative;
}

/* ── Honeycomb wrapper ── */
.honeycomb-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  /* overflow-x: auto; */
  -webkit-overflow-scrolling: touch;
  position: relative;
}

/* ── Absolute-positioned flat-top hex layout ──
   Hex W=179px H=155px, col step=143px, col offset=82.5px, row step=165px
   Flat-top polygon: points at left/right, flat edges at top/bottom
   ── */
.honeycomb {
  position: relative;
  width: 1073px;
  flex-shrink: 0;
}

/* ── Hexagon shape ── */
.hc-hex {
  width: 215px;
  height: 186px;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  position: absolute;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
}

.hc-hex:hover {
  transform: scale(1.14) translateY(-10px);
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.45));
  z-index: 10;
}

/* ── Color classes ── */
.hc-green {
  background: var(--green);
}

.hc-orange {
  background: var(--orange);
}

.hc-white {
  background: #ffffff;
}

.hc-white .hc-icon {
  color: var(--green);
  filter: none;
}

.hc-white .hc-name {
  color: #1a3d1e;
  text-shadow: none;
}

.hc-green:hover {
  background: #1e5c20;
}

.hc-orange:hover {
  background: #c96820;
}

/* ── Outline (hollow) hexagon variants ── */
.hc-orange-outline {
  background: var(--orange);
}

.hc-green-outline {
  background: var(--green);
}

.hc-outline-fill {
  position: absolute;
  width: 100%;
  height: 100%;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  background: #fff;
  /* scaleX/scaleY tuned for equal ~5px border on all edges (W=130, H=112) */
  transform: scaleX(0.923) scaleY(0.911);
  transform-origin: center;
  z-index: 0;
}

.hc-orange-outline .hc-inner,
.hc-green-outline .hc-inner {
  z-index: 1;
  text-shadow: none !important;
}

.hc-orange-outline .hc-name,
.hc-green-outline .hc-name {
  color: #1a1a1a !important;
  text-shadow: none !important;
}

.hc-orange-outline .hc-icon {
  color: var(--orange) !important;
  filter: none !important;
}

.hc-green-outline .hc-icon {
  color: var(--green) !important;
  filter: none !important;
}

.hc-orange-outline .hc-icon,
.hc-green-outline .hc-icon {
  filter: none;
}

.hc-orange-outline:hover {
  background: var(--orange);
}

.hc-green-outline:hover {
  background: var(--green);
}

.hc-white:hover {
  background: #f0f9f1;
}

.hc-white:hover .hc-icon {
  color: var(--orange);
}

/* ── Content inside hex ── */
.hc-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
  text-align: center;
  overflow: hidden;
  gap: 6px;
}

.hc-icon {
  font-size: 2.1rem;
  color: rgba(255, 255, 255, 0.93);
  line-height: 1;
  display: block;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
}

.hc-hex:hover .hc-icon {
  transform: scale(1.2) translateY(-3px);
}

/* ── Honeycomb hover reveal (icon → text crossfade) ── */
.hc-inner {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hc-hex:hover .hc-inner {
  opacity: 0;
  transform: scale(0.72);
  pointer-events: none;
}

.hc-back {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 10px;
  opacity: 0;
  transform: scale(0.72);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2;
  pointer-events: none;
}

.hc-hex:hover .hc-back {
  opacity: 1;
  transform: scale(1);
}

.hc-back-text {
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

/* Outline hexes: fade fill on hover so solid colour shows through */
.hc-outline-fill {
  transition: opacity 0.3s ease;
}

.hc-orange-outline:hover .hc-outline-fill,
.hc-green-outline:hover .hc-outline-fill {
  opacity: 0;
}

/* Back-text colour matches border for outline hexes */
.hc-orange-outline .hc-back .hc-back-text {
  color: #fff;
}

.hc-green-outline .hc-back .hc-back-text {
  color: #fff;
}

.hc-name {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* ── Blank placeholder (invisible) ── */
.hc-blank {
  background: transparent;
  pointer-events: none;
  cursor: default;
}

.hc-blank:hover {
  transform: none !important;
  filter: none !important;
}

/* ── Ghost hex (outline only, decorative) ── */
.hc-ghost {
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  cursor: default;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
}

.hc-ghost:hover {
  transform: none !important;
  filter: none !important;
}

/* ── Responsive scaling ── */
@media (max-width: 991px) {
  .svc-2boxes {
    grid-template-columns: 1fr 1fr;
  }

  .honeycomb-wrap {
    justify-content: flex-start;
  }

  .honeycomb {
    transform: scale(0.81);
    transform-origin: top left;
    margin-bottom: 0px;
    width: auto;
    height: 800px;
    min-height: auto;

  }

  .hc-group.hc-group--right {
    bottom: 499px;
    left: -170px;
    position: absolute;
  }
}

@media (max-width: 767px) {
  .honeycomb {
    transform: scale(0.6);
    transform-origin: top left;
    margin-bottom: -184px;
  }

  .hc-icon {
    font-size: 1.7rem;
  }

  .hc-name {
    font-size: 0.6rem;
  }
}

@media (max-width: 575px) {
  .svc-2boxes {
    grid-template-columns: 1fr;
  }

  .honeycomb {
    transform: scale(0.50);
    transform-origin: top left;
    margin-bottom: -280px;
  }

  .hc-icon {
    font-size: 1.4rem;
  }

  .hc-name {
    font-size: 0.52rem;
  }
}

@media (max-width: 400px) {
  .honeycomb {
    transform: scale(0.34);
    transform-origin: top left;
    margin-bottom: -463px;
  }
}

/* ── White outline hexes (airline partner hexes) ── */
.hc-outline {
  width: 179px;
  height: 155px;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.3s ease, filter 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hc-outline:hover {
  transform: scale(1.07);
  filter: brightness(1.08);
  z-index: 2;
}

.hc-outline-orange {
  background: var(--orange);
}

.hc-outline-green {
  background: var(--green);
}

.hc-outline-blue {
  background: #1a6fc4;
}

.hc-outline-dark {
  background: #1c2b1e;
}


.hc-logo {
  max-width: 80%;
  max-height: 55%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.hc-logo-name {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 500;
  color: #111827;
  line-height: 1.3;
  text-align: center;
  margin: 0;
}

.hc-logo-name small {
  display: block;
  font-size: 0.52rem;
  font-weight: 400;
  color: #6b7280;
  margin-top: 2px;
}

.hc-logo-dot {
  color: var(--orange);
  font-size: 1.2em;
  font-weight: 900;
}

.hc-airline-name {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hc-blank {
  background: #2a7634;
  pointer-events: none;
  cursor: default;
}

.hc-blank:hover {
  transform: none !important;
  filter: none !important;
}

@media (max-width: 1199px) {
  .hc-outline {
    width: 150px;
    height: 130px;
  }
}

@media (max-width: 991px) {
  .hc-outline {
    width: 127px;
    height: 110px;
  }

  .hc-logo-name {
    font-size: 0.6rem;
  }
}

@media (max-width: 767px) {
  .hc-outline {
    width: 104px;
    height: 90px;
  }

  .hc-logo-name {
    font-size: 0.55rem;
  }
}

@media (max-width: 575px) {
  .hc-outline {
    width: 90px;
    height: 78px;
  }

  .hc-logo-name {
    font-size: 0.48rem;
  }
}

/* ============================================================
   HOW WE WORK — MODERN SNAKE FLOW  (hw-*)
   ============================================================ */

.hw-flow {
  max-width: 1200px;
  margin: 3rem auto 0;
}

/* ── Row ── */
.hw-row {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.hw-row--rtl {
  flex-direction: row-reverse;
}

/* ── Card ── */
.hw-card {
  flex: 1;
  background: #fff;
  border-radius: 16px;
  padding: 1.6rem 1.4rem 1.4rem;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  border-top: 3px solid #2a7634;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hw-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(42, 118, 52, 0.14);
}

/* large watermark number */
.hw-card::before {
  content: attr(data-n);
  position: absolute;
  bottom: -10px;
  right: 8px;
  font-family: var(--font-head);
  font-size: 5.5rem;
  font-weight: 900;
  color: rgba(42, 118, 52, 0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ── Step number badge ── */
.hw-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #2a7634;
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 800;
  border-radius: 50%;
  flex-shrink: 0;
  margin-bottom: 0.3rem;
}

/* ── Card text ── */
.hw-title {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
  margin: 0;
}

.hw-desc {
  font-size: 0.77rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ── Horizontal arrow connector ── */
.hw-arrow {
  flex: 0 0 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

/* line */
.hw-arrow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 4px;
  right: 4px;
  height: 2px;
  background: #2a7634;
  transform: translateY(-50%);
}

/* arrowhead right */
.hw-arrow--r::after {
  content: '';
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid #2a7634;
}

/* arrowhead left */
.hw-arrow--l::after {
  content: '';
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 9px solid #2a7634;
}

/* ── Row-turn bend connectors ── */
.hw-bend {
  height: 36px;
  position: relative;
}

/* right bend: vertical line on the far right */
.hw-bend--r::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #2a7634;
}

/* arrowhead at bottom pointing down */
.hw-bend--r::after {
  content: '';
  position: absolute;
  right: -5px;
  bottom: -1px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 9px solid #2a7634;
}

/* left bend */
.hw-bend--l::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #2a7634;
}

.hw-bend--l::after {
  content: '';
  position: absolute;
  left: -5px;
  bottom: -1px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 9px solid #2a7634;
}

/* ============================================================
   HOW WE WORK V2 — scroll-driven snake animation
   Snake line + boxes driven by scroll position.
   ============================================================ */

.how-flow--v2 {
  position: relative;
}

/* Box: NO initial transform so offsetLeft/offsetTop gives true layout centre */
.how-flow--v2 .how-path-item {
  position: relative;
  z-index: 3;
}

.how-flow--v2 .how-box {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(145deg, #3ab54a 0%, #2a7634 55%, #1b5225 100%);
  border: 2px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 0 0 5px rgba(42, 118, 52, 0.18), 0 6px 22px rgba(42, 118, 52, 0.45);
  position: relative;
  opacity: 1;
  transform: none;
}

/* Inner highlight shimmer */
.how-flow--v2 .how-box::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 10px;
  width: 40%;
  height: 30%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  pointer-events: none;
}

/* Outer pulse ring */
.how-flow--v2 .how-box::after {
  content: '';
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1.5px solid rgba(58, 181, 74, 0.55);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.28s ease 0.2s, transform 0.28s ease 0.2s;
  pointer-events: none;
}

/* Number: always visible */
.how-flow--v2 .how-box span {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
  display: inline-block;
  opacity: 1;
  transform: none;
}

@keyframes v2Float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

@keyframes v2RingPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.55;
  }

  50% {
    transform: scale(1.18);
    opacity: 0.15;
  }
}

/* Scroll-visible state */
.how-flow--v2 .how-box.v2-visible {
  opacity: 1;
  transform: none;
  animation: v2Float 3.2s ease-in-out infinite;
}

.how-flow--v2 .how-box.v2-visible::after {
  opacity: 1;
  transform: scale(1);
  animation: v2RingPulse 2.6s ease-in-out infinite 0.3s;
}

.how-flow--v2 .how-box.v2-visible span {
  opacity: 1;
  transform: none;
}

/* Hide all native dashed lines & arrows — SVG replaces them */
.how-flow--v2 .how-row--first::after,
.how-flow--v2 .how-row--rtl::before,
.how-flow--v2 .how-row--rtl::after,
.how-flow--v2>.how-row:last-child::before,
.how-flow--v2 .how-connector--r::before,
.how-flow--v2 .how-connector--l::before,
.how-flow--v2 .how-row--first .how-path::before,
.how-flow--v2 .how-row--rtl .how-path::before,
.how-flow--v2>.how-row:last-child .how-path::before {
  display: none !important;
}

.how-flow--v2 .how-chev::after,
.how-flow--v2 .how-turn-arrow--d::after {
  display: none;
}

/* SVG overlay — sits above label cards but below number boxes */
.how-v2-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
  z-index: 2;
}

/* Ghost dashed path — shows the full route as a hint */
.how-v2-svg .v2-path-bg {
  fill: none;
  stroke: #2a7634;
  stroke-width: 2;
  stroke-dasharray: 8 18;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.18;
}

/* Solid snake — stroke-dashoffset scrubbed by scroll */
.how-v2-svg .v2-path-anim {
  fill: none;
  stroke: #2a7634;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 1;
}

/* Shiny travelling dot at the tip of the drawn line */
.v2-shine-dot {
  transition: opacity 0.2s ease;
}

/* Labels: premium card style */
.how-flow--v2 .how-label {
  background: linear-gradient(155deg, #fff 65%, #f2faf4 100%);
  border-radius: 14px;
  padding: 1rem 0.9rem 1rem 1.1rem;
  margin: 0 0.6rem;
  box-shadow: 0 4px 18px rgba(42, 118, 52, 0.10), 0 1px 4px rgba(0, 0, 0, 0.06);
  border: none;
  border-left: 3px solid #2a7634;
  font-size: 0.77rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

/* shine sweep on hover */
.how-flow--v2 .how-label::before {
  content: '';
  position: absolute;
  top: 0;
  left: -90%;
  width: 55%;
  height: 100%;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.7) 50%, transparent 70%);
  transform: skewX(-12deg);
  transition: left 0.55s ease;
  pointer-events: none;
}

.how-flow--v2 .how-label:hover::before {
  left: 140%;
}

.how-flow--v2 .how-label:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(42, 118, 52, 0.18), 0 2px 8px rgba(0, 0, 0, 0.08);
}

.how-flow--v2 .how-label strong {
  color: #1b6b28;
  font-size: 0.83rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  display: block;
}

/* ============================================================
   HOW WE WORK — SNAKE FLOW DIAGRAM (original how-*)
   ============================================================ */
.how-flow {
  margin-top: 3rem;
  overflow: visible;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Row container ── */
.how-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
  position: relative;
  /* needed for absolute pseudo-elements */
}

/* RTL rows — reverse both layers */
.how-row--rtl .how-path {
  flex-direction: row-reverse;
}

.how-row--rtl .how-labels {
  flex-direction: row-reverse;
}

/* ── PATH: boxes + arrows on one perfectly centred line ── */
.how-path {
  display: flex;
  align-items: center;
  position: relative;
}

/* ── HORIZONTAL DASHED LINE — varies by row type ──
   Row 1 (LTR, first): box-1 center → RIGHT edge (meets connector--r)
   Row 2 (RTL):        LEFT edge → RIGHT edge (meets both connectors)
   Row 3 (LTR, last):  LEFT edge → box-12 center (meets connector--l)
   ────────────────────────────────────────────────────────────── */
.how-row--first .how-path::before {
  content: '';
  position: absolute;
  top: calc(50% - 1px);
  left: calc((100% - 342px) / 8);
  right: 0;
  height: 2px;
  background-image: repeating-linear-gradient(to right, var(--green) 0, var(--green) 8px, transparent 8px, transparent 24px);
  z-index: 0;
  pointer-events: none;
}

.how-row--rtl .how-path::before {
  content: '';
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  right: 0;
  height: 2px;
  background-image: repeating-linear-gradient(to right, var(--green) 0, var(--green) 8px, transparent 8px, transparent 24px);
  z-index: 0;
  pointer-events: none;
}

.how-flow>.how-row:last-child .how-path::before {
  content: '';
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  right: calc((100% - 342px) / 8);
  /* 4-box row: 3 × 114px chevrons */
  height: 2px;
  background-image: repeating-linear-gradient(to right, var(--green) 0, var(--green) 8px, transparent 8px, transparent 24px);
  z-index: 0;
  pointer-events: none;
}

/* ── VERTICAL CONNECTORS drawn on the ROW elements ──
   path midpoint = 41px from row top (boxes are 82px tall)
   Right-side connector (rows 1→2):
     row-1::after  = path-midpoint → row-1 bottom  (right: 0)
     row-2::before = row-2 top → path-midpoint      (right: 0)
   Left-side connector (rows 2→3):
     row-2::after  = path-midpoint → row-2 bottom  (left: 0)
     row-3::before = row-3 top → path-midpoint      (left: 0)
   ────────────────────────────────────────────────────────────── */
.how-row--first::after {
  content: '';
  position: absolute;
  top: 48px;
  right: 0;
  width: 2px;
  bottom: 0;
  background-image: repeating-linear-gradient(to bottom, var(--green) 0, var(--green) 8px, transparent 8px, transparent 24px);
  z-index: 0;
}

.how-row--rtl::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 48px;
  background-image: repeating-linear-gradient(to bottom, var(--green) 0, var(--green) 8px, transparent 8px, transparent 24px);
  z-index: 0;
}

.how-row--rtl::after {
  content: '';
  position: absolute;
  top: 48px;
  left: 0;
  width: 2px;
  bottom: 0;
  background-image: repeating-linear-gradient(to bottom, var(--green) 0, var(--green) 8px, transparent 8px, transparent 24px);
  z-index: 0;
}

.how-flow>.how-row:last-child::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 48px;
  background-image: repeating-linear-gradient(to bottom, var(--green) 0, var(--green) 8px, transparent 8px, transparent 24px);
  z-index: 0;
}

/* ── PATH ITEM (wraps one box, flex: 1) ── */
.how-path-item {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ── NUMBERED BOX ── */
.how-box {
  width: 82px;
  height: 82px;
  border: 2.5px solid var(--orange);
  background: var(--bg-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.10);
  flex-shrink: 0;
  z-index: 2;
}

.how-box span {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

/* ── CHEVRON ARROWS (80px wide, visually prominent) ── */
.how-chev {
  flex: 0 0 114px;
  width: 114px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.how-chev::after {
  content: '';
  display: block;
  width: 110px;
  height: 96px;
  background-image: url('../assets/images/process-arrow.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Right arrow — image already points right, no flip needed */
.how-chev--r::after {
  transform: none;
}

/* Left arrow — mirror the image horizontally */
.how-chev--l::after {
  transform: scaleX(-1);
}

/* ── LABELS (match path widths exactly) ── */
.how-labels {
  display: flex;
  margin-top: 0.9rem;
  margin-bottom: 0.25rem;
}

.how-flow--v2 .how-labels {
  margin-top: 1.1rem;
}

.how-label {
  flex: 1;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: 1.55;
  padding: 0 0.5rem;
}

.how-label strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.how-label-gap {
  flex: 0 0 114px;
}

/* ── TURN CONNECTORS (spacing + vertical line in gap + arrow) ── */
.how-connector {
  position: relative;
  height: 80px;
  overflow: visible;
}

/* Vertical dashed line bridging the gap between rows */
.how-connector--r::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 2px;
  background-image: repeating-linear-gradient(to bottom, var(--green) 0, var(--green) 8px, transparent 8px, transparent 24px);
}

.how-connector--l::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background-image: repeating-linear-gradient(to bottom, var(--green) 0, var(--green) 8px, transparent 8px, transparent 24px);
}

/* Down-pointing turn arrow — PNG rotated 90°, centred on the connector line */
.how-turn-arrow--d {
  position: absolute;
  bottom: -10px;
  width: 110px;
  height: 96px;
  overflow: visible;
}

.how-turn-arrow--d::after {
  content: '';
  display: block;
  width: 110px;
  height: 96px;
  background-image: url('../assets/images/process-arrow.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(90deg);
  transform-origin: center center;
}

/* right: -55px centres the 110px-wide element on the right: 0 line */
.how-connector--r .how-turn-arrow--d {
  right: -55px;
}

/* left: -55px centres the 110px-wide element on the left: 0 line */
.how-connector--l .how-turn-arrow--d {
  left: -55px;
}

.service-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  border-color: var(--green-border);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card--highlight {
  background: var(--green);
  border-color: var(--green);
}

.service-card--highlight::after {
  display: none;
}

.service-card--highlight:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  box-shadow: var(--shadow-green);
}

.service-card--highlight h4,
.service-card--highlight p {
  color: #fff !important;
}

.service-card--highlight .service-number {
  color: rgba(255, 255, 255, 0.18);
}

.service-card--highlight .service-icon {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.service-number {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 900;
  color: #eef2f7;
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.04em;
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--green-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--green);
  margin-bottom: 1rem;
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  background: var(--green);
  color: #fff;
}

.service-card h4 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

.services-closing {
  text-align: center;
  padding: 3.5rem 0 0;
  border-top: 1.5px solid var(--border);
  margin-top: 3rem;
}

.closing-quote {
  font-family: var(--font-head);
  font-size: clamp(1rem, 1.8vw, 1.45rem);
  font-weight: 600;
  font-style: italic;
  color: var(--text-dark);
  max-width: 820px;
  margin-inline: auto;
  line-height: 1.65;
}


/* ============================================================
   PORTFOLIO SLIDER
   ============================================================ */

/* Portfolio section — left-align all header text */
#cases .section-eyebrow {
  justify-content: flex-start;
}

.port-footer-arrows {
  display: none;
}

#cases .section-title {
  text-align: left;
}

#cases .section-sub {
  margin-inline: 0;
  text-align: left;
  margin-bottom: 0;
}

/* About — no sub-text after title, remove its bottom margin so mb-4 alone controls the gap */
#about .section-title {
  margin-bottom: 0;
}

/* Portfolio header row — left text + right arrows */
.port-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.port-header-left {
  flex: 1;
  min-width: 0;
}

.port-header-left .section-title {
  white-space: nowrap;
}

.port-header-left .section-sub {
  white-space: nowrap;
}

.port-header-arrows {
  padding-top: 0.35rem;
}

.port-header-arrows {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-shrink: 0;
}

.port-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border-mid);
  background: var(--bg-white);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.port-arrow-btn:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  transform: scale(1.08);
}

.port-arrow-btn:disabled {
  opacity: 1;
  cursor: pointer;
  transform: none;
}

/* Outer wrapper — aligns left edge with container, bleeds right */
.port-slider-outer {
  padding-left: max(1.5rem, calc((100vw - 1600px) / 2 + 1.5rem));
  padding-bottom: 0rem;
  padding-top: 14px;
  /* room for card hover lift */
  overflow-x: clip;
  overflow-y: visible;
  cursor: grab;
}

.port-slider-outer.grabbing {
  cursor: grabbing;
}

/* Inner flex track */
.port-slider {
  display: flex;
  gap: 20px;
  width: max-content;
  align-items: flex-start;
  transition: transform 0.15s ease;
  will-change: transform;
}

/* ============================================================
   PORTFOLIO CARDS
   ============================================================ */
.port-card {
  flex: 0 0 300px;
  background: var(--bg-white);
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  user-select: none;
}

.port-card:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
  transform: translateY(-6px);
}

.port-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 14px;
  margin: 10px;
  width: calc(100% - 20px);
}

.port-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.port-card:hover .port-img {
  transform: scale(1.05);
}

.port-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #fff;
  color: var(--text-dark);
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.port-body {
  padding: 0.75rem 1.25rem 1.5rem;
}

.port-rating {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.port-rating i {
  color: #f59e0b;
  font-size: 0.75rem;
}

.port-rating span {
  color: var(--text-light);
}

.port-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.port-location,
.port-duration {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.port-location i,
.port-duration i {
  color: var(--green);
  margin-right: 0.3rem;
}

.port-footer {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.port-pax {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.port-pax i {
  color: var(--green);
  margin-right: 0.3rem;
}

/* ============================================================
   RUSSIA SECTION
   ============================================================ */

/* Desktop: 2-col grid — image left, heading+list stacked right */
.russia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 2rem 3rem;
  align-items: start;
}

.russia-img-col {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: stretch;
}

.russia-heading {
  grid-column: 2;
  grid-row: 1;
}

.russia-list-col {
  grid-column: 2;
  grid-row: 2;
}

/* Mobile: single column — heading, image, list */
@media (max-width: 991px) {
  .russia-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .russia-heading {
    order: 1;
    margin-bottom: 0;
  }

  .russia-img-col {
    order: 2;
  }

  .russia-list-col {
    order: 3;
  }

  .russia-heading .section-title {
    margin-bottom: 0 !important;
  }
}

.russia-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
}

.russia-img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.russia-img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--green);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
}

.russia-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  counter-reset: russia-items;
}

.russia-list li {
  counter-increment: russia-items;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1rem 1rem 1.1rem;
  border-radius: 14px;
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

/* Large faded counter watermark */
.russia-list li::after {
  content: counter(russia-items, decimal-leading-zero);
  position: absolute;
  right: -0.4rem;
  bottom: -0.6rem;
  font-family: var(--font-head);
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--green);
  opacity: 0.07;
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.05em;
}

.russia-list li:hover {
  border-color: var(--green-border);
  box-shadow: 0 6px 22px rgba(42, 118, 52, 0.10);
  background: var(--green-bg);
}

/* Button cell — no card styling */
.russia-list-btn {
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
  display: flex !important;
  align-items: center !important;
  padding: 0 !important;
}

.russia-list-btn::after {
  display: none !important;
}

.russia-num {
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--green);
  background: rgba(42, 118, 52, 0.12);
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.03em;
  flex-shrink: 0;
  margin-top: 1px;
  transition: background 0.22s ease, color 0.22s ease;
}

.russia-list li:hover .russia-num {
  background: var(--green);
  color: #fff;
}

.russia-text {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  line-height: 1.5;
}

/* ============================================================
   CONTACT
   ============================================================ */

/* Outer card — two columns side by side */
.contact-card {
  display: grid;
  grid-template-columns: 430px 1fr;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.10);
}

/* ── Left green panel ── */
.contact-info-panel {
  background: var(--green);
  padding: 2.75rem 2.25rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-panel-title {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.65rem;
  position: relative;
  z-index: 1;
}

.contact-panel-sub {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  margin-bottom: 2.25rem;
  position: relative;
  z-index: 1;
}

.contact-panel-items {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  flex: 1;
  position: relative;
  z-index: 1;
}

.contact-panel-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-panel-item>i {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-panel-item div {
  display: flex;
  flex-direction: column;
}

.contact-panel-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 0.2rem;
}

.contact-panel-item a,
.contact-panel-item span {
  font-size: 0.88rem;
  color: #fff;
  line-height: 1.55;
  text-decoration: none;
}

.contact-panel-item a:hover {
  text-decoration: underline;
}

/* Social icons */
.contact-panel-socials {
  display: flex;
  gap: 0.65rem;
  margin-top: 2.25rem;
  position: relative;
  z-index: 1;
}

.contact-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.contact-social-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

/* Decorative circles */
.contact-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.contact-deco--1 {
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.07);
  bottom: -60px;
  right: -60px;
}

.contact-deco--2 {
  width: 140px;
  height: 140px;
  background: rgba(255, 255, 255, 0.05);
  bottom: 60px;
  right: 50px;
}

/* ── Right form panel ── */
.contact-form-panel {
  background: var(--bg-white);
  padding: 2.75rem 2.5rem;
  display: flex;
  flex-direction: column;
}

.contact-form-panel form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Message textarea — expands to fill remaining card height */
.contact-msg-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.contact-msg-field textarea {
  flex: 1;
  min-height: 110px;
  resize: none;
}

.contact-input {
  background: var(--bg-soft) !important;
  border: 1.5px solid var(--border) !important;
  color: var(--text-dark) !important;
  border-radius: var(--radius-sm) !important;
  padding: 0.8rem 1rem !important;
  font-size: 0.9rem !important;
  transition: border-color var(--transition), box-shadow var(--transition) !important;
}

.contact-input::placeholder {
  color: var(--text-light) !important;
}

.contact-input:focus {
  border-color: var(--green) !important;
  box-shadow: 0 0 0 3px var(--green-glow) !important;
  background: var(--bg-white) !important;
  outline: none !important;
}

.form-label {
  color: var(--text-muted);
  font-family: var(--font-head);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.form-success-msg {
  background: rgba(42, 118, 52, 0.15);
  border: 1px solid rgba(42, 118, 52, 0.5);
  color: #c8f0cd;
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-error-msg {
  background: rgba(220, 53, 69, 0.15);
  border: 1px solid rgba(220, 53, 69, 0.5);
  color: #f5c6cb;
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
}


/* ============================================================
   CONTACT V2 — Idea 4: Split Background
   ============================================================ */
.contact-v2-section {
  width: 100%;
  background: linear-gradient(145deg, #0d1f10 0%, #111827 55%, #0a1a0d 100%);
  padding: 110px 0 80px;
}

/* Ensure dark background is visible around the glass card */
.contact-v2-section>.container-custom {
  padding-inline: max(1.5rem, calc((100vw - 1200px) / 2));
}

.contact-v2-section .section-eyebrow {
  color: var(--orange);
}

.contact-v2-section .section-eyebrow::before,
.contact-v2-section .section-eyebrow::after {
  background: rgba(255, 255, 255, 0.45);
}

.contact-v2-section .section-title {
  color: #ffffff;
}

.contact-v2-section .section-title .text-green,
.contact-v2-section .section-title .text-orange {
  color: var(--orange) !important;
}

.contact-v2-section .section-sub {
  color: rgba(255, 255, 255, 0.65);
}

.contact-v2-wrap {
  display: flex;
  align-items: stretch;
  max-width: 1160px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 1px 0 rgba(255, 255, 255, 0.18) inset;
  border: 1px solid rgba(255, 255, 255, 0.13);
  padding-inline: 0;
}

/* ── LEFT panel ── */
.cv2-left {
  position: relative;
  flex: 0 0 38%;
  background: rgba(28, 82, 36, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  padding: 56px 44px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Top shimmer highlight on left panel */
.cv2-left::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  pointer-events: none;
  z-index: 3;
}

.cv2-left-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* decorative watermark letter */
.cv2-deco-letter {
  position: absolute;
  bottom: -40px;
  right: -20px;
  font-family: var(--font-head);
  font-size: 18rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

.cv2-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.1rem;
}

.cv2-headline {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 2.6vw, 2.9rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.1rem;
}

.cv2-sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Trust row */
.cv2-trust {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 0;
  margin-bottom: 2rem;
}

.cv2-trust-item {
  flex: 1;
  text-align: center;
}

.cv2-trust-num {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 2px;
}

.cv2-trust-lbl {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
}

.cv2-trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
}

/* Detail rows */
.cv2-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: auto;
}

.cv2-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  line-height: 1.6;
  text-decoration: none;
  transition: color var(--transition);
}

.cv2-detail-row:hover {
  color: #fff;
}

.cv2-detail-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  color: #fff;
  margin-top: 1px;
}

/* Socials */
.cv2-socials {
  display: flex;
  gap: 0.6rem;
  margin-top: 2rem;
}

.cv2-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all var(--transition);
  text-decoration: none;
}

.cv2-social-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

/* ── RIGHT panel ── */
.cv2-right {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Top shimmer highlight on right panel */
.cv2-right::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  pointer-events: none;
  z-index: 3;
}

.cv2-right-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.cv2-form-title {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.cv2-form-sub {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Form grid */
.cv2-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.4rem;
  margin-bottom: 1rem;
}

.cv2-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.cv2-field--full {
  margin-bottom: 1rem;
}

.cv2-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.cv2-label span {
  color: var(--orange);
}

.cv2-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.10);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  border-radius: 10px;
  padding: 0.7rem 1rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}

.cv2-input:focus {
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.15);
  outline: none;
}

.cv2-input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.cv2-select {
  cursor: pointer;
}

.cv2-select option {
  background: #1a3a20;
  color: #fff;
}

/* Modern file input */
.cv2-file-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.cv2-file-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.cv2-file-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #2a7634;
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.62rem 1.1rem;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
}

.cv2-file-btn:hover {
  background: #1e5526;
  transform: translateY(-1px);
}

.cv2-file-btn i {
  font-size: 0.9rem;
}

.cv2-file-name {
  font-size: 0.78rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 140px;
}

.cv2-textarea {
  resize: vertical;
  min-height: 110px;
}

/* Submit row */
.cv2-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.5rem;
}

.cv2-privacy {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

.cv2-privacy a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
}

.cv2-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.cv2-submit-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 124, 50, 0.35);
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: #000;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: inline-block;
  margin-bottom: 0.4rem;
}

.footer-logo {
  height: 42px;
  width: auto;
  display: block;
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  letter-spacing: 0.06em;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

.footer-nav a {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: #2a7634;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

/* ============================================================
   MICE BIG LETTERS SECTION
   ============================================================ */
.mice-section {
  background: var(--bg-white);
  padding: 0;
  overflow: hidden;
}

.mice-big-row {
  display: flex;
  width: 100%;
  border-top: 1.5px solid var(--border);
  border-bottom: 1.5px solid var(--border);
}

.mice-big-item {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  border-right: 1.5px solid var(--border);
  cursor: pointer;
  overflow: hidden;
  min-height: 280px;
  background: var(--bg-white);
}

.mice-big-item:last-child {
  border-right: none;
}

/* Blurred color blob layer — fills the box on hover */
.mice-big-item::before {
  content: '';
  position: absolute;
  inset: -20%;
  border-radius: 50%;
  opacity: 0;
  filter: blur(20px);
  transform: scale(0.85);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 0;
  will-change: opacity, transform;
}

.mice-big-item--m::before {
  background: var(--orange);
}

.mice-big-item--i::before {
  background: var(--green);
}

.mice-big-item--c::before {
  background: var(--orange);
}

.mice-big-item--e::before {
  background: var(--green);
}

.mice-big-item--event::before {
  background: var(--text-dark);
}

.mice-big-item:hover::before,
.mice-big-item.active::before {
  opacity: 1;
  transform: scale(1.3);
}

/* Letter */
.mice-big-letter {
  display: block;
  position: relative;
  z-index: 1;
  font-family: var(--font-head);
  font-size: clamp(5rem, 14vw, 18rem);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.04em;
  padding: 0.2em 0.15em 0.25em;
  transition: color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
  will-change: transform, opacity;
  user-select: none;
}

.mice-big-item--event {
  justify-content: center;
}

.mice-big-item--event .mice-big-letter {
  font-size: clamp(2.2rem, 5.5vw, 7rem);
  letter-spacing: -0.02em;
  padding-bottom: 0;
}

/* Per-item letter colors (default) */
.mice-big-item--m .mice-big-letter {
  color: var(--orange);
}

.mice-big-item--i .mice-big-letter {
  color: var(--green);
}

.mice-big-item--c .mice-big-letter {
  color: var(--orange);
}

.mice-big-item--e .mice-big-letter {
  color: var(--green);
}

.mice-big-item--event .mice-big-letter {
  color: var(--text-dark);
}

/* Letter fades + lifts on hover */
.mice-big-item:hover .mice-big-letter,
.mice-big-item.active .mice-big-letter {
  color: #fff;
  transform: translateY(-8px);
  opacity: 0.15;
}

/* Description card — slides up from bottom */
.mice-big-card {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 1.25rem 1.5rem 1.5rem;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.35s ease;
  pointer-events: none;
}

.mice-big-item:hover .mice-big-card,
.mice-big-item.active .mice-big-card {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mice-card-title {
  display: block;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  color: rgba(255, 255, 255, 0.75);
}

.mice-card-text {
  font-size: 1.2rem;
  line-height: 1.65;
  color: #fff;
  margin: 0;
}

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


/* ============================================================
   MOVED FROM index.html — inline <style> blocks
   ============================================================ */

/* ── Block 1: Animate.css replacements ── */
/* Replaces animate.css — only the 3 animations actually used */
.animate__animated {
  animation-fill-mode: both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-24px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(24px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInUp {
  animation-name: fadeInUp;
}

.animate__fadeInLeft {
  animation-name: fadeInLeft;
}

.animate__fadeInRight {
  animation-name: fadeInRight;
}

/* ── Block 2: INDEX V2 Interactive Enhancements ── */
/* ============================================================
     INDEX V2 — INTERACTIVE ENHANCEMENTS
  ============================================================ */

/* ── Preloader ── */
#v2-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #0a1a0d;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

#v2-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.v2-loader-logo {
  width: 110px;
  margin-bottom: 2.5rem;
  animation: v2LogoPulse 1.4s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(42, 118, 52, 0.5));
}

@keyframes v2LogoPulse {

  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 20px rgba(42, 118, 52, 0.5));
  }

  50% {
    transform: scale(1.06);
    filter: drop-shadow(0 0 35px rgba(42, 118, 52, 0.8));
  }
}

.v2-loader-track {
  width: 220px;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 1.2rem;
}

.v2-loader-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #2a7634, #e87c32);
  border-radius: 3px;
  transition: width 0.08s linear;
}

.v2-loader-text {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  font-family: 'Open Sans', sans-serif;
}

.v2-loader-pct {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

/* ── Calibration mode cursor ── */
html.calib-mode #hero,
html.calib-mode #hero * {
  cursor: crosshair !important;
}

/* ── Scroll Progress Bar ── */
#v2Progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #2a7634 0%, #e87c32 100%);
  z-index: 10002;
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

/* ── Back to Top ── */
#v2BackTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(42, 118, 52, 0.45);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

#v2BackTop.v2-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#v2BackTop:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(42, 118, 52, 0.55);
}

/* ── Hero Particles ── */
.v2-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.v2-dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  animation: v2DotFloat linear infinite;
  will-change: transform;
}

@keyframes v2DotFloat {
  0% {
    transform: translateY(110vh) scale(0);
    opacity: 0;
  }

  8% {
    opacity: 1;
  }

  92% {
    opacity: 1;
  }

  100% {
    transform: translateY(-80px) scale(1);
    opacity: 0;
  }
}

/* ── Hero headline: bigger ── */
.hero-headline {
  font-size: clamp(3.8rem, 8vw, 9rem) !important;
}

.hero-headline-rest {
  font-size: clamp(3.8rem, 8vw, 7rem) !important;

}

/* ── Hero logo GIF (replaces MICE letters) ── */
.hero-logo-gif {
  height: clamp(3.8rem, 8vw, 9rem);
  width: auto;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 0.15em;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.4));
}

/* ── Typed Cursor ── */
.typed-cursor {
  color: #e87c32;
  font-weight: 300;
}

/* ── Word-split reveal ── */
.v2-word {
  display: inline-block;
}

/* ── Ripple ── */
.v2-ripple {
  position: relative;
  overflow: hidden;
}

.v2-ripple-wave {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transform: scale(0);
  pointer-events: none;
  animation: v2Ripple 0.65s linear forwards;
}

@keyframes v2Ripple {
  to {
    transform: scale(4.5);
    opacity: 0;
  }
}

/* ── Magnetic buttons base ── */
.v2-mag {
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* ── Stat glow when counting ── */
@keyframes v2StatGlow {

  0%,
  100% {
    color: inherit;
    text-shadow: none;
  }

  50% {
    color: #e87c32;
    text-shadow: 0 0 22px rgba(232, 124, 50, 0.45);
  }
}

.v2-counting {
  animation: v2StatGlow 0.8s ease-in-out 2;
}

/* ── Russia list stagger ── */
.russia-list li.v2-list-item {
  opacity: 1;
  transform: none;
}

/* ── Eyebrow animated underline ── */
.section-eyebrow {
  position: relative;
  display: inline-block;
}

.section-eyebrow::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #2a7634;
  border-radius: 2px;
}

/* keep class for legacy JS, no visual difference needed */
.v2-eyebrow-in .section-eyebrow::after {
  width: 100%;
}

/* ── Destination tag: top-right, visible on hover only ── */
.dest-tag {
  position: absolute !important;
  top: 14px !important;
  right: 14px !important;
  left: auto !important;
  bottom: auto !important;
  margin: 0 !important;
  opacity: 0 !important;
  transform: translateY(-6px) !important;
  transition: opacity 0.3s ease, transform 0.3s ease !important;
  z-index: 5;
}

.dest-card:hover .dest-tag,
.dest-card.active .dest-tag {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ── Destination accent line ── */
.dest-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--orange);
  border-radius: 3px 3px 0 0;
  transition: width 0.4s ease;
  z-index: 10;
}

.dest-card.active::after {
  width: 70%;
}

/* ── Portfolio 3D perspective ── */
.port-card {
  transform-style: preserve-3d;
  transition: transform 0.15s ease, box-shadow 0.3s ease !important;
}

/* ── Case card shimmer on load ── */
@keyframes v2Shimmer {
  0% {
    background-position: -400px 0;
  }

  100% {
    background-position: 400px 0;
  }
}

.v2-shimmer::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 5;
  background: linear-gradient(90deg, transparent 25%, rgba(255, 255, 255, 0.35) 50%, transparent 75%);
  background-size: 400px 100%;
  animation: v2Shimmer 1.2s ease forwards;
  border-radius: inherit;
  pointer-events: none;
}

/* ── CTA section headline reveal ── */
@keyframes v2CTAReveal {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ── Challenge pill hover only ── */
.challenge-pill {
  opacity: 1;
  transform: none;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease !important;
}

/* ── Form field focus glow ── */
.cv2-input:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12), 0 0 20px rgba(42, 118, 52, 0.15) !important;
}

/* ── Footer link underline ── */
footer .footer-nav a {
  position: relative;
  display: inline-block;
}

footer .footer-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}

footer .footer-nav a:hover::after {
  width: 100%;
}

/* ── Section entrance (clip-path reveal) ── */
.v2-clip-reveal {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.v2-clip-reveal.v2-in {
  clip-path: inset(0 0 0% 0);
}

/* ── Number ticker ── */
.stat-number {
  transition: color 0.4s ease, text-shadow 0.4s ease;
}

/* ── Scroll-reveal fade-up (used globally) ── */
.v2-fadeup {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.v2-fadeup.v2-in {
  opacity: 1;
  transform: none;
}

/* ── Image parallax wrapper ── */
.russia-img-wrap {
  overflow: hidden;
}

.russia-img {
  transform-origin: center center;
  will-change: transform;
}

/* ── Tooltip on nav links ── */
.nav-btn {
  position: relative;
}

/* ── Glowing border on dest-card hover ── */
.dest-card {
  transition: flex 0.45s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease !important;
}

.dest-card:hover {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35) !important;
}

/* ============================================================
     V2 DE-BOX — Organic, flowing design
  ============================================================ */

/* ── Section blob backgrounds (organic depth) ── */
#about {
  background:
    radial-gradient(ellipse 520px 420px at 102% 2%, rgba(42, 118, 52, 0.055) 0%, transparent 68%),
    radial-gradient(ellipse 380px 360px at -2% 98%, rgba(232, 124, 50, 0.04) 0%, transparent 65%),
    #ffffff !important;
}

#services {
  background:
    radial-gradient(ellipse 620px 520px at -5% 55%, rgba(42, 118, 52, 0.045) 0%, transparent 65%),
    radial-gradient(ellipse 440px 380px at 105% 8%, rgba(232, 124, 50, 0.035) 0%, transparent 65%),
    #ffffff !important;
}

#cases {
  background:
    radial-gradient(ellipse 540px 480px at 95% 85%, rgba(42, 118, 52, 0.055) 0%, transparent 65%),
    radial-gradient(ellipse 360px 360px at 5% 15%, rgba(42, 118, 52, 0.03) 0%, transparent 65%),
    #f0f3f7 !important;
}

#russia {
  background:
    radial-gradient(ellipse 600px 420px at 108% 98%, rgba(42, 118, 52, 0.06) 0%, transparent 65%),
    radial-gradient(ellipse 420px 320px at -5% 8%, rgba(232, 124, 50, 0.04) 0%, transparent 65%),
    #ffffff !important;
}

#destinations {
  background:
    radial-gradient(ellipse 480px 380px at 50% 50%, rgba(42, 118, 52, 0.035) 0%, transparent 65%),
    #f7f9fc !important;
}

/* ── Cards: invisible by default, box appears on hover ── */
.case-card {
  border: none !important;
  border-radius: 28px !important;
  box-shadow: none !important;
  background: transparent !important;
}

.case-card:hover {
  box-shadow: 0 14px 52px rgba(0, 0, 0, 0.10) !important;
  background: var(--bg-white) !important;
  border: none !important;
}

.port-card {
  border: none !important;
  border-radius: 28px !important;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.07) !important;
}

.port-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12) !important;
}

.port-img-wrap {
  border-radius: 18px !important;
}

.service-card {
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  border-radius: 24px !important;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.045) !important;
}

.service-card:hover {
  box-shadow: 0 12px 40px rgba(42, 118, 52, 0.10) !important;
}

.offer-card {
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  border-radius: 24px !important;
}

/* ── How-flow: compact sizing ── */
.how-flow--v2 .how-box {
  width: 52px !important;
  height: 52px !important;
}

.how-flow--v2 .how-box span {
  font-size: 1rem !important;
}

.how-flow--v2 .how-labels {
  margin-top: 0.55rem !important;
}

.how-flow--v2 .how-label {
  padding: 0.65rem 0.75rem 0.65rem 0.9rem !important;
  font-size: 0.73rem !important;
  border-radius: 22px !important;
}

.how-flow--v2 .how-label strong {
  font-size: 0.78rem !important;
  margin-bottom: 0.25rem !important;
}

.how-connector {
  height: 28px !important;
}

.how-flow--v2 .how-labels {
  margin-bottom: 0 !important;
}

.how-flow {
  margin-top: 2rem !important;
}

.how-flow--v2 .how-box::after {
  inset: -5px !important;
}

/* ── How-flow alternating orange/green boxes ── */
/* Even positions (2nd and 4th in each row) = orange */
.how-flow--v2 .how-path>.how-path-item:nth-child(3) .how-box,
.how-flow--v2 .how-path>.how-path-item:nth-child(7) .how-box {
  background: linear-gradient(145deg, #f0913a 0%, #e87c32 55%, #c5611e 100%) !important;
  box-shadow: 0 0 0 5px rgba(232, 124, 50, 0.18), 0 6px 22px rgba(232, 124, 50, 0.40) !important;
}

.how-flow--v2 .how-path>.how-path-item:nth-child(3) .how-box::after,
.how-flow--v2 .how-path>.how-path-item:nth-child(7) .how-box::after {
  border-color: rgba(240, 145, 58, 0.55) !important;
}

/* Match label accent color to box color */
.how-flow--v2 .how-labels>.how-label:nth-child(3),
.how-flow--v2 .how-labels>.how-label:nth-child(7) {
  border-left-color: #e87c32 !important;
  background: linear-gradient(155deg, #fff 65%, #fff8f3 100%) !important;
}

.how-flow--v2 .how-labels>.how-label:nth-child(3) strong,
.how-flow--v2 .how-labels>.how-label:nth-child(7) strong {
  color: #e87c32 !important;
}

/* RTL row: positions 1 and 5 are the orange boxes */
.how-flow--v2 .how-row--rtl .how-labels>.how-label:nth-child(1) strong,
.how-flow--v2 .how-row--rtl .how-labels>.how-label:nth-child(5) strong {
  color: #e87c32 !important;
}

.how-flow--v2 .how-row--rtl .how-labels>.how-label:nth-child(1),
.how-flow--v2 .how-row--rtl .how-labels>.how-label:nth-child(5) {
  border-right-color: #e87c32 !important;
  background: linear-gradient(335deg, #fff 65%, #fff8f3 100%) !important;
}

/* ── Row 1 & 3 (LTR): labels left-aligned ── */
.how-flow--v2 .how-row--first .how-label,
.how-flow--v2 .how-row:last-child .how-label {
  text-align: left !important;
}

/* ── Row 2 (RTL): labels right-aligned, border on right ── */
.how-flow--v2 .how-row--rtl .how-label {
  text-align: right !important;
  border-left: none !important;
  border-right: 3px solid #2a7634;
  background: linear-gradient(335deg, #fff 65%, #f2faf4 100%) !important;
}

.how-flow--v2 .how-row--rtl .how-labels>.how-label:nth-child(3),
.how-flow--v2 .how-row--rtl .how-labels>.how-label:nth-child(7) {
  border-right-color: #e87c32 !important;
  background: linear-gradient(335deg, #fff 65%, #fff8f3 100%) !important;
}

/* ── Challenge pills: softer, glass feel ── */
.challenge-pill {
  border: 1px solid rgba(42, 118, 52, 0.12) !important;
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(6px) !important;
  border-radius: 50px !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
}

.challenge-pill:hover {
  background: var(--green) !important;
  border-color: var(--green) !important;
  box-shadow: 0 6px 20px rgba(42, 118, 52, 0.25) !important;
}


/* ── Russia list cards: rounder, no flat borders ── */
.russia-list li:not(.russia-list-btn) {
  border: 1px solid rgba(42, 118, 52, 0.07) !important;
  border-radius: 20px !important;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.04) !important;
  background: rgba(255, 255, 255, 0.92) !important;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease !important;
}

.russia-list li:not(.russia-list-btn):hover {
  box-shadow: 0 8px 32px rgba(42, 118, 52, 0.10) !important;
  border-color: rgba(42, 118, 52, 0.15) !important;
  transform: translateY(-2px);
}

/* ── Contact wrap: more rounded ── */
.contact-v2-wrap {
  border-radius: 32px !important;
  overflow: hidden;
}

/* ── Navbar: full-width when scrolled ── */
#mainNav.scrolled {
  margin: 0 !important;
  border-radius: 0 !important;
}

/* ── Dest cards: rounder ── */
.dest-card {
  border-radius: 28px !important;
}

/* ── MICE bar: rounder ── */
.mice-bar {
  border-radius: 22px !important;
}

/* ── Stats bar: subtle top rounding ── */
.hero-stats {
  border-radius: 20px 20px 0 0;
}

/* ── Services closing border: fade instead of hard line ── */
.services-closing {
  border-top: none !important;
  position: relative;
}

.services-closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border) 30%, var(--border) 70%, transparent);
}

/* ── Port arrow buttons: slightly rounder ── */
.port-arrow-btn {
  border-radius: 14px !important;
}

/* ============================================================
   DESTINATIONS V2 — ENHANCED WIDTH & ANIMATIONS
   ============================================================ */

/* Wider: break out of default container padding */
#destinations>.container-custom {
  padding-inline: 2.5vw;
  max-width: 100%;
}

/* Taller, tighter-gap track */
.dest-track {
  gap: 8px !important;
}

/* Fix: constrain non-active cards and let active one own free space */
#destinations .dest-card:not(.active) {
  flex: 0 1 12% !important;
}

/* Active card gets all remaining free space */
#destinations .dest-card.active {
  flex: 1 1 42% !important;
}

/* Image: add zoom transform to existing opacity transition */
.dest-img--default,
.dest-img--hover {
  transition: opacity 0.45s ease, transform 0.75s cubic-bezier(0.33, 1, 0.68, 1) !important;
  transform: scale(1.03);
  will-change: opacity, transform;
}

.dest-card.active .dest-img--hover {
  transform: scale(1.1) !important;
}

/* Overlay: deepen + green tint on active */
.dest-overlay {
  transition: background 0.45s ease;
}

.dest-card.active .dest-overlay {
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.97) 0%,
      rgba(5, 38, 14, 0.55) 52%,
      rgba(0, 0, 0, 0.04) 88%) !important;
}

/* Name: add smooth translate + letter-spacing, remove transition:none */
.dest-name {
  transition: font-size 0.35s ease, transform 0.35s ease, letter-spacing 0.35s ease !important;
  transform: translateY(6px);
}

.dest-card.active .dest-name {
  font-size: 1.65rem !important;
  transform: translateY(0) !important;
  letter-spacing: -0.03em !important;
}

/* Description: add blur reveal */
.dest-desc {
  filter: blur(5px);
  transition: opacity 0.32s ease 0.15s, transform 0.32s ease 0.15s, filter 0.32s ease 0.15s !important;
}

.dest-card.active .dest-desc {
  filter: blur(0) !important;
  max-height: 190px !important;
}

/* Tag: snappier entrance */
.dest-card.active .dest-tag {
  transition: opacity 0.22s ease 0.05s, transform 0.22s ease 0.05s !important;
}

/* Accent bottom line — full width on active */
.dest-card.active::after {
  width: 100% !important;
  transition: width 0.55s cubic-bezier(0.33, 1, 0.68, 1) 0.05s !important;
}

/* Orange pulse dot — bottom-right of active card */
.dest-card::before {
  content: '';
  position: absolute;
  bottom: 1.4rem;
  right: 1.4rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.28s ease 0.25s, transform 0.28s ease 0.25s;
  z-index: 10;
  box-shadow: 0 0 0 0 rgba(232, 124, 50, 0.6);
}

.dest-card.active::before {
  opacity: 1;
  transform: scale(1);
  animation: destDotPulse 2s ease-in-out 0.5s infinite;
}

@keyframes destDotPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(232, 124, 50, 0.5);
  }

  60% {
    box-shadow: 0 0 0 8px rgba(232, 124, 50, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(232, 124, 50, 0);
  }
}

/* Inactive cards: slightly dimmed for contrast */
.dest-track:hover .dest-card:not(.active) .dest-img--default {
  filter: brightness(0.7) saturate(0.8);
  transition: filter 0.4s ease !important;
}

.dest-track:hover .dest-card.active .dest-img--hover {
  filter: brightness(1.05) saturate(1.1);
}

/* ============================================================
   HONEYCOMB REDESIGN — WHITE BG, ORANGE + GREEN PALETTE
   ============================================================ */

.svc-col-hc {
  background: transparent !important;
  box-shadow: none !important;
}

.svc-col-hc::before {
  display: none !important;
}

.svc-hc-eyebrow {
  color: var(--text-mid) !important;
}

/* Ghost hexes — subtle light tint, visible on white bg */
.hc-ghost {
  background: rgba(180, 180, 180, 0.15) !important;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.06)) !important;
  pointer-events: none;
}

.hc-ghost:hover {
  transform: none !important;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.06)) !important;
}

/* Lighter shadows on white background */
.hc-hex {
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.16)) !important;
}

.hc-hex:hover {
  filter: brightness(1.07) drop-shadow(0 10px 24px rgba(0, 0, 0, 0.24)) !important;
}

/* Icon: slightly smaller to leave room for sub-text */
.hc-inner .hc-icon {
  font-size: 1.45rem !important;
}

/* hc-name on coloured hexes stays white (already is) */

/* Subtitle line under the main name */
.hc-sub {
  font-size: 0.57rem;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.3;
  font-weight: 400;
  text-align: center;
  margin-top: -1px;
}

/* ── Dest nav buttons: unchanged (already 50% circle) ── */

/* content-visibility removed — was causing scroll glitches (sections re-painting on enter) */

/* ── Social buttons: iOS liquid spring style ── */
@keyframes iosLiquid {
  0% {
    transform: scale(1) rotate(0deg);
  }

  18% {
    transform: scale(1.28) rotate(-6deg);
  }

  36% {
    transform: scale(0.88) rotate(4deg);
  }

  54% {
    transform: scale(1.12) rotate(-2deg);
  }

  72% {
    transform: scale(0.95) rotate(1deg);
  }

  88% {
    transform: scale(1.04);
  }

  100% {
    transform: scale(1) rotate(0deg);
  }
}

@keyframes iosPress {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.82);
  }

  100% {
    transform: scale(1);
  }
}

.cv2-social-btn {
  border-radius: 16px !important;
  width: 48px !important;
  height: 48px !important;
  font-size: 1rem !important;
  background: rgba(255, 255, 255, 0.14) !important;
  backdrop-filter: blur(16px) saturate(1.6) !important;
  -webkit-backdrop-filter: blur(16px) saturate(1.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
  color: #fff !important;
  transition: box-shadow 0.2s ease !important;
  position: relative !important;
  overflow: hidden !important;
}

/* inner gloss streak */
.cv2-social-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 48%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.22), transparent);
  border-radius: 16px 16px 60% 60% / 16px 16px 40% 40%;
  pointer-events: none;
  z-index: 1;
}

.cv2-social-btn i {
  position: relative;
  z-index: 2;
}

.cv2-social-btn:hover {
  animation: iosLiquid 0.65s cubic-bezier(0.36, 0.07, 0.19, 0.97) forwards !important;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.35) !important;
  background: rgba(255, 255, 255, 0.22) !important;
  transform: none !important;
}

.cv2-social-btn:active {
  animation: iosPress 0.18s ease forwards !important;
}

/* ── CTA overlay fix ── */

/* ── Footer: white ── */
#footer {
  background: #ffffff !important;
  border-top: 1px solid var(--border) !important;
}

.footer-tagline {
  color: var(--text-muted) !important;
}

.footer-nav a {
  color: var(--text-mid) !important;
}

.footer-nav a:hover {
  color: var(--green) !important;
}

.footer-copy {
  color: var(--text-muted) !important;
}

/* ── Contact: compact layout ── */
.contact-v2-section {
  padding: 60px 0 50px !important;
}

.contact-v2-section>.container-custom {
  margin-bottom: 1.2rem !important;
}

.contact-v2-section .section-eyebrow {
  font-size: 0.65rem !important;
}

.contact-v2-section .section-title {
  margin-bottom: 0.5rem !important;
}

.contact-v2-section .section-sub {
  font-size: 0.82rem !important;
}

.contact-v2-section .mb-5 {
  margin-bottom: 1.2rem !important;
}

.contact-v2-wrap {
  max-width: 1100px !important;
}

.cv2-left {
  padding: 36px 32px !important;
  flex: 0 0 34% !important;
}

.cv2-eyebrow {
  font-size: 0.62rem !important;
  margin-bottom: 0.4rem !important;
}

.cv2-headline {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem) !important;
  margin-bottom: 0.6rem !important;
}

.cv2-sub {
  font-size: 0.78rem !important;
  margin-bottom: 1rem !important;
  line-height: 1.55 !important;
}

.cv2-details {
  margin-bottom: 1rem !important;
  gap: 0.5rem !important;
}

.cv2-detail-row {
  padding: 0.4rem 0.7rem !important;
  font-size: 0.88rem !important;
}

.cv2-detail-icon {
  width: 28px !important;
  height: 28px !important;
  font-size: 0.75rem !important;
}

.cv2-socials {
  gap: 0.5rem !important;
}

.cv2-social-btn {
  width: 40px !important;
  height: 40px !important;
}

.cv2-right {
  padding: 36px 40px !important;
}

.cv2-form-title {
  font-size: 1.15rem !important;
  margin-bottom: 0.2rem !important;
}

.cv2-form-sub {
  font-size: 0.76rem !important;
  margin-bottom: 1.2rem !important;
}

.cv2-form-row {
  gap: 0.7rem 1rem !important;
  margin-bottom: 0.7rem !important;
}

.cv2-input {
  padding: 0.6rem 0.9rem !important;
  font-size: 0.82rem !important;
}

.cv2-label {
  font-size: 0.6rem !important;
  margin-bottom: 0.3rem !important;
}

.cv2-field--full {
  margin-bottom: 0.7rem !important;
}

.cv2-textarea {
  min-height: 90px !important;
}

.cv2-submit-row {
  margin-top: 0.8rem !important;
}

.cv2-submit-btn {
  padding: 0.65rem 1.8rem !important;
  font-size: 0.85rem !important;
}

.cv2-privacy {
  font-size: 0.72rem !important;
}

/* ── Contact: green gradient background ── */
.contact-v2-section {
  background: linear-gradient(145deg, #0a1f0d 0%, #133016 35%, #266d30 70%, #1a4a20 100%) !important;
}

/* ── Contact: glassmorphism on both panels ── */
.cv2-left {
  background: rgba(0, 0, 0, 0.20) !important;
  backdrop-filter: blur(28px) saturate(1.5) !important;
  -webkit-backdrop-filter: blur(28px) saturate(1.5) !important;
  border-right: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.cv2-right {
  background: rgba(255, 255, 255, 0.13) !important;
  backdrop-filter: blur(32px) saturate(1.4) !important;
  -webkit-backdrop-filter: blur(32px) saturate(1.4) !important;
}

.contact-v2-wrap {
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.30), 0 0 0 1px rgba(255, 255, 255, 0.12) inset !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
}

/* ── Contact form: clean glassmorphic inputs ── */
.cv2-input {
  background: rgba(255, 255, 255, 0.10) !important;
  border: none !important;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.30) !important;
  border-radius: 10px !important;
  color: #ffffff !important;
  padding: 0.85rem 1.1rem !important;
  font-size: 0.88rem !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.cv2-input::placeholder {
  color: rgba(255, 255, 255, 0.38) !important;
}

.cv2-input:focus {
  background: rgba(255, 255, 255, 0.18) !important;
  border-bottom-color: #e87c32 !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 4px 16px rgba(0, 0, 0, 0.12) !important;
  outline: none !important;
}

.cv2-select option {
  background: #1a3a20;
  color: #fff;
}

.cv2-label {
  font-size: 0.65rem !important;
  letter-spacing: 0.14em !important;
  color: rgba(255, 255, 255, 0.6) !important;
  margin-bottom: 0.4rem !important;
}

/* File button: orange so it stands out against green bg */
.cv2-file-btn {
  background: var(--orange) !important;
  border-radius: 50px !important;
}

.cv2-file-btn:hover {
  background: var(--orange-dark) !important;
}

/* File name: white */
.cv2-file-name {
  color: rgba(255, 255, 255, 0.65) !important;
}

/* ============================================================
   RESPONSIVE — MOBILE & TABLET OPTIMISATION
   ≤ 991px  tablet  |  ≤ 767px  mobile  |  ≤ 575px  small
   ============================================================ */


/* ── Portfolio header: stack on tablet ── */
@media (max-width: 991px) {
  .port-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .port-header-left .section-title,
  .port-header-left .section-sub {
    white-space: normal !important;
  }

  .port-header-arrows {
    align-self: flex-start;
    padding-top: 0;
  }
}

/* ── Tablet & Mobile (≤ 991px): section padding + destinations vertical ── */
@media (max-width: 991px) {

  .section-white,
  .section-soft,
  .section-gray {
    padding: 80px 0;
  }

  .contact-v2-section {
    padding: 80px 0 60px;
  }

  /* Destinations: vertical accordion on tablet */
  #destinations>.container-custom {
    padding-inline: 2rem !important;
  }

  .dest-track {
    flex-direction: column !important;
    height: auto !important;
    gap: 8px !important;
  }

  #destinations .dest-card:not(.active) {
    flex: 0 0 76px !important;
    min-height: 76px !important;
    max-height: 76px !important;
  }

  #destinations .dest-card.active {
    flex: 0 0 380px !important;
    min-height: 380px !important;
    max-height: 380px !important;
  }

  .dest-card {
    border-radius: 16px !important;
    transition: flex 0.4s cubic-bezier(0.4, 0, 0.2, 1),
      min-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
      max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  .dest-name {
    transform: none !important;
    opacity: 1 !important;
    font-size: 1.05rem !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .dest-card.active .dest-name {
    font-size: 1.5rem !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
  }

  .dest-overlay {
    justify-content: flex-end !important;
    padding: 1.1rem 1.5rem !important;
  }

  .dest-card.active .dest-desc {
    max-height: 150px !important;
    font-size: 0.82rem !important;
    line-height: 1.55 !important;
  }

  .dest-nav {
    display: none !important;
  }

  .dest-tag {
    opacity: 1 !important;
    transform: none !important;
  }

  /* ── Services: stack to single column ── */
  .svc-3col {
    grid-template-columns: 1fr !important;
    align-items: start !important;
  }

  .svc-merged {
    height: auto !important;
  }

  .svc-merged-body {
    grid-template-columns: 1fr !important;
  }

  .svc-merged-body .svc-col-hc--inline {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .svc-col-hc--inline {
    justify-content: center;
    padding: 1.5rem;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
}

/* ── Mobile (≤ 767px) ── */
@media (max-width: 767px) {

  /* Section padding */
  .section-white,
  .section-soft,
  .section-gray {
    padding: 60px 0;
  }

  .contact-v2-section {
    padding: 60px 0 48px;
  }

  /* ── Hero ── */
  #hero {
    flex-direction: column !important;
    align-items: stretch !important;
    min-height: 100svh;
    justify-content: flex-start;
  }

  .hero-content {
    flex: 1;
    padding-top: 0 !important;
    padding-bottom: 32px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
  }

  .hero-headline {
    font-size: clamp(2.6rem, 13vw, 3.8rem) !important;
  }

  .hero-tagline {
    font-size: 0.95rem !important;
    max-width: 90vw;
  }

  .hero-panels {
    display: none !important;
  }

  /* ── Show mobile MICE grid ── */
  .mice-mobile-grid {
    display: block !important;
  }

  /* Stats: pull out of absolute, stack as 3×2 grid */
  .hero-stats {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
  }

  .stats-bar-inner {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .stat-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1rem 0.5rem;
  }

  .stat-item:nth-child(4),
  .stat-item:nth-child(5),
  .stat-item:nth-child(6) {
    border-bottom: none;
  }

  .stat-item:nth-child(3n) {
    border-right: none !important;
  }

  .stat-num {
    font-size: 1.6rem;
  }

  .stat-label {
    font-size: 0.6rem;
  }

  /* Destinations: smaller on mobile */
  #destinations>.container-custom {
    padding-inline: 1rem !important;
  }

  .dest-track {
    gap: 6px !important;
  }

  #destinations .dest-card:not(.active) {
    flex: 0 0 70px !important;
    min-height: 70px !important;
    max-height: 70px !important;
  }

  #destinations .dest-card.active {
    flex: 0 0 300px !important;
    min-height: 300px !important;
    max-height: 300px !important;
  }

  .dest-card.active .dest-name {
    font-size: 1.25rem !important;
  }

  .dest-overlay {
    padding: 0.9rem 1rem !important;
  }

  .dest-card.active .dest-desc {
    max-height: 100px !important;
    font-size: 0.75rem !important;
  }

  /* ── About cards: fix height collapse in flex column ── */
  #about .case-card {
    height: fit-content !important;
  }

  /* ── Portfolio arrows: right-align on mobile ── */
  .port-header-arrows {
    align-self: flex-end;
  }

  /* ── Services: single column, scale honeycomb ── */
  .svc-connector-svg {
    display: none;
  }

  .svc-col-hc {
    padding: 0;
  }

  .svc-3col {
    grid-template-columns: 1fr !important;
    align-items: start !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .svc-merged {
    max-width: 100% !important;
    width: 100% !important;
    overflow-x: hidden !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .svc-merged-body {
    display: flex !important;
    flex-direction: column !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }

  .svc-caps-list {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .svc-cap-item {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .svc-merged-body .svc-col-hc--inline,
  .svc-col-hc--inline {
    grid-column: 1;
    padding: 1.5rem 1rem;
    overflow: visible !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .svc-col-hc--inline .honeycomb-wrap {
    justify-content: center;
    overflow: visible !important;
    display: flex;
    width: 100%;
    padding-top: 20px;
  }

  .svc-col-hc--inline .honeycomb--v {
    transform-origin: top center;
    transform: scale(0.95);
    margin: 0 auto;
    position: relative;
    left: auto;
    overflow: visible !important;
  }

  .svc-2boxes {
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  /* ── Russia section: single column list ── */
  .russia-list {
    grid-template-columns: 1fr !important;
  }

  /* ── Contact: stack panels vertically ── */
  .contact-v2-wrap {
    flex-direction: column !important;
    border-radius: 18px !important;
  }

  .cv2-left {
    flex: 0 0 auto !important;
    padding: 40px 28px !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14) !important;
  }

  .cv2-right {
    flex: 0 0 auto !important;
    padding: 36px 28px !important;
  }

  /* Stack form grid to single column */
  .cv2-form-row {
    grid-template-columns: 1fr !important;
  }

  /* Submit row: stack privacy text + full-width button */
  .cv2-submit-row {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .cv2-submit-btn {
    width: 100% !important;
    justify-content: center !important;
  }

  /* ── How We Work: stack cards vertically ── */
  .hw-row,
  .hw-row--rtl {
    flex-direction: column !important;
  }

  .hw-arrow,
  .hw-bend {
    display: none !important;
  }

  .hw-card {
    margin-bottom: 0.75rem;
  }
}

/* ============================================================
   MICE MOBILE GRID — shown only on ≤ 767px, hidden on desktop
   ============================================================ */
.mice-mobile-grid {
  display: none;
  background: #0c1a0e;
  padding: 0;
}

.mice-mobile-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.mice-mobile-cell {
  padding: 1.4rem 1.1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mice-mobile-cell:nth-child(even) {
  border-right: none;
}

.mice-mobile-cell--full {
  grid-column: 1 / -1;
  border-right: none;
  border-bottom: none;
}

.mice-mobile-letter {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.15rem;
}

.mice-mobile-title {
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mice-mobile-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mice-mobile-list li {
  font-size: 0.71rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.35;
  padding: 0.28rem 0 0.28rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.mice-mobile-list li:last-child {
  border-bottom: none;
}

.mice-mobile-list li::before {
  content: '—';
  color: var(--orange);
  position: absolute;
  left: 0;
  font-size: 0.55rem;
  top: 50%;
  transform: translateY(-50%);
}

.mice-mobile-list--cols {
  columns: 2;
  column-gap: 1.5rem;
}

/* ── Small mobile (≤ 575px) ── */
@media (max-width: 575px) {
  .hero-headline {
    font-size: clamp(2.1rem, 13vw, 2.8rem) !important;
  }

  .hero-tagline {
    font-size: 0.85rem !important;
  }

  .hero-eyebrow {
    font-size: 0.6rem !important;
    letter-spacing: 0.14em !important;
  }

  .stat-num {
    font-size: 1.3rem;
  }

  .stat-label {
    font-size: 0.52rem;
  }

  .stat-item {
    padding: 0.85rem 0.35rem;
  }

  .russia-list li {
    gap: 0.6rem;
    padding: 0.85rem;
  }

  .cv2-left,
  .cv2-right {
    padding: 32px 20px !important;
  }

  #destinations .dest-card.active {
    flex: 0 0 270px !important;
    min-height: 270px !important;
    max-height: 270px !important;
  }

  /* ── Services: scale down honeycomb for narrow screens ── */
  .svc-col-hc--inline .honeycomb--v {
    transform: scale(0.78);
    margin: 0 auto;
    margin-bottom: -75px;
    overflow: visible !important;
  }
}