:root {
  --navy: #061a28;
  --blue-deep: #0b2a3a;
  --ocean: #0e5a73;
  --teal: #00c7d9;
  --lime: #9bea2e;
  --mist: #f5f8fa;
  --white: #ffffff;
  --ink: #0b1d2a;
  --muted: #6b7c8f;
  --line: rgba(0, 199, 217, 0.16);
  --shadow: 0 16px 40px rgba(6, 26, 40, 0.12);
  --radius: 18px;
  font-family: Manrope, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--mist);
  color: var(--ink);
  font-family: Manrope, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
}

body.menu-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

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

.section-image {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.section-image.wide {
  aspect-ratio: 16 / 9;
}

.section-image.vertical {
  aspect-ratio: 4 / 5;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(6, 26, 40, 0.96);
  backdrop-filter: blur(14px);
  color: var(--white);
}

.nav-wrap,
.section-inner,
.footer-inner {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 70px;
}

.brand {
  display: grid;
  gap: 1px;
  min-width: 150px;
}

.brand-logo {
  display: flex;
  width: 188px;
  min-width: 188px;
  align-items: center;
}

.brand-logo img {
  display: block;
  width: 100%;
  max-height: 58px;
  object-fit: contain;
}

.brand strong {
  font-family: Manrope, Inter, sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0;
}

.brand span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
}

.nav-links a {
  position: relative;
  display: grid;
  min-height: 48px;
  align-content: center;
  justify-items: center;
  gap: 2px;
  border-radius: 14px;
  padding: 5px 8px;
  text-align: center;
  line-height: 1.08;
}

.nav-links a::before {
  display: block;
  width: 6px;
  height: 6px;
  border: 1px solid rgba(0, 199, 217, 0.64);
  border-radius: 999px;
  content: "";
}

.nav-links a::after {
  display: block;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.52rem;
  font-weight: 800;
  line-height: 1;
  content: "";
}

.nav-links a:nth-child(1)::after { content: "интерес"; }
.nav-links a:nth-child(2)::after { content: "потребность"; }
.nav-links a:nth-child(3)::after { content: "среда"; }
.nav-links a:nth-child(4)::after { content: "заявка"; }
.nav-links a:nth-child(5)::after { content: "членство"; }
.nav-links a:nth-child(6)::after { content: "участие"; }
.nav-links a:nth-child(7)::after { content: "доверие"; }
.nav-links a:nth-child(8)::after { content: "консультация"; }

.nav-links-membership a:nth-child(1)::after { content: "старт"; }
.nav-links-membership a:nth-child(2)::after { content: "продукт"; }
.nav-links-membership a:nth-child(3)::after { content: "компания"; }
.nav-links-membership a:nth-child(4)::after { content: "membership"; }
.nav-links-membership a:nth-child(5)::after { content: "роль"; }
.nav-links-membership a:nth-child(6)::after { content: "события"; }
.nav-links-membership a:nth-child(7)::after { content: "AI"; }
.nav-links-membership a:nth-child(8)::after { content: "контакт"; }

.nav-links a:hover,
.nav-links a.active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.nav-links a:hover::before,
.nav-links a.active::before {
  border-color: var(--lime);
  background: var(--lime);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  color: rgba(255, 255, 255, 0.82);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.account-actions,
.account-user {
  display: flex;
  align-items: center;
  gap: 9px;
}

.account-link,
.account-logout {
  border: 1px solid rgba(255, 255, 255, 0.24);
  min-height: 42px;
  border-radius: 14px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
}

.account-link:hover,
.account-logout:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.account-register {
  min-height: 42px;
  padding: 10px 14px;
  font-size: 0.84rem;
}

.nav-primary {
  min-height: 42px;
  padding: 10px 14px;
  font-size: 0.82rem;
  white-space: nowrap;
}

.account-user span {
  max-width: 150px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 14px;
  padding: 10px 16px;
  background: var(--lime);
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.15;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(163, 230, 53, 0.26);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.button.ghost {
  border: 1px solid rgba(11, 29, 42, 0.14);
  background: var(--white);
  color: var(--navy);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(6, 26, 40, 0.96) 0%, rgba(6, 26, 40, 0.82) 38%, rgba(6, 26, 40, 0.28) 66%, rgba(6, 26, 40, 0.06) 100%),
    url("/assets/images/processed/travelgtc-home-hero-deck-sunset.webp") center right / cover no-repeat;
  color: var(--white);
}

.membership-hero {
  background:
    linear-gradient(90deg, rgba(6, 26, 40, 0.98) 0%, rgba(6, 26, 40, 0.9) 44%, rgba(6, 26, 40, 0.5) 72%, rgba(6, 26, 40, 0.12) 100%),
    url("/assets/images/processed/travelgtc-home-hero-deck-sunset.webp") center right / cover no-repeat;
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 26, 40, 0.04), rgba(6, 26, 40, 0.22));
  content: "";
}

.hero::after {
  position: absolute;
  right: -8vw;
  bottom: -54px;
  left: -8vw;
  height: 96px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: var(--mist);
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: block;
  width: min(1280px, calc(100% - 48px));
  min-height: min(480px, calc(100vh - 70px));
  margin: 0 auto;
  padding: 58px 0 86px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow.dark {
  border-color: rgba(11, 29, 42, 0.12);
  color: var(--ocean);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Manrope, Inter, sans-serif;
  line-height: 1.05;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.7rem, 3.45vw, 3.85rem);
  line-height: 1.02;
}

h1 em {
  display: block;
  color: var(--teal);
  font-family: Manrope, Inter, sans-serif;
  font-size: 1em;
  font-style: normal;
  line-height: 1.04;
}

h1 span {
  display: block;
  color: var(--lime);
}

h2 {
  color: var(--navy);
  font-size: clamp(1.7rem, 2.2vw, 2.25rem);
  line-height: 1.15;
}

h3 {
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.22;
}

.hero p {
  max-width: 530px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.48;
}

.membership-hero .hero-inner {
  min-height: min(520px, calc(100vh - 70px));
  padding: 64px 0 96px;
}

.membership-hero h1 {
  max-width: 840px;
}

.membership-hero h1 em {
  max-width: 780px;
}

.membership-hero .hero-copy > p:not(.eyebrow):not(.hero-disclosure) {
  max-width: 650px;
}

.hero-disclosure {
  margin: 18px 0 0;
  border-left: 4px solid var(--lime);
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.section {
  padding: 44px 0;
}

.section.white {
  background: var(--white);
}

.section.navy {
  background: var(--navy);
  color: var(--white);
}

.section.navy h2,
.section.navy h3 {
  color: var(--white);
}

.section.navy p,
.section.navy li {
  color: rgba(255, 255, 255, 0.76);
}

.section-head {
  display: grid;
  gap: 12px;
  max-width: 720px;
  margin-bottom: 22px;
}

.section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head p,
.lead {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.5;
}

.position-section {
  background: var(--white);
  padding: 44px 0;
}

.position-grid,
.membership-grid,
.ai-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  align-items: center;
  gap: 28px;
}

.position-copy,
.membership-copy,
.ai-copy {
  display: grid;
  gap: 14px;
}

.position-copy p,
.membership-copy p,
.ai-copy p {
  margin: 0;
  color: var(--muted);
}

.position-visual,
.membership-visual {
  position: relative;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: var(--blue-deep);
  box-shadow: var(--shadow);
}

.position-visual img,
.membership-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.position-visual::after,
.membership-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 26, 40, 0.02), rgba(6, 26, 40, 0.34));
  content: "";
}

.position-visual figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(6, 26, 40, 0.7);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.86rem;
  font-weight: 800;
}

.relationship-grid .card,
.trust-grid .card {
  min-height: 190px;
}

.role-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  border: 1px solid rgba(0, 199, 217, 0.22);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--ocean);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.role-card.featured {
  border-color: rgba(155, 234, 46, 0.44);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 248, 250, 0.96)),
    radial-gradient(circle at 88% 18%, rgba(155, 234, 46, 0.24), transparent 32%);
}

.official-link {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin-top: 14px;
  border-bottom: 1px solid rgba(0, 199, 217, 0.45);
  color: var(--ocean);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.official-link:hover {
  color: var(--teal);
}

.company-section {
  background:
    linear-gradient(180deg, var(--white) 0%, var(--mist) 100%);
}

.company-shell {
  display: grid;
  gap: 18px;
}

.company-copy {
  display: grid;
  max-width: 820px;
  gap: 12px;
}

.company-copy p {
  margin: 0;
  color: var(--muted);
}

.company-stats,
.company-addresses {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.company-stats article {
  min-height: 132px;
  border: 1px solid rgba(0, 199, 217, 0.2);
  border-radius: 18px;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(6, 26, 40, 0.98), rgba(14, 90, 115, 0.92));
  color: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.company-stats strong {
  display: block;
  color: var(--lime);
  font-size: clamp(1.85rem, 3vw, 2.65rem);
  line-height: 1;
}

.company-stats span {
  display: block;
  margin-top: 10px;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.22;
}

.company-addresses article {
  display: grid;
  gap: 8px;
  min-height: 156px;
  border: 1px solid rgba(0, 199, 217, 0.16);
  border-radius: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 30px rgba(6, 26, 40, 0.06);
}

.company-addresses span {
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 900;
}

.company-addresses p,
.company-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.42;
}

.company-note {
  max-width: 960px;
  border-left: 4px solid var(--teal);
  padding-left: 14px;
}

.membership-section {
  background:
    linear-gradient(180deg, var(--mist), var(--white));
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 6px;
}

.service-grid span {
  display: grid;
  gap: 6px;
  min-height: 82px;
  align-content: center;
  border: 1px solid rgba(0, 199, 217, 0.18);
  border-radius: 14px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.12;
  box-shadow: 0 12px 28px rgba(6, 26, 40, 0.06);
}

.service-grid b {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(0, 199, 217, 0.12);
  color: var(--teal);
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", Manrope, Inter, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
}

.membership-doc-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(0, 199, 217, 0.2);
  border-radius: 16px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 248, 250, 0.96));
  box-shadow: 0 12px 30px rgba(6, 26, 40, 0.06);
}

.membership-doc-card h3 {
  font-size: 1rem;
}

.membership-doc-card p {
  margin-top: 6px;
  font-size: 0.86rem;
  line-height: 1.4;
}

.trust-card .icon {
  margin-bottom: 12px;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", Manrope, Inter, sans-serif;
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1;
}

.process-section {
  background: var(--mist);
}

.membership-steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.membership-steps article {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 180px;
  border: 1px solid rgba(0, 199, 217, 0.16);
  border-radius: 16px;
  padding: 16px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(6, 26, 40, 0.08);
}

.membership-steps b {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--navy);
  color: var(--lime);
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", Manrope, Inter, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
}

.membership-steps strong {
  color: var(--navy);
  font-size: 0.98rem;
  line-height: 1.18;
}

.membership-steps span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.34;
}

.ai-section {
  overflow: hidden;
}

.ai-preview {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(0, 199, 217, 0.18);
  border-radius: 20px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(6, 26, 40, 0.98), rgba(14, 90, 115, 0.9));
  box-shadow: var(--shadow);
}

.ai-bubble {
  max-width: 88%;
  border-radius: 16px;
  padding: 13px 14px;
  font-size: 0.9rem;
  line-height: 1.38;
}

.ai-bubble.user {
  justify-self: end;
  background: var(--lime);
  color: var(--navy);
  font-weight: 900;
}

.ai-bubble.bot {
  justify-self: start;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
}

.ai-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  width: min(430px, calc(100vw - 28px));
  pointer-events: none;
}

.ai-float {
  display: block;
  margin-left: auto;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  background: var(--lime);
  color: var(--navy);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 900;
  box-shadow: 0 18px 38px rgba(6, 26, 40, 0.22);
  cursor: pointer;
  pointer-events: auto;
}

.ai-widget.is-open .ai-float {
  display: none;
}

.ai-panel {
  position: relative;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto auto;
  width: 100%;
  margin-bottom: 12px;
  max-height: min(680px, calc(100dvh - 48px));
  overflow: hidden;
  border: 1px solid rgba(0, 199, 217, 0.24);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 22px 54px rgba(6, 26, 40, 0.22);
  pointer-events: auto;
}

.ai-panel-head {
  display: grid;
  align-items: center;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  padding: 14px 16px;
  background: var(--navy);
  color: var(--white);
  cursor: grab;
  user-select: none;
}

.ai-widget.is-dragging .ai-panel-head {
  cursor: grabbing;
}

.ai-logo {
  width: 118px;
  height: 52px;
  flex: 0 0 auto;
  border-radius: 14px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 1px rgba(0, 199, 217, 0.18);
}

.ai-panel-title {
  min-width: 0;
}

.ai-panel-title strong,
.ai-panel-title span {
  display: block;
}

.ai-panel-title strong {
  font-size: 0.98rem;
  line-height: 1.14;
}

.ai-panel-title span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  line-height: 1.25;
}

.ai-panel-actions {
  display: flex;
  gap: 8px;
  justify-self: end;
}

.ai-panel-head button {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font: inherit;
  font-size: 1.1rem;
  cursor: pointer;
}

.ai-starters {
  display: grid;
  gap: 8px;
  padding: 12px 14px 0;
  background: var(--mist);
}

.ai-starters button {
  min-height: 36px;
  border: 1px solid rgba(0, 199, 217, 0.22);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
}

.ai-starters button:hover,
.ai-starters button:focus-visible {
  border-color: rgba(0, 184, 148, 0.72);
  background: rgba(163, 230, 53, 0.16);
}

.ai-messages {
  display: grid;
  gap: 10px;
  min-height: 128px;
  overflow: auto;
  padding: 16px;
  background: var(--mist);
  align-content: start;
}

.ai-message {
  width: fit-content;
  max-width: 92%;
  margin: 0;
  border-radius: 15px;
  padding: 11px 12px;
  font-size: 0.84rem;
  line-height: 1.35;
  white-space: normal;
}

.ai-message.user {
  justify-self: end;
  background: var(--lime);
  color: var(--navy);
  font-weight: 800;
}

.ai-message.bot {
  justify-self: start;
  background: var(--white);
  color: var(--ink);
}

.ai-message p {
  margin: 0 0 0.55rem;
}

.ai-message p:last-child,
.ai-message ul:last-child {
  margin-bottom: 0;
}

.ai-message ul {
  display: grid;
  gap: 0.36rem;
  margin: 0.45rem 0 0.7rem;
  padding-left: 1.1rem;
}

.ai-message li {
  padding-left: 0.05rem;
}

.ai-message a {
  color: var(--ocean);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.ai-message-heading {
  display: block;
  margin: 0.25rem 0 0.45rem;
  color: var(--navy);
  font-size: 0.9rem;
}

.ai-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 8px;
  padding: 12px;
  background: var(--white);
  border-top: 1px solid rgba(6, 26, 40, 0.06);
}

.ai-form input {
  min-height: 42px;
  border-radius: 12px;
  font-size: 0.86rem;
}

.ai-voice {
  display: grid;
  place-items: center;
  width: 42px;
  min-height: 42px;
  border: 1px solid rgba(0, 91, 120, 0.18);
  border-radius: 12px;
  background: var(--mist);
  color: var(--ocean);
  cursor: pointer;
}

.ai-voice svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ai-voice.is-recording {
  background: var(--lime);
  color: var(--navy);
}

.ai-voice:disabled {
  opacity: 0.46;
  cursor: not-allowed;
}

.ai-form .button {
  min-height: 42px;
  border-radius: 12px;
  font-size: 0.82rem;
}

.ai-lead-link {
  display: block;
  padding: 0 14px 14px;
  color: var(--ocean);
  font-size: 0.82rem;
  font-weight: 900;
  text-align: right;
}

.crm-page {
  min-height: calc(100vh - 88px);
  padding: 42px 0 64px;
  background: var(--mist);
}

.crm-shell {
  width: min(1280px, calc(100% - 36px));
  margin: 0 auto;
}

.crm-status {
  margin: 18px 0;
  border: 1px solid rgba(0, 199, 217, 0.22);
  border-radius: 12px;
  padding: 12px 14px;
  background: var(--white);
  color: var(--muted);
  font-weight: 700;
}

.crm-status[data-state="error"] {
  border-color: rgba(220, 38, 38, 0.32);
  color: #991b1b;
}

.crm-status[data-state="success"] {
  color: var(--deep-blue);
}

.crm-layout {
  display: grid;
  grid-template-columns: minmax(280px, 390px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.crm-list,
.crm-detail {
  border: 1px solid rgba(0, 199, 217, 0.18);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 20px 48px rgba(6, 26, 40, 0.08);
}

.crm-list {
  overflow: hidden;
}

.crm-list-head,
.crm-detail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid rgba(6, 26, 40, 0.08);
  padding: 16px;
}

.button.small,
.button.ghost.small {
  min-height: 38px;
  padding: 8px 14px;
  font-size: 0.78rem;
}

.button.ghost {
  border: 1px solid rgba(6, 26, 40, 0.16);
  background: var(--white);
  color: var(--navy);
}

.crm-leads {
  display: grid;
  max-height: 72vh;
  overflow: auto;
}

.crm-lead-row {
  display: grid;
  gap: 8px;
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(6, 26, 40, 0.07);
  padding: 14px 16px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.crm-lead-row:hover,
.crm-lead-row.active {
  background: rgba(0, 199, 217, 0.08);
}

.crm-lead-row strong,
.crm-lead-row small,
.crm-lead-row span {
  display: block;
}

.crm-lead-row small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
}

.crm-stage {
  width: fit-content;
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(163, 230, 53, 0.24);
  color: var(--navy);
  font-size: 0.74rem;
  font-weight: 900;
}

.crm-detail {
  min-height: 440px;
  padding: 18px;
}

.crm-detail-head {
  padding: 0 0 16px;
}

.crm-detail-head h2 {
  margin: 6px 0 0;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.crm-detail-head select {
  width: min(260px, 100%);
}

.crm-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}

.crm-detail-grid article,
.crm-request,
.crm-note-form,
.crm-history article {
  border: 1px solid rgba(0, 199, 217, 0.16);
  border-radius: 14px;
  padding: 13px;
  background: #fbfdff;
}

.crm-detail-grid strong,
.crm-detail-grid span {
  display: block;
}

.crm-detail-grid strong {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.74rem;
}

.crm-request,
.crm-note-form,
.crm-history {
  margin-top: 14px;
}

.crm-request h3,
.crm-history h3 {
  margin-top: 0;
}

.crm-note-form {
  display: grid;
  gap: 10px;
}

.crm-history {
  display: grid;
  gap: 10px;
}

.crm-history article strong {
  font-size: 0.78rem;
}

.crm-history article p {
  margin-bottom: 0;
}

.crm-empty {
  padding: 16px;
  color: var(--muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.travel-opportunities {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--mist) 0%, var(--white) 42%, var(--mist) 100%);
  padding-top: 36px;
}

.opportunities-head {
  gap: 10px;
  max-width: 100%;
  margin-bottom: 18px;
}

.section-cue {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin: -56px auto 2px;
  border: 1px solid rgba(0, 199, 217, 0.22);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(6, 26, 40, 0.1);
}

.section-cue::before {
  width: 10px;
  height: 10px;
  border-right: 3px solid var(--teal);
  border-bottom: 3px solid var(--teal);
  transform: translateY(-2px) rotate(45deg);
  content: "";
}

.opportunities-head h2 {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  text-transform: uppercase;
  white-space: nowrap;
}

.opportunities-head h2::after {
  position: absolute;
  right: 42%;
  bottom: -9px;
  left: 42%;
  height: 3px;
  border-radius: 999px;
  background: var(--teal);
  content: "";
}

.opportunity-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.opportunity-card {
  position: relative;
  min-height: 215px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 199, 217, 0.18);
  border-radius: 16px;
  background: var(--blue-deep);
  box-shadow: 0 16px 38px rgba(6, 26, 40, 0.16);
  isolation: isolate;
}

.opportunity-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: scale(1.01);
}

.opportunity-card::after {
  position: absolute;
  inset: 34% 0 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(4, 18, 28, 0.88));
  content: "";
}

.opportunity-card figcaption {
  position: absolute;
  right: 12px;
  bottom: 13px;
  left: 12px;
  z-index: 2;
  color: var(--white);
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(0.88rem, 1.05vw, 1.02rem);
  font-weight: 900;
  line-height: 1.12;
  text-align: center;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.45);
}

.opportunity-card figcaption span {
  display: block;
}

.route-promo {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  align-items: center;
  gap: 26px;
  margin-top: 24px;
  border: 1px solid rgba(0, 199, 217, 0.16);
  border-radius: 22px;
  padding: clamp(18px, 3vw, 28px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 248, 250, 0.86)),
    radial-gradient(circle at 82% 28%, rgba(0, 199, 217, 0.14), transparent 30%);
  box-shadow: 0 20px 48px rgba(6, 26, 40, 0.12);
}

.route-copy {
  display: grid;
  gap: 14px;
}

.route-script {
  margin: 0;
  color: var(--teal);
  font-family: Caveat, Manrope, Inter, cursive;
  font-size: clamp(2.7rem, 4.3vw, 4.35rem);
  font-style: normal;
  font-weight: 700;
  line-height: 0.86;
}

.route-lead {
  max-width: 560px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 800;
  line-height: 1.32;
}

.route-options {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 4px;
}

.route-options span {
  display: grid;
  gap: 8px;
  justify-items: center;
  min-width: 0;
  color: var(--ocean);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.16;
  text-align: center;
}

.route-options svg {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(0, 199, 217, 0.26);
  border-radius: 14px;
  padding: 8px;
  background: rgba(0, 199, 217, 0.1);
  color: var(--teal);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.route-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.route-visual {
  position: relative;
  min-height: 292px;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: var(--blue-deep);
  box-shadow: 0 16px 38px rgba(6, 26, 40, 0.14);
}

.route-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.route-visual::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 26, 40, 0.02), rgba(6, 26, 40, 0.2)),
    radial-gradient(circle at 74% 22%, rgba(0, 199, 217, 0.28), transparent 28%);
  content: "";
}

.route-visual::before {
  position: absolute;
  top: 26%;
  right: 9%;
  z-index: 2;
  width: 42%;
  height: 32%;
  border-top: 3px dashed rgba(0, 199, 217, 0.78);
  border-radius: 50%;
  transform: rotate(-8deg);
  content: "";
}

.route-pin {
  position: absolute;
  z-index: 3;
  width: 26px;
  height: 26px;
  border: 6px solid var(--white);
  border-radius: 50% 50% 50% 0;
  background: var(--teal);
  box-shadow: 0 8px 18px rgba(6, 26, 40, 0.28);
  transform: rotate(-45deg);
}

.route-pin::after {
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: var(--white);
  content: "";
}

.pin-one {
  top: 24%;
  left: 22%;
}

.pin-two {
  top: 15%;
  right: 28%;
}

.pin-three {
  right: 10%;
  bottom: 31%;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.navy .card {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

.card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.card-actions {
  display: flex;
  margin-top: 16px;
}

.navy .card p {
  color: rgba(255, 255, 255, 0.72);
}

.icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 14px;
  background: rgba(0, 199, 217, 0.12);
  color: var(--teal);
  font-weight: 900;
}

.section-visual {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 280px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(6, 26, 40, 0.98), rgba(14, 90, 115, 0.9));
  box-shadow: var(--shadow);
}

.section-visual.wide {
  aspect-ratio: 16 / 9;
}

.section-visual.vertical {
  aspect-ratio: 4 / 5;
}

.section-visual::before {
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background:
    linear-gradient(90deg, transparent 0 47%, rgba(255, 255, 255, 0.12) 47% 48%, transparent 48% 100%),
    linear-gradient(0deg, transparent 0 47%, rgba(255, 255, 255, 0.12) 47% 48%, transparent 48% 100%);
  content: "";
}

.section-visual::after {
  position: absolute;
  right: 24px;
  bottom: 22px;
  max-width: min(72%, 360px);
  color: rgba(255, 255, 255, 0.9);
  content: attr(data-label);
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(1.2rem, 2.4vw, 2rem);
  font-weight: 800;
  line-height: 1.08;
  text-align: right;
}

.section-visual.image-visual {
  background-position: center;
  background-size: cover;
}

.section-visual.image-visual::before {
  inset: 0;
  border: 0;
  background:
    linear-gradient(180deg, rgba(11, 29, 42, 0.04), rgba(11, 29, 42, 0.52)),
    radial-gradient(circle at 18% 20%, rgba(0, 184, 148, 0.18), transparent 28%);
}

.section-visual.image-visual::after {
  color: var(--white);
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.34);
}

.image-traveler {
  background-image: url("/assets/images/processed/travelgtc-lifestyle-mountain-community.webp");
}

.image-club {
  background-image: url("/assets/images/processed/travelgtc-club-seaside-reception.webp");
}

.image-trip-planning {
  background-image: url("/assets/images/processed/travelgtc-create-trip-coast-table.webp");
}

.image-business {
  background-image: url("/assets/images/processed/travelgtc-business-dubai-planning.webp");
}

.image-events {
  background-image: url("/assets/images/processed/travelgtc-events-night-dinner.webp");
}

.image-contact {
  background-image: url("/assets/images/processed/travelgtc-contact-sunset-lounge.webp");
}

.image-about {
  background-image: url("/assets/images/processed/travelgtc-about-network-sunset.webp");
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.88fr);
  align-items: center;
  gap: 34px;
}

.text-stack {
  display: grid;
  gap: 16px;
}

.text-stack p {
  margin: 0;
  color: var(--muted);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-cloud button,
.tag {
  border: 1px solid rgba(11, 29, 42, 0.12);
  border-radius: 14px;
  padding: 9px 13px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
}

.tag-cloud button:hover {
  border-color: var(--teal);
  color: var(--navy);
}

.funnel-guide {
  display: grid;
  gap: 16px;
  align-content: start;
}

.funnel-guide > p {
  margin: 0;
  color: var(--muted);
}

.funnel-form {
  align-self: start;
}

.compact-request {
  padding: 46px 0;
}

.request-shell {
  max-width: 900px;
}

.compact-form-head {
  max-width: 760px;
  margin: 0 auto 14px;
  text-align: center;
}

.compact-form-head h2 {
  margin: 0 auto;
}

.compact-lead-form {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(18px, 3vw, 26px);
  box-shadow: 0 16px 44px rgba(11, 29, 42, 0.1);
}

.compact-form-grid {
  gap: 13px;
}

.compact-lead-form label {
  font-size: 0.9rem;
}

.compact-lead-form input,
.compact-lead-form select {
  min-height: 46px;
}

.compact-lead-form textarea {
  min-height: 88px;
}

.compact-lead-form .consent-list {
  gap: 8px;
  margin-top: 13px;
  font-size: 0.78rem;
  line-height: 1.34;
}

.compact-lead-form .form-status {
  min-height: 18px;
  margin-top: 10px;
  font-size: 0.86rem;
}

.compact-lead-form .button {
  margin-top: 8px;
}

.role-selector {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 18px;
}

.role-selector button {
  min-height: 48px;
  border: 1px solid rgba(11, 29, 42, 0.13);
  border-radius: 14px;
  padding: 9px 10px;
  background: rgba(246, 249, 252, 0.86);
  color: var(--ink);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
}

.role-selector button.active,
.role-selector button:hover {
  border-color: rgba(0, 184, 148, 0.55);
  background: rgba(0, 184, 148, 0.1);
  color: var(--navy);
}

.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
}

.step {
  position: relative;
  min-height: 150px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--teal);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.step strong {
  display: block;
  color: var(--navy);
  font-family: Manrope, Inter, sans-serif;
  font-size: 1rem;
}

.step p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.38;
}

.quote {
  border: 1px solid rgba(155, 234, 46, 0.26);
  border-left: 5px solid var(--lime);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(163, 230, 53, 0.12);
  color: var(--navy);
  font-size: 1.02rem;
  font-style: italic;
  font-weight: 800;
}

.cta-panel {
  border-radius: var(--radius);
  padding: clamp(30px, 6vw, 64px);
  background:
    linear-gradient(135deg, rgba(6, 26, 40, 0.96), rgba(14, 90, 115, 0.9)),
    linear-gradient(90deg, rgba(0, 199, 217, 0.22), transparent);
  color: var(--white);
}

.cta-panel h2,
.cta-panel h3 {
  color: var(--white);
}

.cta-panel p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
}

.page-hero {
  background:
    linear-gradient(135deg, rgba(6, 26, 40, 0.96), rgba(14, 90, 115, 0.88)),
    radial-gradient(circle at 80% 20%, rgba(163, 230, 53, 0.18), transparent 30%);
  color: var(--white);
}

.page-hero .section-inner {
  display: grid;
  gap: 18px;
  min-height: 260px;
  align-content: center;
  padding: 42px 0;
}

.page-hero h1 {
  max-width: 820px;
}

.page-hero p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.96rem;
  overflow-wrap: break-word;
}

.form-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow-wrap: break-word;
}

.auth-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.85fr);
  align-items: start;
  gap: 24px;
}

.auth-form {
  box-shadow: 0 16px 44px rgba(11, 29, 42, 0.1);
}

.auth-gate-note {
  margin: 0 0 16px;
  border: 1px solid rgba(0, 184, 148, 0.2);
  border-radius: 14px;
  padding: 11px 13px;
  background: rgba(0, 184, 148, 0.08);
  color: var(--ocean);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.35;
}

.auth-gate-note[data-state="user"] {
  border-color: rgba(163, 230, 53, 0.34);
  background: rgba(163, 230, 53, 0.14);
  color: #24460f;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--navy);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(11, 29, 42, 0.16);
  border-radius: 14px;
  padding: 12px 13px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 118px;
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--teal);
  font-weight: 800;
}

.form-status[data-state="pending"] {
  color: var(--ocean);
}

.form-status[data-state="error"] {
  color: #b42318;
}

.consent-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.38;
}

.consent-list label {
  position: relative;
  display: block;
  min-height: 18px;
  padding-left: 26px;
  color: inherit;
  font-weight: 600;
}

.consent-list input {
  position: absolute;
  top: 2px;
  left: 0;
  width: 16px;
  min-height: 16px;
  margin: 0;
}

.consent-list a {
  color: var(--ocean);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.legal-document {
  max-width: 860px;
  overflow-wrap: break-word;
}

.legal-document h2 {
  margin-top: 34px;
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
}

.legal-document h2:first-child {
  margin-top: 0;
}

.legal-document p,
.legal-document li {
  color: var(--muted);
}

.legal-document ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 22px;
}

.notice-panel {
  border: 1px solid rgba(0, 184, 148, 0.2);
  border-radius: var(--radius);
  margin-bottom: 26px;
  padding: 14px 16px;
  background: rgba(0, 184, 148, 0.08);
  color: var(--ocean);
  font-size: 0.94rem;
  line-height: 1.45;
}

.notice-panel strong {
  color: var(--navy);
}

button:disabled {
  cursor: progress;
  opacity: 0.68;
  transform: none;
}

.comparison {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(11, 29, 42, 0.06);
}

.comparison th,
.comparison td {
  border-bottom: 1px solid var(--line);
  padding: 16px;
  text-align: left;
  vertical-align: top;
}

.comparison th {
  background: var(--navy);
  color: var(--white);
}

.comparison tr:last-child td {
  border-bottom: 0;
}

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  display: grid;
  gap: 12px;
  padding: 18px 0 16px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 700;
}

.disclaimers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 10px;
  font-size: 0.66rem;
  line-height: 1.34;
}

.disclaimers p {
  margin: 0;
}

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

.site-footer .brand strong {
  font-size: 0.92rem;
}

.site-footer .brand span {
  font-size: 0.7rem;
}

@media (max-width: 980px) {
  .nav-links {
    position: fixed;
    inset: 70px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 12px;
    background: rgba(6, 26, 40, 0.98);
    box-shadow: var(--shadow);
  }

  body.menu-open .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .nav-actions .account-register {
    display: none;
  }

  .nav-primary {
    display: none;
  }

  .account-user span {
    max-width: 110px;
  }

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

  .hero-inner {
    min-height: auto;
    padding: 46px 0 78px;
  }

  .hero {
    background:
      linear-gradient(90deg, rgba(6, 26, 40, 0.96) 0%, rgba(6, 26, 40, 0.82) 52%, rgba(6, 26, 40, 0.36) 100%),
      url("/assets/images/processed/travelgtc-home-hero-deck-sunset.webp") center right / cover no-repeat;
  }

  .membership-hero {
    background:
      linear-gradient(90deg, rgba(6, 26, 40, 0.98) 0%, rgba(6, 26, 40, 0.88) 60%, rgba(6, 26, 40, 0.48) 100%),
      url("/assets/images/processed/travelgtc-home-hero-deck-sunset.webp") center right / cover no-repeat;
  }

  .position-grid,
  .membership-grid,
  .ai-grid {
    grid-template-columns: 1fr;
  }

  .company-stats,
  .company-addresses {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .membership-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .opportunity-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .opportunities-head h2 {
    font-size: clamp(1.45rem, 3vw, 1.85rem);
  }

  .opportunity-card {
    min-height: 190px;
  }

  .route-promo {
    grid-template-columns: 1fr;
  }

  .route-visual {
    min-height: 260px;
  }

  .grid.four,
  .grid.three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .role-selector {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .auth-layout {
    grid-template-columns: 1fr;
  }

  .disclaimers {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 680px) {
  .nav-wrap,
  .section-inner,
  .footer-inner,
  .hero-inner {
    width: min(100% - 28px, 1280px);
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 132px;
    min-width: 132px;
  }

  .brand-logo img {
    max-height: 42px;
  }

  .brand span {
    display: none;
  }

  .nav-wrap {
    gap: 10px;
  }

  .account-link,
  .account-logout {
    padding: 8px 10px;
    font-size: 0.78rem;
  }

  .account-user span {
    display: none;
  }

  .section {
    padding: 36px 0;
  }

  h1 {
    font-size: clamp(2.1rem, 9vw, 2.45rem);
  }

  .page-hero h1 {
    font-size: clamp(2rem, 8vw, 2.25rem);
    overflow-wrap: anywhere;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 9.4vw, 2.35rem);
  }

  .membership-hero .hero-inner {
    padding: 42px 0 78px;
  }

  .hero p {
    font-size: 0.92rem;
  }

  .travel-opportunities {
    padding-top: 28px;
  }

  .section-cue {
    margin-top: -48px;
  }

  .opportunities-head h2 {
    font-size: clamp(1.32rem, 6.2vw, 1.72rem);
    white-space: normal;
  }

  .opportunity-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .opportunity-card {
    min-height: 154px;
    border-radius: 14px;
  }

  .opportunity-card:nth-child(5) {
    grid-column: 1 / -1;
    min-height: 172px;
  }

  .opportunity-card figcaption {
    right: 8px;
    bottom: 10px;
    left: 8px;
    font-size: 0.78rem;
  }

  .route-promo {
    gap: 18px;
    margin-top: 18px;
    border-radius: 18px;
    padding: 16px;
  }

  .route-script {
    font-size: clamp(2.35rem, 12vw, 3rem);
  }

  .route-lead {
    font-size: 0.96rem;
  }

  .route-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .route-options span {
    justify-items: start;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    text-align: left;
  }

  .route-options svg {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    padding: 7px;
  }

  .route-actions {
    flex-direction: column;
  }

  .route-visual {
    min-height: 210px;
    border-radius: 16px;
  }

  .position-visual,
  .membership-visual {
    min-height: 230px;
    border-radius: 16px;
  }

  .company-stats,
  .company-addresses {
    grid-template-columns: 1fr;
  }

  .company-stats article,
  .company-addresses article {
    min-height: 0;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .membership-doc-card {
    grid-template-columns: 1fr;
  }

  .membership-doc-card .button {
    width: 100%;
  }

  .membership-steps {
    grid-template-columns: 1fr;
  }

  .membership-steps article {
    min-height: 0;
  }

  .ai-widget {
    right: 14px;
    bottom: 14px;
    left: 14px !important;
    top: auto !important;
    width: auto;
  }

  .ai-float {
    min-height: 44px;
    padding: 10px 14px;
    font-size: 0.78rem;
  }

  .ai-form {
    grid-template-columns: 1fr;
  }

  .ai-panel {
    max-height: calc(100dvh - 28px);
  }

  .ai-messages {
    max-height: min(54vh, 390px);
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .grid.four,
  .grid.three,
  .grid.two,
  .auth-layout,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .role-selector {
    grid-template-columns: 1fr;
  }

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

  .crm-layout,
  .crm-detail-grid {
    grid-template-columns: 1fr;
  }

  .crm-detail-head,
  .crm-list-head {
    align-items: stretch;
    flex-direction: column;
  }

  .crm-detail-head select {
    width: 100%;
  }

  .section-visual {
    min-height: 220px;
  }

  .section-visual.wide {
    aspect-ratio: auto;
  }

  .footer-inner {
    gap: 14px;
    padding: 22px 0 18px;
  }

  .footer-top {
    display: grid;
    gap: 12px;
  }

  .footer-links {
    gap: 10px;
    font-size: 0.8rem;
  }

  .comparison {
    display: block;
    overflow-x: auto;
  }
}
