:root {
  --or: #f07a1a;
  --or2: #ff9a4a;
  --or-glow: rgba(240, 122, 26, .28);
  --or-dim: rgba(240, 122, 26, .1);
  --bg: #080e14;
  --bg2: #0c1520;
  --bg3: #111c28;
  --card: #101923;
  --tx: #ecf2f8;
  --tx2: #8aa0b4;
  --bdr: rgba(255, 255, 255, .09);
  --bdr2: rgba(240, 122, 26, .24);
  --nav-bg: rgba(8, 14, 20, .9);
  --shadow: rgba(0, 0, 0, .45);
  --logo-fill: #ecf2f8;
  --tr: .25s ease;
}

[data-theme="light"] {
  --bg: #f4f7fb;
  --bg2: #fff;
  --bg3: #eef3f8;
  --card: #fff;
  --tx: #111a24;
  --tx2: #4d6274;
  --bdr: rgba(17, 26, 36, .12);
  --bdr2: rgba(240, 122, 26, .3);
  --nav-bg: rgba(244, 247, 251, .92);
  --shadow: rgba(17, 26, 36, .12);
  --logo-fill: #111a24;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--tx);
  font-family: "Outfit", system-ui, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--or);
  outline-offset: 4px;
}

.c-dot, .c-ring { display: none !important; }

#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  z-index: 9999;
  background: var(--or);
}

#nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: 76px;
  padding: 12px clamp(18px, 5vw, 72px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--bdr);
  backdrop-filter: blur(18px);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: "Bebas Neue", sans-serif;
}

.logo-mark {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--bdr2);
}

.logo-text { display: grid; line-height: .88; letter-spacing: .08em; }
.logo-text span:first-child { color: var(--logo-fill); }
.logo-text span:last-child { color: var(--or); }

.nav-links { list-style: none; display: flex; align-items: center; justify-content: center; gap: 22px; margin: 0; padding: 0; }
@media (max-width: 1100px) {
  .nav-links { gap: 16px; }
  .nav-links a { font-size: .76rem; letter-spacing: .06em; }
}
.nav-links a {
  color: var(--tx2);
  text-decoration: none;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nav-links a:hover, .nav-links a.active { color: var(--or); }

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

.btn-theme, .btn-cta-nav, .btn-primary, .btn-secondary, .article-cta-btn, .btn-wa, .btn-ghost {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
  white-space: normal;
  border: 1px solid var(--bdr);
}

.btn-theme {
  background: var(--card);
  color: var(--tx);
  padding: 10px 14px;
  cursor: pointer;
}

.btn-cta-nav, .btn-primary, .article-cta-btn, .btn-wa {
  background: var(--or);
  color: #101923;
  padding: 11px 18px;
  border-color: var(--or);
  box-shadow: none;
}

.btn-secondary, .btn-ghost {
  background: transparent;
  color: var(--tx);
  padding: 11px 18px;
}

.hamburger {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--bdr);
  background: var(--card);
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span { width: 20px; height: 2px; background: var(--tx); display: block; }

.mob-nav {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 12px 20px 20px;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--bdr);
  backdrop-filter: blur(18px);
}
.mob-nav.open, .mob-nav.is-open { display: grid; }
.mob-nav a {
  padding: 14px 0;
  color: var(--tx);
  text-decoration: none;
  border-bottom: 1px solid var(--bdr);
}
body.menu-open { overflow: hidden; }
.btn-theme-mob {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin: 6px 0;
  padding: 14px 2px;
  background: none;
  border: none;
  border-bottom: 1px solid var(--bdr);
  color: var(--tx);
  font: inherit;
  font-size: 1.02rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}
.btn-theme-mob i { color: var(--or); width: 22px; text-align: center; }
.btn-theme-mob:hover { color: var(--or); }
.btn-theme-mob:focus-visible { outline: 2px solid var(--or); outline-offset: 2px; border-radius: 3px; }

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,122,26,.3), rgba(240,122,26,.5), rgba(240,122,26,.3), transparent);
  box-shadow: 0 0 8px rgba(240,122,26,.15);
  margin: 0 5%;
}

/* ─── BLOG HERO ─────────────────────────────────────── */
.blog-hero {
  padding: clamp(82px, 12vw, 150px) clamp(20px, 5vw, 72px) 70px;
  background: linear-gradient(180deg, var(--bg2), var(--bg));
}
.blog-hero-inner {
  width: min(100%, 860px);
  margin: 0 auto;
}
.blog-kicker, .section-label {
  margin: 0 0 16px;
  color: var(--or);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.blog-hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(2.7rem, 8vw, 6rem);
  line-height: .98;
  letter-spacing: 0;
}
.blog-lede {
  max-width: 700px;
  margin: 28px 0 0;
  color: var(--tx2);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.7;
}

/* ─── SECTIONS ──────────────────────────────────────── */
.article-index, .blog-topics, .journal-cta {
  padding: 78px clamp(20px, 5vw, 72px);
}
.section-heading {
  width: min(100%, 820px);
  margin: 0 auto 34px;
}
.section-heading h2, .journal-cta h2, #newsletter h2 {
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: 0;
}
.section-heading p:last-child, .journal-cta p {
  color: var(--tx2);
  font-size: 1rem;
  max-width: 680px;
}

.article-list {
  width: min(100%, 980px);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.article-card {
  background: var(--card);
  border: 1px solid var(--bdr);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color var(--tr), transform var(--tr);
}
.article-card:hover { border-color: var(--bdr2); transform: translateY(-2px); }
.article-card a {
  display: block;
  padding: clamp(22px, 4vw, 34px);
  text-decoration: none;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  color: var(--tx2);
  font-size: .85rem;
}
.article-meta span:first-child {
  color: var(--or);
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.article-card h3 {
  margin: 14px 0 10px;
  color: var(--tx);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1.12;
  letter-spacing: 0;
}
.article-card p { margin: 0 0 18px; color: var(--tx2); font-size: 1rem; }
.read-link, .article-read-link, .internal-link {
  color: var(--or);
  font-weight: 800;
  text-decoration: none;
}

.topic-grid {
  width: min(100%, 980px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.topic-grid p {
  margin: 0;
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--bdr);
  border-radius: 6px;
  color: var(--tx2);
}

.journal-cta, #newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--bg2);
  border-top: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr);
}
.cta-actions, .newsletter-btns { display: flex; flex-wrap: wrap; gap: 12px; }

/* ─── ARTICLE LAYOUT ────────────────────────────────── */
.full-article-wrap {
  width: min(100%, 760px);
  margin: 0 auto;
}
.blog-hero + .divider + section,
section[style*="padding: 80px 5%"] {
  padding: 54px 20px 72px;
  background: var(--bg);
}
.article-back {
  margin-bottom: 28px;
  color: var(--tx2);
  text-decoration: none;
  font-weight: 800;
}
.article-back:hover { color: var(--or); }
.article-back:hover i { transform: translateX(-4px); transition: transform var(--tr); }

.full-article-hero {
  padding: 0;
  margin: 0 0 42px;
  background: transparent;
  border: 0;
  border-radius: 0;
  text-align: left;
  overflow: visible;
  box-shadow: none;
}
.full-article-hero::before, .full-article-hero::after, .full-article-hero > div[style*="position: absolute"] {
  display: none !important;
}
.full-article-hero-icon { display: none !important; }

.full-article-tags {
  position: static;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.full-article-tag {
  display: inline-flex;
  padding: 4px 8px;
  background: var(--or-dim);
  border: 1px solid var(--bdr2);
  border-radius: 4px;
  font-size: .76rem;
  font-weight: 800;
  color: var(--or);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.full-article-hero h1 {
  position: static;
  max-width: 780px;
  margin: 0 0 20px;
  color: var(--tx);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(2.1rem, 7vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: 0;
  text-align: left;
}

.full-article-meta, .publish-date {
  position: static;
  color: var(--tx2);
  justify-content: flex-start;
  margin-top: 10px;
  font-size: .85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
}
.full-article-meta i { color: var(--or); margin-right: 5px; }

/* ─── ARTICLE CONTENT ──────────────────────────────── */
.article-content {
  color: var(--tx);
  font-size: clamp(1.03rem, 2vw, 1.13rem);
  line-height: 1.84;
}
.article-content p { margin: 0 0 1.25em; color: var(--tx); }
.article-content p:first-child {
  font-size: clamp(1.15rem, 2.4vw, 1.32rem);
  line-height: 1.72;
}
.article-content h2 {
  margin: 2.1em 0 .75em;
  color: var(--tx);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(1.55rem, 4vw, 2.25rem);
  line-height: 1.16;
}
.article-content h3 {
  margin: 1.8em 0 .55em;
  color: var(--tx);
  font-size: clamp(1.2rem, 3vw, 1.5rem);
}
.article-content ul, .article-content ol {
  margin: 0 0 1.4em 1.25em;
  padding: 0;
}
.article-content li { margin-bottom: .55em; }
.article-content strong { color: var(--tx); font-weight: 700; }
.article-content em { color: var(--or); font-style: normal; font-weight: 600; }

/* ─── ARTICLE CTA BOX ──────────────────────────────── */
.article-cta-box {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  margin: 34px 0;
  padding: 22px;
  background: var(--bg2);
  border: 1px solid var(--bdr);
  border-radius: 6px;
}
.article-cta-box i {
  font-size: 2rem;
  color: var(--or);
  flex-shrink: 0;
}
.article-cta-box h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--tx);
}
.article-cta-box p {
  color: var(--tx2);
  margin: 4px 0 0;
  font-size: .85rem;
}

/* ─── AUTHOR BOX ───────────────────────────────────── */
.article-author-box {
  background: var(--card);
  border: 1px solid var(--bdr);
  border-radius: 6px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
  flex-wrap: wrap;
}
.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: var(--or-dim);
  border: 1px solid var(--bdr2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--or);
  flex-shrink: 0;
}
.author-info h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}
.author-info p {
  margin: 4px 0 0;
  font-size: .83rem;
  color: var(--tx2);
  line-height: 1.6;
}

/* ─── PRICE CARDS ──────────────────────────────────── */
.price-card {
  background: var(--card);
  border: 1px solid var(--bdr);
  border-radius: 6px;
  padding: 22px;
  margin: 24px 0;
}
.price-amount {
  color: var(--or);
  font-weight: 800;
  margin: 8px 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.5rem;
}

/* ─── COMMENTS ─────────────────────────────────────── */
.comments-section {
  background: var(--bg2);
  border: 1px solid var(--bdr);
  border-radius: 6px;
  padding: 24px;
  margin: 60px 0;
}
.comments-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--tx);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.comment-form {
  background: var(--card);
  border: 1px solid var(--bdr);
  border-radius: 6px;
  padding: 24px;
  margin-bottom: 40px;
}
.comment-form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}
.comment-form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.comment-form-group label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--tx2);
  display: flex;
  align-items: center;
  gap: 6px;
}
.comment-form-group label i { color: var(--or); font-size: .72rem; }
.comment-form-group input,
.comment-form-group textarea {
  background: var(--bg2);
  border: 1.5px solid var(--bdr);
  padding: 12px 16px;
  border-radius: 9px;
  font-family: 'Outfit', sans-serif;
  font-size: .95rem;
  color: var(--tx);
  transition: all var(--tr);
  outline: none;
}
.comment-form-group input:focus,
.comment-form-group textarea:focus {
  border-color: var(--or);
  box-shadow: 0 0 0 3px var(--or-dim);
}
.comment-form-group textarea {
  resize: none;
  height: 120px;
}
.btn-submit-comment {
  width: 100%;
  background: linear-gradient(135deg, var(--or), var(--or2));
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 9px;
  font-family: 'Outfit', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: .04em;
  transition: all var(--tr);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 6px 28px var(--or-glow);
}
.btn-submit-comment:hover { transform: translateY(-2px); box-shadow: 0 12px 42px var(--or-glow); }
.btn-submit-comment:disabled { opacity: .7; cursor: wait; transform: none; }

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.comment-item {
  background: var(--card);
  border: 1px solid var(--bdr);
  border-radius: 6px;
  padding: 22px 24px;
}
.comment-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 12px;
  flex-wrap: wrap;
}
.comment-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.comment-avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--or), var(--or2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  font-weight: 700;
  font-family: 'Bebas Neue', sans-serif;
}
.comment-author-info {
  display: flex;
  flex-direction: column;
}
.comment-author-name {
  font-size: .95rem;
  font-weight: 700;
  color: var(--tx);
}
.comment-date {
  font-size: .75rem;
  color: var(--tx2);
}
.comment-text {
  color: var(--tx2);
  font-size: .92rem;
  line-height: 1.7;
}
.no-comments {
  text-align: center;
  padding: 40px 20px;
  color: var(--tx2);
}
.no-comments i {
  font-size: 2rem;
  color: var(--or);
  opacity: .3;
  margin-bottom: 12px;
  display: block;
}

/* ─── NEWSLETTER / CTA STRIP ───────────────────────── */
#newsletter {
  background: linear-gradient(135deg, var(--navy), var(--ink));
  padding: 80px 5%;
  text-align: center;
  border-top: 1px solid var(--bdr2);
  border-bottom: 1px solid var(--bdr2);
  position: relative;
  overflow: hidden;
}
#newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(240,122,26,.1) 0%, transparent 60%);
}
#newsletter > * { position: relative; z-index: 1; }
.newsletter-inner { max-width: 600px; margin: 0 auto; }
.newsletter-inner h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}
.newsletter-inner h2 span { color: var(--or); }
.newsletter-inner p {
  font-size: .96rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-bottom: 36px;
}
.newsletter-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ───────────────────────────────────────── */
footer {
  background: linear-gradient(180deg, var(--ink) 0%, #040810 100%);
  border-top: 1px solid var(--bdr);
  padding: 60px 5% 32px;
}
.foot-top {
  width: min(100%, 1080px);
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
}
.foot-brand p, .foot-col a, .foot-bottom p { color: var(--tx2); }
.foot-col { display: grid; gap: 8px; align-content: start; }
.foot-col h2, .foot-col h4 {
  margin: 0 0 8px;
  color: var(--tx);
  font-size: .9rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.foot-col a { text-decoration: none; }
.foot-col a:hover { color: var(--or); }
.foot-bottom {
  width: min(100%, 1080px);
  margin: 0 auto;
  padding-top: 18px;
  border-top: 1px solid var(--bdr);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ─── CHATBOT ──────────────────────────────────────── */
.chatbot-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9000;
  font-family: "Outfit", "Segoe UI", sans-serif;
}
.chatbot-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--or), var(--or2));
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px var(--or-glow);
  transition: all var(--tr);
  position: relative;
}
.chatbot-toggle:hover { transform: scale(1.1); box-shadow: 0 6px 30px var(--or-glow); }
.chatbot-toggle:active { transform: scale(0.95); }
.chatbot-icon { display: flex; align-items: center; justify-content: center; }
.chatbot-icon img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; display: block; }
.chatbot-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #22c55e;
  border-radius: 50%;
  top: -2px;
  right: -2px;
  border: 2px solid var(--bg);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: .8; }
}

.chatbot-window {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 360px;
  max-width: calc(100vw - 40px);
  height: 480px;
  max-height: 70vh;
  background: var(--card);
  border: 1px solid var(--bdr);
  border-radius: 16px;
  box-shadow: 0 8px 40px var(--shadow);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  pointer-events: none;
  transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
  overflow: hidden;
}
.chatbot-window.active { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }

.chatbot-header {
  padding: 16px;
  background: linear-gradient(135deg, var(--or-dim) 0%, rgba(240,122,26,.05) 100%);
  border-bottom: 1px solid var(--bdr);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chatbot-header-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--tx);
  margin-bottom: 4px;
  font-family: "Bricolage Grotesque", sans-serif;
}
.chatbot-status { font-size: 12px; color: var(--tx2); }
.chatbot-close {
  background: none;
  border: none;
  color: var(--tx2);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--tr);
}
.chatbot-close:hover { color: var(--or); }

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chatbot-messages::-webkit-scrollbar { width: 4px; }
.chatbot-messages::-webkit-scrollbar-track { background: transparent; }
.chatbot-messages::-webkit-scrollbar-thumb { background: var(--bdr); border-radius: 2px; }
.chatbot-messages::-webkit-scrollbar-thumb:hover { background: var(--bdr2); }

.chatbot-message { display: flex; animation: slideIn .3s ease; }
.bot-message { justify-content: flex-start; }
.user-message { justify-content: flex-end; }

.message-content {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
  word-wrap: break-word;
}
.bot-message .message-content {
  background: var(--bg3);
  color: var(--tx);
  border-bottom-left-radius: 4px;
  border: 1px solid var(--bdr);
}
.user-message .message-content {
  background: linear-gradient(135deg, var(--or), var(--or2));
  color: #fff;
  border-bottom-right-radius: 4px;
}
.message-content p { margin: 0; word-break: break-word; }

.typing-indicator {
  display: flex;
  gap: 4px;
  padding: 10px 14px;
  background: var(--bg3);
  border-radius: 12px;
  border-bottom-left-radius: 4px;
  border: 1px solid var(--bdr);
  width: fit-content;
}
.typing-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--tx2);
  animation: typing 1.4s infinite;
}
.typing-dot:nth-child(2) { animation-delay: .2s; }
.typing-dot:nth-child(3) { animation-delay: .4s; }
@keyframes typing {
  0%, 60%, 100% { opacity: .5; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-8px); }
}

.chatbot-input-area {
  padding: 12px;
  border-top: 1px solid var(--bdr);
  background: var(--card);
}
.chatbot-form {
  display: flex;
  gap: 8px;
  align-items: center;
}
.chatbot-form input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid var(--bdr);
  border-radius: 8px;
  background: var(--bg);
  color: var(--tx);
  font-size: 14px;
  transition: all var(--tr);
}
.chatbot-form input:focus {
  outline: none;
  border-color: var(--or);
  box-shadow: 0 0 0 3px var(--or-dim);
}
.chatbot-form input::placeholder { color: var(--tx2); }
.chatbot-send {
  width: 36px;
  height: 36px;
  border: none;
  background: linear-gradient(135deg, var(--or), var(--or2));
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--tr);
  flex-shrink: 0;
}
.chatbot-send:hover { transform: translateY(-2px); box-shadow: 0 4px 12px var(--or-glow); }
.chatbot-send:active { transform: translateY(0); }
.chatbot-send:disabled { opacity: .5; cursor: not-allowed; }

/* ─── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1000px) {
  .journal-cta, #newsletter { display: grid; }
  .foot-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  #nav { min-height: 68px; padding: 10px 18px; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
  .nav-links, .nav-actions .btn-theme, .nav-actions .btn-cta-nav { display: none; }
  .hamburger { display: flex; }
  .logo-mark { width: 42px; height: 42px; }
  .btn-theme { min-height: 42px; padding: 8px 10px; }
  .mob-nav { top: 68px; }
  .blog-hero, .article-index, .blog-topics, .journal-cta { padding-left: 20px; padding-right: 20px; }
  .blog-hero h1 { font-size: clamp(2.45rem, 13vw, 4.1rem); }
  .topic-grid, .foot-top { grid-template-columns: 1fr; }
  .article-card a { padding: 20px; }
  .article-cta-box { grid-template-columns: 1fr; }
  .btn-primary, .btn-secondary, .article-cta-btn, .btn-wa, .btn-ghost { width: 100%; }
  .full-article-hero h1 { font-size: clamp(2rem, 10vw, 3rem) !important; }
  .comments-section { padding: 20px !important; }
  .comment-form-row { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
