/* ══════════════════════════════════════════════
   TheRentalMarket.ca — Shared Base Styles
   ══════════════════════════════════════════════ */

/* ── VARIABLES & RESET ── */
:root { --orange:#FF5C1A; --black:#0C0C0C; --white:#FFFFFF; --line:rgba(255,255,255,0.08); --muted:rgba(255,255,255,0.7); --dim:rgba(255,255,255,0.55); }
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body { font-family:'Nunito',sans-serif; background:var(--black); color:var(--white); overflow-x:hidden; transition:background 0.3s ease,color 0.3s ease; }

/* ── HEADER ── */
header { position:fixed; top:0; left:0; right:0; z-index:100; display:flex; align-items:center; justify-content:space-between; padding:0 48px; height:64px; background:rgba(12,12,12,0.9); border-bottom:1px solid var(--line); backdrop-filter:blur(12px); transition:background 0.3s ease,border-color 0.3s ease; }
.logo { font-family:'Nunito',sans-serif !important; font-size:1.05rem !important; font-weight:800 !important; letter-spacing:0.01em !important; color:var(--white); text-decoration:none; display:flex; align-items:center; gap:5px; text-transform:none !important; }
.logo-icon { width:24px; height:24px; flex-shrink:0; }
.logo .o { color:var(--orange); }
.logo .ca { font-size:0.65em; opacity:1; font-weight:700; letter-spacing:0; margin-left:2px; color:var(--orange); }

/* ── NAV CENTER ── */
.nav-center { position:absolute; left:50%; transform:translateX(-50%); display:flex; align-items:center; gap:32px; }
.nav-center a, .nav-center .nav-learn { font-size:0.68rem; letter-spacing:0.12em; text-transform:uppercase; color:var(--muted); text-decoration:none; font-weight:700; transition:color 0.2s; }
.nav-center a:hover { color:var(--white); }
.nav-center a.active { color:var(--white); }

/* ── NAV RIGHT ── */
nav { display:flex; align-items:center; gap:10px; }
nav a { font-size:0.68rem; letter-spacing:0.12em; text-transform:uppercase; color:var(--muted); text-decoration:none; font-weight:700; transition:color 0.2s; }
nav a:hover { color:var(--white); }
nav a.active { color:var(--white); }
.nav-cta { background:var(--orange); color:white !important; padding:9px 20px; border-radius:3px; font-size:0.68rem !important; letter-spacing:0.12em; transition:background 0.2s !important; }
.nav-cta:hover { background:#e04a0e !important; }
.nav-btn-ghost { border:1px solid var(--line); padding:8px 16px; border-radius:3px; transition:border-color 0.2s; font-size:0.68rem !important; letter-spacing:0.12em; font-weight:700; text-transform:uppercase; }
.nav-btn-ghost:hover { border-color:var(--orange); }

/* ── NAV DROPDOWNS ── */
.nav-dropdown { position:relative; }
.nav-learn { font-size:0.68rem; letter-spacing:0.12em; text-transform:uppercase; color:var(--muted); font-weight:700; transition:color 0.2s; display:flex; align-items:center; gap:4px; }
.nav-dropdown:hover .nav-learn { color:var(--white); }
.nav-dropdown-menu { position:absolute; top:calc(100% + 4px); right:0; left:auto; background:rgba(18,18,18,0.98); border:1px solid var(--line); border-radius:6px; padding:8px; min-width:180px; display:none; flex-direction:column; gap:2px; backdrop-filter:blur(12px); box-shadow:0 16px 40px rgba(0,0,0,0.5); }
.nav-dropdown:hover .nav-dropdown-menu { display:flex; }
.nav-dropdown-menu a { font-size:0.72rem !important; padding:8px 12px; border-radius:4px; transition:background 0.15s; letter-spacing:0.04em !important; text-transform:none !important; }
.nav-dropdown-menu a:hover { background:rgba(255,255,255,0.05); }
.dd-section { font-size:0.52rem; font-weight:800; letter-spacing:0.18em; text-transform:uppercase; color:var(--dim); padding:8px 12px 4px; }
.dd-divider { height:1px; background:var(--line); margin:4px 0; }
.dd-orange { color:var(--orange) !important; font-weight:700; }

/* ── THEME TOGGLE ── */
.theme-toggle { background:none; border:1px solid var(--line); color:var(--muted); border-radius:50%; width:36px; height:36px; display:flex; align-items:center; justify-content:center; transition:border-color 0.2s,color 0.2s; flex-shrink:0; }
.theme-toggle:hover { border-color:var(--orange); color:var(--orange); }
body.dark .icon-sun { display:block; }
body.dark .icon-moon { display:none; }
body.light .icon-sun { display:none; }
body.light .icon-moon { display:block; }

/* ── HAMBURGER ── */
.hamburger { display:none; flex-direction:column; justify-content:center; gap:5px; width:36px; height:36px; background:none; border:1px solid var(--line); border-radius:4px; padding:7px 8px; margin-left:auto; flex-shrink:0; transition:border-color 0.2s; }
.hamburger:hover { border-color:var(--orange); }
.hamburger span { display:block; height:1.5px; background:var(--white); border-radius:2px; transition:transform 0.25s ease,opacity 0.2s ease,background 0.2s; transform-origin:center; }
.hamburger.open span:nth-child(1) { transform:translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity:0; transform:scaleX(0); }
.hamburger.open span:nth-child(3) { transform:translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE DRAWER ── */
.mobile-drawer { display:none; position:fixed; top:64px; left:0; right:0; bottom:0; background:rgba(12,12,12,0.98); backdrop-filter:blur(16px); z-index:99; flex-direction:column; padding:24px 24px 40px; overflow-y:auto; transform:translateY(-8px); opacity:0; transition:opacity 0.25s ease,transform 0.25s ease; }
.mobile-drawer.open { display:flex; opacity:1; transform:translateY(0); }
.mob-section { font-size:0.52rem; font-weight:800; letter-spacing:0.2em; text-transform:uppercase; color:var(--dim); padding:20px 0 8px; }
.mob-link { display:block; font-size:0.75rem; font-weight:700; letter-spacing:0.12em; text-transform:uppercase; color:var(--muted); text-decoration:none; padding:14px 0; border-bottom:1px solid var(--line); transition:color 0.2s; }
.mob-link:hover { color:var(--white); }
.mob-sub { display:block; font-size:0.7rem; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; color:var(--muted); text-decoration:none; padding:10px 0 10px 14px; border-bottom:1px solid var(--line); transition:color 0.2s; }
.mob-sub:hover { color:var(--white); }
.mob-sub.orange { color:var(--orange); }
.mob-section-link { display:block; font-size:0.52rem; font-weight:800; letter-spacing:0.2em; text-transform:uppercase; color:var(--muted); text-decoration:none; padding:20px 0 8px; transition:color 0.2s; }
.mob-section-link:hover { color:var(--white); }
.mob-ctas { display:flex; flex-direction:column; gap:10px; margin-top:24px; }
.mob-btn-orange { display:flex; align-items:center; justify-content:center; background:var(--orange); color:white; padding:15px; border-radius:4px; font-size:0.72rem; font-weight:800; letter-spacing:0.12em; text-transform:uppercase; text-decoration:none; transition:background 0.2s; }
.mob-btn-orange:hover { background:#e04a0e; }
.mob-btn-ghost { display:flex; align-items:center; justify-content:center; background:transparent; color:var(--muted); padding:14px; border-radius:4px; font-size:0.72rem; font-weight:800; letter-spacing:0.12em; text-transform:uppercase; text-decoration:none; border:1px solid var(--line); transition:all 0.2s; }
.mob-btn-ghost:hover { border-color:rgba(255,255,255,0.3); color:var(--white); }

/* ── AUTHOR BYLINE ── */
.author-byline { display:flex; align-items:center; gap:14px; max-width:1100px; margin:0 auto; padding:0 48px 24px; }
.author-avatar { width:40px; height:40px; border-radius:50%; background:rgba(255,92,26,0.12); border:1px solid rgba(255,92,26,0.25); display:flex; align-items:center; justify-content:center; font-family:'Bebas Neue',sans-serif; font-size:0.85rem; color:var(--orange); flex-shrink:0; letter-spacing:0.04em; }
.author-info { display:flex; flex-direction:column; gap:2px; }
.author-name { font-size:0.78rem; font-weight:700; color:var(--fg,var(--white)); }
.author-creds { font-size:0.68rem; color:var(--muted); line-height:1.4; }
.author-creds a { color:var(--orange); text-decoration:none; }
body.light .author-name { color:#0C0C0C; }
body.light .author-creds { color:rgba(0,0,0,0.45); }
body.light .author-avatar { background:rgba(255,92,26,0.08); border-color:rgba(255,92,26,0.2); }

/* ── SOURCES SECTION ── */
.sources-section { max-width:1100px; margin:0 auto; padding:48px 48px 0; }
.sources-title { font-size:0.6rem; font-weight:700; letter-spacing:0.2em; text-transform:uppercase; color:var(--dim); display:flex; align-items:center; gap:12px; margin-bottom:20px; }
.sources-title::after { content:''; flex:1; height:1px; background:var(--line); }
.sources-list { display:flex; flex-direction:column; gap:10px; }
.sources-list a { font-size:0.78rem; color:var(--muted); text-decoration:none; line-height:1.5; transition:color 0.2s; display:flex; align-items:baseline; gap:8px; }
.sources-list a::before { content:'↗'; color:var(--dim); font-size:0.65rem; flex-shrink:0; }
.sources-list a:hover { color:var(--orange); }
.sources-list a span { color:var(--fg,var(--white)); font-weight:600; }
body.light .sources-list a span { color:#0C0C0C; }
body.light .sources-list a { color:rgba(0,0,0,0.45); }

/* ── RELATED GUIDES ── */
.related-section { max-width:1100px; margin:0 auto; padding:48px 48px 0; }
.related-title { font-size:0.6rem; font-weight:700; letter-spacing:0.2em; text-transform:uppercase; color:var(--dim); display:flex; align-items:center; gap:12px; margin-bottom:20px; }
.related-title::after { content:''; flex:1; height:1px; background:var(--line); }
.related-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.related-card { border:1px solid var(--line); border-radius:8px; padding:24px; background:rgba(255,255,255,0.02); text-decoration:none; transition:border-color 0.2s, background 0.2s; display:flex; flex-direction:column; gap:8px; }
.related-card:hover { border-color:rgba(255,92,26,0.3); background:rgba(255,92,26,0.04); }
.related-card-label { font-size:0.58rem; font-weight:700; letter-spacing:0.15em; text-transform:uppercase; color:var(--orange); }
.related-card-name { font-size:0.9rem; font-weight:700; color:var(--fg,var(--white)); line-height:1.3; }
.related-card-desc { font-size:0.75rem; color:var(--muted); line-height:1.6; }
.related-card-arrow { font-size:0.68rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:var(--orange); margin-top:auto; padding-top:8px; }
body.light .related-card { background:rgba(0,0,0,0.02); border-color:rgba(0,0,0,0.08); }
body.light .related-card:hover { border-color:rgba(255,92,26,0.3); background:rgba(255,92,26,0.04); }
body.light .related-card-name { color:#0C0C0C; }
body.light .related-card-desc { color:rgba(0,0,0,0.5); }
@media (max-width:768px) {
  .author-byline { padding:0 20px 20px; }
  .sources-section, .related-section { padding:32px 20px 0; }
  .related-grid { grid-template-columns:1fr; }
}

/* ── FOOTER ── */
footer { border-top:1px solid var(--line); padding:48px 48px 32px; }
.footer-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:32px; padding-bottom:32px; border-bottom:1px solid var(--line); margin-bottom:24px; }
.footer-col-title { font-size:0.85rem; font-weight:800; letter-spacing:0.12em; text-transform:uppercase; color:var(--dim); margin-bottom:16px; }
.footer-col a { display:block; font-size:0.875rem; color:var(--muted); text-decoration:none; font-weight:600; padding:6px 0; transition:color 0.2s; }
.footer-col a:hover { color:var(--white); }
.footer-bottom { text-align:center; }
.footer-logo { font-family:'Nunito',sans-serif !important; font-size:1.15rem !important; font-weight:800 !important; letter-spacing:0.01em !important; text-transform:none !important; color:rgba(255,255,255,0.85); margin-bottom:8px; display:flex; align-items:center; justify-content:center; gap:5px; }
.footer-logo-icon { width:24px; height:24px; opacity:0.75; }
.footer-logo .o { color:var(--orange); }
.footer-logo .ca { font-size:0.65em; font-weight:700; letter-spacing:0; margin-left:2px; color:var(--orange); }
.footer-fine-print { font-size:0.75rem; color:var(--dim); line-height:1.6; }
.footer-fine-print strong { color:rgba(255,255,255,0.5); }
.footer-fine-print a { color:var(--muted); text-decoration:underline; text-underline-offset:2px; transition:color 0.2s; }
.footer-fine-print a:hover { color:var(--white); }
.footer-fine-print p { margin:0; }
.footer-fine-print p + p { margin-top:2px; }
.footer-reco { font-size:0.62rem; color:var(--dim); line-height:1.6; }
.footer-crea { font-size:0.65rem; color:rgba(255,255,255,0.2); max-width:720px; margin:6px auto 0; line-height:1.5; letter-spacing:0.02em; }
/* legacy flat footer (will be removed after migration) */
.footer-links { display:flex; gap:24px; flex-wrap:wrap; }
.footer-links a { font-size:0.68rem; color:var(--dim); text-decoration:none; letter-spacing:0.05em; font-weight:700; text-transform:uppercase; transition:color 0.2s; }
.footer-links a:hover { color:var(--white); }

/* ── REVEAL ANIMATION ── */
.reveal { opacity:0; transform:translateY(20px); transition:opacity 0.6s ease,transform 0.6s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ── COMMON ELEMENTS ── */
.page-eyebrow { font-size:0.62rem; font-weight:700; letter-spacing:0.2em; text-transform:uppercase; color:var(--orange); margin-bottom:14px; }
.btn-orange { display:inline-flex; align-items:center; gap:8px; background:var(--orange); color:white; padding:14px 28px; border-radius:4px; font-size:0.75rem; font-weight:700; letter-spacing:0.12em; text-transform:uppercase; text-decoration:none; transition:background 0.2s; }
.btn-orange:hover { background:#e04a0e; }
.section-label { font-size:0.6rem; font-weight:700; letter-spacing:0.2em; text-transform:uppercase; color:var(--dim); display:flex; align-items:center; gap:12px; margin-bottom:28px; }
.section-label::after { content:''; flex:1; height:1px; background:var(--line); }

/* ── CONTACT CTA STRIP ── */
.contact-cta {
  border-top: 1px solid var(--line);
  padding: 28px 48px;
  text-align: center;
}
.contact-cta p {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.contact-cta a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s;
}
.contact-cta a:hover {
  color: #e04a0e;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── HOMEPAGE TESTIMONIALS ── */
.home-testimonials {
  padding: 72px 48px 56px;
  max-width: 1100px;
  margin: 0 auto;
}
.home-testimonials .section-label { margin-bottom: 32px; }
.ht-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.ht-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px 24px;
  background: rgba(255,255,255,0.02);
  transition: border-color 0.2s, background 0.2s;
}
.ht-card:hover {
  border-color: rgba(255,92,26,0.3);
  background: rgba(255,92,26,0.03);
}
.ht-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.ht-star { color: var(--orange); font-size: 0.75rem; }
.ht-quote {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
  font-style: italic;
}
.ht-quote strong { color: var(--white); font-style: normal; }
.ht-author {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
}
.ht-context {
  font-size: 0.6rem;
  color: var(--dim);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}
.ht-link {
  text-align: center;
}
.ht-link a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  text-decoration: none;
  transition: color 0.2s;
}
.ht-link a:hover { color: #e04a0e; }

/* ── APPLY PAGE SOCIAL PROOF ── */
.social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,0.02);
  margin-bottom: 40px;
}
.sp-badge {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding-right: 16px;
  border-right: 1px solid var(--line);
}
.sp-stars { display: flex; gap: 2px; }
.sp-star { color: var(--orange); font-size: 0.7rem; }
.sp-label {
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  white-space: nowrap;
}
.sp-quote {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
  font-style: italic;
}
.sp-quote strong { color: var(--white); font-style: normal; }
.sp-author {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--dim);
  margin-top: 4px;
}

/* commission disclaimer */
.commission-note { font-size:0.6rem; color:rgba(255,255,255,0.3); margin-top:4px; }

/* ══════════════════════════════════════════════
   LIGHT MODE
   ══════════════════════════════════════════════ */
body.light {
  background:#F5F4F2; color:#0C0C0C;
  --line:rgba(0,0,0,0.08); --muted:rgba(0,0,0,0.5); --dim:#524D49;
}
body.light header { background:rgba(245,244,242,0.92) !important; border-bottom-color:rgba(0,0,0,0.08) !important; }
body.light .logo { color:#0C0C0C !important; }
body.light .nav-center a:not(.nav-cta) { color:rgba(0,0,0,0.5) !important; }
body.light .nav-center a:not(.nav-cta):hover { color:#0C0C0C !important; }
body.light .nav-center .nav-learn { color:rgba(0,0,0,0.5) !important; }
body.light .nav-center .nav-dropdown:hover .nav-learn { color:#0C0C0C !important; }
body.light nav a:not(.nav-cta) { color:rgba(0,0,0,0.5) !important; }
body.light nav a:not(.nav-cta):hover { color:#0C0C0C !important; }
body.light .nav-learn { color:rgba(0,0,0,0.5) !important; }
body.light .nav-dropdown:hover .nav-learn { color:#0C0C0C !important; }
body.light .nav-dropdown-menu { background:rgba(245,244,242,0.98) !important; border-color:rgba(0,0,0,0.1) !important; box-shadow:0 16px 40px rgba(0,0,0,0.1) !important; }
body.light .nav-dropdown-menu a { color:rgba(0,0,0,0.5) !important; }
body.light .nav-dropdown-menu a:hover { background:rgba(0,0,0,0.04) !important; color:#0C0C0C !important; }
body.light footer { background:#F5F4F2 !important; border-top-color:rgba(0,0,0,0.08) !important; }
body.light .footer-grid { border-bottom-color:rgba(0,0,0,0.08) !important; }
body.light .footer-col-title { color:#0C0C0C !important; }
body.light .footer-col a { color:rgba(0,0,0,0.45) !important; }
body.light .footer-col a:hover { color:#0C0C0C !important; }
body.light .footer-logo { color:var(--dim) !important; }
body.light .footer-links a { color:rgba(0,0,0,0.4) !important; }
body.light .footer-links a:hover { color:#0C0C0C !important; }
body.light .footer-reco { color:rgba(0,0,0,0.3) !important; border-top-color:rgba(0,0,0,0.08) !important; }
body.light .footer-fine-print { color:rgba(0,0,0,0.3) !important; }
body.light .footer-fine-print strong { color:rgba(0,0,0,0.5) !important; }
body.light .footer-fine-print a { color:rgba(0,0,0,0.4) !important; }
body.light .footer-fine-print a:hover { color:#0C0C0C !important; }
body.light .footer-crea { color:rgba(0,0,0,0.15) !important; }
body.light .commission-note { color:rgba(0,0,0,0.3); }
body.light .mobile-drawer { background:rgba(245,244,242,0.98); }
body.light .hamburger span { background:#0C0C0C; }
body.light .hamburger { border-color:rgba(0,0,0,0.15); }
body.light .hamburger:hover { border-color:var(--orange); }
body.light .mob-link { color:rgba(0,0,0,0.55); border-bottom-color:rgba(0,0,0,0.08); }
body.light .mob-link:hover { color:#0C0C0C; }
body.light .mob-section { color:rgba(0,0,0,0.3); }
body.light .mob-sub { color:rgba(0,0,0,0.5); border-bottom-color:rgba(0,0,0,0.06); }
body.light .mob-sub:hover { color:#0C0C0C; }
body.light .mob-section-link { color:rgba(0,0,0,0.5); }
body.light .mob-section-link:hover { color:#0C0C0C; }
body.light .mob-btn-ghost { border-color:rgba(0,0,0,0.15); color:rgba(0,0,0,0.55); }
body.light .mob-btn-ghost:hover { border-color:#0C0C0C; color:#0C0C0C; }
body.light .section-label { color:rgba(0,0,0,0.3); }
body.light .section-label::after { background:rgba(0,0,0,0.08); }
body.light .page-eyebrow { color:var(--orange); }
/* light mode — contact CTA */
body.light .contact-cta { border-top-color: rgba(0,0,0,0.08); }
body.light .contact-cta p { color: rgba(0,0,0,0.45); }
/* light mode — homepage testimonials */
body.light .ht-card { border-color: rgba(0,0,0,0.1) !important; background: rgba(0,0,0,0.02) !important; }
body.light .ht-card:hover { border-color: rgba(255,92,26,0.3) !important; background: rgba(255,92,26,0.04) !important; }
body.light .ht-quote { color: rgba(0,0,0,0.55); }
body.light .ht-quote strong { color: #0C0C0C; }
body.light .ht-author { color: #0C0C0C; }
body.light .ht-context { color: rgba(0,0,0,0.35); }
/* light mode — social proof on apply */
body.light .social-proof { border-color: rgba(0,0,0,0.1) !important; background: rgba(0,0,0,0.02) !important; }
body.light .sp-badge { border-right-color: rgba(0,0,0,0.1) !important; }
body.light .sp-label { color: rgba(0,0,0,0.35); }
body.light .sp-quote { color: rgba(0,0,0,0.55); }
body.light .sp-quote strong { color: #0C0C0C; }
body.light .sp-author { color: rgba(0,0,0,0.4); }

/* ── STICKY MOBILE CTA ── */
.sticky-cta {
  display:none;
  position:fixed; bottom:0; left:0; right:0; z-index:99;
  padding:12px 16px;
  padding-bottom:max(12px, env(safe-area-inset-bottom));
  background:rgba(12,12,12,0.95);
  backdrop-filter:blur(12px);
  border-top:1px solid rgba(255,255,255,0.08);
  transform:translateY(100%);
  transition:transform 0.3s ease;
}
.sticky-cta.visible { transform:translateY(0); }
.sticky-cta-btn {
  display:block; width:100%; text-align:center;
  background:var(--orange); color:#fff !important;
  font-family:'Nunito',sans-serif; font-size:0.78rem; font-weight:800;
  letter-spacing:0.1em; text-transform:uppercase; text-decoration:none;
  padding:14px 20px; border-radius:4px;
  transition:background 0.2s;
}
.sticky-cta-btn:hover { background:#e04a0e; }
@media (max-width:768px) {
  .sticky-cta { display:block; }
}
body.light .sticky-cta { background:rgba(245,244,242,0.95); border-top-color:rgba(0,0,0,0.08); }

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width:768px) {
  .nav-center { display:none !important; }
  header nav > a:not(.nav-cta),
  header nav > .nav-dropdown,
  header nav > .nav-btn-ghost,
  header nav > .nav-cta,
  header nav > .razz-trigger { display:none !important; }
  .hamburger { display:flex !important; }
  header { padding:0 20px; }
  header nav { gap:10px; }
}
@media (max-width:768px) {
  .footer-grid { grid-template-columns:repeat(2,1fr); gap:32px 24px; text-align:center; justify-items:center; }
  .footer-col { display:flex; flex-direction:column; align-items:center; }
  .footer-col-title { text-align:center; }
  footer { padding:40px 20px 80px; }
}
@media (max-width:768px) {
  .contact-cta { padding: 24px 20px; }
  .home-testimonials { padding: 56px 20px 40px; }
  .ht-grid { grid-template-columns: 1fr; }
  .social-proof { flex-direction: column; text-align: center; }
  .sp-badge { padding-right: 0; border-right: none; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
}
@media (max-width:480px) {
  .footer-grid { grid-template-columns:1fr; gap:24px; text-align:center; justify-items:center; }
  .footer-col { display:flex; flex-direction:column; align-items:center; }
  .footer-col-title { text-align:center; }
}
