/* ============================================================
   Matt Solutions & Services LLC — Design System v3
   Graphite / Charcoal / White dominant
   Navy #0D2257 accent only · Montserrat + Inter
   ============================================================ */

/* =========================================
   1. RESET & BASE
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ── Primary palette ── */
  --soft-black:   #111111;
  --graphite:     #1F1F1F;
  --charcoal:     #2B2B2B;
  --off-white:    #F7F7F7;
  --white:        #FFFFFF;

  /* ── Accent only ── */
  --navy:         #0D2257;
  --navy-hover:   #162e6e;
  --silver:       #C9CDD2;

  /* ── Text ── */
  --text-heading: #111111;
  --text-body:    #3a3a3a;
  --text-muted:   #767676;
  --text-subtle:  #9a9a9a;

  /* ── Surfaces — light ── */
  --surface:       #FFFFFF;
  --surface-alt:   #F7F7F7;
  --border:        #E4E4E4;
  --border-subtle: #EEEEEE;

  /* ── Surfaces — dark ── */
  --dark-bg:     #111111;
  --dark-mid:    #1F1F1F;
  --dark-card:   #2B2B2B;
  --dark-border: rgba(255,255,255,0.08);
  --dark-text:   rgba(255,255,255,0.62);

  /* ── Shadows ── */
  --shadow-xs:    0 1px 2px rgba(0,0,0,0.06);
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.07), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.09), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg:    0 8px 32px rgba(0,0,0,0.11), 0 3px 10px rgba(0,0,0,0.05);
  --shadow-dark-md: 0 4px 20px rgba(0,0,0,0.5);
  --shadow-dark-lg: 0 10px 40px rgba(0,0,0,0.6);

  /* ── Typography ── */
  --font-heading: 'Montserrat', system-ui, -apple-system, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* ── Geometry ── */
  --radius:    10px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --transition: 0.2s ease;
}

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

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-body);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a   { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--navy-hover); }

.container { max-width: 1140px; margin: 0 auto; padding: 0 1.25rem; }

/* =========================================
   2. TYPOGRAPHY
   ========================================= */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.18;
  color: var(--text-heading);
}
h1 { font-size: clamp(2rem, 5vw, 3.1rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: 1.1rem; }
h4 { font-size: 0.95rem; }

/* Dark section overrides */
.hero h1, .hero h2, .hero h3, .hero h4,
footer h1, footer h2, footer h3, footer h4,
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4,
.page-hero h1, .page-hero h2 { color: #fff; }

.hero p, footer p, .section-dark p, .page-hero p { color: var(--dark-text); }

/* Section labels */
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.65rem;
  opacity: 0.7;
}
.hero .section-label, footer .section-label,
.section-dark .section-label, .page-hero .section-label {
  color: var(--silver);
  opacity: 0.8;
}

.section-title { margin-bottom: 0.85rem; }
.section-sub {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.72;
}
.hero .section-sub, .section-dark .section-sub, .page-hero .section-sub {
  color: var(--dark-text);
}
.center { text-align: center; }
.center .section-sub { margin-left: auto; margin-right: auto; }

/* =========================================
   3. SECTIONS
   ========================================= */
.section      { padding: 88px 0; background: var(--white); }
.section-alt  { padding: 88px 0; background: var(--off-white); }
.section-dark { padding: 88px 0; background: var(--graphite); }

/* =========================================
   4. BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.72rem 1.65rem;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.4;
}

/* Primary — soft black */
.btn-primary {
  background: var(--soft-black);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.22);
}
.btn-primary:hover {
  background: var(--charcoal);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.28);
}

/* Outline — light bg */
.btn-outline {
  background: transparent;
  color: var(--soft-black);
  border: 1.5px solid #d0d0d0;
}
.btn-outline:hover {
  background: var(--soft-black);
  color: #fff;
  border-color: var(--soft-black);
  transform: translateY(-2px);
}

/* Outline — dark bg */
.hero .btn-outline, .section-dark .btn-outline,
.page-hero .btn-outline, .cta-banner .btn-outline {
  color: rgba(255,255,255,0.78);
  border-color: rgba(255,255,255,0.2);
}
.hero .btn-outline:hover, .section-dark .btn-outline:hover,
.page-hero .btn-outline:hover, .cta-banner .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

/* Navy accent */
.btn-accent {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 2px 8px rgba(13,34,87,0.22);
}
.btn-accent:hover {
  background: var(--navy-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13,34,87,0.30);
}

/* SMS */
.btn-sms {
  background: var(--charcoal);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.btn-sms:hover {
  background: #3a3a3a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.26);
}

/* Call */
.btn-call {
  background: transparent;
  color: rgba(255,255,255,0.78);
  border: 1.5px solid rgba(255,255,255,0.22);
}
.btn-call:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.42);
  transform: translateY(-2px);
}

.btn-sm     { font-size: 0.78rem; padding: 0.46rem 1.05rem; }
.btn-submit { width: 100%; justify-content: center; font-size: 0.95rem; padding: 0.88rem; }

/* =========================================
   5. LOGO & BRAND LOCKUP
   ========================================= */

/* ── Navbar: two-line brand lockup ── */
.nav-logo { text-decoration: none; }

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 8px;
  padding: 5px;
  flex-shrink: 0;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1px;
  line-height: 1;
}

.brand-primary {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  color: #ffffff;
  line-height: 1;
  text-transform: uppercase;
}

.brand-secondary {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: #C9CDD2;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}

/* ── Footer logo: full logo, no pill ── */
.footer-logo { display: inline-block; text-decoration: none; }

.footer-logo-img {
  display: block;
  height: auto;
  width: auto;
  max-width: 200px;
  max-height: 64px;
  object-fit: contain;
}

/* ── Legacy .logo-wrap (footer fallback) ── */
.logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 9px;
  padding: 6px 12px;
  line-height: 0;
  box-shadow: 0 1px 5px rgba(0,0,0,0.14);
}
.logo-img {
  display: block;
  height: 36px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}
.logo-wrap-sm .logo-img { height: 30px; max-width: 180px; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .brand-icon      { width: 34px; height: 34px; padding: 4px; border-radius: 7px; }
  .brand-primary   { font-size: 1.2rem; }
  .brand-secondary { font-size: 0.6rem; letter-spacing: 0.1em; }
  .footer-logo-img { max-width: 170px; max-height: 52px; }
  .logo-img        { height: 30px; max-width: 160px; }
}

@media (max-width: 420px) {
  .brand-icon      { width: 30px; height: 30px; padding: 3px; }
  .brand-primary   { font-size: 1.1rem; }
  .brand-secondary { font-size: 0.58rem; letter-spacing: 0.08em; }
}

/* =========================================
   6. NAVIGATION
   ========================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(17,17,17,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(17,17,17,0.98);
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 0.75rem;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-links {
  display: flex; list-style: none;
  gap: 0.1rem; align-items: center;
  flex: 1; justify-content: center;
}
.nav-links a {
  color: rgba(255,255,255,0.6);
  font-family: var(--font-heading);
  font-size: 0.82rem; font-weight: 500;
  padding: 0.38rem 0.8rem;
  border-radius: 7px;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,0.07); }
.nav-cta { margin-left: 0.4rem; flex-shrink: 0; }

/* Language switcher */
.lang-switcher {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 7px; overflow: hidden; flex-shrink: 0;
}
.lang-btn {
  font-family: var(--font-heading);
  font-size: 0.64rem; font-weight: 700;
  letter-spacing: 0.09em;
  padding: 0.32rem 0.7rem;
  color: rgba(255,255,255,0.48);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
  line-height: 1;
}
.lang-btn:hover { color: #fff; background: rgba(255,255,255,0.1); }
.lang-btn.active { background: var(--navy); color: #fff; }
.lang-btn + .lang-btn { border-left: 1px solid rgba(255,255,255,0.08); }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 0.4rem; background: none; border: none;
}
.nav-hamburger span {
  width: 22px; height: 2px;
  background: rgba(255,255,255,0.75);
  border-radius: 2px; transition: var(--transition); display: block;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none; flex-direction: column;
  background: var(--soft-black);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1rem 1.25rem 1.5rem; gap: 0.2rem;
}
.nav-mobile a {
  display: block; color: rgba(255,255,255,0.6);
  padding: 0.62rem 0.75rem; border-radius: var(--radius);
  font-family: var(--font-heading); font-weight: 500; font-size: 0.9rem;
  transition: color var(--transition), background var(--transition);
}
.nav-mobile a:hover { color: #fff; background: rgba(255,255,255,0.06); }
.nav-mobile .btn  { margin-top: 0.75rem; width: 100%; justify-content: center; }
.nav-mobile.open  { display: flex; }
.nav-mobile .lang-switcher { align-self: flex-start; margin-top: 0.5rem; }

/* =========================================
   7. HERO
   ========================================= */
.hero {
  padding: 140px 0 100px;
  background: linear-gradient(150deg, var(--soft-black) 0%, var(--graphite) 60%, #1a1a1a 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -10%; right: -6%;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(13,34,87,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center; position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--silver);
  font-family: var(--font-heading); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.35rem 0.9rem; border-radius: 999px; margin-bottom: 1.25rem;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px;
  background: #4ade80; border-radius: 50%; animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(1.4); }
}
.hero-title      { margin-bottom: 1.25rem; color: #fff; }
.hero-title em   { font-style: normal; color: var(--silver); }
.hero-sub {
  color: rgba(255,255,255,0.58); font-size: 1.05rem;
  margin-bottom: 2rem; max-width: 480px; line-height: 1.74;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2.5rem; }
.hero-trust   { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.trust-item {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; color: rgba(255,255,255,0.42);
}
.trust-item svg { color: #4ade80; width: 14px; height: 14px; flex-shrink: 0; }

/* Hero service line */
.hero-service-line {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.45);
  margin-top: 0.6rem;
  text-transform: uppercase;
}

/* Hero trust panel (replaces stat card) */
.hero-trust-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-dark-lg);
  width: 100%;
  max-width: 340px;
}
.htp-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
}
.htp-item:last-child { border-bottom: none; }
.htp-check {
  width: 26px;
  height: 26px;
  background: rgba(13,34,87,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #6ab4ff;
  flex-shrink: 0;
  font-style: normal;
}

/* Hero visual */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-card-stack { position: relative; width: 100%; max-width: 360px; }
.stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-dark-lg);
}
.stat-card-main { margin-bottom: 1rem; }
.stat-card-main .stat-row {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.72rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.stat-card-main .stat-row:last-child { border-bottom: none; }
.stat-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--silver); flex-shrink: 0;
}
.stat-icon svg      { width: 15px; height: 15px; }
.stat-label         { font-size: 0.7rem; color: rgba(255,255,255,0.35); }
.stat-value         { font-size: 0.88rem; font-weight: 600; color: #fff; }
.stat-card-badge {
  position: absolute; bottom: -1rem; right: -1rem;
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 0.9rem 1.2rem;
  box-shadow: var(--shadow-dark-md);
  text-align: center; min-width: 115px;
}
.stat-card-badge .big   { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; line-height: 1; color: #fff; }
.stat-card-badge .small { font-size: 0.68rem; color: rgba(255,255,255,0.5); margin-top: 0.2rem; }

/* =========================================
   8. SERVICE CARDS
   ========================================= */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.2rem; }
.service-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--soft-black); opacity: 0; transition: opacity var(--transition);
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--border); }
.service-card:hover::after { opacity: 1; }
.service-icon {
  width: 46px; height: 46px;
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  color: var(--soft-black); margin-bottom: 1.1rem; flex-shrink: 0;
}
.service-icon svg { width: 20px; height: 20px; }
.service-card h3  { margin-bottom: 0.5rem; font-size: 1rem; color: var(--text-heading); }
.service-card p   { color: var(--text-body); font-size: 0.875rem; line-height: 1.65; }

.tag {
  display: inline-block;
  background: var(--off-white); border: 1px solid var(--border);
  color: var(--charcoal); font-size: 0.7rem; font-weight: 600;
  padding: 0.18rem 0.6rem; border-radius: 999px; letter-spacing: 0.02em;
}
.highlight { color: var(--navy); }

/* =========================================
   9. PROCESS STEPS
   ========================================= */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.process-step {
  text-align: center; padding: 2rem 1.5rem;
  background: var(--surface); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); transition: box-shadow var(--transition);
}
.process-step:hover { box-shadow: var(--shadow-md); }
.process-num {
  width: 46px; height: 46px; background: var(--soft-black); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 1rem; font-weight: 800; color: #fff;
  margin: 0 auto 1rem;
}
.process-step h3 { margin-bottom: 0.45rem; font-size: 0.95rem; color: var(--text-heading); }
.process-step p  { color: var(--text-body); font-size: 0.875rem; }

/* =========================================
   10. SERVICE AREAS (home)
   ========================================= */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1rem; }
.area-card {
  background: var(--surface); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 1.5rem;
  display: flex; align-items: flex-start; gap: 0.9rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.area-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.area-icon {
  width: 40px; height: 40px;
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--soft-black); flex-shrink: 0;
}
.area-icon svg { width: 17px; height: 17px; }
.area-card h3  { font-size: 0.95rem; margin-bottom: 0.3rem; color: var(--text-heading); }
.area-card p   { font-size: 0.82rem; color: var(--text-body); }

/* =========================================
   11. FAQ
   ========================================= */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.5rem; }
.faq-item {
  background: var(--surface); border: 1px solid var(--border-subtle);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item.open { border-color: var(--border); box-shadow: var(--shadow-xs); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.1rem 1.5rem;
  background: none; border: none;
  color: var(--text-heading); font-family: var(--font-heading); font-size: 0.9rem; font-weight: 600;
  cursor: pointer; text-align: left; transition: background var(--transition);
}
.faq-question:hover { background: var(--off-white); }
.faq-chevron {
  width: 18px; height: 18px; flex-shrink: 0;
  color: var(--charcoal); opacity: 0.4;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); opacity: 0.9; }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem; color: var(--text-body); font-size: 0.875rem; line-height: 1.74;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 1.5rem 1.25rem; }

/* =========================================
   12. CTA BANNER
   ========================================= */
.cta-banner {
  background: var(--soft-black); border-radius: var(--radius-xl);
  padding: 3.5rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; right: -60px; top: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(ellipse, rgba(13,34,87,0.35) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner h2            { color: #fff; position: relative; z-index: 1; }
.cta-banner .section-label{ position: relative; z-index: 1; }
.cta-banner p             { color: rgba(255,255,255,0.6); max-width: 440px; position: relative; z-index: 1; }
.cta-actions              { display: flex; gap: 0.75rem; flex-wrap: wrap; position: relative; z-index: 1; }

/* =========================================
   13. CONTACT
   ========================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 3rem; align-items: start; }

.contact-info { display: flex; flex-direction: column; gap: 0.85rem; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 1rem; padding: 1.1rem;
  background: var(--surface); border: 1px solid var(--border-subtle);
  border-radius: var(--radius); transition: box-shadow var(--transition);
}
.contact-info-item:hover { box-shadow: var(--shadow-sm); }
.contact-info-icon {
  width: 38px; height: 38px;
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
  color: var(--soft-black); flex-shrink: 0;
}
.contact-info-icon svg { width: 16px; height: 16px; }
.contact-info-label {
  font-size: 0.67rem; color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 0.09em; margin-bottom: 0.2rem;
  font-family: var(--font-heading); font-weight: 700;
}
.contact-info-value { font-size: 0.9rem; font-weight: 500; color: var(--text-heading); }
.contact-info-value a { color: var(--navy); }
.contact-info-value a:hover { color: var(--navy-hover); }

.contact-form {
  background: var(--surface); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 2.25rem; box-shadow: var(--shadow-md);
}

/* PT contact */
.contact-info-col  { display: flex; flex-direction: column; gap: 0.85rem; }
.contact-form-col  { }
.contact-info-title, .contact-form-title {
  font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700;
  color: var(--text-heading); margin-bottom: 1.2rem;
}
.contact-form-sub  { color: var(--text-body); font-size: 0.875rem; margin-bottom: 1.5rem; margin-top: -0.5rem; }
.contact-info-list { display: flex; flex-direction: column; gap: 0.85rem; }

.contact-quick-actions { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.quick-action-btn {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.85rem 1.2rem;
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-heading); font-family: var(--font-heading); font-size: 0.875rem; font-weight: 600;
  transition: all var(--transition); text-decoration: none;
}
.quick-action-btn:hover { border-color: var(--soft-black); background: var(--off-white); transform: translateX(4px); color: var(--soft-black); }
.quick-action-btn svg { flex-shrink: 0; }

/* Form fields */
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label {
  font-family: var(--font-heading); font-size: 0.78rem; font-weight: 600;
  color: var(--text-heading); letter-spacing: 0.03em;
}
.req { color: #e53e3e; }
.form-group input, .form-group select, .form-group textarea {
  background: var(--off-white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 0.72rem 1rem;
  color: var(--text-heading); font-size: 0.9rem; font-family: var(--font-body);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none; width: 100%;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-subtle); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--soft-black);
  box-shadow: 0 0 0 3px rgba(17,17,17,0.07);
  background: var(--white);
}
.form-group select option { background: var(--white); }
.form-group textarea  { resize: vertical; min-height: 120px; }
.form-submit .btn     { width: 100%; justify-content: center; font-size: 0.95rem; padding: 0.88rem; }
.form-note            { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.75rem; text-align: center; }

/* =========================================
   14. ABOUT
   ========================================= */
.about-grid     { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-content p { color: var(--text-body); margin-bottom: 1rem; }
.about-values   { display: flex; flex-direction: column; gap: 1rem; }
.value-card {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--surface); border: 1px solid var(--border-subtle);
  border-radius: var(--radius); padding: 1.2rem; transition: box-shadow var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-sm); }
.value-icon {
  width: 38px; height: 38px; background: var(--off-white); border: 1px solid var(--border);
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
  color: var(--soft-black); flex-shrink: 0;
}
.value-icon svg { width: 17px; height: 17px; }
.value-card h3  { font-size: 0.9rem; margin-bottom: 0.25rem; color: var(--text-heading); }
.value-card p   { font-size: 0.82rem; color: var(--text-body); margin: 0; }
.values-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.differentiators-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.2rem; }
.diff-card {
  background: var(--surface); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.diff-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.diff-icon {
  width: 44px; height: 44px; background: var(--off-white); border: 1px solid var(--border);
  border-radius: 11px; display: flex; align-items: center; justify-content: center;
  color: var(--soft-black); margin-bottom: 1rem;
}
.diff-icon svg { width: 20px; height: 20px; }
.diff-card h3  { font-size: 0.95rem; margin-bottom: 0.4rem; color: var(--text-heading); }
.diff-card p   { font-size: 0.85rem; color: var(--text-body); }

.contact-info-strip { text-align: center; max-width: 820px; margin: 0 auto; }
.contact-methods {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  gap: 1rem; margin: 2rem 0;
}
.contact-method {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1rem 1.2rem; background: var(--surface); border: 1px solid var(--border-subtle);
  border-radius: var(--radius); transition: box-shadow var(--transition);
}
.contact-method:hover { box-shadow: var(--shadow-sm); }
.contact-method-icon {
  width: 36px; height: 36px; background: var(--off-white); border: 1px solid var(--border);
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
  color: var(--soft-black); flex-shrink: 0;
}
.contact-method-icon svg   { width: 16px; height: 16px; }
.contact-method-label      { font-size: 0.67rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.07em; font-family: var(--font-heading); font-weight: 700; }
.contact-method-value      { font-size: 0.875rem; font-weight: 500; color: var(--text-heading); }
.contact-method-value a    { color: var(--navy); }
.contact-method-value a:hover { color: var(--navy-hover); }

/* =========================================
   15. PAGE HEROES
   ========================================= */
.page-hero {
  padding: 130px 0 65px;
  background: linear-gradient(150deg, var(--soft-black) 0%, var(--graphite) 100%);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -20%; right: -5%;
  width: 450px; height: 450px;
  background: radial-gradient(ellipse, rgba(13,34,87,0.2) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner   { position: relative; z-index: 1; }
.page-hero-title   { color: #fff; margin-bottom: 0.75rem; }
.page-hero-sub     { color: rgba(255,255,255,0.58) !important; font-size: 1.05rem; max-width: 560px; line-height: 1.72; }
.page-hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.75rem; }
.page-hero p       { color: rgba(255,255,255,0.58); font-size: 1.05rem; max-width: 550px; margin-top: 0.75rem; }

.breadcrumb {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; color: rgba(255,255,255,0.38); margin-bottom: 1rem;
}
.breadcrumb a       { color: rgba(255,255,255,0.38); }
.breadcrumb a:hover { color: rgba(255,255,255,0.75); }
.breadcrumb span    { color: rgba(255,255,255,0.62); }

/* =========================================
   16. SERVICES DETAIL
   ========================================= */
.section-intro        { margin-bottom: 2rem; }
.services-detail-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 1.5rem; }
.service-detail-card {
  background: var(--surface); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 2rem;
  display: flex; flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative; overflow: hidden;
}
.service-detail-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--soft-black); opacity: 0; transition: opacity var(--transition);
}
.service-detail-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.service-detail-card:hover::after { opacity: 1; }
.sdc-icon {
  width: 48px; height: 48px; background: var(--off-white); border: 1px solid var(--border);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: var(--soft-black); margin-bottom: 1.1rem; flex-shrink: 0;
}
.sdc-icon svg    { width: 22px; height: 22px; }
.sdc-content h3  { font-size: 1.05rem; margin-bottom: 0.6rem; color: var(--text-heading); }
.sdc-content p   { font-size: 0.875rem; color: var(--text-body); margin-bottom: 0.75rem; line-height: 1.65; }
.sdc-list        { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; margin-top: 0.75rem; }
.sdc-list li     { font-size: 0.82rem; color: var(--text-body); padding-left: 1.1rem; position: relative; }
.sdc-list li::before { content: '—'; position: absolute; left: 0; color: var(--charcoal); opacity: 0.4; font-size: 0.75rem; }

/* =========================================
   17. SERVICE AREAS DETAIL
   ========================================= */
.areas-detail-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.area-detail-card {
  background: var(--surface); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.area-detail-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.area-detail-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.area-detail-icon {
  width: 44px; height: 44px; background: var(--off-white); border: 1px solid var(--border);
  border-radius: 11px; display: flex; align-items: center; justify-content: center;
  color: var(--soft-black); flex-shrink: 0;
}
.area-detail-icon svg  { width: 20px; height: 20px; }
.area-detail-card h3   { font-size: 1.05rem; margin-bottom: 0.2rem; color: var(--text-heading); }
.area-badge {
  display: inline-block; background: var(--off-white); border: 1px solid var(--border);
  color: var(--charcoal); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.07em; padding: 0.14rem 0.52rem;
  border-radius: 999px; text-transform: uppercase; margin-top: 0.2rem;
  font-family: var(--font-heading);
}
.area-detail-card p    { font-size: 0.875rem; color: var(--text-body); margin-bottom: 1rem; line-height: 1.65; }
.area-services-list    { list-style: none; display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1.25rem; }
.area-services-list li { font-size: 0.82rem; color: var(--text-body); padding-left: 1.2rem; position: relative; }
.area-services-list li::before { content: '→'; position: absolute; left: 0; color: var(--charcoal); font-size: 0.7rem; top: 1px; }

.remote-support-block { display: grid; grid-template-columns: 1.4fr 1fr; gap: 3rem; align-items: center; }
.remote-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
.remote-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9rem; color: var(--text-body); }
.remote-list li svg { color: var(--soft-black); width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }
.remote-cta-box {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
}
.remote-cta-box h3 { font-size: 1.15rem; margin-bottom: 0.5rem; color: var(--text-heading); }
.remote-cta-box p  { font-size: 0.875rem; color: var(--text-body); margin-bottom: 1.25rem; }

/* =========================================
   18. GOOGLE REVIEWS
   ========================================= */
.reviews-strip { max-width: 660px; margin: 0 auto; text-align: center; }
.reviews-badge {
  display: inline-flex; align-items: center; gap: 1.1rem;
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.4rem 2rem;
  margin: 0 auto 1.5rem; box-shadow: var(--shadow-sm);
}
.reviews-google-icon  { width: 42px; height: 42px; flex-shrink: 0; }
.reviews-badge-text   { text-align: left; }
.reviews-platform     { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 700; color: var(--text-heading); }
.reviews-status       { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.15rem; }
.reviews-strip p      { font-size: 0.9rem; color: var(--text-body); margin-bottom: 1.5rem; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.72; }

/* =========================================
   19. FOOTER
   ========================================= */
footer {
  background: var(--soft-black);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem; padding-bottom: 3rem;
}
.footer-brand p {
  color: rgba(255,255,255,0.48); font-size: 0.875rem;
  margin: 0.85rem 0 1.1rem; max-width: 280px; line-height: 1.68;
}
.footer-logo    { display: inline-block; }
.footer-actions { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-actions .btn { font-size: 0.8rem; padding: 0.5rem 1rem; }
footer h4 {
  font-family: var(--font-heading); font-size: 0.67rem; font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: rgba(255,255,255,0.28); margin-bottom: 1rem;
}
.footer-links   { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.875rem; transition: color var(--transition); }
.footer-links a:hover { color: #fff; }

.footer-contact-list { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-contact-item { display: flex; align-items: center; gap: 0.55rem; font-size: 0.875rem; color: rgba(255,255,255,0.5); }
.footer-contact-item svg { width: 14px; height: 14px; color: rgba(255,255,255,0.3); flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.5); }
.footer-contact-item a:hover { color: #fff; }

.footer-social { display: flex; gap: 0.5rem; margin-top: 1rem; }
.footer-social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px; color: rgba(255,255,255,0.46);
  transition: all var(--transition); text-decoration: none;
}
.footer-social-link:hover {
  background: rgba(255,255,255,0.1); color: #fff;
  border-color: rgba(255,255,255,0.18); transform: translateY(-2px);
}
.footer-social-link svg { width: 15px; height: 15px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1.2rem 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.75rem;
}
.footer-bottom p { font-size: 0.77rem; color: rgba(255,255,255,0.25); }
.footer-bottom a { color: rgba(255,255,255,0.25); }
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }

/* =========================================
   20. TOAST
   ========================================= */
#toast {
  position: fixed; bottom: 2rem; right: 2rem;
  background: var(--soft-black);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid #4ade80;
  color: #fff; padding: 0.9rem 1.5rem; border-radius: var(--radius);
  font-size: 0.9rem; box-shadow: var(--shadow-dark-lg);
  transform: translateY(100px); opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease; z-index: 9999;
}
#toast.show { transform: translateY(0); opacity: 1; }

/* =========================================
   21. UTILITIES
   ========================================= */
.divider    { height: 1px; background: var(--border-subtle); margin: 2.5rem 0; }
.fade-in-up { opacity: 0; transform: translateY(22px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

/* =========================================
   22. RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .footer-grid          { grid-template-columns: 1fr 1fr; }
  .hero-grid            { gap: 2.5rem; }
  .remote-support-block { grid-template-columns: 1fr; }
  .about-grid           { gap: 2.5rem; }
}
@media (max-width: 768px) {
  .nav-inner .nav-links,
  .nav-inner .nav-cta,
  .nav-inner .lang-switcher { display: none; }
  .nav-hamburger    { display: flex; }
  .hero             { padding: 110px 0 64px; }
  .hero-grid        { grid-template-columns: 1fr; }
  .hero-visual      { display: none; }
  .section, .section-alt, .section-dark { padding: 64px 0; }
  .contact-grid     { grid-template-columns: 1fr; }
  .about-grid       { grid-template-columns: 1fr; }
  .values-grid      { grid-template-columns: 1fr; }
  .form-row         { grid-template-columns: 1fr; }
  .footer-grid      { grid-template-columns: 1fr; }
  .cta-banner       { flex-direction: column; text-align: center; padding: 2.5rem 1.5rem; }
  .cta-actions      { justify-content: center; }
  .footer-bottom    { flex-direction: column; text-align: center; }
  .process-grid     { grid-template-columns: 1fr 1fr; }
  .areas-detail-grid{ grid-template-columns: 1fr; }
  .reviews-badge    { flex-direction: column; text-align: center; }
  .reviews-badge-text { text-align: center; }
}
@media (max-width: 480px) {
  .hero-actions    { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .process-grid    { grid-template-columns: 1fr; }
  .services-grid   { grid-template-columns: 1fr; }
  .areas-grid      { grid-template-columns: 1fr; }
  .contact-methods { grid-template-columns: 1fr; }
  .cta-banner      { padding: 2rem 1.25rem; }
}

/* =========================================
   23. MOBILE FLAG LANGUAGE SWITCHER
   ========================================= */

/* Hidden on desktop — desktop uses .lang-switcher (EN/PT text) */
.nav-flags {
  display: none;
  align-items: center;
  gap: 3px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 9px;
  padding: 3px 4px;
  flex-shrink: 0;
}

.nav-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 28px;
  border-radius: 6px;
  font-size: 1.15rem;
  line-height: 1;
  text-decoration: none;
  transition: background var(--transition);
  cursor: pointer;
  border: 1.5px solid transparent;
}

.nav-flag:hover {
  background: rgba(255,255,255,0.1);
}

.nav-flag-active {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.22);
}

/* Show flags only on mobile — hide desktop lang-switcher there */
@media (max-width: 768px) {
  .nav-flags { display: flex; }
  /* desktop EN/PT text switcher is already hidden at ≤768px via nav-inner rule */
}

/* Slightly smaller on very small screens */
@media (max-width: 380px) {
  .nav-flag  { width: 28px; height: 26px; font-size: 1rem; border-radius: 5px; }
  .nav-flags { padding: 2px 3px; gap: 2px; }
}

/* =========================================
   24. NAVBAR INSTAGRAM ICON
   ========================================= */
.nav-ig-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: rgba(255,255,255,0.52);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: color var(--transition), background var(--transition), border-color var(--transition);
  flex-shrink: 0;
  text-decoration: none;
}
.nav-ig-btn:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}
.nav-ig-btn svg { display: block; }

/* Mobile nav Instagram link */
.nav-mobile-ig {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.6);
  padding: 0.62rem 0.75rem;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color var(--transition), background var(--transition);
}
.nav-mobile-ig:hover { color: #fff; background: rgba(255,255,255,0.06); }
.nav-mobile-ig svg   { flex-shrink: 0; }

/* =========================================
   24. FOOTER FOLLOW / INSTAGRAM
   ========================================= */
.footer-follow        { margin-top: 1rem; }
.footer-follow-label  {
  font-family: var(--font-heading);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 0.6rem;
}
.footer-ig-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255,255,255,0.52);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color var(--transition);
  padding: 0.4rem 0;
}
.footer-ig-link:hover        { color: #fff; }
.footer-ig-link svg          { flex-shrink: 0; }
.footer-ig-handle            { font-weight: 500; }

/* =========================================
   25. INSTAGRAM CARD (contact page)
   ========================================= */
.ig-card-wrap { max-width: 640px; margin: 0 auto; }
.ig-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.ig-card:hover { box-shadow: var(--shadow-md); }
.ig-card-icon {
  width: 56px;
  height: 56px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--soft-black);
  flex-shrink: 0;
}
.ig-card-body          { flex: 1; min-width: 180px; }
.ig-card-body h3       { font-size: 1rem; margin-bottom: 0.25rem; color: var(--text-heading); }
.ig-card-handle        { font-size: 0.875rem; color: var(--navy); font-weight: 600; margin-bottom: 0.35rem; }
.ig-card-desc          { font-size: 0.82rem; color: var(--text-body); margin: 0; }
.ig-card-btn           { flex-shrink: 0; white-space: nowrap; }

/* =========================================
   26. TRUST + INSTAGRAM SECTION (home)
   ========================================= */
.trust-ig-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.trust-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.75rem;
}
.trust-checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-body);
  font-weight: 500;
}
.trust-checklist li svg { color: var(--soft-black); flex-shrink: 0; }

.trust-ig-block { display: flex; justify-content: center; }
.trust-ig-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  width: 100%;
  max-width: 380px;
  box-shadow: var(--shadow-sm);
}
.trust-ig-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  color: var(--soft-black);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
}
.trust-ig-text {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.trust-ig-text strong { color: var(--text-heading); }

/* =========================================
   27. GOOGLE REVIEWS PLACEHOLDER
   ========================================= */
.reviews-placeholder-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.reviews-placeholder-icon {
  width: 64px;
  height: 64px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.reviews-placeholder-body   { max-width: 520px; }
.reviews-placeholder-title  {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.6rem;
}
.reviews-placeholder-sub    {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.72;
}
.reviews-future-slots {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
  justify-content: center;
}
.reviews-future-slot {
  height: 72px;
  flex: 1;
  max-width: 160px;
  background: var(--off-white);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  /* Intentionally empty — reserved for future review cards */
}
.reviews-leave-btn { margin-top: 0.5rem; }

/* =========================================
   28. RESPONSIVE — new sections
   ========================================= */
@media (max-width: 768px) {
  .trust-ig-grid    { grid-template-columns: 1fr; gap: 2rem; }
  .ig-card          { flex-direction: column; text-align: center; }
  .ig-card-body     { text-align: center; }
  .ig-card-btn      { width: 100%; justify-content: center; }
  .reviews-future-slots { display: none; }
  .nav-ig-btn       { display: none; } /* hidden on mobile — shown in nav-mobile instead */
}
@media (max-width: 480px) {
  .trust-ig-card    { padding: 1.5rem; }
  .reviews-placeholder-card { padding: 1.75rem 1.25rem; }
}
