/* ============================================
   RESTO-LUTION LLC — MASTER STYLESHEET
   Navy #0b1731 | Orange #e8691a | Green #1b5c38
   Fonts: Barlow Condensed (headings) + Barlow (body)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800;900&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --navy: #0b1731;
  --navy-mid: #152240;
  --navy-light: #1e3260;
  --orange: #e8691a;
  --orange-dark: #c4571a;
  --orange-light: #f07a30;
  --green: #1b5c38;
  --green-light: #226b43;
  --white: #ffffff;
  --off-white: #f5f6f8;
  --gray-light: #e8eaed;
  --gray-mid: #9aa3b2;
  --gray-dark: #4a5568;
  --text: #1a202c;
  --radius: 6px;
  --radius-lg: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.18);
  --transition: all 0.25s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Barlow', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.9rem); }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1rem; }
a { color: var(--orange); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--orange-dark); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ---- UTILITY ---- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 820px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-orange { color: var(--orange); }
.bg-navy { background: var(--navy); }
.bg-navy-mid { background: var(--navy-mid); }
.bg-off-white { background: var(--off-white); }
.bg-green { background: var(--green); }
.fw-600 { font-weight: 600; }
.mb-0 { margin-bottom: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,105,26,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}
.btn-ghost {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-ghost:hover {
  background: var(--orange);
  color: var(--white);
}
.btn-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-green:hover {
  background: var(--green-light);
  border-color: var(--green-light);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---- NAV ---- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 3px solid var(--orange);
  transition: var(--transition);
}
.site-nav.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.35);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 1rem;
  max-width: 1280px;
  margin: 0 auto;
  flex-wrap: nowrap;
  gap: 0.5rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img {
  height: 44px;
  width: auto;
}
.nav-logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.nav-logo-text span { color: var(--orange); }
.nav-logo-sub {
  font-size: 0.65rem;
  color: var(--gray-mid);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
}
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 6px 8px;
  border-radius: var(--radius);
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--orange);
  background: rgba(232,105,26,0.1);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.nav-phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  letter-spacing: 0.04em;
  text-decoration: none;
  white-space: nowrap;
}
.nav-phone:hover { color: var(--orange); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--navy-mid);
  padding: 1rem 1.5rem;
  gap: 4px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
}
.nav-mobile a:hover { color: var(--orange); }
.nav-mobile .btn { margin-top: 8px; width: 100%; justify-content: center; }

/* ---- TOPBAR ---- */
.topbar {
  background: var(--orange);
  padding: 7px 1.5rem;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}
.topbar a { color: var(--white); font-weight: 700; }

/* ---- HERO ---- */
.hero {
  background: var(--navy);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,105,26,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--orange);
  display: inline-block;
}
.hero h1 { color: var(--white); margin-bottom: 1.2rem; }
.hero h1 span { color: var(--orange); }
.hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 640px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---- PAGE HERO (interior pages) ---- */
.page-hero {
  background: var(--navy);
  padding: 110px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--green) 50%, var(--orange) 100%);
}
.page-hero .eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero h1 span { color: var(--orange); }
.page-hero p {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ---- SECTION HEADERS ---- */
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.section-title { margin-bottom: 1rem; }
.section-title span { color: var(--orange); }
.section-sub {
  color: var(--gray-dark);
  font-size: 1.05rem;
  max-width: 640px;
  line-height: 1.7;
}

/* ---- CARDS ---- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: rgba(232,105,26,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  color: var(--orange);
}
.card h3 { margin-bottom: 0.6rem; font-size: 1.25rem; }
.card p { color: var(--gray-dark); margin-bottom: 0; font-size: 0.95rem; line-height: 1.65; }

/* ---- GRID SYSTEMS ---- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }

/* ---- AI GUIDE CALLOUT BLOCKS ---- */
.ai-block {
  border-radius: var(--radius-lg);
  padding: 2rem 2.2rem;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}
.ai-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
}
.remi-block {
  background: rgba(27,92,56,0.06);
  border: 1px solid rgba(27,92,56,0.2);
}
.remi-block::before { background: var(--green); }
.rico-block {
  background: rgba(11,23,49,0.05);
  border: 1px solid rgba(11,23,49,0.2);
}
.rico-block::before { background: var(--navy); }
.ai-block-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}
.ai-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.remi-badge {
  background: var(--green);
  color: var(--white);
}
.rico-badge {
  background: var(--navy);
  color: var(--white);
}
.ai-block-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  letter-spacing: 0.05em;
}
.ai-block p {
  color: var(--gray-dark);
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.ai-block p:last-child { margin-bottom: 0; }
.ai-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius);
  margin-top: 0.75rem;
  transition: var(--transition);
  text-decoration: none;
}
.remi-cta { background: var(--green); color: var(--white); }
.remi-cta:hover { background: var(--green-light); color: var(--white); transform: translateY(-1px); }
.rico-cta { background: var(--navy); color: var(--white); }
.rico-cta:hover { background: var(--navy-light); color: var(--white); transform: translateY(-1px); }

/* ---- PROCESS STEPS ---- */
.process-steps { counter-reset: step; }
.process-step {
  display: flex;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--gray-light);
  align-items: flex-start;
}
.process-step:last-child { border-bottom: none; }
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  counter-increment: step;
}
.step-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
  color: var(--navy);
}
.step-content p {
  color: var(--gray-dark);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 0;
}

/* ---- CHECKLIST ---- */
.check-list { margin: 1rem 0; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.97rem;
  color: var(--gray-dark);
  line-height: 1.5;
}
.check-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: 1rem;
  margin-top: 1px;
  flex-shrink: 0;
}

/* ---- WARNING LIST ---- */
.warn-list { margin: 1rem 0; }
.warn-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.97rem;
  color: var(--gray-dark);
  line-height: 1.5;
}
.warn-list li::before {
  content: '⚠';
  color: var(--orange);
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ---- STAT STRIP ---- */
.stat-strip {
  background: var(--navy);
  padding: 40px 0;
}
.stat-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item {}
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* ---- CTA BAND ---- */
.cta-band {
  background: var(--orange);
  padding: 56px 0;
  text-align: center;
}
.cta-band h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}
.cta-band p {
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.cta-band .btn-primary {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
}
.cta-band .btn-primary:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.cta-band .btn-outline { border-color: rgba(255,255,255,0.7); }
.cta-band .btn-outline:hover { background: rgba(255,255,255,0.15); }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---- DISCLAIMER BOX ---- */
.disclaimer {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  font-size: 0.88rem;
  color: var(--gray-dark);
  line-height: 1.65;
  margin: 1.5rem 0;
}
.disclaimer strong { color: var(--navy); }

/* ---- EBOOK CARDS ---- */
.ebook-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.ebook-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.ebook-card-top {
  background: var(--navy);
  padding: 2rem;
  position: relative;
}
.ebook-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.ebook-card-top h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}
.ebook-card-top p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.6;
}
.ebook-narrator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1rem;
  background: rgba(255,255,255,0.08);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.ebook-card-body {
  padding: 1.5rem 2rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ebook-topics {
  margin-bottom: 1.25rem;
  flex: 1;
}
.ebook-topics li {
  font-size: 0.9rem;
  color: var(--gray-dark);
  padding: 5px 0;
  border-bottom: 1px solid var(--gray-light);
  display: flex;
  align-items: center;
  gap: 8px;
}
.ebook-topics li:last-child { border-bottom: none; }
.ebook-topics li::before {
  content: '→';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}
.ebook-free-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(27,92,56,0.1);
  color: var(--green);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 1rem;
}

/* ---- BLOG CARDS ---- */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img {
  height: 180px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
  overflow: hidden;
}
.blog-card-body { padding: 1.5rem; }
.blog-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.blog-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  line-height: 1.3;
  color: var(--navy);
}
.blog-card h3 a { color: var(--navy); }
.blog-card h3 a:hover { color: var(--orange); }
.blog-card p {
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.blog-meta {
  font-size: 0.8rem;
  color: var(--gray-mid);
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--navy);
  padding: 64px 0 0;
  color: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .nav-logo-text {
  font-size: 1.5rem;
  margin-bottom: 4px;
  display: block;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 1rem 0;
  color: rgba(255,255,255,0.6);
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.92rem;
}
.footer-contact-item a { color: rgba(255,255,255,0.7); }
.footer-contact-item a:hover { color: var(--orange); }
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--white); }
.footer-disclaimer {
  background: rgba(0,0,0,0.2);
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  line-height: 1.65;
}

/* ---- CHAT WIDGET ---- */
.chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
}
.chat-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--orange);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(232,105,26,0.5);
  transition: var(--transition);
  color: var(--white);
}
.chat-toggle:hover { transform: scale(1.08); }
.chat-panel {
  position: absolute;
  bottom: 74px;
  right: 0;
  width: 360px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 48px rgba(0,0,0,0.22);
  overflow: hidden;
  display: none;
  flex-direction: column;
  max-height: 520px;
}
.chat-panel.open { display: flex; }
.chat-header {
  background: var(--navy);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.chat-header-info h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.chat-header-info p {
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  margin-bottom: 0;
}
.chat-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--white);
  flex-shrink: 0;
  font-family: 'Barlow Condensed', sans-serif;
}
.chat-tab-row {
  display: flex;
  border-bottom: 1px solid var(--gray-light);
}
.chat-tab {
  flex: 1;
  padding: 10px;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  background: none;
  color: var(--gray-mid);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}
.chat-tab.active-remi { color: var(--green); border-bottom-color: var(--green); }
.chat-tab.active-rico { color: var(--navy); border-bottom-color: var(--navy); }
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 200px;
}
.chat-msg {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.chat-msg-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
  font-family: 'Barlow Condensed', sans-serif;
}
.chat-msg-remi .chat-msg-avatar { background: var(--green); color: var(--white); }
.chat-msg-rico .chat-msg-avatar { background: var(--navy); color: var(--white); }
.chat-bubble {
  background: var(--off-white);
  border-radius: 0 12px 12px 12px;
  padding: 10px 14px;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text);
  max-width: 84%;
}
.chat-msg-user { flex-direction: row-reverse; }
.chat-msg-user .chat-bubble {
  background: var(--navy);
  color: var(--white);
  border-radius: 12px 0 12px 12px;
}
.chat-input-row {
  display: flex;
  border-top: 1px solid var(--gray-light);
  padding: 10px;
  gap: 8px;
}
.chat-input {
  flex: 1;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 9px 12px;
  font-size: 0.9rem;
  font-family: 'Barlow', sans-serif;
  outline: none;
  transition: var(--transition);
}
.chat-input:focus { border-color: var(--orange); }
.chat-send {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: var(--orange);
  border: none;
  cursor: pointer;
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.chat-send:hover { background: var(--orange-dark); }

/* ---- CHAT LOADING DOT ---- */
.chat-loading { display: flex; gap: 4px; align-items: center; padding: 4px 0; }
.chat-loading span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gray-mid);
  animation: dotBounce 1.2s infinite;
}
.chat-loading span:nth-child(2) { animation-delay: 0.2s; }
.chat-loading span:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotBounce {
  0%,80%,100% { transform: scale(0.7); opacity: 0.5; }
  40% { transform: scale(1); opacity: 1; }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stat-strip .container { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .nav-links, .nav-cta .btn { display: none; }
  .nav-hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero { padding: 100px 0 60px; }
  .page-hero { padding: 100px 0 48px; }
  .process-step { flex-direction: column; gap: 1rem; }
  .stat-strip .container { grid-template-columns: repeat(2, 1fr); }
  .chat-panel { width: 300px; }
}
@media (max-width: 480px) {
  .stat-strip .container { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
}
