/* ============ CheckInn Landing ============ */

:root {
  --navy-950: #0a0f1e;
  --navy-900: #0e1528;
  --navy-800: #16203a;
  --navy-700: #1f2c4d;
  --gold-400: #e8c476;
  --gold-500: #d4a843;
  --gold-600: #b8902f;
  --ink: #101524;
  --text: #2b3245;
  --muted: #6b7387;
  --light: #f7f5f0;
  --white: #ffffff;
  --line: rgba(16, 21, 36, 0.1);
  --line-dark: rgba(255, 255, 255, 0.08);
  --radius: 18px;
  --shadow: 0 20px 60px rgba(10, 15, 30, 0.12);
  --font-display: "Playfair Display", serif;
  --font-body: "Inter", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow { max-width: 800px; }

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

h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); font-weight: 600; }
h3 { font-size: 1.18rem; font-weight: 600; }

.accent { color: var(--gold-500); font-style: italic; }

/* ============ Buttons ============ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-950);
  box-shadow: 0 8px 24px rgba(212, 168, 67, 0.35);
}
.btn--gold:hover { box-shadow: 0 12px 32px rgba(212, 168, 67, 0.5); }

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.1); }

.btn--dark {
  background: var(--navy-950);
  color: var(--white);
}

.btn--sm { padding: 10px 22px; font-size: 0.88rem; }
.btn--full { width: 100%; }

/* ============ Header ============ */

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(10, 15, 30, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-dark);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}

.logo__mark { font-size: 1.5rem; }
.logo__text em { color: var(--gold-400); font-style: italic; }

.nav { display: flex; gap: 28px; }

.nav a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.15s;
}
.nav a:hover { color: var(--gold-400); }

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

.lang-switch {
  display: flex;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 3px;
}

.lang-switch button {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 11px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.15s;
}

.lang-switch button.active {
  background: var(--gold-500);
  color: var(--navy-950);
}

.burger { display: none; }

/* ============ Hero ============ */

.hero {
  position: relative;
  background: var(--navy-950);
  padding: 168px 0 110px;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__bg,
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

/* Cinematic Ken Burns on the still image; the video replaces it when assets/hero.mp4 exists */
.hero__bg {
  animation: kenburns 30s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes kenburns {
  from { transform: scale(1) translate(0, 0); }
  to { transform: scale(1.14) translate(-1.5%, -2.5%); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg { animation: none; }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1100px 500px at 80% -10%, rgba(212, 168, 67, 0.14), transparent 60%),
    linear-gradient(110deg, rgba(10, 15, 30, 0.97) 0%, rgba(10, 15, 30, 0.86) 45%, rgba(10, 15, 30, 0.62) 100%);
}

.hero__inner,
.hero__glow { position: relative; }

.hero__glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.1), transparent 65%);
  top: -200px; right: -150px;
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.3);
  color: var(--gold-400);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 26px;
}

.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.2);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.2); }
  50% { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0.08); }
}

.hero h1 { color: var(--white); margin-bottom: 22px; }

.hero__sub {
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.06rem;
  max-width: 540px;
  margin-bottom: 34px;
}

.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero__stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat { display: flex; flex-direction: column; gap: 2px; }

.stat__num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold-400);
}

.stat__label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 140px;
}

/* Report card (hero visual) */

.report-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  transform: rotate(1.5deg);
  transition: transform 0.3s ease;
}

.report-card:hover { transform: rotate(0deg) scale(1.01); }

.report-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.report-card__title {
  color: var(--white);
  font-weight: 600;
  font-size: 0.92rem;
}

.report-card__badge {
  background: rgba(74, 222, 128, 0.12);
  color: #4ade80;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 999px;
  border: 1px solid rgba(74, 222, 128, 0.25);
  white-space: nowrap;
}

.report-row {
  display: grid;
  grid-template-columns: 1fr 90px 32px;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line-dark);
}

.report-row span { color: rgba(255, 255, 255, 0.6); font-size: 0.85rem; }
.report-row b { color: var(--gold-400); font-size: 0.9rem; text-align: right; }

.bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.bar i {
  display: block;
  height: 100%;
  width: var(--w);
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400));
  border-radius: 999px;
}

.report-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
}

.report-card__footer span { color: rgba(255, 255, 255, 0.6); font-size: 0.85rem; }
.report-card__footer b { color: #4ade80; font-size: 1.05rem; letter-spacing: 1px; }

/* ============ Sections ============ */

.section { padding: 96px 0; }

.section--dark {
  background: linear-gradient(180deg, var(--navy-950), var(--navy-900));
}

.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark p { color: rgba(255, 255, 255, 0.62); }

.section__head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 60px;
}

.section__tag {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 14px;
}

.section--dark .section__tag { color: var(--gold-400); }

.section__head p { margin-top: 14px; color: var(--muted); font-size: 1.02rem; }
.section--dark .section__head p { color: rgba(255, 255, 255, 0.6); }

/* Steps */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.step__num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold-500);
  margin-bottom: 16px;
}

.step h3 { margin-bottom: 10px; }
.step p { font-size: 0.92rem; color: var(--muted); }

/* Cards (benefits) */

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

.card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 168, 67, 0.35);
  background: rgba(212, 168, 67, 0.05);
}

.card__icon { font-size: 1.9rem; margin-bottom: 18px; }
.card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.card p { font-size: 0.92rem; }

/* Checks */

.checks__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: start;
}

.checks__text h2 { margin-bottom: 16px; }
.checks__text > p { color: var(--muted); margin-bottom: 34px; max-width: 480px; }

.checklist { display: flex; flex-direction: column; gap: 22px; }

.checklist li {
  position: relative;
  padding-left: 42px;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 2px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-950);
  font-size: 0.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checklist b { display: block; color: var(--ink); font-size: 1.02rem; margin-bottom: 3px; }
.checklist span { color: var(--muted); font-size: 0.92rem; }

.geo-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 34px;
  box-shadow: var(--shadow);
  text-align: center;
  position: sticky;
  top: 100px;
}

.geo-card__photo {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: 0 10px 30px rgba(10, 15, 30, 0.18);
}

.geo-card__photo img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.geo-card__photo:hover img { transform: scale(1.04); }

.geo-card__flag {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 1.3rem;
  background: rgba(10, 15, 30, 0.65);
  backdrop-filter: blur(6px);
  border-radius: 10px;
  padding: 4px 9px;
  line-height: 1;
}

.geo-card h3 { margin-bottom: 8px; }
.geo-card p { color: var(--muted); font-size: 0.92rem; }

.geo-card__divider {
  height: 1px;
  background: var(--line);
  margin: 28px 0;
}

/* ============ Apply form ============ */

.apply__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.apply__text h2 { margin-bottom: 16px; }
.apply__text > p { margin-bottom: 28px; max-width: 460px; }

.apply__points {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.apply__points span {
  color: var(--gold-400);
  font-weight: 500;
  font-size: 0.95rem;
}

.form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form__field { display: flex; flex-direction: column; gap: 7px; }

.form__field label {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.85rem;
  font-weight: 600;
}

.form__field input,
.form__field select {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
}

.form__field select option { color: var(--ink); }

.form__field input::placeholder { color: rgba(255, 255, 255, 0.32); }

.form__field input:focus,
.form__field select:focus { border-color: var(--gold-500); }

.form__note {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.76rem;
  text-align: center;
}

.form__success[hidden] { display: none; }

.form__success {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: 12px;
  padding: 18px;
}

.form__success b { color: #4ade80; }
.form__success span { color: rgba(255, 255, 255, 0.7); font-size: 0.88rem; }

/* ============ FAQ ============ */

.faq { display: flex; flex-direction: column; gap: 14px; }

.faq__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 26px;
  transition: border-color 0.15s;
}

.faq__item[open] { border-color: var(--gold-500); }

.faq__item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  padding: 21px 0;
  list-style: none;
  position: relative;
  padding-right: 36px;
  font-size: 1rem;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold-600);
  transition: transform 0.2s;
}

.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }

.faq__item p {
  color: var(--muted);
  font-size: 0.94rem;
  padding-bottom: 22px;
}

/* ============ CTA strip ============ */

.cta-strip {
  position: relative;
  background:
    linear-gradient(135deg, rgba(232, 196, 118, 0.92), rgba(184, 144, 47, 0.9)),
    url("assets/hotel-room.jpg") center / cover no-repeat;
  padding: 72px 0;
}

.cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.cta-strip h2 { color: var(--navy-950); font-size: clamp(1.5rem, 3vw, 2.1rem); }

/* ============ Footer ============ */

.footer {
  background: var(--navy-950);
  padding: 64px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line-dark);
}

.footer__brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin-top: 14px;
  max-width: 300px;
}

.footer__col { display: flex; flex-direction: column; gap: 12px; }

.footer__col b {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.footer__col a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.92rem;
  transition: color 0.15s;
}

.footer__col a:hover { color: var(--gold-400); }

.footer__bottom {
  padding: 22px 24px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.82rem;
}

/* ============ Quote banner ============ */

.banner {
  position: relative;
  background:
    linear-gradient(100deg, rgba(10, 15, 30, 0.92) 10%, rgba(10, 15, 30, 0.55) 60%, rgba(10, 15, 30, 0.75) 100%),
    url("assets/auditor-phone.jpg") center 30% / cover no-repeat;
  background-attachment: scroll;
  padding: 130px 0;
}

@media (min-width: 961px) {
  .banner { background-attachment: fixed; }
}

.banner__inner { max-width: 1180px; }

.banner blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  font-weight: 600;
  font-style: italic;
  color: var(--white);
  line-height: 1.35;
  max-width: 720px;
}

.banner blockquote footer {
  margin-top: 20px;
  color: var(--gold-400);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ============ Testimonials ============ */

.section--tint {
  background:
    radial-gradient(900px 400px at 50% 0%, rgba(212, 168, 67, 0.07), transparent 70%),
    var(--light);
}

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

.t-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.t-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.t-card__stars {
  color: var(--gold-500);
  font-size: 0.95rem;
  letter-spacing: 3px;
}

.t-card blockquote {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.65;
  flex: 1;
}

.t-card figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.t-card figcaption img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-400);
}

.t-card figcaption b {
  display: block;
  color: var(--ink);
  font-size: 0.95rem;
}

.t-card figcaption span {
  color: var(--muted);
  font-size: 0.82rem;
}

/* ============ Scroll reveal ============ */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

/* ============ Chat widget ============ */

.chat {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.chat__toggle {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-950);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(212, 168, 67, 0.45);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.chat__toggle:hover { transform: scale(1.07); box-shadow: 0 14px 36px rgba(212, 168, 67, 0.6); }

.chat__icon-close { display: none; }
.chat.is-open .chat__icon-close { display: block; }
.chat.is-open .chat__icon-open { display: none; }

.chat__badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #e5484d;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--light);
}

.chat.is-open .chat__badge,
.chat__badge[hidden] { display: none; }

.chat__panel {
  width: min(360px, calc(100vw - 44px));
  height: 480px;
  max-height: calc(100vh - 130px);
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(10, 15, 30, 0.35);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: chat-pop 0.22s ease;
}

.chat__panel[hidden] { display: none; }

@keyframes chat-pop {
  from { opacity: 0; transform: translateY(14px) scale(0.97); }
  to { opacity: 1; transform: none; }
}

.chat__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.chat__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.chat__header b { color: var(--white); display: block; font-size: 0.98rem; }

.chat__status {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.76rem;
}

.chat__status .dot { width: 7px; height: 7px; }

.chat__messages {
  flex: 1;
  overflow-y: auto;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--light);
}

.chat__msg {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.9rem;
  line-height: 1.5;
  animation: chat-pop 0.18s ease;
  white-space: pre-line;
  overflow-wrap: break-word;
}

.chat__msg--bot {
  align-self: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-bottom-left-radius: 6px;
  color: var(--text);
}

.chat__msg--user {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-950));
  color: var(--white);
  border-bottom-right-radius: 6px;
}

.chat__form {
  display: flex;
  gap: 10px;
  padding: 12px 14px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.chat__form input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.15s;
}

.chat__form input:focus { border-color: var(--gold-500); }

.chat__form button {
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-950);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s;
}

.chat__form button:hover { transform: scale(1.08); }

@media (max-width: 640px) {
  .chat { right: 14px; bottom: 14px; }
  .chat__toggle { width: 54px; height: 54px; }
}

/* ============ Responsive ============ */

@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__card { max-width: 480px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .t-cards { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .banner { padding: 90px 0; }
  .checks__inner, .apply__inner { grid-template-columns: 1fr; gap: 48px; }
  .geo-card { position: static; }
  .nav { display: none; }
}

@media (max-width: 640px) {
  .section { padding: 68px 0; }
  .hero { padding: 130px 0 80px; }
  .steps, .cards { grid-template-columns: 1fr; }
  .hero__stats { gap: 26px; }
  .header__inner { gap: 12px; }
  .header .btn--sm { display: none; }
  .cta-strip__inner { justify-content: center; text-align: center; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
}
