/* ============================================================
   TRUELINE CONSULTING GROUP — Global Styles
   Domain: truelineconsultinggroup.com
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Barlow:wght@400;500;600&display=swap');

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

:root {
  --navy: #0D1B2A;
  --navy-dark: #060F18;
  --navy-mid: #0A1520;
  --blue: #1E90FF;
  --blue-dark: #1565C0;
  --white: #ffffff;
  --gray-bg: #f8fafc;
  --gray-border: #e2e8f0;
  --gray-text: #64748b;
  --body-text: #374151;
  --dark-text: #0D1B2A;
  --red: #ef4444;
  --red-bg: #fef2f2;
  --red-text: #7f1d1d;
  --blue-bg: #eff6ff;
  --blue-text: #1e3a5f;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  color: var(--dark-text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', sans-serif;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

a { text-decoration: none; }
img { max-width: 100%; height: auto; }

/* ============================================================
   TOP CONTACT BAR
   ============================================================ */
.top-bar {
  background: var(--blue);
  padding: 10px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-left {
  font-size: 12px;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.3px;
}
.top-bar-right {
  display: flex;
  gap: 24px;
  align-items: center;
}
.top-bar-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: white;
  font-size: 12px;
  font-weight: 500;
}
.top-bar-link.bold { font-weight: 600; }
.top-bar-divider {
  width: 0.5px;
  height: 12px;
  background: rgba(255,255,255,0.4);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  background: var(--navy);
  border-bottom: 0.5px solid rgba(255,255,255,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 44px;
  width: auto;
}
.nav-logo-fallback {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--blue);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-logo-text .name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  color: white;
  line-height: 1;
}
.nav-logo-text .name span { color: var(--blue); }
.nav-logo-text .sub {
  font-size: 8px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.45);
  margin-top: 1px;
  display: block;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-link {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 500;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s;
}
.nav-link:hover { color: white; }
.nav-link.active {
  color: white;
  font-weight: 600;
  border-bottom: 2px solid var(--blue);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--blue);
  color: white;
  padding: 9px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--blue-dark); }

/* MOBILE NAV */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.2s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navy);
  border-top: 0.5px solid rgba(255,255,255,0.1);
  padding: 16px 24px 24px;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
}
.mobile-menu a.active { color: var(--blue); }
.mobile-menu .mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--blue);
  color: white;
  padding: 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  margin-top: 12px;
  border-bottom: none;
}

/* ============================================================
   LOGO BAR — white section, light logo, perfectly clean
   ============================================================ */
.logo-bar {
  background: #ffffff;
  padding: 16px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 3px solid var(--navy);
}
.logo-bar img {
  max-width: 280px;
  width: auto;
  height: 56px;
  display: block;
  object-fit: contain;
}
.logo-bar-fallback {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-bar-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-bg);
  border: 2px solid var(--blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-bar-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--navy);
  line-height: 1;
}
.logo-bar-name span { color: var(--blue); }
.logo-bar-sub {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gray-text);
  margin-top: 3px;
}

/* Remove old hero logo styles */
.hero-logo-wrap { display: none; }
.logo-header { display: none; }
.logo-header-fallback {
  display: flex;
  align-items: center;
  gap: 16px;
}
.logo-header-fallback .icon {
  width: 56px;
  height: 56px;
  background: var(--blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-header-fallback .text-wrap .name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 2px;
  color: white;
  line-height: 1;
}
.logo-header-fallback .text-wrap .name span { color: var(--blue); }
.logo-header-fallback .text-wrap .tagline {
  font-size: 12px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
  display: block;
}

/* ============================================================
   SECTION BADGES
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30,144,255,0.1);
  border: 0.5px solid rgba(30,144,255,0.3);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  color: var(--blue);
  letter-spacing: 1px;
  font-weight: 500;
  margin-bottom: 20px;
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
}
.badge-light {
  background: rgba(30,144,255,0.08);
  border: 0.5px solid rgba(30,144,255,0.2);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  font-family: 'Barlow', sans-serif;
  border: none;
  text-decoration: none;
}
.btn-primary {
  background: var(--blue);
  color: white;
}
.btn-primary:hover { background: var(--blue-dark); }
.btn-outline-white {
  background: transparent;
  color: white;
  border: 0.5px solid rgba(255,255,255,0.3);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.05); }
.btn-outline-dark {
  background: transparent;
  color: var(--dark-text);
  border: 1.5px solid var(--dark-text);
}
.btn-white {
  background: white;
  color: var(--blue);
}
.btn-white:hover { background: #f0f7ff; }
.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  margin-top: 60px;
  padding-top: 40px;
  border-top: 0.5px solid rgba(255,255,255,0.1);
}
.stat {
  padding: 0 24px;
  border-right: 0.5px solid rgba(255,255,255,0.1);
}
.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: none; }
.stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
  letter-spacing: 0.5px;
  font-weight: 500;
}

/* ============================================================
   PROBLEM CARDS (9 grid)
   ============================================================ */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.problem-card {
  background: var(--gray-bg);
  border: 0.5px solid var(--gray-border);
  border-radius: 12px;
  padding: 28px;
}
.problem-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 8px;
}
.problem-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 8px;
  font-family: 'Barlow', sans-serif;
}
.problem-card p {
  font-size: 13px;
  color: var(--gray-text);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   SERVICE CARDS (2-col grid)
   ============================================================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}
.service-card {
  background: white;
  border: 0.5px solid var(--gray-border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.service-icon {
  width: 40px;
  height: 40px;
  background: var(--blue-bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 4px;
  font-family: 'Barlow', sans-serif;
}
.service-card p {
  font-size: 13px;
  color: var(--gray-text);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   PRICING CARDS
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}
.pricing-card {
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pricing-card-dark {
  background: white;
  border: 0.5px solid var(--gray-border);
}
.pricing-card-featured {
  background: var(--blue);
}
.pricing-header {
  padding: 28px;
}
.pricing-card-dark .pricing-header { background: var(--navy); }
.pricing-card-featured .pricing-header { background: var(--blue); }
.pricing-tag {
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 10px;
}
.pricing-card-dark .pricing-tag { color: var(--blue); }
.pricing-card-featured .pricing-tag { color: rgba(255,255,255,0.8); }
.pricing-desc {
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.pricing-card-dark .pricing-desc { color: rgba(255,255,255,0.55); }
.pricing-card-featured .pricing-desc { color: rgba(255,255,255,0.7); }
.pricing-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-build-label {
  font-size: 13px;
  margin-bottom: 12px;
}
.pricing-card-dark .pricing-build-label { color: rgba(255,255,255,0.45); }
.pricing-card-featured .pricing-build-label { color: rgba(255,255,255,0.7); }
.pricing-monthly {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 30px;
  font-weight: 700;
}
.pricing-card-dark .pricing-monthly { color: var(--blue); }
.pricing-card-featured .pricing-monthly { color: white; }
.pricing-monthly span {
  font-size: 14px;
  font-weight: 400;
  font-family: 'Barlow', sans-serif;
}
.pricing-card-dark .pricing-monthly span { color: rgba(255,255,255,0.45); }
.pricing-card-featured .pricing-monthly span { color: rgba(255,255,255,0.7); }
.pricing-body {
  padding: 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pricing-card-featured .pricing-body { background: rgba(0,0,0,0.1); }
.pricing-includes-label {
  font-size: 11px;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 14px;
}
.pricing-card-dark .pricing-includes-label { color: #94a3b8; }
.pricing-card-featured .pricing-includes-label { color: rgba(255,255,255,0.6); }
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pricing-features li {
  display: flex;
  gap: 10px;
  font-size: 13px;
}
.pricing-card-dark .pricing-features li { color: var(--body-text); }
.pricing-card-featured .pricing-features li { color: white; }
.pricing-features li::before {
  content: '✓';
  font-weight: 700;
  flex-shrink: 0;
  color: var(--blue);
}
.pricing-card-featured .pricing-features li::before { color: white; }
.pricing-btn {
  display: block;
  text-align: center;
  margin-top: 24px;
  padding: 13px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  font-family: 'Barlow', sans-serif;
}
.pricing-card-dark .pricing-btn {
  background: transparent;
  color: var(--dark-text);
  border: 1.5px solid var(--dark-text);
}
.pricing-card-dark .pricing-btn:hover { background: var(--navy); color: white; }
.pricing-card-featured .pricing-btn {
  background: white;
  color: var(--blue);
}
.pricing-card-featured .pricing-btn:hover { background: #f0f7ff; }
.popular-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  color: white;
  letter-spacing: 0.5px;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.step-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: 12px;
  border: 0.5px solid rgba(255,255,255,0.08);
}
.step-card-mid {
  background: rgba(30,144,255,0.06);
  border-color: rgba(30,144,255,0.2);
}
.step-card-dim { background: rgba(255,255,255,0.03); }
.step-number {
  width: 56px;
  height: 56px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: white;
}
.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
  font-family: 'Barlow', sans-serif;
}
.step-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: white;
  border: 0.5px solid var(--gray-border);
  border-radius: 12px;
  padding: 24px;
}
.faq-item h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 8px;
  font-family: 'Barlow', sans-serif;
}
.faq-item p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.story-section {
  max-width: 760px;
  margin: 0 auto;
}
.story-section p {
  font-size: 16px;
  color: #4a5568;
  line-height: 1.9;
  margin-bottom: 20px;
}
.pull-quote {
  background: var(--navy);
  border-radius: 12px;
  padding: 28px 32px;
  margin: 32px 0;
  position: relative;
}
.pull-quote-mark {
  position: absolute;
  top: -14px;
  left: 32px;
  font-size: 48px;
  color: var(--blue);
  font-weight: 900;
  line-height: 1;
  font-family: 'Barlow Condensed', sans-serif;
}
.pull-quote p {
  font-size: 18px;
  color: white;
  line-height: 1.7;
  margin: 0;
  font-style: italic;
  padding-top: 12px;
  color: white;
}
.pull-quote-attr {
  margin-top: 16px;
  font-size: 13px;
  color: var(--blue);
  font-weight: 600;
}

/* ============================================================
   ABOUT PROFILE CARD
   ============================================================ */
.profile-card {
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 36px;
  text-align: center;
}
.profile-avatar {
  width: 88px;
  height: 88px;
  background: var(--blue);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: white;
}
.profile-name {
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.5px;
}
.profile-title {
  font-size: 13px;
  color: var(--blue);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.profile-divider {
  height: 0.5px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 20px;
}
.profile-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  margin-bottom: 24px;
}
.profile-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.profile-detail-dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   VALUES GRID
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
}
.value-card {
  background: rgba(255,255,255,0.03);
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  gap: 16px;
}
.value-icon {
  width: 40px;
  height: 40px;
  background: rgba(30,144,255,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.value-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
  font-family: 'Barlow', sans-serif;
}
.value-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   DIFFERENTIATORS
   ============================================================ */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.diff-card {
  background: white;
  border: 0.5px solid var(--gray-border);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
}
.diff-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.diff-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 8px;
  font-family: 'Barlow', sans-serif;
}
.diff-card p {
  font-size: 13px;
  color: var(--gray-text);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   SERVICE DETAIL CARDS (services page)
   ============================================================ */
.service-detail-card {
  background: white;
  border: 0.5px solid var(--gray-border);
  border-radius: 12px;
  padding: 36px;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.service-detail-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.service-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-detail-header h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-text);
  font-family: 'Barlow', sans-serif;
}
.problem-box {
  background: var(--red-bg);
  border-left: 3px solid var(--red);
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 16px;
}
.problem-box .box-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.problem-box p {
  font-size: 13px;
  color: var(--red-text);
  line-height: 1.6;
  margin: 0;
}
.solution-box {
  background: var(--blue-bg);
  border-left: 3px solid var(--blue);
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
}
.solution-box .box-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.solution-box p {
  font-size: 13px;
  color: var(--blue-text);
  line-height: 1.6;
  margin: 0;
}
.what-you-get {
  background: var(--navy);
  border-radius: 10px;
  padding: 24px;
}
.what-you-get .wyg-label {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
  margin-bottom: 16px;
  font-weight: 600;
}
.wyg-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wyg-list li {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
}
.wyg-list li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}
.wyg-bottom {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 0.5px solid rgba(255,255,255,0.1);
  font-size: 12px;
  color: var(--blue);
  font-weight: 600;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 80px 40px; }
.section-sm { padding: 60px 40px; }
.section-navy { background: var(--navy); }
.section-navy-dark { background: var(--navy-dark); }
.section-white { background: var(--white); }
.section-gray { background: var(--gray-bg); }
.section-blue { background: var(--blue); }
.section-center { text-align: center; }
.container { max-width: 980px; margin: 0 auto; }
.container-sm { max-width: 860px; margin: 0 auto; }
.container-xs { max-width: 760px; margin: 0 auto; }

/* Section headings */
.section h1.hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.05;
  color: white;
  margin-bottom: 24px;
  max-width: 780px;
}
.section h2.section-title {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.section h2.section-title-white { color: white; }
.section h2.section-title-dark { color: var(--dark-text); }
.section p.section-sub {
  font-size: 17px;
  line-height: 1.7;
  max-width: 520px;
}
.section p.section-sub-white { color: rgba(255,255,255,0.6); }
.section p.section-sub-dark { color: var(--gray-text); }
.section-center .section-sub { margin: 0 auto; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-dark);
  padding: 48px 40px 0;
}
.footer-logo {
  margin-bottom: 16px;
}
.footer-logo img {
  height: 40px;
  width: auto;
}
.footer-logo-fallback {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo-fallback .icon {
  width: 32px;
  height: 32px;
  background: var(--blue);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo-fallback .name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color: white;
}
.footer-logo-fallback .name span { color: var(--blue); }
.footer-logo-fallback .sub {
  color: rgba(255,255,255,0.4);
  font-weight: 400;
  font-size: 12px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin-bottom: 12px;
  max-width: 280px;
}
.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
  transition: color 0.15s;
}
.footer-contact-link:hover { color: rgba(255,255,255,0.8); }
.footer-col-title {
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.3);
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links span,
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color 0.15s;
}
.footer-links a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom {
  border-top: 0.5px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom-text {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--blue);
  padding: 60px 40px;
  text-align: center;
}
.cta-section h2 {
  font-size: 38px;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.cta-section p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding: 60px 40px 50px;
  text-align: center;
}
.page-hero h1 {
  font-size: 44px;
  font-weight: 800;
  color: white;
  margin-bottom: 0;
  letter-spacing: -1px;
}

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .top-bar { padding: 8px 20px; flex-direction: column; gap: 6px; text-align: center; }
  .top-bar-right { gap: 12px; flex-wrap: wrap; justify-content: center; }

  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .logo-bar { padding: 20px; }
  .logo-bar img { max-width: 260px; max-height: 70px; }
  .logo-header { display: none; }
  .hero-logo-wrap { display: none; }

  .section { padding: 56px 20px; }
  .section-sm { padding: 48px 20px; }
  .page-hero { padding: 48px 20px 40px; }
  .page-hero h1 { font-size: 34px; }

  .section h1.hero-title { font-size: 36px; }
  .section h2.section-title { font-size: 28px; }
  .section p.section-sub { font-size: 15px; }

  .stats-bar { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .stat { border-right: none; padding: 0; }
  .stat:nth-child(odd) { border-right: 0.5px solid rgba(255,255,255,0.1); padding-right: 16px; }
  .stat:nth-child(even) { padding-left: 16px; }

  .problem-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }

  .service-detail-card { grid-template-columns: 1fr; gap: 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer { padding: 40px 20px 0; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .btn-group { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }

  .cta-section { padding: 48px 20px; }
  .cta-section h2 { font-size: 30px; }

  .pricing-card { position: static; }
  .popular-badge { top: 12px; right: 12px; }
}

@media (max-width: 480px) {
  .section h1.hero-title { font-size: 30px; }
  .stats-bar { grid-template-columns: repeat(2,1fr); }
}
