/* ═══════════════════════════════════════════
   RWC NCG One-Pager Theme — main.css
   ═══════════════════════════════════════════ */

/* ── Reset & Root ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --rw-red:       #E31837;
  --rw-dark:      #B8122C;
  --rw-pale:      #FEF0F2;
  --charcoal:     #1A1A1A;
  --mid:          #4A4A4A;
  --muted:        #888888;
  --line:         rgba(0,0,0,0.08);
  --bg:           #F5F4F1;
  --white:        #FFFFFF;
  --radius:       14px;
  --radius-sm:    8px;
  --font-head:    'Montserrat', sans-serif;
  --font-body:    'Open Sans', sans-serif;
  --shadow:       0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:    0 12px 48px rgba(0,0,0,0.12);
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--rw-red); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--rw-dark); }

/* ── Skip link ── */
.skip-link {
  position: absolute; left: -9999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus {
  position: fixed; top: 0; left: 0;
  width: auto; height: auto;
  padding: 8px 16px;
  background: var(--rw-red); color: #fff;
  font-family: var(--font-head); font-size: 14px;
  z-index: 9999;
}

/* ── Announcement Bar ── */
.announcement-bar {
  background: var(--charcoal);
  color: rgba(255,255,255,0.5);
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 8px 16px;
}
.announcement-bar strong { color: rgba(255,255,255,0.88); font-weight: 600; }
.announcement-bar a { color: var(--rw-red); margin-left: 10px; }
.announcement-bar a:hover { text-decoration: underline; }

/* ── Header ── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.logo-block {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.logo-mark {
  width: 46px; height: 46px;
  background: var(--rw-red);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(227,24,55,0.25);
}
.logo-mark svg { width: 26px; height: 26px; }
.logo-text-block { line-height: 1.15; }
.logo-name {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
.logo-sub {
  font-size: 10.5px;
  color: var(--muted);
  font-weight: 400;
  margin-top: 1px;
}
.header-spacer { flex: 1; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-nav a {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  color: var(--mid);
  padding: 7px 14px;
  border-radius: 6px;
  transition: color 0.16s, background 0.16s;
}
.header-nav a:hover {
  color: var(--rw-red);
  background: var(--rw-pale);
}
.header-cta {
  background: var(--rw-red) !important;
  color: white !important;
  font-weight: 700 !important;
  padding: 10px 20px !important;
  border-radius: 8px !important;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 10px rgba(227,24,55,0.3);
  transition: background 0.16s, box-shadow 0.16s !important;
}
.header-cta:hover {
  background: var(--rw-dark) !important;
  box-shadow: 0 4px 16px rgba(227,24,55,0.4) !important;
}
.mobile-toggle {
  display: none;
  width: 40px; height: 40px;
  border: none; background: none;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.mobile-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.2s;
}

/* ── HERO ── */
.hero {
  position: relative;
  background: var(--charcoal);
  color: white;
  overflow: hidden;
  padding: 100px 32px 80px;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(227,24,55,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(227,24,55,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M30 0v60M0 30h60' stroke='rgba(255,255,255,0.03)' stroke-width='1'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rw-red);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  width: 28px; height: 1px;
  background: rgba(227,24,55,0.5);
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.hero h1 span { color: var(--rw-red); }
.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.btn-primary {
  background: var(--rw-red);
  color: white;
  box-shadow: 0 4px 20px rgba(227,24,55,0.35);
}
.btn-primary:hover {
  background: var(--rw-dark);
  color: white;
  box-shadow: 0 6px 28px rgba(227,24,55,0.45);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
  color: white;
}

/* Trust strip */
.trust-strip {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.trust-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  padding: 6px 16px 6px 10px;
  font-size: 11px;
  font-family: var(--font-head);
  font-weight: 600;
  color: rgba(255,255,255,0.55);
}
.trust-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--rw-red);
  flex-shrink: 0;
}
.trust-dot.green { background: #4CAF50; }

/* ── SERVICES ── */
.services {
  padding: 80px 32px;
  max-width: 1140px;
  margin: 0 auto;
}
.section-label {
  font-family: var(--font-head);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rw-red);
  text-align: center;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  text-align: center;
  color: var(--charcoal);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.section-desc {
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  max-width: 560px;
  margin: 0 auto 44px;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  cursor: default;
}
.service-card:hover {
  border-color: rgba(227,24,55,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}
.service-icon {
  width: 48px; height: 48px;
  background: var(--rw-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.service-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── AI CHATBOT SECTION ── */
.chatbot-section {
  padding: 80px 32px;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.chatbot-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.chatbot-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
}

/* ── MARKET INSIGHTS SECTION ── */
.insights {
  padding: 80px 32px;
  max-width: 1140px;
  margin: 0 auto;
}
.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.insight-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
}
.insight-value {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 900;
  color: var(--rw-red);
  line-height: 1;
  margin-bottom: 6px;
}
.insight-label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.insight-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

/* ── TEAM/OFFICES ── */
.offices {
  padding: 80px 32px;
  background: var(--charcoal);
  color: white;
}
.offices .section-label { color: var(--rw-red); }
.offices .section-title { color: white; }
.offices .section-desc { color: rgba(255,255,255,0.45); }

.offices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.office-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.2s, background 0.2s;
}
.office-card:hover {
  border-color: rgba(227,24,55,0.3);
  background: rgba(255,255,255,0.06);
}
.office-card h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.office-card h3::before {
  content: '';
  width: 10px; height: 10px;
  background: var(--rw-red);
  border-radius: 50%;
  flex-shrink: 0;
}
.office-card address {
  font-style: normal;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 12px;
}
.office-card a.office-phone {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--rw-red);
}
.office-card a.office-phone:hover { color: #ff4d6a; }

/* ── CTA / APPRAISAL ── */
.cta-section {
  padding: 80px 32px;
  text-align: center;
  position: relative;
  background:
    linear-gradient(135deg, var(--rw-red) 0%, #a01028 100%);
  color: white;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 20h40M20 0v40' stroke='rgba(255,255,255,0.06)' stroke-width='1'/%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}
.cta-section h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.cta-section p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 30px;
  line-height: 1.6;
}
.btn-white {
  background: white;
  color: var(--rw-red);
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover {
  background: #f0f0f0;
  color: var(--rw-dark);
  transform: translateY(-1px);
}

/* ── Footer ── */
.site-footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 32px;
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer-brand {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
}
.footer-brand span { color: var(--rw-red); }
.footer-links {
  display: flex;
  gap: 20px;
}
.footer-links a {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
}
.footer-links a:hover { color: rgba(255,255,255,0.7); }
.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 10px;
  color: rgba(255,255,255,0.2);
  font-family: var(--font-head);
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.05);
  letter-spacing: 0.04em;
}

/* ── CHATBOT WIDGET (embedded version) ── */
.chat-widget {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.chat-topbar {
  background: var(--rw-red);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.chat-av-wrap { position: relative; }
.chat-av {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 2px solid rgba(255,255,255,0.32);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: white;
}
.online-dot {
  position: absolute;
  bottom: 1px; right: 1px;
  width: 12px; height: 12px;
  background: #4CAF50;
  border-radius: 50%;
  border: 2px solid var(--rw-red);
  animation: blink 2.5s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.4} }
.chat-topbar-info { flex: 1; }
.chat-topbar-name {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: white;
}
.chat-topbar-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.live-badge {
  background: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.9);
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 100px;
}

/* messages */
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px 18px 12px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 380px;
  max-height: 500px;
  background: #FAFAF8;
  scroll-behavior: smooth;
}
.chat-messages::-webkit-scrollbar { width: 3px; }
.chat-messages::-webkit-scrollbar-thumb { background: #ddd; border-radius: 3px; }

.msg { display: flex; gap: 9px; align-items: flex-end; }
.msg.user { flex-direction: row-reverse; }
.msg-av {
  width: 30px; height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
}
.msg-av.bot { background: var(--rw-red); color: white; }
.msg-av.user-av { background: var(--charcoal); color: white; }
.msg-inner { max-width: 82%; display: flex; flex-direction: column; }
.user .msg-inner { align-items: flex-end; }
.bubble {
  padding: 11px 15px;
  font-size: 13.5px;
  line-height: 1.58;
}
.bot .bubble {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  border-bottom-left-radius: 3px;
  color: var(--charcoal);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.user .bubble {
  background: var(--charcoal);
  color: white;
  border-radius: 16px;
  border-bottom-right-radius: 3px;
}
.bubble strong { color: var(--rw-red); font-weight: 600; }
.user .bubble strong { color: #ffb3be; }

/* chips */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.chip {
  background: var(--rw-pale);
  border: 1px solid rgba(227,24,55,0.2);
  color: var(--rw-dark);
  font-size: 12px;
  padding: 5px 13px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.15s;
  font-family: var(--font-body);
  font-weight: 500;
}
.chip:hover { background: var(--rw-red); color: white; border-color: var(--rw-red); }

/* typing */
.typing { display: flex; gap: 4px; align-items: center; padding: 5px 2px; }
.typing span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--rw-red);
  animation: tdot 1.3s infinite;
  display: block;
}
.typing span:nth-child(2) { animation-delay: 0.2s; }
.typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes tdot { 0%,60%,100%{transform:translateY(0);opacity:0.4} 30%{transform:translateY(-5px);opacity:1} }

/* lead form */
.lead-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  border-bottom-left-radius: 3px;
  overflow: hidden;
  max-width: 92%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}
.lead-card-head {
  background: var(--rw-red);
  color: white;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 15px;
}
.lead-card-body { padding: 14px 15px; }
.lf { margin-bottom: 10px; }
.lf label {
  display: block;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.lf input, .lf select {
  width: 100%;
  border: 1px solid rgba(0,0,0,0.14);
  border-radius: 7px;
  padding: 9px 11px;
  font-size: 13px;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: #FAFAF8;
  outline: none;
  transition: border-color 0.16s, background 0.16s;
}
.lf input:focus, .lf select:focus {
  border-color: var(--rw-red);
  background: white;
}
.lf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.lead-submit {
  width: 100%;
  background: var(--rw-red);
  color: white;
  border: none;
  border-radius: 7px;
  padding: 10px;
  font-size: 13px;
  font-family: var(--font-head);
  font-weight: 700;
  cursor: pointer;
  margin-top: 4px;
  transition: background 0.16s;
}
.lead-submit:hover { background: var(--rw-dark); }
.lead-submit:disabled { background: #ccc; cursor: not-allowed; }
.lead-privacy {
  font-size: 10.5px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.4;
}

/* chat input */
.chat-input-wrap {
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  background: var(--white);
  display: flex;
  gap: 8px;
  align-items: center;
}
.chat-input {
  flex: 1;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 24px;
  padding: 11px 18px;
  font-size: 13.5px;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--bg);
  outline: none;
  transition: border-color 0.16s, background 0.16s;
}
.chat-input:focus { border-color: var(--rw-red); background: white; }
.chat-input::placeholder { color: #C0BDB8; }
.send-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--rw-red);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.16s, transform 0.1s;
}
.send-btn:hover { background: var(--rw-dark); }
.send-btn:active { transform: scale(0.91); }
.send-btn svg { width: 17px; height: 17px; fill: white; }
.chat-footer-bar {
  text-align: center;
  padding: 8px;
  font-size: 10px;
  color: #C5C2BE;
  font-family: var(--font-head);
  letter-spacing: 0.05em;
  border-top: 1px solid var(--line);
  background: white;
}
.chat-footer-bar span { color: var(--rw-red); font-weight: 600; }

/* error bubble */
.error-bubble {
  background: #FEF2F2;
  border: 1px solid rgba(227,24,55,0.2);
  color: var(--rw-dark);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  margin-top: 6px;
}

/* ── SIDEBAR ── */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.s-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.s-card-head {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 10px 16px;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.s-card-body { padding: 14px 16px; }

.prop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.prop-tile {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 12px 8px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.16s, box-shadow 0.16s, background 0.16s;
  font-family: var(--font-body);
}
.prop-tile:hover {
  border-color: rgba(227,24,55,0.35);
  box-shadow: 0 2px 12px rgba(227,24,55,0.1);
  background: var(--rw-pale);
}
.pt-icon { font-size: 22px; display: block; margin-bottom: 5px; }
.pt-label {
  font-family: var(--font-head);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--charcoal);
}

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .chatbot-layout {
    grid-template-columns: 1fr;
  }
  .sidebar { order: 2; }
  .hero { padding: 60px 20px 50px; }
  .services, .insights { padding: 50px 20px; }
  .offices { padding: 50px 20px; }
  .cta-section { padding: 50px 20px; }
}

@media (max-width: 640px) {
  .site-header { padding: 0 16px; height: 64px; }
  .header-nav a:not(.header-cta) { display: none; }
  .mobile-toggle { display: flex; }
  .logo-sub { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .offices-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { justify-content: center; text-align: center; }
  .footer-links { justify-content: center; }
  .announcement-bar { font-size: 10px; padding: 6px 10px; }
}
