/* ============================================================
   Solid Advisors — Custom Stylesheet
   Design System: Navy #0B1F3B | Teal #1BA6A6 | Off-White #F8FAFC
   ============================================================ */

:root {
  --navy: #0B1F3B;
  --teal: #1BA6A6;
  --teal-dark: #158a8a;
  --teal-light: #e8f8f8;
  --off-white: #F8FAFC;
  --slate: #64748B;
  --border: #E5E7EB;
  --white: #ffffff;
  --text-dark: #1E293B;
  --text-body: #374151;
  --gold: #F59E0B;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-body);
  line-height: 1.6;
  background: var(--white);
}

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
}

h1 { font-size: clamp(2rem, 4vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
h4 { font-size: 1.2rem; }

p { line-height: 1.7; color: var(--text-body); }

/* ===================== LAYOUT ===================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 80px 0;
}

@media (max-width: 768px) {
  section { padding: 48px 0; }
}

/* ===================== NAVBAR ===================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 6px rgba(0,0,0,0.07);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.navbar-logo .logo-icon {
  width: 38px;
  height: 38px;
  background: var(--teal);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
}

.logo-svg-wrap {
  flex-shrink: 0;
  line-height: 0;
}

.logo-svg-wrap svg {
  display: block;
}

.logo-tagline-only {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(11,31,59,0.15);
  padding-left: 0.85rem;
  margin-left: 0.25rem;
}

.navbar-logo .logo-text {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}

.navbar-logo .logo-tagline {
  font-size: 0.7rem;
  color: var(--teal);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.nav-links a:hover {
  color: var(--teal);
  background: var(--teal-light);
}

.nav-cta {
  background: var(--teal) !important;
  color: white !important;
  padding: 0.55rem 1.2rem !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  transition: background 0.2s ease !important;
}

.nav-cta:hover {
  background: var(--navy) !important;
  color: white !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem;
  gap: 0.25rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 500;
  padding: 0.6rem 0.5rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.mobile-menu .mobile-cta {
  background: var(--teal);
  color: white !important;
  border-radius: 8px;
  text-align: center;
  padding: 0.75rem !important;
  margin-top: 0.5rem;
  border-bottom: none !important;
  font-weight: 600 !important;
}

@media (max-width: 768px) {
  .nav-links { display: none !important; }
  .hamburger { display: flex !important; }
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  line-height: 1;
}

.btn-primary {
  background: var(--teal);
  color: white;
  border-color: var(--teal);
}

.btn-primary:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(11,31,59,0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-secondary:hover {
  background: var(--navy);
  color: white;
}

.btn-white {
  background: white;
  color: var(--teal);
  border-color: white;
}

.btn-white:hover {
  background: var(--teal-light);
  color: var(--teal-dark);
}

.btn-white-outline {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.6);
}

.btn-white-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
}

.btn-lg { padding: 1rem 2.2rem; font-size: 1.05rem; }
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.9rem; }

/* ===================== HERO SECTION ===================== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #132d52 60%, #1a3a68 100%);
  color: white;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(27,166,166,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(27,166,166,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(27,166,166,0.2);
  border: 1px solid rgba(27,166,166,0.4);
  color: #6dd5d5;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
}

.hero h1 span {
  color: var(--teal);
}

.hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 1.2rem;
  max-width: 660px;
  margin-bottom: 2.25rem;
  line-height: 1.65;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.hero-microcopy {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.65);
}

.hero-microcopy span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-microcopy span i {
  color: var(--teal);
}

/* ===================== TRUST STRIP ===================== */
.trust-strip {
  background: var(--white);
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 2rem;
  list-style: none;
}

.trust-items li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
}

.trust-items .trust-icon {
  width: 28px;
  height: 28px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-items .trust-icon i {
  font-size: 0.82rem;
  color: var(--teal-dark);
}

/* ===================== SECTION HEADINGS ===================== */
.section-label {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 0.9rem;
}

.section-heading {
  text-align: center;
  margin-bottom: 1rem;
}

.section-heading h2 {
  margin-bottom: 0.75rem;
}

.section-heading p {
  color: var(--slate);
  font-size: 1.1rem;
  max-width: 680px;
  margin: 0 auto;
}

/* ===================== HOW IT WORKS ===================== */
.how-it-works {
  background: var(--off-white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  position: relative;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.step-card:hover {
  box-shadow: 0 6px 20px rgba(11,31,59,0.12);
  transform: translateY(-2px);
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--teal);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.step-card p {
  color: var(--slate);
  font-size: 0.95rem;
}

.steps-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ===================== WHO WE HELP ===================== */
.who-we-help {
  background: var(--white);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}

.help-card {
  background: var(--off-white);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--border);
}

.help-card h3 {
  color: var(--navy);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.help-card h3 i {
  color: var(--teal);
}

.help-card p { color: var(--slate); font-size: 0.95rem; margin-bottom: 1rem; }

.help-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.help-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--text-body);
}

.help-list li::before {
  content: '•';
  color: var(--teal);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 0.05em;
}

/* ===================== SERVICES ===================== */
.services {
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
  box-shadow: 0 8px 24px rgba(11,31,59,0.1);
  transform: translateY(-2px);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--teal-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.service-card h4 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.service-card p {
  color: var(--slate);
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-body);
}

.service-features li i {
  color: var(--teal);
  margin-top: 0.1em;
  flex-shrink: 0;
}

.service-link {
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s ease;
}

.service-link:hover { gap: 0.6rem; color: var(--navy); }

/* ===================== STAT COUNTERS ===================== */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--slate);
  margin-top: 0.3rem;
  max-width: 120px;
}

/* ===================== NSW HOTSPOTS ===================== */
.hotspots {
  background: var(--white);
}

.hotspot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}

.hotspot-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  background: var(--white);
}

.hotspot-card:hover {
  box-shadow: 0 8px 24px rgba(11,31,59,0.1);
  transform: translateY(-3px);
}

.hotspot-header {
  background: var(--navy);
  padding: 1.5rem;
  color: white;
}

.hotspot-header h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.hotspot-header .hotspot-region {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.hotspot-body {
  padding: 1.5rem;
}

.arrears-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fee2e2;
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.hotspot-body p {
  font-size: 0.88rem;
  color: var(--slate);
  margin-bottom: 1.25rem;
}

.hotspot-link {
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hotspot-link:hover { color: var(--navy); }

/* ===================== ABOUT / TEAM ===================== */
.about {
  background: var(--off-white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin: 2.5rem 0 3.5rem;
}

.value-tile {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.value-tile .value-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 14px rgba(27,166,166,0.3);
}

.value-tile .value-icon i {
  font-size: 1.4rem;
  color: var(--white);
}

.value-tile h4 {
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.value-tile p {
  font-size: 0.82rem;
  color: var(--slate);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin-top: 1rem;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.07);
}

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 800;
  flex-shrink: 0;
}

.team-info h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.team-role {
  font-size: 0.8rem;
  color: var(--teal);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
}

.team-bio {
  font-size: 0.87rem;
  color: var(--slate);
  line-height: 1.55;
}

.partner-note {
  background: var(--teal-light);
  border: 1px solid rgba(27,166,166,0.3);
  border-radius: 10px;
  padding: 1.25rem 1.75rem;
  margin-top: 2rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.partner-note i {
  color: var(--teal);
  font-size: 1.1rem;
  margin-top: 0.1em;
}

.partner-note p {
  font-size: 0.9rem;
  color: var(--navy);
  font-style: italic;
}

/* ===================== TESTIMONIALS ===================== */
.testimonials {
  background: var(--white);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--teal);
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.testimonial-quote {
  font-style: italic;
  color: var(--text-body);
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.testimonial-quote::before {
  content: '"';
  font-size: 2.5rem;
  color: var(--teal);
  line-height: 0.5;
  vertical-align: -0.5rem;
  margin-right: 0.15rem;
  font-family: Georgia, serif;
}

.testimonial-attribution {
  font-size: 0.83rem;
  color: var(--slate);
  font-style: normal;
  border-top: 1px solid var(--border);
  padding-top: 0.85rem;
}

.testimonial-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--slate);
  margin-top: 2rem;
  font-style: italic;
}

/* ===================== RESOURCES ===================== */
.resources {
  background: var(--off-white);
}

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2.5rem;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.5rem 1.2rem;
  border: 2px solid var(--border);
  border-radius: 100px;
  background: var(--white);
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--teal);
  border-color: var(--teal);
  color: white;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.07);
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
}

.blog-card:hover {
  box-shadow: 0 6px 18px rgba(11,31,59,0.1);
  transform: translateY(-2px);
}

.blog-category-tag {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.tag-business { background: #eff6ff; color: #2563eb; }
.tag-self-employed { background: #f0fdf4; color: #16a34a; }
.tag-property { background: #fffbeb; color: #d97706; }

.blog-card h4 {
  font-size: 0.97rem;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.blog-read-more {
  font-size: 0.83rem;
  color: var(--teal);
  font-weight: 600;
  margin-top: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* ===================== FAQ ===================== */
.faq {
  background: var(--white);
}

.faq-list {
  margin-top: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.2rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--navy);
  gap: 1rem;
  transition: background 0.2s;
}

.faq-question:hover { background: var(--off-white); }

.faq-question i {
  color: var(--teal);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.2rem;
  font-size: 0.93rem;
  color: var(--slate);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.faq-item.open .faq-answer { display: block; }

/* ===================== CONTACT SECTION ===================== */
.contact {
  background: var(--navy);
  color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.contact-left h2 {
  color: white;
  margin-bottom: 1rem;
}

.contact-left p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.contact-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-steps li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}

.contact-steps .step-dot {
  width: 28px;
  height: 28px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
  color: white;
}

/* Assessment Form */
.assessment-form {
  background: var(--white);
  border-radius: 16px;
  padding: 2.25rem;
}

.assessment-form h3 {
  color: var(--navy);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form-group label .required {
  color: #dc2626;
  margin-left: 2px;
}

.form-control {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.93rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}

.form-control:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(27,166,166,0.15);
}

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231BA6A6' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
}

textarea.form-control {
  resize: vertical;
  min-height: 90px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.82rem;
  color: var(--slate);
  line-height: 1.5;
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 2px;
  accent-color: var(--teal);
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  cursor: pointer;
}

.form-checkbox span {
  flex: 1;
}

.form-submit {
  width: 100%;
  padding: 0.95rem;
  background: var(--teal);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 0.5rem;
}

.form-submit:hover {
  background: var(--navy);
  transform: translateY(-1px);
}

.form-phone-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--slate);
  margin-top: 0.9rem;
}

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-text {
  font-size: 1.2rem;
  font-weight: 800;
  color: white;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--teal);
  font-weight: 600;
  margin-top: 0.25rem;
  margin-bottom: 1rem;
  font-style: italic;
}

.footer-desc {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  max-width: 280px;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.social-link:hover {
  background: var(--teal);
  color: white;
}

.footer-col h5 {
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--teal); }

.footer-contact p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.footer-contact p i { color: var(--teal); }

.footer-bottom {
  padding: 1.5rem 0;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.asic-disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
}

.footer-legal-links {
  display: flex;
  gap: 1rem;
}

.footer-legal-links a {
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal-links a:hover { color: var(--teal); }

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ===================== STICKY MOBILE CTA ===================== */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--teal);
  color: white;
  text-align: center;
  padding: 1rem;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
  .sticky-mobile-cta { display: block; }
  body { padding-bottom: 60px; }
}

/* ===================== FORM SUCCESS STATE ===================== */
.form-success {
  text-align: center;
  padding: 2rem;
}

.form-success .success-icon {
  width: 64px;
  height: 64px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1.75rem;
  margin: 0 auto 1rem;
}

.form-success h3 { color: var(--navy); margin-bottom: 0.5rem; }
.form-success p { color: var(--slate); font-size: 0.92rem; }

/* ===================== LANDING PAGE SPECIFIC ===================== */
.lp-navbar {
  background: var(--navy);
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lp-navbar .logo-text { color: white; font-size: 1.1rem; font-weight: 800; }
.lp-navbar .logo-tagline { color: var(--teal); font-size: 0.7rem; }

.lp-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
}

.lp-phone i { color: var(--teal); }

.lp-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #132d52 60%, #1a3a68 100%);
  color: white;
  padding: 60px 0;
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: flex-start;
}

.lp-hero-content h1 {
  color: white;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}

.lp-hero-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.lp-form-box {
  background: white;
  border-radius: 16px;
  padding: 2rem;
}

.lp-form-box h3 { color: var(--navy); margin-bottom: 1.25rem; font-size: 1.1rem; }

.lp-snapshot {
  background: var(--off-white);
  padding: 48px 0;
}

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.snapshot-stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
}

.snapshot-stat .big-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.snapshot-stat p {
  font-size: 0.83rem;
  color: var(--slate);
}

.callout-box {
  background: linear-gradient(135deg, rgba(27,166,166,0.12), rgba(27,166,166,0.05));
  border: 2px solid rgba(27,166,166,0.35);
  border-radius: 12px;
  padding: 1.25rem 1.75rem;
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  margin: 2rem 0;
}

.callout-box i {
  color: var(--teal);
  font-size: 1.25rem;
  margin-top: 0.1em;
  flex-shrink: 0;
}

.callout-box p {
  font-size: 0.97rem;
  color: var(--navy);
  font-weight: 600;
}

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-body);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
}

.checklist li:last-child { border-bottom: none; }

.checklist li i {
  color: var(--teal);
  margin-top: 0.1em;
  flex-shrink: 0;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.option-tile {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.option-tile .option-icon {
  width: 44px;
  height: 44px;
  background: var(--teal-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.option-tile h4 { font-size: 0.97rem; color: var(--navy); margin-bottom: 0.3rem; }
.option-tile p { font-size: 0.83rem; color: var(--slate); }

.what-you-get {
  background: var(--navy);
  padding: 48px 0;
  color: white;
}

.wyg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.wyg-item {
  text-align: center;
}

.wyg-icon {
  width: 52px;
  height: 52px;
  background: rgba(27,166,166,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1.3rem;
  margin: 0 auto 0.75rem;
}

.wyg-item p {
  color: rgba(255,255,255,0.8);
  font-size: 0.87rem;
  font-weight: 500;
}

.case-story {
  background: var(--off-white);
  padding: 48px 0;
}

.case-story-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--teal);
  border-radius: 12px;
  padding: 2rem;
  max-width: 720px;
  margin: 2rem auto 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.case-story-card p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 0.75rem;
}

.case-story-card .case-note {
  font-size: 0.8rem;
  color: var(--slate);
  font-style: normal;
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
  margin-top: 0.5rem;
}

.lp-footer {
  background: var(--navy);
  padding: 2rem 1.5rem;
  text-align: center;
}

.lp-footer .disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  max-width: 800px;
  margin: 0 auto 1rem;
  line-height: 1.6;
}

.lp-footer .legal-links a {
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
  text-decoration: none;
  margin: 0 0.75rem;
}

/* ===================== UTILITIES ===================== */
.text-teal { color: var(--teal); }
.text-navy { color: var(--navy); }
.text-slate { color: var(--slate); }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }

/* ===================== RESPONSIVE ===================== */
/* ===================== RESPONSIVE — TABLET (≤1024px) ===================== */
@media (max-width: 1024px) {
  .values-grid          { grid-template-columns: repeat(2, 1fr); }
  .footer-grid          { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .services-grid        { grid-template-columns: 1fr 1fr; }
  .blog-grid            { grid-template-columns: repeat(2, 1fr); }
  .contact-grid         { gap: 2.5rem; }
  .stat-grid            { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .steps-grid           { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ===================== RESPONSIVE — MOBILE (≤768px) ===================== */
@media (max-width: 768px) {

  /* --- Layout --- */
  section { padding: 44px 0; }
  .container { padding: 0 1.1rem; }

  /* --- Grids → single column --- */
  .two-col,
  .services-grid,
  .team-grid,
  .contact-grid,
  .hotspot-grid,
  .testimonial-grid,
  .blog-grid,
  .lp-hero-grid         { grid-template-columns: 1fr; }

  .snapshot-grid        { grid-template-columns: 1fr 1fr; gap: 0.85rem; }
  .options-grid         { grid-template-columns: 1fr; }
  .wyg-grid             { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .values-grid          { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .footer-grid          { grid-template-columns: 1fr; gap: 2rem; }

  /* --- Hero --- */
  .hero                 { padding: 60px 0 50px; }
  .hero h1              { font-size: clamp(1.85rem, 6vw, 2.6rem); }
  .hero-sub             { font-size: 1rem; }
  .hero-eyebrow         { font-size: 0.75rem; padding: 0.35rem 0.8rem; }
  .hero-buttons         { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn    { width: 100%; justify-content: center; }
  .hero-microcopy       { gap: 0.85rem; font-size: 0.82rem; }

  /* --- Trust strip --- */
  .trust-items          { gap: 0.85rem 1.5rem; justify-content: flex-start; }
  .trust-items li       { font-size: 0.85rem; }

  /* --- Stats --- */
  .stat-grid            { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .stat-number          { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .stat-label           { font-size: 0.8rem; max-width: 100px; }

  /* --- Section headings --- */
  .section-heading p    { font-size: 0.97rem; }
  h2                    { font-size: clamp(1.4rem, 5vw, 2rem); }

  /* --- Steps --- */
  .steps-grid           { grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2rem; }
  .step-card            { padding: 1.5rem; }

  /* --- Services --- */
  .service-card         { padding: 1.5rem; }
  .services-grid        { gap: 1.25rem; margin-top: 2rem; }

  /* --- Hotspots --- */
  .hotspot-grid         { gap: 1.25rem; margin-top: 2rem; }

  /* --- About values --- */
  .value-tile           { padding: 1.25rem; }
  .value-tile .value-icon { width: 48px; height: 48px; }
  .value-tile .value-icon i { font-size: 1.2rem; }
  .partner-note         { flex-direction: column; gap: 0.75rem; text-align: center; }

  /* --- Testimonials --- */
  .testimonial-grid     { gap: 1.25rem; margin-top: 2rem; }
  .testimonial-card     { padding: 1.5rem; }

  /* --- Blog --- */
  .blog-filters         { gap: 0.5rem; }
  .filter-btn           { font-size: 0.82rem; padding: 0.45rem 0.9rem; }
  .blog-grid            { gap: 1.1rem; margin-top: 0; }
  .blog-card            { padding: 1.25rem; }

  /* --- FAQ --- */
  .faq-question         { font-size: 0.92rem; padding: 1rem 1.1rem; }
  .faq-answer           { font-size: 0.9rem; padding: 0 1.1rem 1rem; padding-top: 0.85rem; }

  /* --- Contact section --- */
  .contact              { padding: 48px 0; }
  .contact-grid         { gap: 2rem; }
  .contact-left h2      { font-size: clamp(1.4rem, 5vw, 2rem); }
  .contact-left p       { font-size: 0.93rem; margin-bottom: 1.25rem; }
  .contact-steps        { gap: 0.75rem; }
  .contact-steps li     { font-size: 0.88rem; }

  /* --- Assessment form --- */
  .assessment-form      { padding: 1.35rem; border-radius: 12px; }
  .assessment-form h3   { font-size: 1.05rem; margin-bottom: 1rem; }
  .form-name-row        { grid-template-columns: 1fr !important; }
  .form-group           { margin-bottom: 0.85rem; }
  .form-control         { padding: 0.65rem 0.85rem; font-size: 0.9rem; }
  .form-submit          { padding: 0.9rem; font-size: 0.97rem; min-height: 48px; }
  .form-checkbox        { font-size: 0.8rem; }

  /* --- Footer --- */
  .site-footer          { padding: 40px 0 0; }
  .footer-grid          { gap: 1.5rem; padding-bottom: 2rem; }
  .footer-desc          { max-width: 100%; }
  .footer-legal         { flex-direction: column; align-items: flex-start; gap: 0.65rem; }
  .footer-legal-links   { flex-wrap: wrap; gap: 0.65rem; }
  .footer-col h5        { margin-bottom: 0.75rem; }

  /* --- Landing pages --- */
  .lp-hero              { padding: 44px 0; }
  .lp-form-box          { margin-top: 1.5rem; padding: 1.5rem; }
  .lp-hero-content h1   { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .snapshot-stat        { padding: 1rem; }
  .options-grid         { gap: 1rem; }
  .wyg-grid             { gap: 0.75rem; }

  /* --- Sticky CTA --- */
  .sticky-mobile-cta    { display: block; }
  body                  { padding-bottom: 60px; }
}

/* ===================== RESPONSIVE — SMALL MOBILE (≤480px) ===================== */
@media (max-width: 480px) {

  /* --- Layout --- */
  section               { padding: 36px 0; }
  .container            { padding: 0 1rem; }

  /* --- Hero --- */
  .hero                 { padding: 48px 0 40px; }
  .hero h1              { font-size: clamp(1.65rem, 7vw, 2rem); }
  .hero-eyebrow         { font-size: 0.7rem; }

  /* --- Stats --- */
  .stat-grid            { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stat-number          { font-size: clamp(1.4rem, 6vw, 1.8rem); }
  .stat-item            { min-width: 130px; }

  /* --- Values --- */
  .values-grid          { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .value-tile           { padding: 1rem; }

  /* --- Snapshots & grids --- */
  .snapshot-grid        { grid-template-columns: 1fr; gap: 0.75rem; }
  .wyg-grid             { grid-template-columns: 1fr 1fr; }

  /* --- Form name row --- */
  .assessment-form > form > div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* --- Blog --- */
  .blog-grid            { grid-template-columns: 1fr; }

  /* --- Footer --- */
  .footer-grid          { grid-template-columns: 1fr; }
  .footer-bottom        { padding: 1rem 0; }
  .footer-copyright     { font-size: 0.75rem; }
}
