/* ============================================================
   Commercial-Solar.org — Global Stylesheet
   ============================================================ */

/* TOKENS */
:root {
  --navy: #0d1b2e;
  --navy-mid: #1a2e47;
  --navy-lt: #243d5c;
  --orange: #f5a623;
  --orange-dk: #d4891a;
  --white: #fff;
  --slate: #e8edf3;
  --slate-mid: #c8d4e0;
  --gray4: #7d90a3;
  --gray6: #4a5f74;
  --gray8: #1e3148;
  --max-w: 1160px;
  --r: 4px;
  --rlg: 8px;
  --nav-h: 72px;
}

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

/* BASE */
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--gray8);
  background: var(--white);
  padding-top: var(--nav-h);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* TYPOGRAPHY */
h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -.01em;
}
h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
}
h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(19px, 2.5vw, 26px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.15;
}
h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* LAYOUT */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section--dark { background: var(--navy); color: var(--white); }
.section--slate { background: var(--slate); }

/* EYEBROW */
.eyebrow {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--r);
  cursor: pointer;
  transition: all .2s;
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary { background: var(--orange); color: var(--navy); border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-dk); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(245,166,35,.3); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-lg { padding: 18px 44px; font-size: 18px; }

/* NAV */
.gnav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 2px solid var(--navy);
  height: var(--nav-h);
}
.gnav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 20px;
  height: var(--nav-h); display: flex; align-items: center; gap: 24px;
}
.gnav-logo img { height: 36px; width: auto; display: block; }
.gnav-links { display: flex; align-items: center; gap: 4px; flex: 1; }
.gnav-link {
  font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase; color: var(--gray6);
  padding: 6px 10px; border-radius: 3px; transition: color .15s;
  text-decoration: none; white-space: nowrap;
}
.gnav-link:hover, .gnav-link.active { color: var(--navy); }
.gnav-item { position: relative; }
.gnav-drop-btn {
  font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase; color: var(--gray6);
  background: none; border: none; cursor: pointer; padding: 6px 10px;
  transition: color .15s; white-space: nowrap;
}
.gnav-drop-btn:hover { color: var(--navy); }
.gnav-dropdown {
  display: none; position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--white); border: 2px solid var(--navy); border-radius: 4px;
  list-style: none; min-width: 220px; padding: 6px 0; z-index: 200;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.gnav-dropdown--wide { min-width: 200px; display: none; grid-template-columns: 1fr 1fr; width: 380px; }
.gnav-item.open .gnav-dropdown { display: block; }
.gnav-item.open .gnav-dropdown--wide { display: grid; }
.gnav-dropdown li a {
  display: block; padding: 9px 16px; font-size: 13px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
  text-transform: uppercase; letter-spacing: .04em; color: var(--navy);
  text-decoration: none; transition: background .1s;
}
.gnav-dropdown li a:hover { background: var(--slate); }
.gnav-link--all { color: var(--orange) !important; font-weight: 800 !important; }
.gnav-cta { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.gnav-phone {
  font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 800;
  color: var(--navy); text-decoration: none; letter-spacing: .03em; white-space: nowrap;
}
.gnav-btn {
  font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
  background: var(--orange); color: var(--navy);
  padding: 10px 20px; border-radius: 4px; text-decoration: none;
  transition: background .15s, transform .15s; white-space: nowrap;
}
.gnav-btn:hover { background: var(--orange-dk); transform: translateY(-1px); }
.gnav-burger {
  display: none; flex-direction: column; gap: 5px; background: none;
  border: none; cursor: pointer; padding: 8px; margin-left: 8px;
}
.gnav-burger span { display: block; width: 24px; height: 2px; background: var(--navy); transition: .2s; }
.gnav-mobile {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--white); overflow-y: auto; padding: 20px;
  flex-direction: column; gap: 4px; border-top: 2px solid var(--navy);
}
.gnav-mobile.open { display: flex; }
.gnav-mobile .gnav-link { padding: 12px 8px; border-bottom: 1px solid var(--slate); font-size: 16px; color: var(--navy); }
.gnav-mob-divider {
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; color: var(--orange);
  padding: 16px 8px 6px;
}
.gnav-mob-phone { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 800; color: var(--navy); text-decoration: none; padding: 16px 8px; }
.gnav-btn--mob { display: block; text-align: center; margin-top: 12px; padding: 16px; font-size: 16px; }

/* FOOTER */
.gfooter { background: #0d1b2e; color: rgba(255,255,255,.6); padding: 60px 0 0; }
.gf-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 20px 48px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr; gap: 40px;
}
.gf-logo { filter: invert(1); height: 32px; width: auto; display: block; margin-bottom: 14px; }
.gf-tagline { font-size: 13px; line-height: 1.65; max-width: 260px; margin-bottom: 16px; color: rgba(255,255,255,.5); }
.gf-nap { font-style: normal; font-size: 13px; line-height: 1.8; margin-bottom: 16px; }
.gf-nap strong { color: #fff; display: block; margin-bottom: 2px; }
.gf-nap a { color: rgba(255,255,255,.6); text-decoration: none; }
.gf-nap a:hover { color: #f5a623; }
.gf-social { display: flex; gap: 12px; margin-top: 4px; }
.gf-social a { color: rgba(255,255,255,.4); transition: color .15s; }
.gf-social a:hover { color: #f5a623; }
.gf-col h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: #fff; margin-bottom: 14px; }
.gf-col ul { list-style: none; }
.gf-col ul li { margin-bottom: 8px; }
.gf-col ul a { font-size: 13px; color: rgba(255,255,255,.55); text-decoration: none; transition: color .15s; }
.gf-col ul a:hover { color: #f5a623; }
.gf-cta-block { margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); }
.gf-cta-block p { font-size: 13px; margin-bottom: 12px; color: rgba(255,255,255,.6); }
.gf-btn {
  display: block; background: #f5a623; color: #0d1b2e; text-align: center;
  font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase; padding: 12px 16px; border-radius: 4px;
  text-decoration: none; margin-bottom: 10px; transition: background .15s;
}
.gf-btn:hover { background: #d4891a; }
.gf-phone { display: block; text-align: center; font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 800; color: #fff; text-decoration: none; letter-spacing: .03em; }
.gf-phone:hover { color: #f5a623; }
.gf-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  max-width: 1160px; margin: 0 auto; padding: 20px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 12px;
}
.gf-bottom-links { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.gf-bottom-links a { color: rgba(255,255,255,.35); text-decoration: none; }
.gf-bottom-links a:hover { color: #fff; }
.gf-credit { color: rgba(255,255,255,.25); font-size: 11px; }
.gf-credit a { color: rgba(255,255,255,.35); text-decoration: none; }
.gf-credit a:hover { color: #f5a623; }

/* HERO */
.hero { background: var(--navy); color: var(--white); padding: 80px 0; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--orange); }
.hero-bg { position: absolute; inset: 0; }
.hero-inner { position: relative; z-index: 1; max-width: 760px; }
.hero h1 { margin-bottom: 20px; }
.hero h1 span { color: var(--orange); }
.hero-sub { font-size: clamp(16px, 2vw, 20px); color: rgba(255,255,255,.75); max-width: 600px; margin-bottom: 32px; line-height: 1.6; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-phone { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 800; color: var(--orange); letter-spacing: .02em; }

/* BREADCRUMB */
.breadcrumb { padding: 12px 0; font-size: 13px; color: var(--gray4); display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.breadcrumb a { color: var(--gray4); }
.breadcrumb a:hover { color: var(--orange); }

/* TWO-COL LAYOUT */
.two-col { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; }

/* SIDEBAR */
.sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-card { background: var(--navy); color: var(--white); border-radius: var(--rlg); padding: 24px; }
.sidebar-card h4 { color: var(--orange); margin-bottom: 12px; font-size: 16px; }
.sidebar-card p { font-size: 14px; color: rgba(255,255,255,.7); margin-bottom: 14px; }

/* CHECKLIST */
.checks { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.checks li { display: flex; align-items: flex-start; gap: 10px; font-size: 16px; }
.checks li::before { content: '✓'; font-weight: 900; color: var(--orange); font-size: 17px; flex-shrink: 0; margin-top: 2px; }

/* FAQ ACCORDION */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--slate-mid); }
.faq-q {
  font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700;
  text-transform: uppercase; color: var(--navy); padding: 18px 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q::after { content: '+'; font-size: 24px; color: var(--orange); flex-shrink: 0; transition: .2s; }
.faq-item.open .faq-q::after { content: '-'; }
.faq-a { display: none; padding: 0 0 18px; font-size: 15px; color: var(--gray6); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* CASE STUDY */
.case-study { background: var(--navy); color: var(--white); border-radius: var(--rlg); padding: 36px; margin-bottom: 32px; }
.cs-label { display: inline-block; font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); border: 1px solid var(--orange); padding: 4px 10px; border-radius: 2px; margin-bottom: 14px; }
.cs-title { font-size: 22px; color: var(--white); margin-bottom: 20px; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; text-transform: uppercase; }
.cs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.cs-col-label { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; }
.cs-col p { font-size: 14px; color: rgba(255,255,255,.75); line-height: 1.6; margin: 0; }
.cs-disclaimer { font-size: 12px; color: rgba(255,255,255,.4); margin-top: 20px; font-style: italic; }

/* MAP */
.map-section { padding: 56px 0; background: var(--slate); }
.map-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.map-embed iframe { width: 100%; height: 300px; border: none; border-radius: var(--rlg); display: block; }
.map-nap address { font-style: normal; font-size: 15px; line-height: 1.9; color: var(--gray6); }
.map-nap a { color: var(--orange); font-weight: 700; }

/* CTA STRIP */
.cta-strip { padding: 80px 0; background: var(--navy); text-align: center; position: relative; overflow: hidden; }
.cta-strip::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(245,166,35,.1) 0%, transparent 70%); pointer-events: none; }
.cta-strip h2 { color: var(--white); margin-bottom: 14px; max-width: 640px; margin-left: auto; margin-right: auto; }
.cta-strip p { color: rgba(255,255,255,.65); max-width: 500px; margin: 0 auto 32px; font-size: 17px; }
.cta-strip-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* SURVEY MODAL */
.survey-modal { display: none; position: fixed; inset: 0; z-index: 2000; align-items: center; justify-content: center; }
.survey-modal.open { display: flex; }
.survey-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.7); cursor: pointer; }
.survey-box { position: relative; background: var(--white); border-radius: var(--rlg); width: min(680px,95vw); max-height: 90vh; overflow: auto; padding: 32px; z-index: 1; }
.survey-close { position: absolute; top: 12px; right: 16px; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--gray6); line-height: 1; }
.survey-box h3 { font-size: 24px; margin-bottom: 18px; color: var(--navy); }

/* TABLES */
table { width: 100%; border-collapse: collapse; }
thead th { background: var(--navy); color: var(--white); font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 12px 16px; text-align: left; }
tbody tr { border-bottom: 1px solid var(--slate-mid); }
tbody tr:hover { background: var(--slate); }
tbody td { padding: 12px 16px; font-size: 15px; color: var(--gray8); }
.table-wrap { overflow-x: auto; border-radius: var(--rlg); border: 2px solid var(--slate-mid); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .two-col, .map-grid, .cs-grid { grid-template-columns: 1fr; }
  .gnav-links, .gnav-cta .gnav-phone, .gnav-cta .gnav-btn { display: none; }
  .gnav-burger { display: flex; }
  .gnav-cta { margin-left: auto; }
  .gf-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .gf-brand { grid-column: 1 / -1; }
}
@media (min-width: 901px) {
  .gnav-mobile { display: none !important; }
}
@media (max-width: 600px) {
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .gf-inner { grid-template-columns: 1fr; }
  .gf-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   HOMEPAGE-SPECIFIC COMPONENTS
   ============================================================ */

/* URGENCY BAR */
.urgency-bar { background: var(--orange); padding: 12px 24px; text-align: center; }
.urgency-bar p { font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 700; letter-spacing: .04em; color: var(--navy); margin: 0; }
.urgency-bar a { font-weight: 900; text-decoration: underline; color: var(--navy); }

/* HERO (homepage variant) */
.hero-content { position: relative; z-index: 2; max-width: 720px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; margin-bottom: 52px; }
.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-stat { border-left: 3px solid var(--orange); padding-left: 14px; }
.hero-stat-num { font-family: 'Barlow Condensed', sans-serif; font-size: 34px; font-weight: 900; line-height: 1; color: var(--white); }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; margin-top: 3px; }

/* STATES PILLS */
.states-section { padding: 48px 0; border-bottom: 2px solid var(--slate-mid); }
.states-label { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gray4); text-align: center; margin-bottom: 20px; }
.states-grid { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.state-pill { display: inline-block; padding: 7px 14px; background: var(--slate); border: 1px solid var(--slate-mid); border-radius: 100px; font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--gray6); transition: all .15s; }
.state-pill:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.state-pill.featured { background: var(--navy); color: var(--orange); border-color: var(--navy); }

/* VALUE PROPS */
.props-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2px; background: var(--navy); border: 2px solid var(--navy); border-radius: var(--rlg); overflow: hidden; margin-top: 48px; }
.prop-card { background: var(--white); padding: 36px 28px; transition: background .15s; }
.prop-card:hover { background: var(--slate); }
.prop-icon { width: 44px; height: 44px; background: var(--navy-mid); border-radius: var(--r); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; font-size: 20px; }
.prop-card h3 { font-size: 20px; margin-bottom: 10px; }
.prop-card p { font-size: 15px; color: var(--gray6); }

/* FINANCIAL MODEL */
.model-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.model-content h2 { margin-bottom: 18px; }
.model-content p { color: rgba(255,255,255,.75); margin-bottom: 18px; }
.model-visual { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--rlg); padding: 32px; }
.model-visual-label { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 20px; }
.credit-item { display: flex; align-items: center; gap: 16px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.credit-item:last-child { border-bottom: none; padding-top: 18px; }
.credit-pct { font-family: 'Barlow Condensed', sans-serif; font-size: 38px; font-weight: 900; color: var(--orange); line-height: 1; min-width: 82px; }
.credit-pct.total { color: var(--white); }
.credit-info h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 2px; }
.credit-info p { font-size: 12px; color: rgba(255,255,255,.5); margin: 0; }
.credit-info h4.highlight { color: var(--orange); }

/* SAVINGS TABLE */
.savings-25yr { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 900; color: var(--navy); }
.row-hl td { background: rgba(13,27,46,.05); font-weight: 700; }
.table-note { font-size: 12px; color: var(--gray4); margin-top: 10px; }

/* CASE CARDS */
.cases-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: 22px; }
.case-card { border: 2px solid var(--slate-mid); border-radius: var(--rlg); overflow: hidden; transition: transform .2s, box-shadow .2s, border-color .2s; display: block; }
.case-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.09); border-color: var(--orange); }
.case-img { width: 100%; height: 195px; object-fit: cover; background: var(--slate); }
.case-body { padding: 22px; }
.case-savings { display: inline-block; font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 900; color: var(--orange); background: var(--navy); padding: 4px 10px; border-radius: var(--r); margin-bottom: 10px; }
.case-body h3 { font-size: 17px; margin-bottom: 10px; color: var(--navy); }
.case-stats { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.case-stats li { font-size: 13px; color: var(--gray6); }
.case-stats strong { color: var(--navy); }

/* TESTIMONIAL */
.testi-inner { max-width: 760px; margin: 0 auto; text-align: center; }
blockquote { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(22px, 3vw, 30px); font-weight: 700; line-height: 1.3; color: var(--navy); margin-bottom: 24px; }
blockquote::before { content: '\201C'; font-size: 100px; color: var(--orange); line-height: 0; vertical-align: -34px; margin-right: 6px; font-family: Georgia, serif; font-weight: 400; }
.testi-cite { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gray4); }
.testi-cite strong { color: var(--navy); display: block; font-size: 16px; margin-bottom: 3px; }

/* SERVICES GRID */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 28px; }
.svc-card { padding: 32px; background: var(--slate); border-radius: var(--rlg); border: 2px solid transparent; transition: all .2s; }
.svc-card:hover { border-color: var(--orange); background: var(--white); box-shadow: 0 8px 32px rgba(0,0,0,.08); }
.svc-num { font-family: 'Barlow Condensed', sans-serif; font-size: 44px; font-weight: 900; color: var(--orange); opacity: .35; line-height: 1; margin-bottom: 6px; }
.svc-card h3 { font-size: 20px; margin-bottom: 10px; }
.svc-card p { font-size: 15px; color: var(--gray6); margin-bottom: 18px; }
.svc-link { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--navy); border-bottom: 2px solid var(--orange); padding-bottom: 2px; transition: color .15s; }
.svc-link:hover { color: var(--orange); }

/* PROCESS STEPS */
.process-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 30px; left: calc(100%/6); right: calc(100%/6); height: 2px; background: var(--orange); z-index: 0; }
.process-step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.process-num { width: 60px; height: 60px; border-radius: 50%; background: var(--orange); color: var(--navy); font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.process-step h3 { font-size: 19px; margin-bottom: 10px; color: var(--white); }
.process-step p { font-size: 15px; color: rgba(255,255,255,.6); }

/* FINAL CTA (homepage) */
.cta-section { padding: 100px 0; background: var(--navy); text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(245,166,35,.1) 0%, transparent 70%); pointer-events: none; }
.cta-section h2 { color: var(--white); margin-bottom: 18px; max-width: 680px; margin-left: auto; margin-right: auto; }
.cta-section p { color: rgba(255,255,255,.65); max-width: 520px; margin: 0 auto 36px; font-size: 18px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* AI CALLOUT */
.ai-callout { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lt) 100%); border-radius: var(--rlg); padding: 40px; position: relative; overflow: hidden; }
.ai-callout::before { content: '⚡'; position: absolute; right: 32px; top: 24px; font-size: 80px; opacity: .08; }
.ai-callout h3 { font-size: 28px; color: var(--white); margin-bottom: 14px; }
.ai-callout p { color: rgba(255,255,255,.7); margin-bottom: 22px; font-size: 15px; }
.ai-callout a { display: inline-block; background: var(--orange); color: var(--navy); font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: 12px 24px; border-radius: var(--r); transition: background .15s; }
.ai-callout a:hover { background: var(--orange-dk); }

/* TRUST CARDS */
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.trust-card { background: var(--slate); border-radius: var(--rlg); padding: 24px; text-align: center; }
.trust-num { font-family: 'Barlow Condensed', sans-serif; font-size: 40px; font-weight: 900; color: var(--orange); line-height: 1; margin-bottom: 6px; }
.trust-card p { font-size: 14px; color: var(--gray6); margin: 0; }

/* RESPONSIVE ADDITIONS */
@media (max-width: 900px) {
  .model-grid, .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .process-steps { gap: 32px; }
}
@media (max-width: 600px) {
  .hero-stats { gap: 20px; }
  .cases-grid { grid-template-columns: 1fr; }
}
