:root {
  --bg: #f7f5ef;
  --surface: #fbfaf6;
  --text: #193734;
  --muted: #4f6f68;
  --accent: #1d8b84;
  --accent-deep: #136c65;
  --gold: #d18b2a;
  --border: #b8d0c8;
  --panel: #f3faf7;
  --shadow-soft: 0 10px 28px rgba(30, 56, 50, 0.07);
  --hero-offset: 188px;
  --composer-clearance: 138px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(209, 139, 42, 0.07), transparent 19%),
    radial-gradient(circle at 18% 24%, rgba(29, 139, 132, 0.045), transparent 22%),
    linear-gradient(180deg, #fcfbf8 0%, var(--bg) 100%);
}

button,
textarea {
  font: inherit;
}

.top-accent {
  display: none;
}

.page-shell {
  width: min(1730px, calc(100% - 44px));
  margin: 0 auto;
  padding: var(--hero-offset) 0 var(--composer-clearance);
}

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

.hero-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  padding: 14px 22px;
  background: rgba(247, 245, 239, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.hero-bar-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px 22px;
  width: min(1730px, calc(100% - 44px));
  margin: 0 auto;
}

.hero-logo {
  width: 100px;
  height: 100px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(29, 139, 132, 0.18));
}

.title-group {
  min-width: 0;
  flex: 1;
}

/* ===== Language Selector ===== */

.lang-selector {
  min-width: 0;
  margin-left: auto;
  text-align: right;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.lang-selector-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lang-select-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.lang-select {
  appearance: none;
  -webkit-appearance: none;
  padding: 8px 36px 8px 14px;
  border: 2px solid var(--accent);
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff, #f3faf7);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
  min-width: 160px;
}

.lang-select:hover {
  border-color: var(--accent-deep);
  box-shadow: 0 2px 8px rgba(29, 139, 132, 0.15);
}

.lang-select:focus {
  border-color: var(--accent-deep);
  box-shadow: 0 0 0 3px rgba(29, 139, 132, 0.18);
}

.lang-select option {
  font-weight: 600;
  padding: 8px;
}

.lang-select-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--accent);
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  margin: 0 0 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(29, 139, 132, 0.1);
  color: #166861;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.lang-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lang-list {
  margin: 3px 0 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  overflow-wrap: anywhere;
}

.eyebrow {
  margin: 0 0 6px;
  color: #166861;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.title {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  overflow-wrap: anywhere;
}

.subtitle {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: clamp(0.8rem, 1.2vw, 0.92rem);
  font-weight: 600;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

/* ===== Ask Panel (fixed bottom) ===== */

.ask-panel {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin: 0;
  padding: 3px 22px 8px;
  background: transparent;
  pointer-events: none;
}

.ask-panel::before {
  content: "";
  position: absolute;
  inset: -4px 0 0;
  background: linear-gradient(
    180deg,
    rgba(247, 245, 239, 0) 0%,
    rgba(247, 245, 239, 0.78) 70%,
    rgba(247, 245, 239, 0.94) 90%,
    rgba(247, 245, 239, 0.985) 100%
  );
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
}

.ask-panel-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  width: min(850px, 100%);
  margin: 0 auto;
  pointer-events: auto;
}

.ask-frame {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
}

.ask-input {
  width: 100%;
  min-height: 76px;
  max-height: 150px;
  resize: none;
  padding: 22px 56px 22px 18px;
  border: 1.5px solid rgba(29, 139, 132, 0.72);
  border-radius: 22px;
  background: rgba(252, 252, 251, 0.98);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  line-height: 1.45;
  outline: none;
  box-shadow:
    0 14px 36px rgba(25, 55, 52, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.72) inset;
  transition: border-color 140ms ease, box-shadow 140ms ease, background-color 140ms ease;
}

.ask-input:focus {
  border-color: var(--accent-deep);
  background: rgba(255, 255, 255, 0.99);
  box-shadow:
    0 18px 42px rgba(25, 55, 52, 0.1),
    inset 0 0 0 1px rgba(19, 108, 101, 0.12);
}

.ask-input::placeholder {
  color: #728681;
}

.ask-button,
.faq-button,
.alt-toggle {
  border: 0;
  cursor: pointer;
  transition: transform 140ms ease, box-shadow 140ms ease, background-color 140ms ease;
}

.ask-button {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, #1f9189, #1b827c);
  color: #fffdf9;
  box-shadow: none;
}

.ask-button:hover {
  transform: translateY(-50%) scale(1.05);
}

.faq-button:hover,
.alt-toggle:hover {
  transform: translateY(-1px);
}

.ask-button:disabled {
  cursor: wait;
  opacity: 0.5;
}

.ask-note {
  margin: 0;
  align-self: center;
  max-width: calc(100% - 20px);
  padding: 0 6px;
  color: rgba(79, 111, 104, 0.94);
  font-size: clamp(0.69rem, 1.2vw, 0.8rem);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 1px 0 rgba(251, 250, 246, 0.85);
}

/* ===== Chat Area ===== */

.chat-area {
  width: min(850px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chat-msg {
  display: flex;
  width: 100%;
  min-width: 0;
  animation: fadeSlideIn 0.3s ease;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chat-msg-user {
  justify-content: flex-end;
}

.chat-msg-bot {
  justify-content: flex-start;
}

.chat-bubble {
  width: min(100%, 720px);
  max-width: 85%;
  padding: 16px 20px;
  border-radius: 20px;
  line-height: 1.6;
  font-size: 0.95rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.chat-bubble-user {
  background: linear-gradient(135deg, #1d8b84, #136c65);
  color: #fff;
  border-bottom-right-radius: 6px;
  font-weight: 500;
}

.chat-bubble-bot {
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  border: 1px solid rgba(24, 111, 103, 0.1);
  border-bottom-left-radius: 6px;
  box-shadow: 0 2px 12px rgba(30, 56, 50, 0.06);
}

.chat-bubble-bot .answer-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* ===== Typing Indicator ===== */

.chat-loading {
  padding: 16px 24px;
}

.typing-indicator {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}

.typing-indicator span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: typingBounce 1.2s infinite;
}

.typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typingBounce {
  0%, 60%, 100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  30% {
    transform: translateY(-6px);
    opacity: 1;
  }
}

/* ===== Loading dots in send button ===== */

.loading-dots {
  display: inline-flex;
  gap: 2px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.loading-dots span {
  animation: dotPulse 1s infinite;
}

.loading-dots span:nth-child(2) {
  animation-delay: 0.15s;
}

.loading-dots span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes dotPulse {
  0%, 80%, 100% {
    opacity: 0.3;
  }
  40% {
    opacity: 1;
  }
}

/* ===== Metadata Badges ===== */

.chat-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(24, 111, 103, 0.08);
}

.meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(243, 250, 247, 0.9);
  border: 1px solid rgba(24, 111, 103, 0.1);
  color: #164640;
  font-size: 0.78rem;
  font-weight: 700;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.conf-high {
  background: rgba(202, 232, 211, 0.92);
}

.conf-mid {
  background: rgba(248, 228, 180, 0.92);
}

.conf-low {
  background: rgba(243, 213, 201, 0.92);
}

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

.feedback-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(24, 111, 103, 0.06);
}

.feedback-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}

.feedback-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1.5px solid rgba(24, 111, 103, 0.15);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--muted);
  cursor: pointer;
  transition: all 160ms ease;
}

.feedback-btn:hover {
  transform: scale(1.1);
}

.feedback-up:hover {
  background: rgba(202, 232, 211, 0.8);
  border-color: #3aa76d;
  color: #1a6b3a;
}

.feedback-down:hover {
  background: rgba(243, 213, 201, 0.8);
  border-color: #c0392b;
  color: #a93226;
}

.feedback-thanks {
  font-size: 0.78rem;
  font-weight: 700;
  animation: fadeSlideIn 0.3s ease;
}

.feedback-thanks-up {
  color: #1a6b3a;
}

.feedback-thanks-down {
  color: #a93226;
}

/* ===== Alternatives ===== */

.alt-section {
  margin-top: 12px;
}

.alt-toggle {
  padding: 8px 14px;
  border-radius: 12px;
  background: rgba(29, 139, 132, 0.08);
  color: #164640;
  font-weight: 700;
  font-size: 0.82rem;
}

.alt-list {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.alt-item {
  padding: 14px;
  border-radius: 14px;
  background: rgba(243, 250, 247, 0.7);
  border: 1px solid rgba(24, 111, 103, 0.08);
}

.alt-topic {
  display: inline-block;
  margin-bottom: 4px;
  color: #0c6f67;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.alt-office {
  display: inline-block;
  margin-left: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
}

.alt-answer {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.alt-question {
  margin: 8px 0 6px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #183d39;
}

.alt-ask-btn {
  min-height: 0;
  margin-top: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(29, 139, 132, 0.12);
}

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

.faq-section {
  margin-top: 0;
  padding: 28px;
  border: 1px solid rgba(24, 111, 103, 0.1);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.9)),
    radial-gradient(circle at top right, rgba(29, 139, 132, 0.08), transparent 40%);
  box-shadow: var(--shadow-soft);
}

.section-heading {
  display: grid;
  gap: 10px;
}

.section-kicker {
  margin: 0;
  color: #166861;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-description {
  max-width: 60ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.section-title {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(1.9rem, 2.7vw, 2.25rem);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 20px;
}

.faq-button {
  width: 100%;
  min-height: 56px;
  padding: 16px 20px;
  border-radius: 18px;
  text-align: left;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: 0 8px 18px rgba(25, 55, 52, 0.04);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.5;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.faq-button:hover {
  background: #ffffff;
  border-color: rgba(29, 139, 132, 0.32);
}

/* ===== Utility ===== */

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

.hidden {
  display: none;
}

@media (max-width: 1080px) {
  :root {
    --hero-offset: 214px;
  }

  .hero-bar-inner {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .lang-selector {
    grid-column: 2;
    margin-left: 0;
    align-items: flex-start;
  }
}

/* ===== Tablet / Small Laptop ===== */

@media (max-width: 720px) {
  :root {
    --hero-offset: 186px;
    --composer-clearance: 112px;
  }

  /* ── Page shell ── */
  .page-shell {
    width: calc(100% - 20px);
    padding: var(--hero-offset) 0 var(--composer-clearance);
  }

  /* ── Hero bar ── */
  .hero-bar {
    padding: 10px 12px;
  }

  .hero-bar-inner {
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    width: calc(100% - 20px);
  }

  .hero-logo {
    width: 52px;
    height: 52px;
  }

  .eyebrow {
    margin-bottom: 2px;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }

  .title {
    font-size: 1.1rem;
    line-height: 1.15;
  }

  .subtitle {
    margin-top: 2px;
    font-size: 0.72rem;
    line-height: 1.35;
  }

  /* Language selector as a compact row beneath the logo + title */
  .lang-selector {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-left: 0;
    padding-top: 6px;
    border-top: 1px solid rgba(184, 208, 200, 0.5);
  }

  .lang-selector-label {
    font-size: 0.64rem;
    white-space: nowrap;
  }

  .lang-select {
    min-width: 0;
    width: auto;
    flex: 1;
    max-width: 180px;
    padding: 6px 30px 6px 12px;
    font-size: 0.8rem;
    border-radius: 10px;
  }

  /* ── FAQ section ── */
  .faq-section {
    padding: 20px 14px;
    border-radius: 20px;
  }

  .section-kicker {
    font-size: 0.7rem;
  }

  .section-title {
    font-size: 1.4rem;
    line-height: 1.1;
  }

  .section-description {
    font-size: 0.85rem;
    line-height: 1.55;
  }

  .faq-list {
    gap: 10px;
    margin-top: 16px;
  }

  .faq-button {
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 0.88rem;
    line-height: 1.45;
  }

  /* ── Chat area ── */
  .chat-bubble {
    max-width: 92%;
    padding: 12px 14px;
    border-radius: 16px;
    font-size: 0.9rem;
  }

  .chat-bubble-bot .answer-text {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .chat-meta {
    gap: 6px;
    margin-top: 10px;
    padding-top: 8px;
  }

  .meta-badge {
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 8px;
  }

  /* ── Ask panel ── */
  .ask-panel {
    padding: 4px 10px 6px;
  }

  .ask-input {
    min-height: 48px;
    padding: 14px 48px 14px 14px;
    border-radius: 18px;
    font-size: 0.88rem;
  }

  .ask-button {
    width: 36px;
    height: 36px;
    right: 6px;
    border-radius: 10px;
  }

  .ask-note {
    max-width: 100%;
    font-size: 0.66rem;
    white-space: normal;
    line-height: 1.3;
  }

  /* ── Alternatives ── */
  .alt-toggle {
    font-size: 0.78rem;
    padding: 6px 12px;
    border-radius: 10px;
  }

  .alt-item {
    padding: 10px 12px;
    border-radius: 12px;
  }

  .alt-topic {
    font-size: 0.68rem;
  }

  .alt-office {
    font-size: 0.66rem;
  }

  .alt-question {
    font-size: 0.85rem;
  }

  .alt-answer {
    font-size: 0.82rem;
  }

  .alt-ask-btn {
    padding: 8px 12px;
    font-size: 0.82rem;
    border-radius: 12px;
  }

  /* ── Feedback ── */
  .feedback-row {
    gap: 6px;
    margin-top: 8px;
    padding-top: 8px;
  }

  .feedback-label {
    font-size: 0.72rem;
  }

  .feedback-btn {
    width: 30px;
    height: 30px;
    border-radius: 8px;
  }

  .feedback-thanks {
    font-size: 0.72rem;
  }
}

/* ===== Small Mobile (≤ 480px) ===== */

@media (max-width: 480px) {
  :root {
    --hero-offset: 170px;
    --composer-clearance: 104px;
  }

  .page-shell {
    width: calc(100% - 16px);
  }

  .hero-bar {
    padding: 8px 10px;
  }

  .hero-bar-inner {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 8px;
    width: calc(100% - 16px);
  }

  .hero-logo {
    width: 44px;
    height: 44px;
  }

  .eyebrow {
    font-size: 0.56rem;
    letter-spacing: 0.1em;
    margin-bottom: 1px;
  }

  .title {
    font-size: 0.98rem;
  }

  .subtitle {
    font-size: 0.68rem;
  }

  .lang-selector {
    padding-top: 5px;
    gap: 6px;
  }

  .lang-selector-label {
    font-size: 0.6rem;
  }

  .lang-select {
    max-width: 160px;
    padding: 5px 26px 5px 10px;
    font-size: 0.76rem;
    border-width: 1.5px;
    border-radius: 8px;
  }

  .lang-select-arrow {
    right: 9px;
  }

  /* FAQ */
  .faq-section {
    padding: 16px 12px;
    border-radius: 16px;
  }

  .section-kicker {
    font-size: 0.66rem;
  }

  .section-title {
    font-size: 1.2rem;
  }

  .section-description {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .faq-list {
    gap: 8px;
    margin-top: 12px;
  }

  .faq-button {
    min-height: 42px;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 0.82rem;
    line-height: 1.4;
  }

  /* Chat */
  .chat-area {
    gap: 10px;
  }

  .chat-bubble {
    max-width: 94%;
    padding: 10px 12px;
    border-radius: 14px;
    font-size: 0.86rem;
  }

  .chat-bubble-bot .answer-text {
    font-size: 0.86rem;
    line-height: 1.55;
  }

  .meta-badge {
    font-size: 0.66rem;
    padding: 3px 7px;
  }

  /* Ask panel */
  .ask-panel {
    padding: 3px 8px 5px;
  }

  .ask-input {
    min-height: 44px;
    padding: 12px 44px 12px 12px;
    border-radius: 16px;
    font-size: 0.84rem;
  }

  .ask-input::placeholder {
    font-size: 0.78rem;
  }

  .ask-button {
    width: 32px;
    height: 32px;
    right: 6px;
    border-radius: 9px;
  }

  .ask-button svg {
    width: 16px;
    height: 16px;
  }

  .ask-note {
    font-size: 0.62rem;
    padding: 0 4px;
  }
}

/* ===== Extra Small (≤ 360px) ===== */

@media (max-width: 360px) {
  :root {
    --hero-offset: 160px;
    --composer-clearance: 98px;
  }

  .page-shell {
    width: calc(100% - 12px);
  }

  .hero-bar {
    padding: 6px 8px;
  }

  .hero-bar-inner {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 6px;
    width: calc(100% - 12px);
  }

  .hero-logo {
    width: 38px;
    height: 38px;
  }

  .eyebrow {
    font-size: 0.52rem;
  }

  .title {
    font-size: 0.9rem;
  }

  .subtitle {
    font-size: 0.64rem;
  }

  .lang-selector {
    flex-wrap: wrap;
  }

  .lang-select {
    max-width: 140px;
    font-size: 0.72rem;
    padding: 4px 24px 4px 8px;
  }

  .faq-section {
    padding: 14px 10px;
    border-radius: 14px;
  }

  .section-title {
    font-size: 1.05rem;
  }

  .section-description {
    font-size: 0.76rem;
  }

  .faq-button {
    min-height: 38px;
    padding: 8px 10px;
    border-radius: 10px;
    font-size: 0.78rem;
  }

  .chat-bubble {
    max-width: 96%;
    padding: 8px 10px;
    border-radius: 12px;
    font-size: 0.82rem;
  }

  .ask-input {
    min-height: 40px;
    padding: 10px 40px 10px 10px;
    border-radius: 14px;
    font-size: 0.8rem;
  }

  .ask-button {
    width: 28px;
    height: 28px;
    border-radius: 8px;
  }

  .ask-button svg {
    width: 14px;
    height: 14px;
  }
}

