/* ============================================
   [COMPANY NAME] - B2B Lead Generation Website
   Color Palette: Navy + White + Burnt Orange
   ============================================ */

/* --- CSS Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #1E3A5F;
  --navy-dark: #152C4A;
  --navy-light: #2A4F7A;
  --orange: #E97421;
  --orange-hover: #D4681D;
  --orange-light: #FFF3EB;
  --charcoal: #1F2937;
  --gray-700: #374151;
  --gray-600: #4B5563;
  --gray-500: #6B7280;
  --gray-400: #9CA3AF;
  --gray-300: #D1D5DB;
  --gray-200: #E5E7EB;
  --gray-100: #F3F4F6;
  --gray-50: #F9FAFB;
  --white: #FFFFFF;
  --red: #DC2626;
  --green: #059669;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.04);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: 0.2s ease;
}

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

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: 2.75rem; }
h2 { font-size: 2rem; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.125rem; margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; color: var(--gray-700); }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.625rem; }
  h3 { font-size: 1.25rem; }
}

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

.section {
  padding: 5rem 0;
}
.section--gray { background: var(--gray-50); }
.section--navy {
  background: var(--navy);
  color: var(--white);
}
.section--navy h2,
.section--navy h3,
.section--navy h4 { color: var(--white); }
.section--navy p { color: rgba(255,255,255,0.85); }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.section-header p {
  font-size: 1.125rem;
  color: var(--gray-600);
}
.section--navy .section-header p { color: rgba(255,255,255,0.8); }

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

@media (max-width: 992px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }
}

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
}
.btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn--primary:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--secondary:hover {
  background: var(--navy);
  color: var(--white);
}
.btn--white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--gray-100);
  border-color: var(--gray-100);
}
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline-white:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}
.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

/* --- Header / Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.header.scrolled {
  box-shadow: var(--shadow-md);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.header__logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.header__logo span { color: var(--orange); }

.header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.header__nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: color var(--transition);
  position: relative;
}
.header__nav a:hover,
.header__nav a.active {
  color: var(--navy);
}
.header__nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
}
.header__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header__phone {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
}
.header__phone:hover { color: var(--orange); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all 0.3s ease;
  border-radius: 1px;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 992px) {
  .hamburger { display: flex; }
  .header__nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 1.5rem;
    gap: 0;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
  }
  .header__nav.open { display: flex; }
  .header__nav a {
    padding: 0.75rem 0;
    width: 100%;
    border-bottom: 1px solid var(--gray-100);
  }
  .header__nav a.active::after { display: none; }
  .header__cta .btn { display: none; }
  .header__cta .header__phone { display: none; }
  .mobile-cta {
    display: block !important;
    margin-top: 1rem;
  }
}
@media (min-width: 993px) {
  .mobile-cta { display: none !important; }
}

/* --- Hero --- */
.hero {
  padding: 8rem 0 5rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(233,116,33,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero__content {
  max-width: 720px;
  position: relative;
  z-index: 1;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: 3rem;
  letter-spacing: -0.02em;
}
.hero h1 span { color: var(--orange); }
.hero p {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  max-width: 600px;
  line-height: 1.7;
}
.hero__btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Trust Strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.8);
}
.trust-strip__icon {
  width: 20px;
  height: 20px;
  fill: var(--orange);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .hero { padding: 7rem 0 3.5rem; }
  .hero h1 { font-size: 2.125rem; }
  .hero p { font-size: 1.0625rem; }
  .trust-strip { gap: 1.25rem; }
}

/* --- Niche Cards --- */
.niche-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.niche-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--orange);
}
.niche-card__icon {
  width: 56px;
  height: 56px;
  background: var(--orange-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.niche-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.niche-card h3 { color: var(--navy); }
.niche-card p { flex-grow: 1; }
.niche-card .btn { margin-top: 1rem; align-self: flex-start; }

/* --- Pain Points --- */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.pain-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}
.pain-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #FEF2F2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.25rem;
}
.pain-item h4 { color: var(--charcoal); margin-bottom: 0.25rem; }
.pain-item p { font-size: 0.9375rem; margin-bottom: 0; color: var(--gray-600); }

@media (max-width: 768px) {
  .pain-grid { grid-template-columns: 1fr; }
}

/* --- Deliverables / What You Get --- */
.deliverable-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.deliverable-item:last-child { border-bottom: none; }
.deliverable-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: rgba(233,116,33,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.deliverable-check svg {
  width: 14px;
  height: 14px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 3;
}
.deliverable-item h4 {
  margin-bottom: 0.25rem;
}
.deliverable-item p {
  font-size: 0.9375rem;
  margin-bottom: 0;
}

/* --- Steps / How It Works --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--gray-300);
  z-index: 0;
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step__number {
  width: 64px;
  height: 64px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.25rem;
  border: 4px solid var(--white);
  box-shadow: var(--shadow);
}
.step h4 { color: var(--navy); margin-bottom: 0.5rem; }
.step p { font-size: 0.9375rem; color: var(--gray-600); margin-bottom: 0; }

@media (max-width: 992px) {
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
}
@media (max-width: 576px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* --- Testimonials --- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}
.testimonial__stars {
  color: var(--orange);
  font-size: 1.125rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}
.testimonial__text {
  font-size: 1rem;
  font-style: italic;
  color: var(--gray-700);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}
.testimonial__name {
  font-weight: 600;
  color: var(--charcoal);
  font-size: 0.9375rem;
}
.testimonial__role {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

@media (max-width: 992px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* --- Pricing Cards --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--gray-200);
  overflow: hidden;
  transition: all var(--transition);
}
.pricing-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}
.pricing-card--featured {
  border-color: var(--orange);
  position: relative;
}
.pricing-card--featured .pricing-card__badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--orange);
  color: var(--white);
  text-align: center;
  padding: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pricing-card__body {
  padding: 2.5rem 2rem;
}
.pricing-card--featured .pricing-card__body {
  padding-top: 3.5rem;
}
.pricing-card__name {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--orange);
  margin-bottom: 0.5rem;
}
.pricing-card__title {
  font-size: 1.375rem;
  color: var(--navy);
  margin-bottom: 1rem;
}
.pricing-card__price {
  margin-bottom: 0.25rem;
}
.pricing-card__price .amount {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--navy);
}
.pricing-card__price .period {
  font-size: 1rem;
  color: var(--gray-500);
}
.pricing-card__setup {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}
.pricing-card__desc {
  font-size: 0.9375rem;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-200);
}
.pricing-card__features {
  margin-bottom: 2rem;
}
.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  color: var(--gray-700);
}
.pricing-card__features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-card .btn { width: 100%; }

@media (max-width: 992px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* --- FAQ Accordion --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-item:first-child { border-top: 1px solid var(--gray-200); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--charcoal);
  font-family: inherit;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--navy); }
.faq-question__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.faq-question__icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--gray-600);
  fill: none;
  stroke-width: 2;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-question__icon {
  background: var(--orange);
}
.faq-item.open .faq-question__icon svg {
  stroke: var(--white);
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer__inner {
  padding: 0 0 1.25rem;
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 5rem 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(233,116,33,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; font-size: 2.25rem; }
.cta-banner p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 2rem;
}
.cta-banner__btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Contact Form --- */
.form-section {
  max-width: 640px;
  margin: 0 auto;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.375rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--charcoal);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(30,58,95,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 576px) {
  .form-row { grid-template-columns: 1fr; }
}

/* --- Footer --- */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer__brand span { color: var(--orange); }
.footer__desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: var(--white);
}
.footer h4 {
  color: var(--white);
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.footer__links li { margin-bottom: 0.625rem; }
.footer__links a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--orange); }
.footer__contact li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
}
.footer__contact svg {
  width: 16px;
  height: 16px;
  stroke: var(--orange);
  fill: none;
  flex-shrink: 0;
}
.footer__bottom {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}

@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* --- Page Hero (interior pages) --- */
.page-hero {
  padding: 8rem 0 3.5rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
}
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.85);
  max-width: 640px;
}
.page-hero .breadcrumb {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.7); }
.page-hero .breadcrumb a:hover { color: var(--white); }

/* --- Feature List (landing pages) --- */
.feature-list {
  max-width: 800px;
}
.feature-list__item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--gray-200);
}
.feature-list__item:last-child { border-bottom: none; }
.feature-list__num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--orange-light);
  color: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9375rem;
}
.feature-list__item h4 { color: var(--navy); margin-bottom: 0.25rem; }
.feature-list__item p { margin-bottom: 0; font-size: 0.9375rem; color: var(--gray-600); }

/* --- Stats Bar --- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat__number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat__label {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.8);
}
.section--gray .stat__label { color: var(--gray-600); }
.section--gray .stat__number { color: var(--navy); }

@media (max-width: 768px) {
  .stats-bar { grid-template-columns: 1fr 1fr; }
}

/* --- About page specifics --- */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-content--reverse { direction: rtl; }
.about-content--reverse > * { direction: ltr; }
.about-image {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-200);
}
.about-image__placeholder {
  text-align: center;
  color: var(--gray-400);
}
.about-image__placeholder svg {
  width: 64px;
  height: 64px;
  stroke: var(--gray-300);
  fill: none;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .about-content { grid-template-columns: 1fr; gap: 2rem; }
  .about-content--reverse { direction: ltr; }
}

/* --- Value Cards (landing pages) --- */
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  text-align: center;
}
.value-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: var(--orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
}
.value-card h4 { color: var(--navy); }
.value-card p { font-size: 0.9375rem; margin-bottom: 0; }

/* --- ROI Box --- */
.roi-box {
  background: var(--orange-light);
  border: 2px solid var(--orange);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  max-width: 700px;
  margin: 3rem auto 0;
}
.roi-box h3 { color: var(--orange); margin-bottom: 1rem; }
.roi-box p { font-size: 1.0625rem; color: var(--charcoal); margin-bottom: 0; }
.roi-box .highlight {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  display: block;
  margin-top: 0.5rem;
}

/* --- Scroll Top --- */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  transition: all var(--transition);
}
.scroll-top:hover { background: var(--orange); }
.scroll-top.visible { display: flex; }
.scroll-top svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
