:root {
  color-scheme: dark;
  --bg: #080b11;
  --bg-soft: #0d121d;
  --panel: rgba(18, 24, 38, 0.76);
  --panel-solid: #121827;
  --text: #f5f0e6;
  --muted: #b9b0a1;
  --soft-muted: #7c8494;
  --line: rgba(215, 180, 106, 0.18);
  --gold: #d7b46a;
  --gold-2: #f0d99b;
  --accent: #65d6c5;
  --danger: #ff7070;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
  --header-h: 86px;
  --font-ar: "Tajawal", "IBM Plex Sans Arabic", "Noto Sans Arabic", "Segoe UI", Tahoma, Arial, sans-serif;
  --font-en: "Tajawal", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html[data-theme="light"] {
  color-scheme: light;
  --bg: #f7f3ea;
  --bg-soft: #ffffff;
  --panel: rgba(255, 255, 255, 0.78);
  --panel-solid: #fffaf0;
  --text: #12151d;
  --muted: #555b67;
  --soft-muted: #768091;
  --line: rgba(122, 87, 28, 0.18);
  --gold: #a97922;
  --gold-2: #d7a84f;
  --accent: #087a6d;
  --shadow: 0 24px 70px rgba(76, 61, 29, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-ar);
  background:
    radial-gradient(circle at 12% 10%, rgba(215, 180, 106, 0.18), transparent 32%),
    radial-gradient(circle at 88% 0%, rgba(101, 214, 197, 0.10), transparent 26%),
    var(--bg);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
}

html[dir="ltr"] body { font-family: var(--font-en); }

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

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section-pad { padding: 96px 0; }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.orb {
  position: fixed;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.28;
  pointer-events: none;
  z-index: -1;
}

.orb-one { inset-inline-start: -120px; top: 16%; background: var(--gold); }
.orb-two { inset-inline-end: -130px; bottom: 10%; background: var(--accent); opacity: .16; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(22px);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  border-bottom: 1px solid var(--line);
}

.nav {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #11131a;
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(215, 180, 106, 0.22);
}

.brand-text { display: grid; line-height: 1.1; }
.brand-text strong { font-size: 1.18rem; letter-spacing: -0.02em; }
.brand-text small { color: var(--muted); font-size: .78rem; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: .95rem;
}

.nav-menu a { transition: color .25s ease; }
.nav-menu a:hover { color: var(--gold-2); }

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

.chip-btn, .nav-cta, .btn {
  border: 1px solid var(--line);
  color: var(--text);
  background: var(--panel);
  border-radius: 999px;
  cursor: pointer;
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

.chip-btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
}

.nav-cta {
  padding: 10px 18px;
  color: #11131a;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  font-weight: 800;
}

.chip-btn:hover, .nav-cta:hover, .btn:hover { transform: translateY(-2px); }

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 1.6rem;
}

.hero { padding-top: 70px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 56px;
  align-items: center;
}

.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-2);
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: .02em;
  margin-bottom: 14px;
}

.pulse {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 7px color-mix(in srgb, var(--accent) 18%, transparent);
}

.hero h1, .section-head h2, .showcase-card h2, .insight-copy h2, .contact-copy h2 {
  margin: 0;
  font-size: clamp(2.55rem, 5vw, 5.55rem);
  line-height: 1.08;
  letter-spacing: -0.06em;
}

html[dir="ltr"] .hero h1,
html[dir="ltr"] .section-head h2,
html[dir="ltr"] .showcase-card h2,
html[dir="ltr"] .insight-copy h2,
html[dir="ltr"] .contact-copy h2 { letter-spacing: -0.075em; }

.hero-lead {
  color: var(--muted);
  max-width: 640px;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  margin: 24px 0 34px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 13px 22px;
  min-height: 52px;
  font-weight: 850;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #11131a;
  border-color: transparent;
  box-shadow: 0 18px 40px color-mix(in srgb, var(--gold) 23%, transparent);
}

.btn-secondary { background: transparent; }
.btn-plan { width: 100%; margin-top: auto; }

.trust-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--soft-muted);
  margin-top: 28px;
  font-size: .92rem;
}

.trust-row span {
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--panel-solid) 66%, transparent);
}

.hero-panel {
  position: relative;
  min-height: 540px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--panel-solid) 82%, transparent), color-mix(in srgb, var(--bg) 62%, transparent)),
    radial-gradient(circle at 30% 15%, rgba(215,180,106,.18), transparent 40%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: .22;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

.panel-top, .metric-card, .mini-grid, .growth-line { position: relative; z-index: 1; }

.panel-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  color: var(--muted);
}

.status {
  padding: 5px 12px;
  border-radius: 999px;
  color: var(--accent);
  border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
  background: color-mix(in srgb, var(--accent) 10%, transparent);
}

.metric-card {
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--panel-solid) 78%, transparent);
  border-radius: 22px;
  padding: 22px;
  backdrop-filter: blur(18px);
}

.metric-card small { display: block; color: var(--soft-muted); margin-bottom: 8px; }
.metric-card strong { font-size: 1.08rem; }

.main-metric { min-height: 150px; display: grid; align-content: center; }
.main-metric strong { font-size: clamp(1.55rem, 2.2vw, 2.3rem); line-height: 1.25; }

.mini-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 14px; }

.growth-line {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 120px;
  margin-top: 26px;
  padding: 0 10px 6px;
}

.growth-line span {
  flex: 1;
  border-radius: 999px 999px 12px 12px;
  background: linear-gradient(180deg, var(--gold-2), color-mix(in srgb, var(--gold) 35%, transparent));
  min-height: 24px;
  animation: grow 3.6s ease-in-out infinite alternate;
}
.growth-line span:nth-child(1) { height: 34%; animation-delay: .1s; }
.growth-line span:nth-child(2) { height: 52%; animation-delay: .25s; }
.growth-line span:nth-child(3) { height: 45%; animation-delay: .5s; }
.growth-line span:nth-child(4) { height: 72%; animation-delay: .7s; }
.growth-line span:nth-child(5) { height: 92%; animation-delay: .9s; }

@keyframes grow { from { transform: scaleY(.72); opacity: .75; } to { transform: scaleY(1); opacity: 1; } }

.logos-strip {
  border-block: 1px solid var(--line);
  background: color-mix(in srgb, var(--panel-solid) 42%, transparent);
}

.strip-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  color: var(--muted);
}
.strip-inner strong { color: var(--text); font-weight: 800; }

.section-head { text-align: center; max-width: 780px; margin: 0 auto 48px; }
.section-head h2 { font-size: clamp(2.2rem, 3.8vw, 4.2rem); }
.section-head p { color: var(--muted); font-size: 1.06rem; margin: 18px auto 0; }

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

.service-card, .price-card, .showcase-card, .fit-list, .lead-form, .timeline-item, .mock-phone, details {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(22px);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.service-card {
  min-height: 260px;
  padding: 26px;
  transition: transform .25s ease, border-color .25s ease;
}
.service-card:hover { transform: translateY(-5px); border-color: color-mix(in srgb, var(--gold) 45%, transparent); }
.icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: #11131a;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border-radius: 18px;
  margin-bottom: 24px;
  font-size: 1.4rem;
}
.service-card h3, .timeline-item h3, .price-card h3 { margin: 0 0 10px; font-size: 1.35rem; }
.service-card p, .timeline-item p, .showcase-card p, .insight-copy p, .contact-copy p { color: var(--muted); margin: 0; }

.method { background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--panel-solid) 26%, transparent), transparent); }
.method-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 46px; align-items: start; }
.sticky-head { position: sticky; top: calc(var(--header-h) + 26px); text-align: start; margin: 0; }
.timeline { display: grid; gap: 16px; }
.timeline-item { padding: 28px; position: relative; overflow: hidden; }
.timeline-item span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--gold-2);
  margin-bottom: 18px;
  font-weight: 900;
}

.showcase-grid, .insight-grid, .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.showcase-card { padding: 38px; }
.showcase-card h2, .insight-copy h2, .contact-copy h2 { font-size: clamp(2.2rem, 3.8vw, 4rem); }
.check-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 12px; }
.check-list li { color: var(--muted); display: flex; gap: 10px; }
.check-list li::before { content: "✓"; color: var(--accent); font-weight: 900; }

.mock-phone {
  justify-self: center;
  width: min(100%, 370px);
  min-height: 610px;
  padding: 24px;
  border-radius: 44px;
  background: linear-gradient(180deg, var(--panel-solid), color-mix(in srgb, var(--bg) 80%, var(--gold) 3%));
}
.phone-top { width: 110px; height: 8px; border-radius: 999px; background: var(--line); margin: 0 auto 24px; }
.story-row { display: flex; gap: 10px; margin-bottom: 18px; }
.story-row span { width: 64px; height: 64px; border-radius: 999px; border: 2px solid var(--gold); background: color-mix(in srgb, var(--gold) 20%, transparent); }
.post-card { height: 310px; border-radius: 28px; background: radial-gradient(circle at 32% 26%, var(--gold-2), transparent 22%), linear-gradient(135deg, color-mix(in srgb, var(--gold) 30%, transparent), color-mix(in srgb, var(--accent) 18%, transparent)); border: 1px solid var(--line); }
.post-lines { display: grid; gap: 10px; margin: 22px 0; }
.post-lines span { display: block; height: 12px; border-radius: 999px; background: var(--line); }
.post-lines span:nth-child(2) { width: 76%; }
.post-lines span:nth-child(3) { width: 54%; }
.phone-cta { display: block; text-align: center; padding: 13px; color: #11131a; background: linear-gradient(135deg, var(--gold), var(--gold-2)); border-radius: 999px; font-weight: 900; }

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  min-height: 520px;
}
.price-card.featured {
  border-color: color-mix(in srgb, var(--gold) 58%, transparent);
  transform: translateY(-16px);
  background: linear-gradient(180deg, color-mix(in srgb, var(--gold) 10%, var(--panel)), var(--panel));
}
.badge {
  position: absolute;
  inset-block-start: 18px;
  inset-inline-end: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  color: #11131a;
  background: var(--gold-2);
  font-size: .82rem;
  font-weight: 900;
}
.plan-label { color: var(--gold-2); font-weight: 900; }
.price { margin: 0; font-size: 2.35rem; font-weight: 950; letter-spacing: -0.04em; }
.price small { font-size: .92rem; color: var(--muted); font-weight: 700; }
.price-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; color: var(--muted); }
.price-card li { display: flex; gap: 10px; }
.price-card li::before { content: "•"; color: var(--gold-2); font-weight: 900; }

.insight { background: color-mix(in srgb, var(--panel-solid) 24%, transparent); }
.fit-list { display: grid; gap: 14px; padding: 22px; }
.fit-list div { padding: 18px; border-radius: 18px; background: color-mix(in srgb, var(--panel-solid) 55%, transparent); border: 1px solid var(--line); }
.fit-list strong { display: block; margin-bottom: 6px; color: var(--gold-2); }
.fit-list span { color: var(--muted); }

.faq-list { max-width: 880px; margin: auto; display: grid; gap: 12px; }
details { padding: 22px 24px; }
summary { cursor: pointer; font-weight: 900; font-size: 1.08rem; }
details p { color: var(--muted); margin: 14px 0 0; }

.contact { background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--gold) 7%, transparent)); }
.contact-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 28px; }
.contact-cards div { padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: var(--panel); }
.contact-cards small { display: block; color: var(--soft-muted); }
.contact-cards strong { word-break: break-word; }

.lead-form { padding: 26px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lead-form label { display: grid; gap: 7px; color: var(--muted); }
.lead-form .full { grid-column: 1 / -1; }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--panel-solid) 76%, transparent);
  color: var(--text);
  border-radius: 16px;
  padding: 13px 14px;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease;
}
input:focus, textarea:focus, select:focus {
  border-color: color-mix(in srgb, var(--gold) 70%, transparent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--gold) 13%, transparent);
}
textarea { resize: vertical; }
.form-note { grid-column: 1 / -1; color: var(--soft-muted); font-size: .9rem; margin: -4px 0 0; }

.footer { padding: 46px 0; border-top: 1px solid var(--line); background: color-mix(in srgb, var(--bg) 88%, #000 12%); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr .8fr; gap: 28px; align-items: start; }
.footer p { color: var(--muted); max-width: 420px; }
.footer-links { display: grid; gap: 10px; color: var(--muted); }
.footer-note { display: grid; gap: 8px; color: var(--soft-muted); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-menu {
    position: absolute;
    inset-inline: 20px;
    top: calc(var(--header-h) + 8px);
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--panel-solid);
    box-shadow: var(--shadow);
    display: none;
  }
  .nav-menu.open { display: flex; }
  .nav-actions .nav-cta { display: none; }
  .hero-grid, .method-grid, .showcase-grid, .insight-grid, .contact-grid { grid-template-columns: 1fr; }
  .sticky-head { position: static; }
  .cards-grid, .pricing-grid { grid-template-columns: 1fr 1fr; }
  .price-card.featured { transform: none; }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section-pad { padding: 68px 0; }
  .hero { padding-top: 42px; }
  .hero-panel { min-height: auto; padding: 18px; }
  .mini-grid, .cards-grid, .pricing-grid, .lead-form, .contact-cards, .footer-grid { grid-template-columns: 1fr; }
  .lead-form .full { grid-column: auto; }
  .hero-actions .btn { width: 100%; }
  .strip-inner { justify-content: start; padding: 18px 0; }
  .mock-phone { min-height: 560px; }
}

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


/* Interactive advisor */
.advisor {
  position: relative;
  background:
    radial-gradient(circle at 74% 18%, color-mix(in srgb, var(--gold) 14%, transparent), transparent 32%),
    color-mix(in srgb, var(--panel-solid) 18%, transparent);
}
.advisor-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 32px;
  align-items: center;
}
.advisor-head { text-align: start; margin: 0; }
.advisor-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}
.advisor-card label { display: grid; gap: 7px; color: var(--muted); }
.advisor-result {
  grid-column: 1 / -1;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid color-mix(in srgb, var(--gold) 34%, transparent);
  background: linear-gradient(135deg, color-mix(in srgb, var(--gold) 12%, transparent), color-mix(in srgb, var(--accent) 8%, transparent));
}
.advisor-result small { display: block; color: var(--soft-muted); margin-bottom: 8px; }
.advisor-result strong { display: block; font-size: clamp(1.5rem, 2.5vw, 2.25rem); color: var(--gold-2); }
.advisor-result p { margin: 8px 0 0; color: var(--muted); }
.advisor-card .btn { grid-column: 1 / -1; justify-content: center; }

/* Floating chat */
.chat-widget { position: fixed; inset-inline-end: 22px; inset-block-end: 22px; z-index: 80; }
.chat-launcher {
  border: 1px solid color-mix(in srgb, var(--gold) 45%, transparent);
  color: #11131a;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border-radius: 999px;
  padding: 12px 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  box-shadow: var(--shadow);
  cursor: pointer;
}
.chat-launcher span {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.35);
}
.chat-panel {
  position: absolute;
  inset-inline-end: 0;
  inset-block-end: 64px;
  width: min(380px, calc(100vw - 32px));
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  background: var(--panel-solid);
  box-shadow: var(--shadow);
  transform-origin: bottom right;
  transform: translateY(10px) scale(.96);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}
.chat-panel.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.chat-panel header {
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--gold) 8%, transparent);
}
.chat-panel header small { display: block; color: var(--soft-muted); }
.chat-panel header button {
  border: 0;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: var(--text);
  background: color-mix(in srgb, var(--panel) 70%, transparent);
  cursor: pointer;
  font-size: 1.3rem;
}
.chat-messages {
  height: 270px;
  overflow: auto;
  padding: 16px;
  display: grid;
  align-content: start;
  gap: 10px;
}
.chat-message {
  max-width: 88%;
  padding: 11px 13px;
  border-radius: 16px;
  font-size: .95rem;
  line-height: 1.65;
}
.chat-message.bot {
  justify-self: start;
  color: var(--text);
  background: var(--panel);
  border: 1px solid var(--line);
}
.chat-message.user {
  justify-self: end;
  color: #11131a;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
}
.chat-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 16px 14px;
}
.chat-quick button {
  border: 1px solid var(--line);
  color: var(--text);
  background: color-mix(in srgb, var(--panel) 74%, transparent);
  border-radius: 999px;
  padding: 8px 10px;
  cursor: pointer;
  font-size: .84rem;
}
.chat-input {
  display: grid;
  grid-template-columns: 1fr 46px;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid var(--line);
}
.chat-input button {
  border: 0;
  border-radius: 14px;
  color: #11131a;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  cursor: pointer;
  font-weight: 900;
}

@media (max-width: 980px) {
  .advisor-grid { grid-template-columns: 1fr; }
  .advisor-card { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .chat-widget { inset-inline: 14px; inset-block-end: 14px; display: grid; justify-items: end; }
  .chat-panel { inset-inline-end: 0; width: calc(100vw - 28px); }
}
