/* ══════════════════════════════════════════════════════════════════════════
   LEXARA ADVISORY — SHARED STYLESHEET
   Navy/Gold palette · Cormorant Garamond + DM Sans
   ══════════════════════════════════════════════════════════════════════════ */

/* ── RESET & TOKENS ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:       #0B1628;
  --navy-mid:   #162040;
  --navy-soft:  #1E2D4A;
  --navy-deep:  #071020;
  --gold:       #C5A44B;
  --gold-light: #E2CC8A;
  --gold-pale:  #F5EDD4;
  --cream:      #FAF8F3;
  --white:      #FFFFFF;
  --text:       #0B1628;
  --muted:      #4A5568;
  --border-g:   rgba(197,164,75,0.22);
  --border-l:   #E8E4DA;
  --danger:     #E24B4A;
  --r-sm:       4px;
  --r-md:       8px;
  --ease:       0.25s ease;
  --sh-sm:      0 2px 12px rgba(11,22,40,0.08);
  --sh-md:      0 8px 40px rgba(11,22,40,0.14);
  --sh-lg:      0 16px 64px rgba(11,22,40,0.2);
}
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body:not(.cookie-accepted) { padding-bottom: 80px; }
body.cookie-accepted { padding-bottom: 0; transition: padding-bottom .3s ease; }
a { text-decoration: none; }
img { max-width: 100%; height: auto; }
.skip-link {
  position: absolute; top: -40px; left: 0;
  background: var(--gold); color: var(--navy);
  padding: .5rem 1rem; z-index: 9999;
  font-size: .8rem; font-weight: 500;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ── COOKIE BANNER ──────────────────────────────────────────────────────── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9000;
  background: var(--navy); border-top: 1px solid var(--border-g);
  padding: 1.5rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
  box-shadow: 0 -8px 40px rgba(11,22,40,0.4);
  contain: layout style; will-change: transform;
}
#cookie-banner.hidden { display: none !important; }
.cookie-text { flex: 1; min-width: 260px; font-size: .79rem; font-weight: 300; color: rgba(250,248,243,0.55); line-height: 1.7; }
.cookie-text strong { color: var(--gold-light); font-weight: 500; }
.cookie-text a { color: var(--gold-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: .75rem; align-items: center; flex-wrap: wrap; flex-shrink: 0; }
.btn-cookie { font-size: .71rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; padding: .6rem 1.4rem; border: none; cursor: pointer; transition: all var(--ease); white-space: nowrap; }
.btn-cookie-accept { background: var(--gold); color: var(--navy); }
.btn-cookie-accept:hover { background: var(--gold-light); }
.btn-cookie-reject { background: transparent; color: rgba(250,248,243,0.75); border: .5px solid rgba(250,248,243,0.5); }
.btn-cookie-reject:hover { color: var(--cream); }
.btn-cookie-more { background: transparent; color: rgba(250,248,243,0.65); font-size: .69rem; letter-spacing: .06em; text-transform: uppercase; border: none; cursor: pointer; text-decoration: underline; padding: .4rem 0; transition: color var(--ease); }
.btn-cookie-more:hover { color: var(--gold); }
#cookie-panel { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 9001; background: var(--navy-mid); border-top: 1px solid var(--border-g); padding: 2rem; box-shadow: 0 -8px 48px rgba(11,22,40,0.5); }
#cookie-panel.open { display: block; }
.cp-title { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 500; color: var(--cream); margin-bottom: 1rem; }
.cp-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 1rem; margin-bottom: 1.5rem; }
.cp-item { background: rgba(197,164,75,0.06); border: .5px solid var(--border-g); padding: 1rem; border-radius: var(--r-sm); }
.cp-label { font-size: .77rem; font-weight: 500; color: var(--cream); margin-bottom: .3rem; display: flex; align-items: center; justify-content: space-between; }
.cp-desc { font-size: .67rem; font-weight: 300; color: rgba(250,248,243,0.35); line-height: 1.6; }
.cp-req { font-size: .58rem; color: var(--gold); letter-spacing: .08em; text-transform: uppercase; }
.toggle-sw { position: relative; width: 36px; height: 20px; flex-shrink: 0; margin-top: .75rem; display: block; }
.toggle-sw input { opacity: 0; width: 0; height: 0; position: absolute; }
.toggle-sl { position: absolute; inset: 0; background: rgba(250,248,243,0.15); border-radius: 20px; cursor: pointer; transition: background var(--ease); }
.toggle-sl::before { content: ''; position: absolute; width: 14px; height: 14px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: transform var(--ease); }
.toggle-sw input:checked + .toggle-sl { background: var(--gold); }
.toggle-sw input:checked + .toggle-sl::before { transform: translateX(16px); }
.toggle-sw input:disabled + .toggle-sl { opacity: .5; cursor: not-allowed; }
.cp-actions { display: flex; gap: .75rem; }

/* ── NAV ────────────────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.15rem 3.5rem;
  background: rgba(250,248,243,0.95);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: .5px solid var(--border-g);
  transition: padding var(--ease), box-shadow var(--ease);
}
nav.scrolled { padding-top: .85rem; padding-bottom: .85rem; box-shadow: var(--sh-sm); }
.nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; letter-spacing: .05em; color: var(--navy); text-decoration: none; flex-shrink: 0; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { font-size: .73rem; font-weight: 400; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color var(--ease); position: relative; padding-bottom: 2px; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: .5px; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform var(--ease); }
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { font-size: .72rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); border: .5px solid var(--gold); padding: .5rem 1.4rem; text-decoration: none; transition: all var(--ease); flex-shrink: 0; }
.nav-cta:hover { background: var(--gold); color: var(--cream); }
.nav-hb { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-hb span { display: block; width: 22px; height: 1.5px; background: var(--navy); transition: all var(--ease); }
.nav-hb.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hb.open span:nth-child(2) { opacity: 0; }
.nav-hb.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mob-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 400; background: var(--cream); padding: 6rem 2rem 2rem; flex-direction: column; overflow-y: auto; }
.mob-menu.open { display: flex; }
.mob-menu a { font-size: 1.6rem; font-family: 'Cormorant Garamond', serif; font-weight: 500; color: var(--navy); text-decoration: none; padding: 1.2rem 0; border-bottom: .5px solid var(--border-l); transition: color var(--ease), padding-left var(--ease); }
.mob-menu a:hover { color: var(--gold); padding-left: .5rem; }
.mob-cta { margin-top: 2rem !important; background: var(--gold) !important; color: var(--navy) !important; text-align: center; font-size: .8rem !important; font-family: 'DM Sans', sans-serif !important; font-weight: 500 !important; letter-spacing: .1em !important; text-transform: uppercase !important; padding: 1rem !important; border-bottom: none !important; }
.mob-cta:hover { background: var(--gold-light) !important; padding-left: 0 !important; }

/* ── BUTTONS ────────────────────────────────────────────────────────────── */
.btn-primary { background: var(--gold); color: var(--navy); font-size: .76rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; padding: .95rem 2.25rem; text-decoration: none; transition: all var(--ease); display: inline-block; border: none; cursor: pointer; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-ghost { color: rgba(250,248,243,0.72); font-size: .76rem; font-weight: 400; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; padding: .95rem 0; border-bottom: .5px solid rgba(250,248,243,0.15); transition: all var(--ease); display: inline-block; }
.btn-ghost:hover { color: var(--cream); border-bottom-color: rgba(250,248,243,0.5); }
.btn-gold { background: var(--gold); color: var(--navy); font-size: .75rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; padding: .85rem 1.9rem; border: none; cursor: pointer; transition: all var(--ease); display: inline-block; text-decoration: none; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline { color: var(--gold); font-size: .75rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; padding: .85rem 1.9rem; border: .5px solid var(--gold); background: transparent; cursor: pointer; transition: all var(--ease); display: inline-block; text-decoration: none; }
.btn-outline:hover { background: var(--gold); color: var(--navy); }

/* ── SECTION COMMONS ────────────────────────────────────────────────────── */
.sec-eyebrow { font-size: .68rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: #8B6A1E; margin-bottom: .9rem; display: flex; align-items: center; gap: .7rem; }
.sec-eyebrow::before { content: ''; display: block; width: 1.5rem; height: .5px; background: #8B6A1E; flex-shrink: 0; }
.sec-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem,3vw,2.75rem); font-weight: 500; line-height: 1.15; color: var(--navy); letter-spacing: -.01em; margin-bottom: 1rem; }
.sec-title em { font-style: italic; color: var(--gold); }
.sec-sub { font-size: .95rem; font-weight: 300; color: var(--muted); line-height: 1.9; max-width: 520px; }
.reveal { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s ease; }
.reveal.js-anim { opacity: 0; transform: translateY(20px); }
.reveal.js-anim.visible { opacity: 1; transform: none; }

/* ── SERVICE PAGE HERO ──────────────────────────────────────────────────── */
.svc-hero {
  min-height: 55vh; background: var(--navy);
  display: flex; flex-direction: column; justify-content: center;
  padding: 6rem 3.5rem 4rem; position: relative; overflow: hidden;
  margin-top: 60px;
}
.svc-hero::before { content: ''; position: absolute; top: 0; right: 25%; width: .5px; height: 100%; background: rgba(197,164,75,0.07); }
.svc-hero .eyebrow { font-size: .68rem; font-weight: 400; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; display: flex; align-items: center; gap: .75rem; }
.svc-hero .eyebrow::before { content: ''; display: block; width: 2rem; height: .5px; background: var(--gold); flex-shrink: 0; }
.svc-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.4rem,4.5vw,3.8rem); font-weight: 500; line-height: 1.08; color: var(--cream); letter-spacing: -.02em; max-width: 780px; margin-bottom: 1.5rem; }
.svc-hero h1 em { font-style: italic; color: var(--gold-light); }
.svc-hero .hero-sub { font-size: 1rem; font-weight: 300; color: rgba(250,248,243,0.47); max-width: 540px; line-height: 1.9; margin-bottom: 2.5rem; }
.svc-hero .hero-actions { display: flex; gap: 1.25rem; align-items: center; flex-wrap: wrap; }

/* ── SERVICE PAGE CONTENT ───────────────────────────────────────────────── */
.svc-content { background: var(--white); padding: 5rem 3.5rem; }
.svc-content-inner { max-width: 840px; }
.svc-content h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 500; color: var(--navy); margin-bottom: 1rem; margin-top: 2.5rem; line-height: 1.2; }
.svc-content h2:first-child { margin-top: 0; }
.svc-content p { font-size: .95rem; font-weight: 300; color: var(--muted); line-height: 1.9; margin-bottom: 1rem; }
.svc-content ul { list-style: none; margin: 1rem 0 1.5rem; padding: 0; }
.svc-content ul li { font-size: .9rem; font-weight: 300; color: var(--muted); line-height: 1.8; padding: .4rem 0 .4rem 1.5rem; position: relative; border-bottom: .5px solid var(--border-l); }
.svc-content ul li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-weight: 500; }
.svc-content ul li:last-child { border-bottom: none; }

/* ── SERVICE PAGE FAQ ───────────────────────────────────────────────────── */
.svc-faq { background: var(--cream); padding: 4rem 3.5rem; }
.svc-faq-inner { max-width: 840px; }
.svc-faq-list { display: flex; flex-direction: column; gap: 1px; background: var(--border-l); margin-top: 2rem; }
.svc-faq-item { background: var(--cream); overflow: hidden; }
.svc-faq-q { padding: 1.2rem 1.5rem; display: flex; align-items: center; justify-content: space-between; cursor: pointer; font-size: .95rem; font-weight: 500; color: var(--navy); transition: background var(--ease); gap: 1rem; user-select: none; border: none; width: 100%; text-align: left; background: var(--cream); font-family: 'DM Sans', sans-serif; }
.svc-faq-q:hover { background: var(--white); }
.svc-faq-icon { font-size: 1.1rem; color: var(--gold); flex-shrink: 0; transition: transform .3s ease; font-weight: 300; }
.svc-faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.svc-faq-a-inner { padding: 0 1.5rem 1.2rem; font-size: .9rem; font-weight: 300; color: var(--muted); line-height: 1.85; }
.svc-faq-item.open .svc-faq-a { max-height: 400px; }
.svc-faq-item.open .svc-faq-icon { transform: rotate(45deg); }
.svc-faq-item.open .svc-faq-q { background: var(--white); }

/* ── SERVICE PAGE CTA ───────────────────────────────────────────────────── */
.svc-cta { background: var(--navy); padding: 5rem 3.5rem; text-align: center; }
.svc-cta h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem,3vw,2.5rem); font-weight: 500; color: var(--cream); margin-bottom: 1rem; }
.svc-cta h2 em { font-style: italic; color: var(--gold-light); }
.svc-cta p { font-size: .95rem; font-weight: 300; color: rgba(250,248,243,0.45); max-width: 560px; margin: 0 auto 2rem; line-height: 1.8; }
.svc-cta .cta-actions { display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap; }
.svc-cta .btn-outline { color: rgba(250,248,243,0.7); border-color: rgba(250,248,243,0.3); }
.svc-cta .btn-outline:hover { background: rgba(250,248,243,0.1); color: var(--cream); border-color: rgba(250,248,243,0.5); }

/* ── RELATED SERVICES ───────────────────────────────────────────────────── */
.related-svc { background: var(--cream); padding: 4rem 3.5rem; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1px; background: var(--border-l); margin-top: 2rem; }
.related-item { background: var(--cream); padding: 2rem; transition: background var(--ease); }
.related-item:hover { background: var(--white); }
.related-item h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 500; color: var(--navy); margin-bottom: .5rem; }
.related-item p { font-size: .85rem; font-weight: 300; color: var(--muted); line-height: 1.8; margin-bottom: 1rem; }
.related-item a { font-size: .72rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); text-decoration: none; transition: color var(--ease); }
.related-item a:hover { color: var(--gold-light); }

/* ── FOOTER (NEW 4-COLUMN) ──────────────────────────────────────────────── */
footer { background: var(--navy); border-top: .5px solid rgba(197,164,75,0.1); padding: 3.5rem 3.5rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1.2fr 1fr; gap: 3rem; margin-bottom: 2rem; }
.footer-col-title { font-size: .64rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-logo-block .footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: var(--cream); letter-spacing: .04em; margin-bottom: .6rem; }
.footer-logo-block .footer-logo span { color: var(--gold); }
.footer-logo-block .footer-tagline { font-size: .75rem; font-weight: 300; color: rgba(250,248,243,0.4); line-height: 1.7; }
.footer-col a { display: block; font-size: .75rem; font-weight: 300; color: rgba(250,248,243,0.55); text-decoration: none; padding: .25rem 0; transition: color var(--ease); }
.footer-col a:hover { color: var(--gold); }
.footer-contact-item { font-size: .75rem; font-weight: 300; color: rgba(250,248,243,0.5); line-height: 1.7; margin-bottom: .5rem; }
.footer-contact-item a { display: inline; color: var(--gold); font-weight: 400; }
.footer-disc { font-size: .61rem; font-weight: 300; color: rgba(250,248,243,0.4); text-align: center; padding-top: 1.5rem; border-top: .5px solid rgba(197,164,75,0.07); line-height: 1.7; max-width: 900px; margin: 0 auto; }

/* ── CHATBOT ────────────────────────────────────────────────────────────── */
.chat-bubble {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 800;
  width: 56px; height: 56px; background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 4px 28px rgba(197,164,75,0.45);
  transition: all var(--ease); border: none;
  animation: fabIn .5s ease .8s both;
}
@keyframes fabIn { from { opacity: 0; transform: scale(.5); } to { opacity: 1; transform: scale(1); } }
.chat-bubble:hover { background: var(--gold-light); transform: scale(1.07); }
.chat-bubble svg { width: 23px; height: 23px; stroke: var(--navy); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.chat-badge { position: absolute; top: -4px; right: -4px; width: 18px; height: 18px; background: var(--danger); border-radius: 50%; font-size: .6rem; font-weight: 500; color: #fff; display: flex; align-items: center; justify-content: center; pointer-events: none; animation: badgePulse 2s ease 2.5s infinite; }
@keyframes badgePulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.2); } }
.chat-window { position: fixed; bottom: 5.5rem; right: 2rem; z-index: 799; width: 385px; height: 570px; background: var(--white); border: .5px solid var(--border-l); box-shadow: var(--sh-lg); display: none; flex-direction: column; overflow: hidden; border-radius: var(--r-md); }
.chat-window.open { display: flex; animation: chatIn .2s ease both; }
@keyframes chatIn { from { opacity: 0; transform: translateY(10px) scale(.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
.chat-header { background: var(--navy); padding: 1.2rem 1.4rem; display: flex; align-items: center; gap: .7rem; border-bottom: .5px solid rgba(197,164,75,0.15); flex-shrink: 0; }
.chat-dot { width: 8px; height: 8px; background: #4CAF50; border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 6px rgba(76,175,80,0.6); animation: pdot 2s infinite; }
@keyframes pdot { 0%,100% { opacity: 1; } 50% { opacity: .5; } }
.chat-info { flex: 1; min-width: 0; }
.chat-name { font-size: .83rem; font-weight: 500; color: var(--cream); display: flex; align-items: center; gap: .4rem; }
.chat-ai-badge { font-size: .57rem; background: rgba(197,164,75,0.2); color: var(--gold); padding: 2px 6px; border-radius: 3px; letter-spacing: .06em; flex-shrink: 0; }
.chat-status { font-size: .66rem; font-weight: 300; color: rgba(250,248,243,0.28); margin-top: 1px; }
.chat-close { background: none; border: none; cursor: pointer; color: rgba(250,248,243,0.3); font-size: 1.1rem; padding: 4px; transition: color var(--ease); border-radius: 50%; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; line-height: 1; }
.chat-close:hover { color: var(--cream); background: rgba(250,248,243,0.08); }
.chat-messages { flex: 1; overflow-y: auto; padding: 1.1rem; display: flex; flex-direction: column; gap: .7rem; background: #F8F7F4; }
.chat-messages::-webkit-scrollbar { width: 3px; }
.chat-messages::-webkit-scrollbar-thumb { background: var(--border-l); border-radius: 2px; }
.msg { max-width: 86%; padding: .7rem .95rem; font-size: .8rem; line-height: 1.65; word-break: break-word; }
.msg.bot { background: var(--white); color: var(--text); border: .5px solid var(--border-l); align-self: flex-start; border-radius: 0 8px 8px 8px; }
.msg.user { background: var(--navy); color: var(--cream); align-self: flex-end; border-radius: 8px 0 8px 8px; }
.chat-options { display: flex; flex-direction: column; gap: .35rem; margin-top: .2rem; }
.chat-opt { background: var(--white); border: .5px solid var(--border-g); color: var(--navy); font-size: .75rem; font-weight: 400; padding: .55rem .85rem; cursor: pointer; text-align: left; transition: all var(--ease); border-radius: var(--r-sm); font-family: 'DM Sans', sans-serif; }
.chat-opt:hover { background: var(--gold-pale); border-color: var(--gold); }
.chat-typing { display: flex; align-items: center; gap: 4px; padding: .7rem .95rem; background: var(--white); border: .5px solid var(--border-l); align-self: flex-start; border-radius: 0 8px 8px 8px; }
.chat-typing span { width: 6px; height: 6px; background: var(--muted); border-radius: 50%; animation: blink 1.2s infinite; }
.chat-typing span:nth-child(2) { animation-delay: .2s; }
.chat-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes blink { 0%,60%,100% { opacity: .3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-4px); } }
.chat-disc { font-size: .59rem; color: var(--muted); text-align: center; padding: .45rem 1rem; border-top: .5px solid var(--border-l); line-height: 1.5; flex-shrink: 0; background: var(--white); }
.chat-lim { font-size: .6rem; color: var(--muted); text-align: right; padding: 0 1rem .35rem; background: var(--white); flex-shrink: 0; }
.chat-lim.warn { color: var(--danger); }
.chat-input-area { padding: .7rem; border-top: .5px solid var(--border-l); display: flex; gap: .45rem; background: var(--white); flex-shrink: 0; }
.chat-input { flex: 1; border: .5px solid var(--border-l); padding: .6rem .85rem; font-family: 'DM Sans', sans-serif; font-size: .79rem; color: var(--text); outline: none; transition: border-color var(--ease); border-radius: var(--r-sm); background: var(--cream); }
.chat-input:focus { border-color: var(--gold); background: var(--white); }
.chat-input::placeholder { color: #B0AAA0; }
.chat-send { background: var(--navy); border: none; cursor: pointer; padding: .6rem .85rem; transition: background var(--ease); border-radius: var(--r-sm); display: flex; align-items: center; }
.chat-send:hover { background: var(--navy-mid); }
.chat-send:disabled { opacity: .4; cursor: not-allowed; }
.chat-send svg { width: 14px; height: 14px; stroke: var(--cream); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.msg.bot strong { font-weight: 600; color: var(--text); }
.msg.bot em { font-style: italic; color: var(--muted); }
.md-ol, .md-ul { list-style: none; margin: .4rem 0; padding: 0; display: flex; flex-direction: column; gap: .3rem; }
.md-li-num, .md-li-bul { display: flex; gap: .5rem; align-items: baseline; font-size: .8rem; line-height: 1.55; }
.md-num, .md-bul { color: var(--gold); font-weight: 600; flex-shrink: 0; min-width: 1.2rem; }

/* ── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-hb { display: flex; }
  .svc-hero, .svc-content, .svc-faq, .svc-cta, .related-svc { padding-left: 1.5rem; padding-right: 1.5rem; }
  .svc-hero { padding-top: 4rem; padding-bottom: 3rem; min-height: auto; }
  .svc-hero h1 { font-size: 2.2rem; }
  footer { padding: 2.5rem 1.5rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .chat-window { width: calc(100vw - 1.5rem); right: .75rem; bottom: 5rem; height: calc(100vh - 7rem); max-height: 500px; }
  .cookie-actions { flex-direction: column; align-items: stretch; width: 100%; }
  .btn-cookie { text-align: center; }
}
@media (max-width: 640px) {
  .svc-hero h1 { font-size: 1.9rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .related-grid { grid-template-columns: 1fr; }
}
