:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-2: #eef5f4;
  --ink: #17212b;
  --muted: #667789;
  --line: #dbe4ec;
  --brand: #087f8c;
  --brand-2: #0f5f6b;
  --accent: #f6a623;
  --green: #168a5f;
  --red: #c94a4a;
  --blue: #266fd5;
  --shadow: 0 18px 50px rgba(30, 49, 70, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 180px;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #22a7a0);
  border-radius: var(--radius);
  font-weight: 800;
}

.brand strong {
  display: block;
  font-size: 17px;
  line-height: 1.1;
}

.brand span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.portal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.portal-nav a {
  min-height: 36px;
  padding: 0 13px;
  color: var(--muted);
  text-decoration: none;
  background: transparent;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 650;
  display: inline-flex;
  align-items: center;
}

.portal-nav a.active {
  color: var(--brand-2);
  background: #e9f6f5;
  border-color: #c5e7e4;
}

.nav button,
.role-switch button,
.tab-button {
  min-height: 36px;
  padding: 0 13px;
  color: var(--muted);
  background: transparent;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 650;
}

.nav button.active,
.role-switch button.active,
.tab-button.active {
  color: var(--brand-2);
  background: #e9f6f5;
  border-color: #c5e7e4;
}

.role-switch {
  display: flex;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f9fbfd;
}

.page {
  width: min(1320px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 28px 0 48px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 24px;
}

.hero-main {
  min-width: 0;
  padding: 34px;
  background:
    radial-gradient(circle at 74% 18%, rgba(246, 166, 35, 0.24), transparent 34%),
    linear-gradient(135deg, #0f5f6b 0%, #087f8c 56%, #2db0a4 100%);
  border-radius: var(--radius);
  color: #fff;
  box-shadow: var(--shadow);
}

.hero-main h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero-main p {
  max-width: 710px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.65;
}

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

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 760;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 15px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
}

.btn.primary {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

.btn.dark {
  color: #fff;
  background: #17212b;
  border-color: #17212b;
}

.btn.ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
}

.btn.warn {
  color: #402b00;
  background: #ffe8b5;
  border-color: #ffd27b;
}

.btn.danger {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

.metric {
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(30, 49, 70, 0.08);
}

.metric b {
  display: block;
  font-size: 28px;
}

.metric span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin: 24px 0 14px;
}

.section-head h2,
.panel h2,
.panel h3 {
  margin: 0;
}

.section-head p {
  max-width: 660px;
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

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

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

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

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

.panel,
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(30, 49, 70, 0.07);
}

.panel {
  padding: 20px;
}

.card {
  padding: 18px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.agent-board {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.agent-card {
  min-height: 112px;
  padding: 14px;
  text-align: left;
  color: var(--ink);
  background: #f9fbfd;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.agent-card:hover,
.agent-card.active {
  transform: translateY(-1px);
  border-color: #91d7d1;
  box-shadow: 0 10px 28px rgba(30, 49, 70, 0.09);
}

.agent-card strong,
.agent-card span,
.agent-card em {
  display: block;
}

.agent-card strong {
  font-size: 14px;
  line-height: 1.3;
}

.agent-card span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.agent-card em {
  width: fit-content;
  margin-top: 10px;
  padding: 4px 8px;
  color: var(--brand-2);
  background: #e9f6f5;
  border-radius: 999px;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.detail-panel {
  margin-bottom: 18px;
}

.media-frame,
.wide-media {
  overflow: hidden;
  margin-bottom: 14px;
  background: #e8eef2;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.media-frame {
  aspect-ratio: 16 / 9;
}

.wide-media {
  aspect-ratio: 21 / 8;
}

.media-frame img,
.wide-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-structure {
  display: grid;
  gap: 8px;
  margin: 12px 0;
}

.quote-structure details {
  padding: 10px 12px;
  background: #f8fbfc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.quote-structure summary {
  color: #23394d;
  cursor: pointer;
  font-weight: 760;
}

.quote-structure p {
  margin-top: 8px;
}

.timeline {
  display: grid;
  gap: 10px;
  padding-left: 12px;
  border-left: 3px solid #c5e7e4;
}

.timeline-stop {
  padding: 11px 12px;
  background: #f8fbfc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.timeline-stop p {
  margin: 5px 0 0;
}

.compact-form {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.map-panel {
  margin-bottom: 16px;
}

.map-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 14px;
  align-items: stretch;
}

.osm-map {
  width: 100%;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #e8eef2;
}

.map-stop-list {
  display: grid;
  align-content: start;
  gap: 10px;
  max-height: 420px;
  overflow: auto;
}

.map-stop {
  display: grid;
  gap: 5px;
  width: 100%;
  padding: 12px;
  color: var(--ink);
  text-align: left;
  background: #f8fbfc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.map-stop.active {
  background: #e9f6f5;
  border-color: #76c9c5;
}

.map-stop.live {
  text-decoration: none;
  border-color: #b7d3ff;
  background: #eef5ff;
}

.map-stop.live.fresh {
  border-color: #7cc8a8;
  background: #effaf4;
}

.map-stop.live.stale {
  border-color: #e3c56b;
  background: #fff9e8;
}

.map-stop.live.offline {
  border-color: #cfd8e3;
  background: #f6f8fb;
}

.map-stop strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.map-stop em {
  padding: 3px 8px;
  color: #29445f;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(41, 68, 95, 0.16);
  border-radius: 999px;
  font-size: 12px;
  font-style: normal;
  white-space: nowrap;
}

.map-stop span,
.map-stop small {
  color: var(--muted);
}

.live-panel {
  display: grid;
  gap: 10px;
  padding: 12px;
  background: #fbfdff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.live-panel h3 {
  margin: 0;
}

.progress {
  height: 10px;
  margin: 12px 0;
  overflow: hidden;
  background: #edf2f7;
  border-radius: 999px;
}

.progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #0f766e, #2fb7a5);
}

.compact-hero {
  min-height: auto;
}

.item.unread {
  border-color: #76c9c5;
  background: #fbfffe;
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 13px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.chip,
.status {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 720;
}

.chip {
  color: #32515b;
  background: #eef5f4;
}

.chip-button {
  border: 1px solid #d3e5e3;
  cursor: pointer;
}

.quick-login {
  margin-top: 14px;
}

.status {
  color: var(--brand-2);
  background: #e9f6f5;
}

.status.pending,
.status.draft,
.status.waiting {
  color: #885f07;
  background: #fff2cf;
}

.status.accepted,
.status.confirmed,
.status.approved,
.status.completed {
  color: var(--green);
  background: #e7f7ef;
}

.status.cancelled,
.status.rejected,
.status.locked {
  color: var(--red);
  background: #ffe8e8;
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.filter-panel {
  margin-bottom: 16px;
}

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

.field label {
  color: #3b4b5a;
  font-size: 13px;
  font-weight: 760;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 11px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
}

.field textarea {
  min-height: 92px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #76c9c5;
  box-shadow: 0 0 0 3px rgba(8, 127, 140, 0.12);
}

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

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

.list {
  display: grid;
  gap: 12px;
}

.item {
  display: grid;
  gap: 10px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.item h3,
.item h4 {
  margin: 0;
}

.item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.item-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.link-card {
  text-decoration: none;
  color: inherit;
}

.portal-gate,
.portal-strip {
  margin-bottom: 18px;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 16px;
  align-items: start;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

th,
td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}

th {
  color: #405365;
  background: #f7fafc;
  font-size: 12px;
  text-transform: uppercase;
}

.chat-box {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 520px;
  overflow: hidden;
}

.chat-head {
  padding: 14px;
  border-bottom: 1px solid var(--line);
}

.messages {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  overflow-y: auto;
  background: #f8fbfc;
}

.message {
  max-width: 76%;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
}

.message.me {
  align-self: flex-end;
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

.message strong {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
}

.chat-form {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.chat-form input {
  flex: 1;
  min-width: 0;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.chat-form .chat-file {
  max-width: 210px;
  padding: 8px;
}

.chat-attachment {
  display: grid;
  gap: 6px;
  margin-top: 8px;
  color: inherit;
  font-size: 13px;
  font-weight: 720;
}

.chat-attachment img {
  display: block;
  width: min(260px, 100%);
  max-height: 180px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.message:not(.me) .chat-attachment img {
  border-color: var(--line);
}

.chat-attachment.file {
  padding: 9px 10px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.empty {
  padding: 28px;
  color: var(--muted);
  text-align: center;
  background: #f8fbfc;
  border: 1px dashed #c8d5dd;
  border-radius: var(--radius);
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  max-width: 360px;
  padding: 13px 15px;
  color: #fff;
  background: #17212b;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.public-home {
  min-height: 100vh;
  color: #111827;
  background: linear-gradient(180deg, #f5fbff 0%, #ffffff 32%, #f7fbf8 100%);
}

.home-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px max(22px, calc((100vw - 1240px) / 2));
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(14, 116, 144, 0.12);
  backdrop-filter: blur(20px);
}

.home-brand,
.home-nav,
.home-header-actions,
.home-actions,
.home-proof,
.home-panel-top,
.home-chat-head,
.home-chat-suggestions {
  display: flex;
  align-items: center;
}

.home-brand {
  gap: 10px;
  color: #0f172a;
  text-decoration: none;
  font-size: 18px;
  font-weight: 900;
}

.home-brand-mark,
.home-icon-button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: linear-gradient(135deg, #0f766e, #0ea5a3);
  border-radius: 8px;
  font-weight: 900;
}

.home-nav {
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.home-nav a,
.home-footer span {
  color: #64748b;
  text-decoration: none;
  font-size: 14px;
  font-weight: 750;
}

.home-header-actions {
  gap: 8px;
}

.home-icon-button {
  width: 36px;
  height: 36px;
  text-decoration: none;
  background: #0f172a;
  font-size: 13px;
}

.home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 850;
}

.home-button.primary {
  color: #fff;
  background: #0f766e;
  border-color: #0f766e;
}

.home-button.secondary {
  color: #0f172a;
  background: #fff;
}

.home-button.dark {
  color: #fff;
  background: #0f172a;
  border-color: #0f172a;
}

.home-hero,
.home-section,
.home-intent-strip,
.home-footer {
  width: min(1240px, calc(100vw - 36px));
  margin: 0 auto;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(390px, 0.97fr);
  gap: 26px;
  align-items: stretch;
  padding: 34px 0 18px;
}

.home-hero-copy,
.home-ops-card,
.home-request-card,
.home-chat-card,
.home-partner-band {
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.08);
}

.home-hero-copy {
  min-height: 640px;
  padding: 42px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 47, 73, 0.88), rgba(8, 47, 73, 0.52)),
    url("https://images.unsplash.com/photo-1539635278303-d4002c07eae3?auto=format&fit=crop&w=1500&q=82") center/cover;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.home-hero-copy h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

.home-hero-copy p {
  max-width: 720px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.65;
}

.home-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.home-proof {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.home-proof div {
  min-width: 132px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}

.home-proof strong,
.home-proof span {
  display: block;
}

.home-proof strong {
  font-size: 21px;
}

.home-proof span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 760;
}

.home-ops-card {
  padding: 22px;
  background: #fff;
}

.home-panel-top {
  justify-content: space-between;
  gap: 14px;
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
}

.home-panel-top strong,
.home-chat-head span {
  padding: 7px 10px;
  color: #0f766e;
  background: #ecfdf5;
  border-radius: 999px;
  font-size: 12px;
}

.home-ops-metrics,
.home-feature-grid,
.home-tour-grid {
  display: grid;
  gap: 14px;
}

.home-ops-metrics {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.home-ops-metrics div,
.home-feature-grid article,
.home-request-card,
.home-chat-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
}

.home-ops-metrics div {
  padding: 18px;
}

.home-ops-metrics strong {
  display: block;
  color: #0f172a;
  font-size: 30px;
}

.home-ops-metrics span,
.home-queue p,
.home-tour-card span,
.home-feature-grid p,
.home-request-card p,
.home-chat-head p,
.home-partner-band p {
  color: #64748b;
  line-height: 1.55;
}

.home-route-preview {
  position: relative;
  overflow: hidden;
  margin-top: 16px;
  border-radius: 8px;
}

.home-route-preview img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.home-route-preview div {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 14px;
  color: #fff;
  background: rgba(15, 23, 42, 0.72);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.home-route-preview strong,
.home-route-preview span {
  display: block;
}

.home-route-preview span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.home-queue {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.home-queue div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
}

.home-queue span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: #0f766e;
  border-radius: 8px;
  font-weight: 900;
}

.home-queue p {
  margin: 0;
  font-size: 14px;
  font-weight: 760;
}

.home-intent-strip {
  display: grid;
  grid-template-columns: 1.2fr repeat(6, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
  margin-top: 16px;
  padding: 16px;
  background: #0f172a;
  border-radius: 8px;
}

.home-intent-strip div {
  color: #fff;
}

.home-intent-strip strong,
.home-intent-strip span {
  display: block;
}

.home-intent-strip span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.home-intent-strip button {
  min-height: 72px;
  padding: 10px;
  color: #0f172a;
  background: #fff;
  border-radius: 8px;
  font-weight: 850;
}

.home-intent-strip button span {
  display: block;
  width: 28px;
  height: 28px;
  margin: 0 auto 5px;
  color: #fff;
  background: #0f766e;
  border-radius: 8px;
  line-height: 28px;
}

.home-section {
  padding: 48px 0 0;
}

.home-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.home-section h2,
.home-request-card h2,
.home-chat-head h2,
.home-partner-band h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.05;
  letter-spacing: 0;
}

.home-section-head p {
  max-width: 680px;
  margin: 8px 0 0;
  color: #64748b;
  line-height: 1.6;
}

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

.home-tour-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  box-shadow: 0 16px 54px rgba(15, 23, 42, 0.07);
}

.home-tour-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.home-tour-card div {
  padding: 16px;
}

.home-tour-card h3,
.home-feature-grid h3 {
  margin: 6px 0 8px;
  color: #0f172a;
  font-size: 19px;
}

.home-tour-card p {
  margin: 0;
  color: #0f766e;
  font-weight: 850;
}

.home-tour-card button {
  min-height: 38px;
  margin-top: 14px;
  padding: 0 13px;
  color: #0f172a;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 8px;
  font-weight: 800;
}

.home-feature-band {
  padding-bottom: 8px;
}

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

.home-feature-grid article {
  padding: 20px;
}

.home-feature-grid p {
  margin: 0;
}

.home-request-ai {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 20px;
  align-items: start;
}

.home-request-card,
.home-chat-card {
  padding: 22px;
}

.home-request-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.home-request-card h2,
.home-request-card p,
.home-request-card .wide {
  grid-column: 1 / -1;
}

.home-request-card p {
  margin: 0;
}

.home-request-card label {
  display: grid;
  gap: 7px;
  color: #334155;
  font-size: 13px;
  font-weight: 850;
}

.home-request-card input,
.home-request-card textarea,
.home-chat-form input {
  width: 100%;
  min-height: 42px;
  padding: 10px 11px;
  color: #0f172a;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 8px;
  outline: none;
}

.home-request-card textarea {
  resize: vertical;
}

.home-chat-card {
  min-height: 620px;
  display: grid;
  grid-template-rows: auto minmax(260px, 1fr) auto auto;
  gap: 14px;
}

.home-chat-head {
  justify-content: space-between;
  gap: 14px;
}

.home-chat-head p {
  margin: 8px 0 0;
}

.home-chat-log {
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  padding: 14px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
}

.home-chat-message {
  max-width: 82%;
  padding: 11px 13px;
  border-radius: 8px;
}

.home-chat-message.assistant {
  align-self: flex-start;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.home-chat-message.user {
  align-self: flex-end;
  color: #fff;
  background: #0f766e;
}

.home-chat-message strong {
  display: block;
  margin-bottom: 5px;
  font-size: 12px;
}

.home-chat-message p {
  margin: 0;
  line-height: 1.55;
}

.home-chat-suggestions {
  flex-wrap: wrap;
  gap: 8px;
}

.home-chat-suggestions button {
  min-height: 34px;
  padding: 0 11px;
  color: #0f172a;
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 780;
}

.home-chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.home-partner-band {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 24px;
  align-items: center;
  padding: 24px;
  background: #fff;
}

.home-partner-band p {
  max-width: 680px;
  margin: 12px 0 0;
}

.home-partner-band img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.home-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 36px 0 44px;
}

.home-footer strong {
  color: #0f172a;
  font-size: 18px;
}

.travel-hero {
  position: relative;
  min-height: max(760px, calc(100svh - 72px));
  width: 100%;
  margin: 0;
  overflow: hidden;
  padding: clamp(44px, 6vw, 82px) max(22px, calc((100vw - 1240px) / 2)) 36px;
  color: #fff;
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 247, 204, 0.42), transparent 27%),
    linear-gradient(180deg, rgba(5, 37, 56, 0.1), rgba(2, 20, 35, 0.72)),
    linear-gradient(90deg, rgba(4, 43, 64, 0.72), rgba(9, 125, 145, 0.2), rgba(4, 43, 64, 0.62)),
    url("https://images.unsplash.com/photo-1528127269322-539801943592?auto=format&fit=crop&w=2600&q=92") center/cover no-repeat;
  border-radius: 0;
  box-shadow: none;
}

.travel-hero::before {
  position: absolute;
  top: 58px;
  right: max(24px, calc((100vw - 1240px) / 2));
  bottom: 28px;
  left: max(24px, calc((100vw - 1240px) / 2));
  pointer-events: none;
  content: "";
  border: 1px solid rgba(255, 230, 168, 0.5);
  border-radius: 8px;
}

.travel-hero::after {
  position: absolute;
  right: 5vw;
  top: 12vh;
  width: min(620px, 44vw);
  height: min(620px, 44vw);
  pointer-events: none;
  content: "";
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 68%);
}

.travel-hero-copy {
  max-width: 920px;
  padding-bottom: 30px;
}

.travel-hero h1 {
  margin: 0;
  font-size: clamp(40px, 6vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
}

.travel-hero p {
  max-width: 720px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.6;
}

.user-first-hero {
  display: block;
  min-height: max(700px, calc(100svh - 72px));
}

.vietnam-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.user-first-hero h1 {
  margin: 6px 0 0;
  max-width: 980px;
  font-family: "Brush Script MT", "Segoe Script", "Snell Roundhand", cursive;
  font-size: clamp(108px, 13vw, 210px);
  font-weight: 500;
  line-height: 0.7;
  text-wrap: balance;
  text-shadow: 0 30px 70px rgba(2, 6, 23, 0.34);
}

.user-first-hero h1 span {
  display: block;
  color: #9ceeff;
}

.user-first-hero p {
  max-width: 790px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  line-height: 1.65;
}

.hero-ribbon {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  color: #073b4c;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 236, 179, 0.62);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journey-planner {
  margin-top: 22px;
}

.vietnam-poster-card {
  position: relative;
  max-width: 670px;
  margin-top: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border: 8px solid rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(2, 6, 23, 0.32);
  animation: posterFloat 7s ease-in-out infinite alternate;
}

.vietnam-poster-card > img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
  animation: posterImageDrift 16s ease-in-out infinite alternate;
}

.poster-large {
  max-width: min(700px, 100%);
}

.poster-ticket {
  position: absolute;
  top: 18px;
  right: 18px;
  width: min(220px, 44%);
  padding: 14px;
  color: #075985;
  background: rgba(255, 255, 255, 0.94);
  border: 1px dashed rgba(14, 116, 144, 0.4);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(2, 6, 23, 0.16);
  transform: rotate(6deg);
  animation: ticketFloat 5s ease-in-out infinite alternate;
}

.poster-ticket strong,
.poster-ticket span,
.poster-ticket b,
.poster-ticket small {
  display: block;
}

.poster-ticket strong {
  color: #fff;
  background: #0ea5e9;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  text-align: center;
}

.poster-ticket span {
  margin-top: 12px;
  color: #64748b;
  font-size: 11px;
  font-weight: 800;
}

.poster-ticket b {
  margin-top: 2px;
  color: #075985;
  font-size: 22px;
  letter-spacing: 0.04em;
}

.poster-ticket small {
  margin-top: 12px;
  color: #0f766e;
  font-size: 10px;
  font-weight: 900;
}

.poster-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 14px 16px;
  color: #fff;
  background: linear-gradient(90deg, rgba(3, 32, 52, 0.78), rgba(14, 116, 144, 0.5));
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

@keyframes posterFloat {
  from {
    transform: translateY(0) rotate(-0.2deg);
  }
  to {
    transform: translateY(-8px) rotate(0.4deg);
  }
}

@keyframes posterImageDrift {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.05);
  }
}

@keyframes ticketFloat {
  from {
    transform: translateY(0) rotate(6deg);
  }
  to {
    transform: translateY(-7px) rotate(4deg);
  }
}

.poster-caption strong,
.poster-caption span {
  display: block;
}

.poster-caption strong {
  font-size: 16px;
}

.poster-caption span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.hero-destination-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(980px, 100%);
  margin-top: 22px;
  max-width: none;
}

.hero-destination-rail button {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  padding: 0;
  text-align: left;
  background: #0f172a;
  border: 1px solid rgba(255, 237, 181, 0.48);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(2, 6, 23, 0.28);
  transform: translateY(0);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hero-destination-rail img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.hero-destination-rail button::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 6%, rgba(2, 6, 23, 0.18) 34%, rgba(2, 6, 23, 0.82));
}

.hero-destination-rail button:hover img {
  transform: scale(1.05);
}

.hero-destination-rail button:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 58px rgba(2, 6, 23, 0.35);
}

.hero-destination-rail span,
.hero-destination-rail small {
  position: relative;
  z-index: 1;
  display: block;
  margin-left: 12px;
}

.hero-destination-rail span {
  margin-top: 108px;
  color: #fff;
  font-size: 24px;
  font-weight: 920;
}

.hero-destination-rail small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 760;
}

.hero-inclusions {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  width: min(980px, 100%);
  max-width: none;
  margin-top: 14px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-inclusions span {
  display: grid;
  min-height: 34px;
  place-items: center;
  padding: 0 8px;
  color: rgba(255, 255, 255, 0.88);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 12px;
  font-weight: 820;
  text-align: center;
}

.hero-inclusions span:last-child {
  border-right: 0;
}

.trip-builder {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  padding: 12px;
  color: #0f172a;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(242, 252, 255, 0.92)),
    #fff;
  border: 1px solid rgba(255, 236, 179, 0.72);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(2, 22, 35, 0.3);
  backdrop-filter: blur(24px);
}

.trip-builder::before,
.trip-builder::after {
  position: absolute;
  top: 48px;
  width: 18px;
  height: 18px;
  content: "";
  background: rgba(5, 87, 96, 0.42);
  border-radius: 50%;
}

.trip-builder::before {
  left: -12px;
}

.trip-builder::after {
  right: -12px;
}

.trip-prompt {
  display: grid;
  gap: 6px;
}

.trip-prompt span,
.trip-builder-grid label {
  color: #334155;
  font-size: 12px;
  font-weight: 880;
}

.trip-prompt textarea {
  min-height: 58px;
  width: 100%;
  resize: vertical;
  padding: 12px 14px;
  color: #0f172a;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(14, 116, 144, 0.16);
  border-radius: 8px;
  font-size: 16px;
  line-height: 1.5;
  outline: none;
}

.trip-builder-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.65fr 0.9fr;
  gap: 8px;
  margin-top: 8px;
}

.trip-builder-grid label {
  display: grid;
  gap: 6px;
}

.trip-builder-grid input {
  min-height: 36px;
  width: 100%;
  padding: 8px 10px;
  color: #0f172a;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(14, 116, 144, 0.14);
  border-radius: 8px;
  outline: none;
}

.trip-style-row,
.trip-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 8px;
}

.trip-style-row button {
  min-height: 28px;
  padding: 0 10px;
  color: #075985;
  background: #e9fbff;
  border: 1px solid rgba(14, 165, 233, 0.32);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 860;
}

.trip-builder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
  justify-content: center;
}

.trip-builder-actions .home-button.light {
  color: #0f3f46;
  background: #fff8e6;
  border-color: rgba(246, 166, 35, 0.22);
}

.trip-examples {
  display: none;
  padding-top: 12px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.trip-examples button {
  flex: 1 1 250px;
  min-height: 38px;
  padding: 10px 12px;
  color: #334155;
  text-align: left;
  background: rgba(248, 250, 252, 0.82);
  border: 1px solid rgba(14, 116, 144, 0.12);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 720;
  line-height: 1.35;
}

.travel-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.home-button.light {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
}

.home-text-link {
  color: #0f172a;
  text-decoration: none;
  font-size: 14px;
  font-weight: 850;
}

.travel-search {
  width: min(1120px, 100%);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.2);
  backdrop-filter: blur(16px);
}

.search-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.search-tabs button {
  min-height: 36px;
  padding: 0 14px;
  color: #475569;
  background: transparent;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 850;
}

.search-tabs button.active {
  color: #fff;
  background: #0f766e;
}

.search-fields {
  display: grid;
  grid-template-columns: 1.5fr 0.85fr 0.75fr 0.9fr auto;
  gap: 10px;
  align-items: end;
  padding: 14px;
}

.search-fields label,
.home-request-card label {
  color: #334155;
}

.search-fields label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  font-weight: 850;
}

.search-fields input {
  min-height: 42px;
  width: 100%;
  padding: 10px 11px;
  color: #0f172a;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 8px;
  outline: none;
}

.trip-brief-section,
.ai-plan-section,
.trip-canvas-section,
.budget-section,
.difference-section {
  scroll-margin-top: 88px;
}

.trip-brief-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.trip-brief-grid article {
  min-height: 112px;
  padding: 16px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  box-shadow: 0 12px 38px rgba(15, 23, 42, 0.05);
}

.trip-brief-grid span,
.ai-plan-top span,
.trip-timeline article > span,
.budget-row em {
  color: #64748b;
  font-size: 12px;
  font-weight: 860;
}

.trip-brief-grid strong {
  display: block;
  margin-top: 12px;
  color: #0f172a;
  font-size: 18px;
  line-height: 1.2;
}

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

.ai-plan-card {
  padding: 22px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.06);
}

.ai-plan-card.featured {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.96), rgba(14, 116, 144, 0.92)),
    url("https://images.unsplash.com/photo-1528127269322-539801943592?auto=format&fit=crop&w=1100&q=84") center/cover;
  border-color: rgba(255, 255, 255, 0.32);
}

.ai-plan-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.ai-plan-card h3 {
  margin: 0;
  color: #0f172a;
  font-size: 26px;
}

.ai-plan-card.featured h3,
.ai-plan-card.featured > strong {
  color: #fff;
}

.ai-plan-card > strong {
  display: block;
  margin-top: 18px;
  color: #0f766e;
  font-size: 34px;
  line-height: 1;
}

.ai-plan-card p {
  min-height: 72px;
  margin: 14px 0 0;
  color: #64748b;
  line-height: 1.55;
}

.ai-plan-card.featured p,
.ai-plan-card.featured li,
.ai-plan-card.featured .ai-plan-top span {
  color: rgba(255, 255, 255, 0.82);
}

.ai-plan-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 20px;
  padding: 0;
  list-style: none;
}

.ai-plan-card li {
  color: #334155;
  font-size: 14px;
}

.ai-plan-card li::before {
  color: #0f766e;
  content: "✓ ";
  font-weight: 900;
}

.ai-plan-card.featured li::before {
  color: #facc15;
}

.ai-plan-card button {
  min-height: 40px;
  width: 100%;
  color: #fff;
  background: #0f172a;
  border-radius: 8px;
  font-weight: 860;
}

.ai-plan-card.featured button {
  color: #0f172a;
  background: #fff;
}

.trip-canvas-section,
.budget-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 24px;
  align-items: start;
}

.trip-canvas-copy h2,
.budget-section h2,
.difference-section h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.03;
}

.trip-canvas-copy p,
.budget-section p {
  color: #64748b;
  line-height: 1.65;
}

.trip-timeline {
  display: grid;
  gap: 10px;
}

.trip-timeline article {
  display: grid;
  grid-template-columns: 86px 1fr auto;
  gap: 14px;
  align-items: start;
  padding: 16px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
}

.trip-timeline h3 {
  margin: 0;
  color: #0f172a;
  font-size: 18px;
}

.trip-timeline p {
  margin: 6px 0 0;
  color: #64748b;
  line-height: 1.5;
}

.trip-timeline strong {
  color: #0f766e;
  white-space: nowrap;
}

.budget-board {
  display: grid;
  gap: 12px;
  padding: 20px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.06);
}

.budget-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.42fr) 1fr 48px;
  gap: 12px;
  align-items: center;
}

.budget-row strong,
.budget-row span {
  display: block;
}

.budget-row strong {
  color: #0f172a;
}

.budget-row span {
  margin-top: 3px;
  color: #64748b;
  font-size: 13px;
}

.budget-track {
  height: 10px;
  overflow: hidden;
  background: #e2e8f0;
  border-radius: 999px;
}

.budget-track i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #0f766e, #f6a623);
  border-radius: inherit;
}

.difference-table {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
}

.difference-head,
.difference-row {
  display: grid;
  grid-template-columns: 0.72fr 1fr 1fr;
  gap: 0;
}

.difference-head {
  color: #0f172a;
  background: #eef5f4;
  font-weight: 900;
}

.difference-head > *,
.difference-row > * {
  margin: 0;
  padding: 16px;
  border-right: 1px solid rgba(15, 23, 42, 0.08);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.difference-row span {
  color: #0f172a;
  font-weight: 880;
}

.difference-row p {
  color: #64748b;
  line-height: 1.5;
}

.difference-row p:last-child {
  color: #0f766e;
  font-weight: 760;
}

.compact-ai {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 20px;
  align-items: stretch;
}

.ai-copy {
  padding: 30px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  box-shadow: 0 16px 54px rgba(15, 23, 42, 0.06);
}

.ai-copy h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.05;
}

.ai-copy p {
  margin: 14px 0 0;
  color: #64748b;
  line-height: 1.65;
}

.ai-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.ai-chips button {
  min-height: 36px;
  padding: 0 12px;
  color: #0f766e;
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 820;
}

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

.destination-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: 8px;
  background: #0f172a;
  box-shadow: 0 16px 54px rgba(15, 23, 42, 0.08);
}

.destination-card:nth-child(1),
.destination-card:nth-child(3) {
  grid-column: span 2;
}

.destination-card:nth-child(6) {
  grid-column: span 2;
}

.destination-card img,
.featured-tour-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.destination-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 20%, rgba(2, 6, 23, 0.76));
}

.destination-card div {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 1;
  color: #fff;
}

.destination-card span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 780;
}

.destination-card h3 {
  margin: 5px 0 10px;
  font-size: 24px;
  line-height: 1;
}

.destination-card button,
.featured-tour-card button {
  min-height: 34px;
  padding: 0 12px;
  color: #0f172a;
  background: #fff;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 850;
}

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

.featured-tour-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  box-shadow: 0 16px 54px rgba(15, 23, 42, 0.07);
}

.featured-tour-card img {
  height: auto;
  aspect-ratio: 16 / 10;
}

.featured-tour-body {
  position: relative;
  padding: 18px;
}

.tour-rating {
  position: absolute;
  top: -18px;
  right: 16px;
  min-height: 34px;
  padding: 8px 10px;
  color: #0f172a;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.14);
  font-size: 13px;
  font-weight: 900;
}

.featured-tour-card h3 {
  margin: 0;
  color: #0f172a;
  font-size: 20px;
}

.featured-tour-card p {
  margin: 8px 0 14px;
  color: #64748b;
}

.tour-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 16px;
}

.tour-price span,
.tour-price small {
  color: #64748b;
}

.tour-price strong {
  color: #0f766e;
  font-size: 24px;
}

.service-band {
  padding-bottom: 10px;
}

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

.service-grid article {
  padding: 20px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
}

.service-grid h3 {
  margin: 0 0 8px;
  color: #0f172a;
}

.service-grid p {
  margin: 0;
  color: #64748b;
  line-height: 1.55;
}

.how-it-works {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 20px;
  align-items: start;
}

.how-it-works h2,
.final-cta h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.03;
}

.how-it-works p,
.final-cta p {
  color: #64748b;
  line-height: 1.65;
}

.how-it-works ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.how-it-works li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
}

.how-it-works li::before {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: #0f766e;
  border-radius: 8px;
  content: counter(step);
  counter-increment: step;
  font-weight: 900;
}

.how-it-works strong,
.how-it-works span {
  display: block;
}

.how-it-works span {
  margin-top: 4px;
  color: #64748b;
}

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

.trust-card {
  padding: 18px;
  color: #fff;
  background: #0f172a;
  border-radius: 8px;
}

.trust-card strong,
.trust-card span {
  display: block;
}

.trust-card span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.final-cta {
  margin-top: 48px;
  padding: 44px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(15, 118, 110, 0.92), rgba(14, 116, 144, 0.76)),
    url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1500&q=84") center/cover;
  border-radius: 8px;
}

.final-cta h2 {
  color: #fff;
}

.final-cta p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 980px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .split,
  .grid.two,
  .grid.three,
  .grid.four,
  .home-hero,
  .home-request-ai,
  .home-partner-band {
    grid-template-columns: 1fr;
  }

  .home-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .user-first-hero {
    display: block;
  }

  .vietnam-hero-content {
    text-align: center;
  }

  .hero-destination-rail {
    max-width: 100%;
  }

  .hero-inclusions {
    max-width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-intent-strip,
  .home-tour-grid,
  .home-feature-grid,
  .search-fields,
  .trip-builder-grid,
  .compact-ai,
  .destination-grid,
  .featured-tour-grid,
  .service-grid,
  .how-it-works,
  .trust-band,
  .trip-brief-grid,
  .ai-plan-grid,
  .trip-canvas-section,
  .budget-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .destination-card:nth-child(1),
  .destination-card:nth-child(3),
  .destination-card:nth-child(6) {
    grid-column: span 1;
  }

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

@media (max-width: 640px) {
  .app-shell,
  .topbar,
  .page,
  .hero,
  .hero-main,
  .metric-grid,
  .panel,
  .card {
    max-width: 100%;
  }

  .page {
    width: calc(100vw - 20px);
    padding-top: 18px;
  }

  .topbar {
    padding: 12px 10px;
    overflow: hidden;
  }

  .nav,
  .role-switch {
    gap: 6px;
  }

  .nav button,
  .role-switch button,
  .tab-button {
    min-height: 34px;
    padding: 0 10px;
    font-size: 13px;
  }

  .hero-main {
    padding: 22px;
    width: 100%;
    overflow: hidden;
  }

  .hero {
    display: block;
  }

  .hero-main h1,
  .hero-main p {
    max-width: 100%;
  }

  .metric-grid {
    margin-top: 14px;
  }

  .hero-main h1 {
    font-size: 26px;
    line-height: 1.16;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .hero-main p {
    font-size: 14px;
    line-height: 1.55;
  }

  .hero-actions .btn {
    flex: 1 1 100%;
    min-width: 0;
  }

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

  .section-head,
  .item-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .role-switch,
  .nav,
  .portal-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .message {
    max-width: 92%;
  }

  .chat-form {
    flex-direction: column;
  }

  .chat-form .chat-file {
    max-width: 100%;
  }

  .home-header,
  .home-hero,
  .home-section,
  .home-intent-strip,
  .home-footer {
    width: calc(100vw - 20px);
  }

  .home-header {
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 10px;
  }

  .home-nav {
    grid-column: 1 / -1;
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 14px;
    padding-bottom: 2px;
  }

  .home-header-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .home-header-actions {
    width: auto;
  }

  .home-hero-copy {
    min-height: 560px;
    padding: 24px;
  }

  .home-hero-copy h1 {
    font-size: 34px;
    line-height: 1.05;
  }

  .home-hero-copy p {
    font-size: 15px;
  }

  .home-intent-strip,
  .home-tour-grid,
  .home-feature-grid,
  .home-request-card,
  .home-ops-metrics,
  .search-fields,
  .trip-builder-grid,
  .compact-ai,
  .destination-grid,
  .featured-tour-grid,
  .service-grid,
  .how-it-works,
  .trust-band,
  .trip-brief-grid,
  .ai-plan-grid,
  .trip-canvas-section,
  .budget-section,
  .difference-head,
  .difference-row {
    grid-template-columns: 1fr;
  }

  .travel-hero {
    width: 100%;
    min-height: calc(100svh - 64px);
    padding: 26px 18px;
  }

  .travel-hero h1 {
    font-size: 78px;
    line-height: 0.78;
  }

  .travel-hero p {
    font-size: 15px;
  }

  .hero-destination-rail {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 20px;
  }

  .hero-destination-rail button {
    min-height: 120px;
  }

  .hero-destination-rail span {
    margin-top: 68px;
  }

  .hero-inclusions {
    gap: 0;
    padding: 10px 0;
  }

  .hero-inclusions span {
    min-height: 30px;
    font-size: 11px;
  }

  .travel-search {
    margin-top: 8px;
  }

  .trip-builder {
    padding: 12px;
  }

  .trip-builder::before,
  .trip-builder::after {
    display: none;
  }

  .trip-prompt textarea {
    min-height: 118px;
    font-size: 15px;
  }

  .trip-builder-actions .home-button,
  .trip-examples button {
    width: 100%;
  }

  .trip-brief-grid article {
    min-height: auto;
  }

  .ai-plan-card p {
    min-height: auto;
  }

  .trip-timeline article,
  .budget-row {
    grid-template-columns: 1fr;
  }

  .trip-timeline strong {
    white-space: normal;
  }

  .difference-head span {
    display: none;
  }

  .difference-head > *,
  .difference-row > * {
    border-right: 0;
  }

  .search-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .search-tabs button {
    flex: 0 0 auto;
  }

  .destination-card {
    min-height: 210px;
  }

  .home-section-head,
  .home-footer,
  .home-chat-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .home-chat-message {
    max-width: 94%;
  }

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

  .osm-map {
    min-height: 320px;
  }

  .map-stop-list {
    max-height: none;
  }
}

/* Touros poster homepage */
.poster-home {
  min-height: 100vh;
  background:
    radial-gradient(circle at 90% 7%, rgba(0, 132, 255, 0.14), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #eef8ff 42%, #ffffff 70%, #eef6ff 100%);
  color: #08275a;
}

.poster-home .home-header,
.poster-home .home-section,
.poster-home .home-footer {
  width: min(1400px, calc(100vw - 48px));
}

.poster-header {
  z-index: 50;
  display: grid;
  grid-template-columns: auto minmax(360px, 1fr) auto;
  align-items: center;
  gap: clamp(20px, 3vw, 56px);
  width: 100vw !important;
  margin: 0 calc(50% - 50vw);
  padding: 18px max(18px, calc((100vw - 1400px) / 2 + 18px)) 14px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.58) 52%, rgba(255, 255, 255, 0.36)),
    rgba(238, 248, 255, 0.3);
  border-bottom: 0;
  box-shadow: 0 18px 52px rgba(8, 80, 154, 0.06);
  backdrop-filter: blur(18px) saturate(1.12);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
}

.poster-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -28px;
  height: 28px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0));
}

.poster-header .home-brand {
  white-space: nowrap;
  color: #0a63bd;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.poster-header .home-brand-mark {
  width: 42px;
  height: 42px;
  color: #fff;
  background: linear-gradient(135deg, #0d6fd3 0%, #0896e8 72%);
  border-radius: 12px;
  box-shadow: 0 14px 24px rgba(9, 99, 189, 0.24);
}

.poster-header .home-nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 3.6vw, 54px);
  min-width: 0;
}

.poster-header .home-nav a {
  color: #08275a;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.poster-header .home-header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  white-space: nowrap;
}

.poster-hotline {
  color: #0b4d93;
  font-size: 12px;
  line-height: 1.25;
  text-align: right;
  white-space: nowrap;
}

.poster-hotline b {
  font-size: 14px;
}

.touros-chatbot-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  width: min(390px, calc(100vw - 32px));
}

.touros-chatbot-widget.collapsed {
  width: auto;
}

.touros-chatbot-widget.collapsed .touros-chatbot-card {
  display: none;
}

.touros-chatbot-bubble {
  position: relative;
  display: grid;
  width: 86px;
  height: 102px;
  place-items: center;
  padding: 8px;
  color: #075db6;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(8, 120, 230, 0.22);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(8, 75, 150, 0.28);
  animation: tourosBotPulse 1.45s ease-in-out infinite;
}

.touros-chatbot-bubble::after {
  position: absolute;
  top: 6px;
  right: 7px;
  width: 12px;
  height: 12px;
  background: #18d17d;
  border: 2px solid #fff;
  border-radius: 50%;
  content: "";
}

.touros-chatbot-bubble img {
  display: block;
  width: 62px;
  height: 62px;
  object-fit: cover;
  object-position: center top;
  background: #eaf7ff;
  border: 3px solid #fff;
  border-radius: 18px;
}

.touros-chatbot-bubble span {
  color: #075db6;
  font-size: 11px;
  font-weight: 950;
}

@keyframes tourosBotPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 24px 70px rgba(8, 75, 150, 0.28);
  }

  50% {
    transform: translateY(-5px) scale(1.04);
    box-shadow: 0 28px 84px rgba(255, 122, 33, 0.34), 0 0 0 10px rgba(8, 120, 230, 0.08);
  }
}

.touros-chatbot-card {
  display: grid;
  max-height: calc(100vh - 44px);
  min-height: min(720px, calc(100vh - 44px));
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  overflow: hidden;
  color: #0a2756;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 248, 255, 0.94)),
    rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(8, 120, 230, 0.18);
  border-radius: 18px;
  box-shadow: 0 28px 80px rgba(8, 75, 150, 0.2);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
}

.touros-chatbot-head {
  display: grid;
  grid-template-columns: 58px 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  background: linear-gradient(135deg, rgba(8, 120, 230, 0.12), rgba(255, 255, 255, 0.22));
  border-bottom: 1px solid rgba(8, 120, 230, 0.14);
}

.touros-chatbot-head img {
  display: block;
  width: 58px;
  height: 58px;
  object-fit: cover;
  object-position: center top;
  background: #eaf7ff;
  border: 3px solid #fff;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(8, 120, 230, 0.22);
}

.touros-chatbot-head strong,
.touros-chatbot-head span {
  display: block;
}

.touros-chatbot-head strong {
  color: #075db6;
  font-size: 18px;
  line-height: 1.15;
}

.touros-chatbot-head span {
  margin-top: 3px;
  color: #607894;
  font-size: 12px;
  font-weight: 750;
}

.touros-chatbot-head em {
  padding: 6px 9px;
  color: #0878e6;
  background: #e8f6ff;
  border: 1px solid #c5e5ff;
  border-radius: 999px;
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
}

.touros-chatbot-toggle {
  min-height: 34px;
  padding: 0 10px;
  color: #075db6;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #c5e5ff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 950;
}

.touros-chatbot-log {
  display: flex;
  min-height: 0;
  flex-direction: column;
  gap: 9px;
  overflow: auto;
  padding: 13px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(234, 247, 255, 0.5));
}

.touros-chatbot-widget .home-chat-message {
  max-width: 92%;
  padding: 10px 12px;
  border-radius: 14px;
  box-shadow: none;
}

.touros-chatbot-widget .home-chat-message.assistant {
  background: #fff;
  border: 1px solid rgba(8, 120, 230, 0.12);
}

.touros-chatbot-widget .home-chat-message.user {
  background: linear-gradient(135deg, #0878e6, #0b91f4);
}

.touros-chatbot-widget .home-chat-message strong {
  font-size: 12px;
}

.touros-chatbot-widget .home-chat-message p {
  font-size: 13px;
  line-height: 1.45;
}

.touros-chatbot-suggestions {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 13px 12px;
  scrollbar-width: none;
}

.touros-chatbot-suggestions::-webkit-scrollbar {
  display: none;
}

.touros-chatbot-suggestions button {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 0 11px;
  color: #075db6;
  background: #eef8ff;
  border: 1px solid #cfe6fb;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.touros-chatbot-form {
  grid-template-columns: 1fr 58px;
  gap: 8px;
  padding: 0 13px 13px;
}

.touros-chatbot-form input {
  min-height: 42px;
  color: #08275a;
  background: #fff;
  border: 1px solid #cfe6fb;
  border-radius: 999px;
  font-size: 13px;
}

.touros-chatbot-form button {
  min-height: 42px;
  color: #fff;
  background: linear-gradient(135deg, #ff7a21, #ff9d27);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 950;
}

.poster-home .home-button {
  min-height: 44px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
}

.poster-home .home-button.primary {
  background: linear-gradient(135deg, #ff7a21 0%, #ff9d27 100%);
  border-color: #ff7a21;
  box-shadow: 0 16px 32px rgba(255, 122, 33, 0.28);
}

.poster-home .home-button.secondary {
  color: #0a4c91;
  background: #fff;
  border-color: #c7dcf5;
}

.poster-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(560px, 0.9fr) minmax(620px, 1.1fr);
  width: 100vw;
  min-height: clamp(720px, calc(100vh - 74px), 860px);
  margin: 0 calc(50% - 50vw);
  overflow: hidden;
  background: #f2faff url("/anhhero/touros-hero.png") right center / auto 100% no-repeat;
}

.poster-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 27% 36%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.62) 34%, rgba(255, 255, 255, 0) 62%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.96) 26%, rgba(255, 255, 255, 0.72) 42%, rgba(255, 255, 255, 0.25) 60%, rgba(255, 255, 255, 0) 76%);
  border-radius: 0;
  z-index: 0;
}

.poster-hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(720px, calc(100vw - 64px));
  margin-left: clamp(28px, 7.5vw, 150px);
  padding: clamp(42px, 6vh, 78px) 0 168px;
}

.poster-ai-label {
  display: block;
  margin-bottom: 22px;
  color: #0856aa;
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
}

.poster-ai-label::first-letter {
  color: #ff7a21;
}

.poster-hero h1 {
  max-width: 720px;
  margin: 0;
  color: #06265d;
  font-size: clamp(64px, 4.55vw, 88px);
  line-height: 0.96;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.poster-hero h1 strong {
  display: block;
  margin-top: 8px;
  color: #0878e6;
  font-size: clamp(104px, 7.2vw, 138px);
  line-height: 0.86;
  letter-spacing: 0;
}

.poster-hero p {
  max-width: 640px;
  margin: 26px 0 0;
  padding-left: 18px;
  color: #2b3f58;
  border-left: 4px solid #0878e6;
  font-size: 17px;
  font-weight: 760;
  line-height: 1.58;
}

.poster-service-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 28px 0 0;
}

.poster-service-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  color: #0959ac;
  font-size: 14px;
  font-weight: 850;
}

.poster-service-row i {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #0878e6;
  background: rgba(232, 246, 255, 0.92);
  border: 2px solid #b8ddff;
  border-radius: 50%;
  box-shadow: 0 12px 26px rgba(8, 120, 230, 0.12);
  font-size: 14px;
  font-style: normal;
  font-weight: 950;
}

.poster-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.poster-main-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 66px;
  padding: 0 14px 0 0;
  color: #fff;
  background: linear-gradient(90deg, #0869d8 0%, #0b86f2 100%);
  border-radius: 999px;
  box-shadow: 0 18px 38px rgba(8, 105, 216, 0.3);
  font-size: 16px;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
}

.poster-main-cta span {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  background: #0878e6;
  border: 7px solid #d8efff;
  border-radius: 50%;
  font-size: 14px;
}

.poster-main-cta i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #0878e6;
  background: #fff;
  border-radius: 50%;
  font-size: 20px;
  font-style: normal;
}

.poster-hero-visual {
  position: relative;
  z-index: 1;
  min-height: 650px;
  overflow: hidden;
  pointer-events: none;
}

.poster-hero-visual::before,
.poster-hero-visual::after {
  display: none;
}

.poster-hero-visual::after {
  inset: 70px auto -120px -130px;
  width: 390px;
  height: 710px;
  background: #ffffff;
  border: 18px solid #0b7ee4;
  border-left: 0;
  border-radius: 0 100% 100% 0 / 0 55% 55% 0;
  box-shadow: none;
}

.poster-plane {
  position: absolute;
  z-index: 4;
  display: none;
  top: 82px;
  left: 44px;
  width: 176px;
  height: 86px;
  transform: rotate(-25deg);
  background:
    linear-gradient(90deg, transparent 0 26%, #b5d8f5 26% 34%, transparent 34%),
    linear-gradient(8deg, transparent 0 45%, #ffffff 46% 54%, transparent 55%),
    linear-gradient(102deg, transparent 0 39%, #1782d8 40% 50%, transparent 51%);
  filter: drop-shadow(0 16px 18px rgba(10, 76, 145, 0.28));
}

.poster-place {
  position: absolute;
  z-index: 3;
  display: none;
  overflow: hidden;
  padding: 0;
  color: #fff;
  text-align: left;
  background: #0a4c91;
  border: 6px solid #fff;
  box-shadow: 0 20px 46px rgba(0, 65, 145, 0.24);
}

.poster-place img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poster-place span {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.42);
}

.poster-place b,
.poster-place small {
  display: block;
}

.poster-place b {
  font-size: 20px;
  text-transform: uppercase;
}

.poster-place small {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 800;
}

.poster-hero-benefits {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  padding: 22px max(52px, calc((100vw - 1400px) / 2 + 52px));
  background: rgba(239, 248, 255, 0.88);
  border-top: 1px solid rgba(8, 120, 230, 0.12);
  backdrop-filter: blur(12px);
}

.poster-hero-benefits article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
  min-width: 0;
}

.poster-hero-benefits article > span {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  color: #0878e6;
  background: rgba(255, 255, 255, 0.68);
  border: 2px solid #c6e4ff;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(8, 120, 230, 0.1);
  font-size: 18px;
  font-weight: 950;
}

.poster-hero-benefits h3 {
  margin: 0 0 6px;
  color: #0959ac;
  font-size: 15px;
  line-height: 1.25;
  text-transform: uppercase;
}

.poster-hero-benefits p {
  max-width: none;
  margin: 0;
  padding: 0;
  color: #2b3f58;
  border: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.place-1 {
  top: 54px;
  right: 42px;
  width: 590px;
  height: 228px;
  border-radius: 180px 0 0 180px;
}

.place-2 {
  top: 260px;
  right: 0;
  width: 470px;
  height: 154px;
  border-radius: 120px 0 0 120px;
}

.place-3 {
  right: 0;
  bottom: 78px;
  width: 380px;
  height: 150px;
  border-radius: 112px 0 0 112px;
}

.place-4 {
  left: 96px;
  bottom: 66px;
  width: 345px;
  height: 170px;
  border-radius: 130px 28px 28px 130px;
}

.place-5 {
  left: 210px;
  top: 384px;
  width: 245px;
  height: 128px;
  border-radius: 80px 20px 20px 80px;
}

.poster-search {
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: 1.2fr repeat(4, minmax(120px, 1fr)) auto;
  gap: 10px;
  align-items: center;
  width: min(1260px, calc(100vw - 64px));
  margin: 30px auto 0;
  padding: 18px 18px 18px 26px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(10, 126, 228, 0.16);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(17, 84, 153, 0.18);
  backdrop-filter: blur(16px);
}

.poster-search h2,
.poster-search p {
  margin: 0;
  grid-column: 1;
}

.poster-search h2 {
  color: #0a4c91;
  font-size: 22px;
}

.poster-search p {
  margin-top: 4px;
  color: #6c8098;
  font-size: 13px;
}

.poster-search label {
  display: grid;
  gap: 5px;
  min-height: 62px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid #dbeaf7;
  border-radius: 14px;
}

.poster-search label span {
  color: #0a4c91;
  font-size: 12px;
  font-weight: 900;
}

.poster-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: #092b5f;
  font-size: 14px;
  font-weight: 760;
}

.poster-section-title {
  margin-bottom: 22px;
  text-align: center;
}

.poster-section-title.inline {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
}

.poster-section-title h2,
.poster-ai-copy h2,
.poster-cta h2 {
  margin: 0;
  color: #0a4c91;
  font-size: 30px;
  line-height: 1.15;
  text-transform: uppercase;
}

.poster-section-title p,
.poster-ai-copy p,
.poster-cta p {
  max-width: 740px;
  margin: 8px auto 0;
  color: #627992;
  line-height: 1.6;
}

.poster-section-title.inline p {
  margin-left: 0;
}

.poster-section-title a {
  color: #0a4c91;
  font-weight: 900;
  text-decoration: none;
}

.poster-feature-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.poster-feature-grid article,
.poster-step-row article,
.poster-tour-grid article,
.poster-why-grid article {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #dcebf8;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(9, 76, 145, 0.08);
}

.poster-feature-grid article {
  min-height: 150px;
  padding: 20px 15px;
  text-align: center;
}

.poster-service-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin: 0 auto 12px;
  color: #0a7ee5;
  background: #edf8ff;
  border: 1px solid #bfdef7;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 950;
}

.poster-feature-grid h3,
.poster-step-row h3,
.poster-tour-grid h3,
.poster-why-grid h3 {
  margin: 0 0 8px;
  color: #08275a;
  font-size: 15px;
  line-height: 1.25;
  text-transform: uppercase;
}

.poster-feature-grid p,
.poster-step-row p,
.poster-why-grid p {
  margin: 0;
  color: #5d7188;
  font-size: 13px;
  line-height: 1.5;
}

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

.poster-step-row article {
  position: relative;
  min-height: 132px;
  padding: 18px 14px;
}

.poster-step-row article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -11px;
  width: 20px;
  height: 2px;
  background: #0a7ee5;
}

.poster-step-row article > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 10px;
  color: #fff;
  background: #0a7ee5;
  border-radius: 50%;
  font-weight: 950;
}

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

.poster-tour-grid article {
  overflow: hidden;
}

.poster-tour-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.poster-tour-grid div {
  padding: 13px 14px 0;
}

.poster-tour-grid h3 {
  margin-bottom: 4px;
}

.poster-tour-grid span {
  display: inline-block;
  color: #627992;
  font-size: 12px;
  font-weight: 850;
}

.poster-tour-grid strong {
  display: block;
  margin-top: 4px;
  color: #ff7a21;
  font-size: 14px;
}

.poster-tour-grid button {
  width: calc(100% - 28px);
  min-height: 36px;
  margin: 13px 14px 14px;
  color: #0a4c91;
  background: #eef8ff;
  border: 1px solid #cfe6fb;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 900;
}

.poster-why-band {
  padding-top: 38px;
}

.poster-why-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.poster-why-grid article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: start;
  padding: 14px;
}

.poster-why-grid article > span {
  display: block;
  width: 34px;
  height: 34px;
  border: 2px solid #0a7ee5;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #0a7ee5 0 30%, transparent 32%);
}

.poster-why-grid h3 {
  font-size: 13px;
}

.poster-why-grid p {
  grid-column: 2;
}

.poster-stat-band {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  margin-top: 42px;
  padding: 26px max(24px, calc((100vw - 1400px) / 2));
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 59, 130, 0.96), rgba(5, 105, 191, 0.98)),
    radial-gradient(circle at 82% 30%, rgba(255, 255, 255, 0.22), transparent 18%);
}

.poster-stat-band article {
  display: grid;
  gap: 4px;
  justify-items: center;
  padding: 0 14px;
  text-align: center;
}

.poster-stat-band strong {
  font-size: 32px;
  line-height: 1;
}

.poster-stat-band span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.poster-ai-chat {
  padding-top: 0;
}

.poster-ai-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 24px;
  align-items: stretch;
  overflow: hidden;
  min-height: 500px;
  padding: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 26% 48%, rgba(0, 211, 255, 0.24), transparent 22%),
    linear-gradient(135deg, #03275f 0%, #064f9c 48%, #086fc3 100%);
  border-radius: 0;
}

.poster-ai-panel::before {
  position: absolute;
  top: 0;
  right: 40%;
  bottom: 0;
  width: min(640px, 62%);
  background:
    linear-gradient(90deg, rgba(3, 39, 95, 0.98) 0%, rgba(3, 39, 95, 0.46) 32%, rgba(3, 39, 95, 0) 72%),
    url("/linhvat/z7919154141209_16a2d44e8b783556ddb73b1dd2105603.jpg") center right / min(480px, 88%) auto no-repeat;
  content: "";
  filter: saturate(1.1) contrast(1.08);
  mix-blend-mode: multiply;
  opacity: 0.64;
  pointer-events: none;
  transform: translateX(18%);
}

.poster-ai-panel::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 39, 95, 0.96) 0%, rgba(3, 55, 120, 0.86) 36%, rgba(6, 111, 195, 0.24) 64%, rgba(6, 111, 195, 0) 100%),
    radial-gradient(circle at 45% 52%, rgba(46, 229, 136, 0.12), transparent 28%);
  content: "";
  pointer-events: none;
}

.poster-ai-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 720px;
}

.poster-itinerary-board {
  position: relative;
  z-index: 2;
}

.poster-ai-copy h2 {
  color: #fff;
  font-size: 36px;
}

.poster-ai-copy p {
  margin-left: 0;
  color: rgba(255, 255, 255, 0.82);
}

.poster-ai-copy ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.poster-ai-copy li {
  color: #dff5ff;
  font-weight: 800;
}

.poster-ai-copy li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 10px;
  background: #2ee588;
  border-radius: 50%;
}

.poster-chat-card {
  min-height: 430px;
  background: rgba(255, 255, 255, 0.96);
}

.poster-itinerary-board {
  display: grid;
  gap: 15px;
  align-self: stretch;
  min-height: 500px;
  padding: 22px;
  color: #08275a;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(235, 247, 255, 0.94)),
    radial-gradient(circle at 86% 12%, rgba(255, 122, 33, 0.12), transparent 22%);
  border: 1px solid rgba(207, 230, 251, 0.92);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(4, 39, 95, 0.22);
}

.poster-board-head,
.poster-day-title,
.poster-service-match article > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.poster-board-head h3 {
  margin: 0;
  color: #063a82;
  font-size: 22px;
  line-height: 1.2;
}

.poster-board-head p {
  margin: 5px 0 0;
  color: #607894;
  font-size: 13px;
  font-weight: 750;
}

.poster-board-head > span {
  flex: 0 0 auto;
  padding: 8px 11px;
  color: #087f5b;
  background: #eafff4;
  border: 1px solid #bdf1d7;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
}

.poster-trip-summary,
.poster-plan-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}

.poster-trip-summary article,
.poster-plan-strip article {
  min-width: 0;
  padding: 12px;
  background: #fff;
  border: 1px solid #d8e9f7;
  border-radius: 12px;
}

.poster-trip-summary span,
.poster-trip-summary strong,
.poster-plan-strip span,
.poster-plan-strip strong,
.poster-plan-strip em {
  display: block;
}

.poster-trip-summary span,
.poster-plan-strip span {
  color: #6a7d94;
  font-size: 11px;
  font-weight: 850;
}

.poster-trip-summary strong {
  margin-top: 5px;
  color: #063a82;
  font-size: 13px;
  line-height: 1.25;
}

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

.poster-plan-strip article {
  position: relative;
  overflow: hidden;
  background: #f6fbff;
}

.poster-plan-strip article.recommended {
  color: #fff;
  background: linear-gradient(135deg, #0878e6, #00a9d6);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 14px 32px rgba(8, 120, 230, 0.22);
}

.poster-plan-strip article.recommended span,
.poster-plan-strip article.recommended em {
  color: rgba(255, 255, 255, 0.78);
}

.poster-plan-strip strong {
  margin-top: 4px;
  font-size: 18px;
  line-height: 1.1;
}

.poster-plan-strip em {
  margin-top: 7px;
  color: #0878e6;
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
}

.poster-timeline {
  display: grid;
  gap: 10px;
  padding: 4px 0;
}

.poster-timeline article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: start;
}

.poster-day-dot {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #ff7a21, #ffb22c);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 12px 26px rgba(255, 122, 33, 0.24);
  font-size: 12px;
  font-weight: 950;
}

.poster-timeline article > div:last-child {
  min-width: 0;
  padding: 12px 13px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid #d8e9f7;
  border-radius: 12px;
}

.poster-day-title h4 {
  margin: 0;
  color: #063a82;
  font-size: 14px;
}

.poster-day-title span {
  flex: 0 0 auto;
  color: #ff7a21;
  font-size: 12px;
  font-weight: 950;
}

.poster-timeline p {
  margin: 6px 0 0;
  color: #61758d;
  font-size: 12px;
  line-height: 1.45;
}

.poster-service-match {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 12px;
  padding-top: 2px;
}

.poster-service-match article {
  display: grid;
  gap: 7px;
}

.poster-service-match strong {
  color: #063a82;
  font-size: 12px;
}

.poster-service-match span {
  color: #61758d;
  font-size: 12px;
  font-weight: 850;
}

.poster-service-match i {
  display: block;
  height: 8px;
  overflow: hidden;
  background: #dbeefa;
  border-radius: 999px;
}

.poster-service-match i::before {
  display: block;
  width: var(--w);
  height: 100%;
  background: linear-gradient(90deg, #0878e6, #2ee588);
  border-radius: inherit;
  content: "";
}

.poster-chat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.poster-chat-chips button {
  min-height: 34px;
  padding: 0 10px;
  color: #0a4c91;
  background: #eef8ff;
  border: 1px solid #cfe6fb;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 900;
}

.poster-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  width: min(1400px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 52px 42px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.78), rgba(255, 244, 226, 0.62)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=84") center / cover;
  border-radius: 0;
}

.poster-cta h2 {
  color: #0a4c91;
}

.poster-cta p {
  margin-left: 0;
  color: #183d68;
}

.poster-footer {
  margin-top: 0;
  padding: 34px 0;
  color: #fff;
  background: #053b82;
}

.poster-footer strong,
.poster-footer span {
  color: #fff;
}

.poster-footer div span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 1180px) {
  .poster-header {
    grid-template-columns: auto 1fr auto;
    gap: 16px;
  }

  .poster-header .home-nav {
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .poster-header .home-nav::-webkit-scrollbar {
    display: none;
  }

  .poster-header .home-header-actions {
    gap: 10px;
  }

  .poster-hero {
    grid-template-columns: 1fr;
    width: 100vw;
    min-height: 760px;
    margin: 0 calc(50% - 50vw);
  }

  .poster-hero-copy {
    width: min(760px, calc(100vw - 48px));
    margin-left: 24px;
    padding-bottom: 36px;
  }

  .poster-hero-visual {
    display: none;
  }

  .poster-search {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 20px;
  }

  .poster-search h2,
  .poster-search p {
    grid-column: 1 / -1;
  }

  .poster-feature-grid,
  .poster-step-row,
  .poster-why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .poster-ai-panel,
  .poster-cta {
    grid-template-columns: 1fr;
  }

  .poster-itinerary-board {
    min-height: auto;
  }

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

@media (max-width: 760px) {
  .poster-home .home-header,
  .poster-home .home-section,
  .poster-home .home-footer,
  .poster-cta {
    width: calc(100vw - 20px);
  }

  .poster-header {
    grid-template-columns: 1fr auto;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.66);
  }

  .poster-header .home-nav {
    grid-column: 1 / -1;
    width: 100%;
    padding-bottom: 2px;
  }

  .poster-hotline {
    display: none;
  }

  .touros-chatbot-widget {
    right: 10px;
    bottom: 10px;
    width: calc(100vw - 20px);
  }

  .touros-chatbot-widget.collapsed {
    width: auto;
  }

  .touros-chatbot-card {
    max-height: calc(100vh - 20px);
    min-height: min(640px, calc(100vh - 20px));
  }

  .touros-chatbot-head {
    grid-template-columns: 50px 1fr auto auto;
    gap: 8px;
    padding: 11px;
  }

  .touros-chatbot-head img {
    width: 50px;
    height: 50px;
    border-radius: 14px;
  }

  .touros-chatbot-bubble {
    width: 78px;
    height: 94px;
  }

  .poster-hero {
    width: 100vw;
    min-height: auto;
    margin: 0 calc(50% - 50vw);
    background: #f2faff url("/anhhero/touros-hero.png") right top / auto 390px no-repeat;
  }

  .poster-hero::before {
    inset: 0;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 48%, rgba(255, 255, 255, 0.62) 72%, rgba(255, 255, 255, 0.18) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.26));
    border-radius: 0;
  }

  .poster-hero-copy {
    width: 100%;
    margin-left: 0;
    padding: 28px 14px 18px;
  }

  .poster-hero h1 {
    max-width: 100%;
    font-size: 33px;
    line-height: 1;
  }

  .poster-hero h1 strong {
    font-size: 52px;
  }

  .poster-service-row {
    gap: 10px 14px;
  }

  .poster-service-row span {
    min-height: 40px;
    font-size: 12px;
  }

  .poster-service-row i {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }

  .poster-main-cta {
    width: 100%;
    justify-content: space-between;
    min-height: 58px;
    font-size: 13px;
  }

  .poster-main-cta span {
    width: 58px;
    height: 58px;
  }

  .poster-hero-benefits {
    position: relative;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px 14px 18px;
  }

  .poster-search {
    width: calc(100vw - 20px);
    grid-template-columns: 1fr;
    padding: 18px;
    border-radius: 16px;
  }

  .poster-search .home-button {
    width: 100%;
  }

  .poster-section-title.inline {
    align-items: flex-start;
    flex-direction: column;
  }

  .poster-section-title h2,
  .poster-ai-copy h2,
  .poster-cta h2 {
    font-size: 24px;
  }

  .poster-feature-grid,
  .poster-step-row,
  .poster-tour-grid,
  .poster-why-grid,
  .poster-stat-band {
    grid-template-columns: 1fr;
  }

  .poster-step-row article:not(:last-child)::after {
    display: none;
  }

  .poster-ai-panel {
    min-height: auto;
    padding: 22px;
  }

  .poster-ai-panel::before {
    top: 26px;
    right: -28px;
    bottom: auto;
    width: 390px;
    height: 390px;
    background:
      linear-gradient(180deg, rgba(3, 39, 95, 0.62), rgba(3, 39, 95, 0.18)),
      url("/linhvat/z7919154141209_16a2d44e8b783556ddb73b1dd2105603.jpg") center / contain no-repeat;
    opacity: 0.4;
    transform: none;
  }

  .poster-ai-panel::after {
    background:
      linear-gradient(180deg, rgba(3, 39, 95, 0.92) 0%, rgba(3, 55, 120, 0.86) 54%, rgba(6, 111, 195, 0.26) 100%);
  }

  .poster-itinerary-board {
    gap: 12px;
    padding: 16px;
    border-radius: 16px;
  }

  .poster-board-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .poster-board-head h3 {
    font-size: 18px;
  }

  .poster-trip-summary,
  .poster-plan-strip,
  .poster-service-match {
    grid-template-columns: 1fr;
  }

  .poster-timeline article {
    grid-template-columns: 38px 1fr;
    gap: 9px;
  }

  .poster-day-dot {
    width: 36px;
    height: 36px;
    font-size: 11px;
  }

  .poster-day-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .poster-cta {
    padding: 34px 20px;
  }
}

