:root {
  --bg: #070707;
  --surface: #111111;
  --surface-2: #181818;
  --text: #f8f5ee;
  --muted: #c8bc9c;
  --gold-1: #f8e7a1;
  --gold-2: #dcb14c;
  --gold-3: #be8a30;
  --line: rgba(235, 197, 108, 0.25);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Sora", sans-serif;
  background: radial-gradient(circle at 20% -10%, rgba(214, 162, 57, 0.12), transparent 38%), var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── Grid background ── */
.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, black 25%, transparent 95%);
  z-index: -1;
  animation: gridDrift 20s linear infinite;
}
@keyframes gridDrift {
  0%   { background-position: 0 0; }
  100% { background-position: 44px 44px; }
}

/* ── Ambient orbs ── */
.bg-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(80px);
  animation: orbFloat 12s ease-in-out infinite alternate;
}
.bg-orb-1 {
  width: 500px; height: 500px;
  top: -150px; left: -100px;
  background: radial-gradient(circle, rgba(220,177,76,0.08), transparent 70%);
  animation-delay: 0s;
}
.bg-orb-2 {
  width: 400px; height: 400px;
  bottom: -100px; right: -80px;
  background: radial-gradient(circle, rgba(248,231,161,0.06), transparent 70%);
  animation-delay: -6s;
}
@keyframes orbFloat {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, -40px) scale(1.05); }
}

/* ── Layout ── */
.site-header, main, .site-footer {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0 10px;
  animation: headerDrop 0.7s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes headerDrop {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.brand img {
  width: 210px;
  max-width: 40vw;
  filter: drop-shadow(0 0 8px rgba(217,170,70,0.25));
  transition: filter 0.3s ease;
}
.brand img:hover {
  filter: drop-shadow(0 0 16px rgba(217,170,70,0.5));
}

.menu-btn {
  display: none;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  cursor: pointer;
}

/* Hidden on desktop, shown only inside mobile drawer */
.nav-menu-close { display: none; }

.nav-links { display: flex; gap: 22px; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold-2);
  transition: width 0.25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active,
.nav-links a:hover { color: var(--gold-1); }

/* ── Hero ── */
.hero, .page-hero { padding: 42px 0 24px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 22px;
  align-items: center;
}

.eyebrow {
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: .78rem;
  margin: 0 0 12px;
  animation: fadeUp 0.6s 0.1s ease both;
}

h1 {
  font-size: clamp(2.1rem, 4.8vw, 4rem);
  line-height: 1.08;
  margin: 0;
  max-width: 16ch;
  animation: fadeUp 0.7s 0.2s ease both;
}

.gold-text { color: var(--gold-1); }
h2 { font-size: clamp(1.4rem, 2.8vw, 2.2rem); margin: 0 0 14px; }
h3 { margin: 0 0 10px; font-size: 1.3rem; }
p  { margin: 0 0 14px; color: #e6dfcf; }

.hero-copy {
  max-width: 66ch;
  margin-top: 18px;
  animation: fadeUp 0.7s 0.3s ease both;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0 28px;
  animation: fadeUp 0.7s 0.4s ease both;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .01em;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.btn:hover::before { opacity: 1; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2) 50%, var(--gold-3));
  color: #111;
  box-shadow: 0 8px 24px rgba(221,177,76,0.2);
}
.btn-gold:hover { box-shadow: 0 12px 32px rgba(221,177,76,0.4); }

.btn-dark {
  background: #151515;
  border-color: var(--line);
  color: var(--text);
}

/* ── Hero stats ── */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
  animation: fadeUp 0.7s 0.5s ease both;
}

.hero-stats article, .card, .panel, .chat-demo {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), transparent), var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-stats article:hover,
.card:hover {
  border-color: rgba(235,197,108,0.5);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.hero-stats article { padding: 14px; }
.hero-stats strong {
  display: block;
  color: var(--gold-1);
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.hero-stats span { color: var(--muted); font-size: .92rem; }

/* ── Chat demo ── */
.chat-demo { overflow: hidden; animation: fadeUp 0.8s 0.35s ease both; }
.chat-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 10px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.status-dot {
  width: 11px; height: 11px;
  border-radius: 999px;
  background: #56d97f;
  box-shadow: 0 0 0 7px rgba(86,217,127,0.15);
  animation: pulse 1.8s infinite;
}
.chat-header p { margin: 0; font-weight: 700; color: #f6eddb; }
.chat-header small { grid-column: 2; color: var(--muted); }
.chat-body { padding: 16px; display: grid; gap: 10px; }
.bubble {
  max-width: 92%;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: .93rem;
  line-height: 1.35;
  animation: bubbleIn .5s ease both;
}
.bubble-user {
  margin-left: auto;
  background: #1f1f1f;
  border: 1px solid rgba(255,255,255,.1);
}
.bubble-ai {
  background: rgba(220,177,76,0.12);
  border: 1px solid rgba(220,177,76,0.45);
}
.bubble:nth-child(1) { animation-delay: .1s; }
.bubble:nth-child(2) { animation-delay: .4s; }
.bubble:nth-child(3) { animation-delay: .7s; }
.bubble:nth-child(4) { animation-delay: 1.0s; }

.typing {
  display: inline-flex;
  gap: 6px;
  width: 64px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(220,177,76,0.12);
  border: 1px solid rgba(220,177,76,0.35);
  animation: bubbleIn .5s 1.3s ease both;
}
.typing span {
  width: 7px; height: 7px;
  border-radius: 999px;
  background: var(--gold-2);
  animation: blink 1s infinite;
}
.typing span:nth-child(2) { animation-delay: .2s; }
.typing span:nth-child(3) { animation-delay: .4s; }

/* ── Panels ── */
.panel { padding: 26px; margin: 20px 0; }
.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  align-items: center;
}

.feature-grid {
  margin: 0; padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.feature-grid li {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  color: #f1ead8;
  font-size: .95rem;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.feature-grid li:hover {
  background: rgba(220,177,76,0.06);
  border-color: rgba(220,177,76,0.35);
  transform: translateX(3px);
}

.heading-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 14px;
  margin-bottom: 14px;
}
.text-link { color: var(--gold-2); text-decoration: none; font-weight: 600; }
.text-link:hover { color: var(--gold-1); }

/* ── Cards ── */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.card { padding: 20px; position: relative; overflow: hidden; }
.card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(220,177,76,0.04), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.card:hover::after { opacity: 1; }
.card.featured {
  border-color: rgba(248,231,161,0.5);
  box-shadow: 0 18px 40px rgba(212,170,73,0.16);
}
.badge {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(248,231,161,0.15);
  border: 1px solid rgba(248,231,161,0.45);
  color: var(--gold-1);
  padding: 5px 10px;
  border-radius: 999px;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.price {
  font-size: 2rem;
  margin: 0 0 10px;
  color: var(--gold-1);
  font-family: "Space Grotesk", sans-serif;
}
.sub { color: var(--muted); font-size: .9rem; margin-top: -6px; }
.package-card ul { margin: 14px 0 20px; padding-left: 18px; color: #efe5ce; }
.package-card li { margin-bottom: 8px; }
.muted { color: var(--muted); }

/* ── Testimonials ── */
.testimonials-panel { overflow: hidden; }
.testimonial-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.testimonial {
  opacity: .45;
  transform: scale(0.97);
  transition: opacity 0.4s ease, transform 0.4s ease, border-color 0.4s ease;
}
.testimonial.active {
  opacity: 1;
  transform: scale(1) translateY(-3px);
  border-color: rgba(248,231,161,0.5);
  box-shadow: 0 12px 30px rgba(212,170,73,0.12);
}
.testimonial span { color: var(--muted); font-size: .9rem; }
.dots { display: flex; gap: 8px; margin-top: 14px; }
.dots button {
  width: 10px; height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(248,231,161,0.3);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.dots button.active {
  background: var(--gold-2);
  transform: scaleX(2.2);
}

/* ── Contact ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  margin-bottom: 30px;
}
.contact-form { display: grid; gap: 12px; }
.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  color: #f5edd8;
  font-size: .95rem;
}
input, textarea, select {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--line);
  padding: 11px 12px;
  background: #121212;
  color: #fff;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: rgba(220,177,76,0.6);
  box-shadow: 0 0 0 3px rgba(220,177,76,0.1);
}
.quick-actions { display: grid; gap: 12px; align-content: start; }
.note { margin-top: 8px; border-top: 1px solid var(--line); padding-top: 12px; }

/* ── Footer ── */
.site-footer {
  display: flex;
  justify-content: space-between;
  padding: 34px 0 38px;
  color: var(--muted);
  font-size: .95rem;
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ── Keyframes ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(86,217,127,0.3); }
  100% { box-shadow: 0 0 0 10px rgba(86,217,127,0); }
}
@keyframes bubbleIn {
  from { opacity: 0; transform: translateY(10px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes blink {
  0%, 80%, 100% { opacity: .3; transform: translateY(0); }
  40%           { opacity: 1;  transform: translateY(-3px); }
}
@keyframes panelOpen {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes msgIn {
  from { opacity: 0; transform: translateY(8px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── Chat widget ── */
.chat-widget {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  font-family: "Sora", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  width: fit-content;
  max-width: calc(100vw - 32px);
  pointer-events: none;
}

.chat-widget .chat-fab,
.chat-widget .chat-panel {
  pointer-events: all;
}

/* FAB - pill button */
.chat-fab {
  width: auto;
  height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(248,231,161,0.6);
  background: linear-gradient(135deg, #f8e7a1, #dcb14c 50%, #be8a30);
  color: #111;
  font-weight: 700;
  font-size: 0.88rem;
  font-family: "Sora", sans-serif;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 28px rgba(221,177,76,0.4), 0 2px 8px rgba(0,0,0,0.3);
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.22s ease;
  animation: fabBounceIn 0.7s 1s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes fabBounceIn {
  from { opacity: 0; transform: scale(0.5) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.chat-fab:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 36px rgba(221,177,76,0.55), 0 2px 8px rgba(0,0,0,0.3);
}
.chat-fab:active { transform: scale(0.97); }
.chat-fab svg {
  width: 17px; height: 17px;
  flex-shrink: 0;
}

/* Panel */
.chat-panel {
  display: flex;
  flex-direction: column;
  width: min(420px, 92vw);
  background: #0e0e0e;
  border: 1px solid rgba(248,231,161,0.3);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
  overflow: hidden;
  transform-origin: bottom right;
  transition: opacity 0.28s cubic-bezier(0.22,1,0.36,1), transform 0.28s cubic-bezier(0.22,1,0.36,1);
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: all;
}
.chat-panel.chat-panel--hidden {
  opacity: 0;
  transform: scale(0.88) translateY(16px);
  pointer-events: none;
}
.chat-panel:not(.chat-panel--hidden) {
  animation: panelOpen 0.32s cubic-bezier(0.22,1,0.36,1) both;
}

/* Panel header */
.chat-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: linear-gradient(180deg, rgba(220,177,76,0.08), rgba(220,177,76,0.02));
}
.chat-header-info { display: flex; align-items: center; gap: 10px; }
.chat-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f8e7a1, #dcb14c);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(220,177,76,0.35);
}
.chat-panel-header strong { color: #f8f5ee; font-size: 0.95rem; }
.chat-panel-header small { color: #c8bc9c; display: block; font-size: 0.75rem; margin-top: 1px; }
.chat-online-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #56d97f;
  display: inline-block;
  margin-right: 4px;
  box-shadow: 0 0 6px rgba(86,217,127,0.6);
  animation: pulse 1.8s infinite;
}
.chat-close {
  background: rgba(255,255,255,0.06);
  color: #f8f5ee;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  width: 30px; height: 30px;
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  line-height: 1;
}
.chat-close:hover {
  background: rgba(255,255,255,0.12);
  transform: rotate(90deg);
}

/* Messages */
.chat-panel-body {
  height: 340px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  scroll-behavior: smooth;
}
.chat-panel-body::-webkit-scrollbar { width: 4px; }
.chat-panel-body::-webkit-scrollbar-thumb { background: rgba(220,177,76,0.2); border-radius: 4px; }

.chat-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.9rem;
  line-height: 1.45;
  animation: msgIn 0.3s cubic-bezier(0.22,1,0.36,1) both;
}
.chat-msg.user {
  align-self: flex-end;
  background: linear-gradient(135deg, #1e1e1e, #252525);
  border: 1px solid rgba(255,255,255,0.08);
  border-bottom-right-radius: 4px;
}
.chat-msg.ai {
  align-self: flex-start;
  background: linear-gradient(135deg, rgba(220,177,76,0.1), rgba(220,177,76,0.06));
  border: 1px solid rgba(220,177,76,0.3);
  border-bottom-left-radius: 4px;
  color: #f5ead8;
}

/* Suggestions */
.chat-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 10px 14px 6px;
  border-top: 1px solid rgba(255,255,255,0.05);
  animation: fadeUp 0.3s ease both;
}
.chat-suggestion-btn {
  background: rgba(220,177,76,0.07);
  border: 1px solid rgba(220,177,76,0.25);
  border-radius: 999px;
  color: #dcb14c;
  font-size: 0.77rem;
  font-family: "Sora", sans-serif;
  padding: 5px 13px;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
  white-space: nowrap;
}
.chat-suggestion-btn:hover {
  background: rgba(220,177,76,0.16);
  border-color: rgba(220,177,76,0.55);
  transform: translateY(-2px);
}
.chat-suggestions.hidden { display: none; }

/* Input */
.chat-input {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid rgba(255,255,255,0.07);
  background: rgba(0,0,0,0.2);
}
.chat-input input {
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 10px 14px;
  background: #141414;
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: 0.88rem;
  transition: border-color 0.2s ease;
}
.chat-input input:focus {
  outline: none;
  border-color: rgba(220,177,76,0.5);
  box-shadow: 0 0 0 3px rgba(220,177,76,0.08);
}
.chat-input input::placeholder { color: rgba(255,255,255,0.25); }
.chat-input button {
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, #f8e7a1, #dcb14c);
  color: #111;
  font-weight: 700;
  font-family: "Sora", sans-serif;
  padding: 0 16px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 4px 12px rgba(220,177,76,0.3);
}
.chat-input button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(220,177,76,0.45);
}
.chat-input button:active { transform: scale(0.96); }

/* ── Misc ── */
.btn-stack { display: grid; gap: 10px; }
.bank-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}
.bank-item {
  display: grid;
  gap: 4px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
}
.bank-item strong { color: var(--gold-1); font-size: .9rem; }
.bank-item span   { color: #f1ead8; font-size: .95rem; }

.success-banner {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid rgba(126,219,160,0.45);
  background: linear-gradient(180deg, rgba(86,217,127,0.16), rgba(86,217,127,0.08));
}
.success-banner p { margin: 0; color: #d8ffe5; font-weight: 600; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .hero-grid, .split, .cards-3, .contact-layout,
  .hero-stats, .feature-grid, .testimonial-track {
    grid-template-columns: 1fr;
  }
  .menu-btn { display: inline-flex; }

  /* Full-screen overlay drawer */
  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    /* Dark overlay with gold tint, above everything including chat widget */
    background: rgba(7, 5, 2, 0.96);
    z-index: 10100;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 80px 0 40px;
    /* Hidden by default — no pointer events, invisible */
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  /* Open state */
  .nav-links.open {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
  }

  /* Nav links — large tap targets */
  .nav-links a {
    font-size: 1.6rem;
    font-weight: 600;
    padding: 18px 0;
    width: 80%;
    text-align: center;
    color: var(--text);
    border-bottom: 1px solid var(--line);
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .nav-links a:first-of-type { border-top: 1px solid var(--line); }
  .nav-links a:hover,
  .nav-links a:active { color: var(--gold-1); }

  /* Client login button in drawer */
  .nav-links .btn-client-login {
    margin-top: 28px;
    font-size: 1rem;
    padding: 14px 40px;
    width: auto;
    border-radius: 10px;
  }

  /* ✕ Close button — gold themed, top-right */
  .nav-menu-close {
    display: flex !important;
    position: absolute;
    top: 22px; right: 22px;
    width: 44px; height: 44px;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--gold-2);
    border-radius: 10px;
    color: var(--gold-1);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    z-index: 10101;
  }
  .nav-menu-close:hover,
  .nav-menu-close:active {
    background: var(--gold-2);
    color: #070707;
  }
  .site-footer { flex-direction: column; gap: 8px; }
  .bank-grid { grid-template-columns: 1fr; }
}

/* ── How It Works ── */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-top: 8px;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px 20px;
  background: linear-gradient(180deg, rgba(220,177,76,0.05), transparent);
  border: 1px solid rgba(235,197,108,0.18);
  border-radius: 16px;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.step:hover {
  border-color: rgba(235,197,108,0.45);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.step-number {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-2);
  opacity: 0.5;
  line-height: 1;
  transition: opacity 0.3s ease;
}
.step:hover .step-number { opacity: 1; }

.step-content h3 { margin: 0 0 8px; font-size: 1.05rem; color: var(--text); }
.step-content p  { margin: 0; font-size: 0.9rem; color: var(--muted); line-height: 1.5; }

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  margin-top: 40px;
}
.step-connector::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, rgba(220,177,76,0.4), rgba(220,177,76,0.15));
  border-radius: 2px;
}

/* ── Testimonial (single real one) ── */
.testimonial-single { overflow: visible; }
.testimonial-real {
  position: relative;
  padding: 10px 0 4px;
}
.testimonial-quote-mark {
  font-family: "Space Grotesk", sans-serif;
  font-size: 7rem;
  line-height: 0.6;
  color: var(--gold-2);
  opacity: 0.2;
  margin-bottom: 16px;
  user-select: none;
}
blockquote {
  margin: 0 0 24px;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.65;
  color: #f0e8d5;
  font-style: italic;
  max-width: 76ch;
}
.testimonial-attribution {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.testimonial-meta strong {
  display: block;
  color: var(--gold-1);
  font-size: 1rem;
  margin-bottom: 3px;
}
.testimonial-meta span {
  color: var(--muted);
  font-size: 0.88rem;
}
.testimonial-demo-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  font-size: 0.88rem;
  padding: 10px 18px;
  flex-shrink: 0;
}
.testimonial-demo-btn:hover {
  border-color: var(--gold-2);
  color: var(--gold-1);
}

/* ── Full Footer ── */
.site-footer-full {
  background: linear-gradient(180deg, transparent, rgba(220,177,76,0.03));
  border-top: 1px solid rgba(235,197,108,0.15);
  margin-top: 40px;
  padding: 56px 0 0;
}
.footer-inner {
  width: min(1120px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-brand .brand img { width: 180px; }
.footer-tagline {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 36ch;
  margin: 0;
}
.footer-cta {
  width: fit-content;
  font-size: 0.88rem;
  padding: 10px 20px;
  min-height: 40px;
}
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col h4 {
  color: var(--gold-1);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 4px;
}
.footer-col a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--text); }
.footer-hours {
  color: rgba(200,188,156,0.55);
  font-size: 0.82rem;
}
.footer-bottom {
  width: min(1120px, 92vw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: rgba(200,188,156,0.4);
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 960px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .step-connector { display: none; }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .testimonial-attribution {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── Demo callout banner ── */
.demo-callout {
  background: linear-gradient(135deg, rgba(220,177,76,0.08), rgba(220,177,76,0.03));
  border-color: rgba(220,177,76,0.35);
}
.demo-callout-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.demo-callout-inner h3 { margin: 0 0 6px; font-size: 1.1rem; }
.demo-callout-inner p  { margin: 0; color: var(--muted); font-size: 0.92rem; max-width: 52ch; }
.demo-callout-inner .btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Packages grid spacing ── */
.packages-grid { margin-top: 0; }
.package-card .btn-stack { margin-top: auto; padding-top: 20px; }
.package-card {
  display: flex;
  flex-direction: column;
}

/* ════════════════════════════════════════
   MOBILE — full overhaul
   ════════════════════════════════════════ */

@media (max-width: 600px) {

  /* ── Base spacing ── */
  body { font-size: 15px; }

  .site-header, main, .site-footer-full .footer-inner,
  .site-footer-full .footer-bottom {
    width: 92vw;
  }

  /* ── Header ── */
  .site-header {
    padding: 16px 0 10px;
    position: relative;
  }
  .brand img { width: 150px; }

  /* ── Hero ── */
  .hero, .page-hero { padding: 24px 0 16px; }
  .hero-grid { gap: 16px; }
  h1 { font-size: clamp(1.7rem, 7vw, 2.4rem); max-width: 100%; }
  h2 { font-size: clamp(1.2rem, 5vw, 1.8rem); }
  h3 { font-size: 1.1rem; }
  .hero-copy { font-size: 0.93rem; margin-top: 12px; }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
    margin: 18px 0 20px;
  }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* ── Hero stats ── */
  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 16px;
  }
  .hero-stats article:last-child {
    grid-column: 1 / -1;
  }
  .hero-stats strong { font-size: 1rem; }
  .hero-stats span   { font-size: 0.82rem; }

  /* ── Chat demo ── */
  .chat-demo { margin-top: 4px; }
  .chat-body { padding: 12px; gap: 8px; }
  .bubble { font-size: 0.85rem; padding: 8px 10px; }

  /* ── Panels ── */
  .panel { padding: 18px 16px; margin: 12px 0; }
  .split { gap: 16px; }

  /* ── Feature grid ── */
  .feature-grid { grid-template-columns: 1fr; gap: 8px; }
  .feature-grid li { font-size: 0.88rem; padding: 10px 12px; }

  /* ── Cards / Packages ── */
  .cards-3 { gap: 12px; }
  .card { padding: 16px; }
  .price { font-size: 1.7rem; }
  .badge { font-size: 0.65rem; padding: 4px 8px; }

  .btn-stack { gap: 8px; }
  .btn-stack .btn { width: 100%; justify-content: center; font-size: 0.85rem; }

  /* ── How It Works ── */
  .how-it-works .panel { padding: 18px 16px; }
  .step { padding: 16px 14px; gap: 10px; }
  .step-number { font-size: 1.7rem; }
  .step-content h3 { font-size: 0.95rem; }
  .step-content p  { font-size: 0.85rem; }

  /* ── Testimonial ── */
  .testimonial-quote-mark { font-size: 4.5rem; margin-bottom: 10px; }
  blockquote { font-size: 0.97rem; margin-bottom: 18px; }
  .testimonial-attribution { flex-direction: column; align-items: flex-start; gap: 14px; }
  .testimonial-demo-btn { width: 100%; justify-content: center; }
  .testimonial-meta strong { font-size: 0.92rem; }

  /* ── Demo callout ── */
  .demo-callout-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .demo-callout-inner .btn { width: 100%; justify-content: center; }

  /* ── Contact layout ── */
  .contact-layout { grid-template-columns: 1fr; gap: 12px; }
  .quick-actions { order: -1; }
  .quick-actions .btn { width: 100%; justify-content: center; }
  .contact-form label { font-size: 0.88rem; }
  input, textarea, select { font-size: 0.9rem; padding: 10px 11px; }
  .contact-form .btn { width: 100%; justify-content: center; }

  /* ── Bank grid ── */
  .bank-grid { grid-template-columns: 1fr; gap: 8px; }
  .bank-item { padding: 10px; }

  /* ── Footer ── */
  .site-footer-full { padding: 36px 0 0; margin-top: 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; padding-bottom: 32px; }
  .footer-brand .brand img { width: 140px; }
  .footer-tagline { font-size: 0.88rem; max-width: 100%; }
  .footer-cta { width: 100%; justify-content: center; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-col h4 { font-size: 0.72rem; }
  .footer-col a  { font-size: 0.88rem; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 16px 0 24px;
    font-size: 0.75rem;
  }

  /* ── Chat widget — bottom-left on mobile, out of the way ── */
  .chat-widget {
    right: auto;
    left: 16px;
    bottom: 16px;
    align-items: flex-start;
  }
  .chat-fab {
    height: 46px;
    padding: 0 16px;
    font-size: 0.82rem;
  }
  .chat-panel {
    width: calc(100vw - 32px);
    left: 0;
    right: auto;
    border-radius: 14px;
  }
  .chat-panel-body { height: 260px; }
  .chat-suggestion-btn { font-size: 0.72rem; padding: 4px 10px; }

  /* ── Heading row ── */
  .heading-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  /* ── Page hero ── */
  .page-hero h1 { font-size: clamp(1.6rem, 6.5vw, 2.2rem); }
  .page-hero p  { font-size: 0.92rem; }

  /* ── Success banner ── */
  .success-banner { padding: 12px 14px; margin-top: 10px; }
  .success-banner p { font-size: 0.88rem; }
}

/* ── Tablet tweaks (601–960px) ── */
@media (min-width: 601px) and (max-width: 960px) {
  .cards-3 { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .quick-actions { order: -1; }
  .quick-actions .btn { width: 100%; justify-content: center; }
  .btn-stack .btn { width: 100%; justify-content: center; }
  .demo-callout-inner { flex-direction: column; align-items: flex-start; }
  .demo-callout-inner .btn { align-self: flex-start; }
}

/* ─────────────────────────────────────────────
   CLIENT LOGIN BUTTON + MODAL
   ───────────────────────────────────────────── */

/* Nav login button */
.btn-client-login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  background: rgba(220,177,76,0.1);
  border: 1px solid rgba(220,177,76,0.35);
  color: var(--gold-2);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-client-login:hover {
  background: rgba(220,177,76,0.18);
  border-color: rgba(220,177,76,0.6);
  color: var(--gold-1);
}
.btn-client-dashboard {
  background: linear-gradient(135deg, rgba(220,177,76,0.15), rgba(190,138,48,0.1));
}

/* Overlay */
.login-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(7,7,7,0.75);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 70px 24px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.login-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* Modal card */
.login-modal {
  position: relative;
  width: 340px;
  background: var(--surface);
  border: 1px solid rgba(220,177,76,0.25);
  border-radius: 18px;
  padding: 30px 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(220,177,76,0.08);
  transform: translateY(-12px) scale(0.97);
  transition: transform 0.28s cubic-bezier(0.22,1,0.36,1);
}
.login-overlay.open .login-modal {
  transform: translateY(0) scale(1);
}
.login-modal-close {
  position: absolute;
  top: 14px; right: 16px;
  background: none; border: none;
  color: var(--muted); font-size: 1.3rem;
  cursor: pointer; line-height: 1;
  transition: color 0.15s;
}
.login-modal-close:hover { color: var(--text); }

.login-modal-header {
  text-align: center;
  margin-bottom: 22px;
}
.login-modal-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.login-modal-header h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.login-modal-header p {
  font-size: 0.8rem;
  color: var(--muted);
}

.lm-group {
  margin-bottom: 14px;
}
.lm-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 6px;
}
.lm-group input {
  width: 100%;
  padding: 10px 13px;
  background: var(--surface-2);
  border: 1px solid rgba(220,177,76,0.18);
  border-radius: 9px;
  color: var(--text);
  font-family: "Sora", sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s;
}
.lm-group input:focus {
  border-color: var(--gold-2);
  box-shadow: 0 0 0 3px rgba(220,177,76,0.1);
}
.lm-group input::placeholder { color: rgba(200,188,156,0.35); }

.lm-error {
  font-size: 0.78rem;
  color: #e05555;
  min-height: 20px;
  margin-bottom: 8px;
}

.lm-btn {
  width: 100%;
  padding: 11px;
  border: none;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-3));
  color: #1a1200;
  font-family: "Sora", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s;
}
.lm-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(220,177,76,0.3);
}

.lm-note {
  margin-top: 14px;
  text-align: center;
  font-size: 0.76rem;
  color: rgba(200,188,156,0.5);
}
.lm-note a {
  color: var(--gold-3);
  text-decoration: none;
}

@media (max-width: 600px) {
  .login-overlay {
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
  .login-modal { width: 100%; max-width: 340px; }
  .btn-client-login { padding: 7px 12px; font-size: 0.77rem; }
}
