
/* =============================================
   PRO TEMP CONTROL — Home Page Mockup
   ============================================= */

:root {
  /* Brand Palette — from Pro Temp Control logo */
  --blue: #3d57a1;
  --blue-deep: #2b3e74;
  --blue-darker: #1f2f5a;
  --blue-light: #4ab5ed;
  --red: #ee3439;
  --red-deep: #c8262b;
  --green: #299652;
  --purple: #7a3b8a;

  /* Neutrals — cream replaced with a very soft cool-blue tint */
  --white: #ffffff;
  --cream: #eef3fa;          /* soft pale blue — feels cooler/HVAC-aligned */
  --cream-soft: #f5f8fc;
  --gray-50: #fafbfd;
  --gray-100: #f3f5fa;
  --gray-200: #e5e9f2;
  --gray-300: #cdd5e5;
  --ink: #0f172a;
  --muted: #6b7280;
  --gold: #f1b417;

  --font-display: 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --shadow-soft: 0 2px 12px rgba(61, 87, 161, 0.06);
  --shadow-card: 0 8px 32px rgba(61, 87, 161, 0.10);
  --shadow-deep: 0 24px 60px rgba(61, 87, 161, 0.16);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  color: var(--blue);
  margin: 0;
  letter-spacing: -0.025em;
}

h3, h4 { font-weight: 700; letter-spacing: -0.015em; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}

/* =============================================
   TOP UTILITY BAR
   ============================================= */

.utility-bar {
  background: var(--blue-darker);
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  padding: 7px 0;
}

.utility-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.utility-bar a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s;
}

.utility-bar a:hover { color: var(--red); }

.utility-left, .utility-right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.utility-bar .pipe {
  opacity: 0.3;
  margin: 0 4px;
}

.utility-bar .badge {
  background: var(--red);
  color: white;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.financing-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green);
  color: white;
  padding: 3px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.01em;
  line-height: 1.3;
  transition: background 0.2s;
}

.financing-link:hover {
  background: #207a42;
  color: white;
}

.financing-link span { color: white; }

.financeit-logo {
  width: 70px;
  height: auto;
  display: block;
  color: white;
}

/* =============================================
   HEADER / NAV
   ============================================= */

.header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-soft);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.brand-logo {
  height: 68px;
  width: auto;
  display: block;
}

.brand-text { display: none; }

.nav-main {
  display: flex;
  align-items: stretch;
  gap: 8px;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  padding: 28px 16px;
  position: relative;
  transition: color 0.2s;
  cursor: pointer;
}

.nav-link .caret {
  font-size: 10px;
  opacity: 0.65;
  transition: transform 0.25s;
  margin-left: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 16px;
  right: 100%;
  bottom: 20px;
  height: 2px;
  background: var(--red);
  transition: right 0.3s ease;
}

.nav-item:hover .nav-link,
.nav-item:focus-within .nav-link {
  color: var(--red);
}

.nav-item:hover .nav-link::after,
.nav-item:focus-within .nav-link::after {
  right: 16px;
}

.nav-item:hover .caret,
.nav-item:focus-within .caret {
  transform: rotate(-180deg);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: white;
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12), 0 2px 8px rgba(15, 23, 42, 0.06);
  border: 1px solid var(--gray-200);
  padding: 8px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.25s ease;
  z-index: 50;
}

/* Bridge the visual gap so the cursor can traverse from link to dropdown without losing hover */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--blue);
  border-radius: 5px;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus {
  background: var(--cream);
  color: var(--red);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 14px 24px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-transform: uppercase;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: white;
  box-shadow: 0 4px 16px rgba(238, 52, 57, 0.25);
}

.btn-primary:hover {
  background: var(--red-deep);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(238, 52, 57, 0.35);
}

.btn-call {
  background: var(--green);
  color: white;
  box-shadow: 0 4px 16px rgba(41, 150, 82, 0.25);
}

.btn-call:hover {
  background: #207a42;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(41, 150, 82, 0.35);
}

.btn-call svg {
  flex-shrink: 0;
}

.btn-secondary {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}

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

.btn-ghost {
  background: transparent;
  color: var(--blue);
}

.btn-ghost:hover { color: var(--red); }

/* =============================================
   HERO
   ============================================= */

.hero {
  background: var(--cream);
  position: relative;
  overflow: hidden;
  padding: 72px 0 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(74, 181, 237, 0.12), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  padding-bottom: 64px;
  position: relative;
}

.hero-content { animation: fadeUp 0.8s ease-out; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--red);
}

.hero h1 {
  font-size: clamp(38px, 4.2vw, 56px);
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  line-height: 1.02;
}

.hero h1 em {
  font-style: italic;
  color: var(--red);
  font-weight: 800;
}

.hero-lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--blue-deep);
  margin-bottom: 16px;
  max-width: 520px;
}

.hero-sub {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
}

.hero-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--blue);
  font-weight: 600;
}

.hero-phone strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--blue);
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-300);
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--red);
  line-height: 1;
}

.trust-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue);
  line-height: 1.3;
}

.hero-image-wrap {
  position: relative;
  animation: fadeIn 1s ease-out 0.2s both;
}

.hero-image {
  border-radius: 12px;
  box-shadow: var(--shadow-deep);
  overflow: hidden;
  aspect-ratio: 3 / 2;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  display: block;
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: white;
  border-radius: 8px;
  padding: 16px 20px;
  box-shadow: var(--shadow-deep);
  display: flex;
  align-items: center;
  gap: 14px;
  transform: rotate(-2deg);
  z-index: 2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

a.hero-badge:hover {
  transform: rotate(-2deg) translateY(-3px) scale(1.02);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.22);
}

.hero-badge-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
}

.hero-badge-text {
  font-size: 13px;
  line-height: 1.3;
}

.hero-badge-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--blue);
}

.hero-badge-text span { color: var(--muted); }

/* =============================================
   TRUST STRIP (partner logos)
   ============================================= */

.trust-strip {
  background: var(--blue);
  padding: 32px 0;
  position: relative;
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-label-bar {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}

.trust-logos {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  flex: 1;
  justify-content: center;
}

.logo-pill {
  background: white;
  padding: 10px 18px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.25s, box-shadow 0.25s;
}

.logo-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.logo-pill img {
  height: 30px;
  width: auto;
  display: block;
}

.logo-pill.tall img { height: 38px; }
.logo-pill.short img { height: 26px; }

/* Trust strip: compact grid on mobile instead of a tall stack */
@media (max-width: 860px) {
  .trust-strip-inner { flex-direction: column; gap: 22px; }
  .trust-label-bar { white-space: normal; text-align: center; }
  .trust-logos {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 12px; width: 100%; flex: none;
  }
  .logo-pill { min-height: 48px; padding: 10px 12px; width: 100%; }
  .logo-pill img { height: 26px; }
  .logo-pill.tall img { height: 30px; }
  .logo-pill.short img { height: 22px; }
}
@media (max-width: 460px) {
  .trust-logos { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================
   SERVICES PREVIEW
   ============================================= */

.services {
  padding: 96px 0;
  background: var(--white);
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.section-head .eyebrow { margin-bottom: 16px; display: inline-block; }

.section-head h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 16px;
}

.section-head p {
  font-size: 17px;
  color: var(--blue-deep);
  line-height: 1.55;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: white;
  border-radius: 8px;
  padding: 36px 30px 32px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  --card-color: var(--blue);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--card-color);
  transform: scaleX(0.3);
  transform-origin: left center;
  transition: transform 0.35s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--gray-300);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card[data-color="blue-light"] { --card-color: var(--blue-light); }
.service-card[data-color="red"]        { --card-color: var(--red); }
.service-card[data-color="green"]      { --card-color: var(--green); }
.service-card[data-color="purple"]     { --card-color: var(--purple); }

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: var(--card-color);
  color: white;
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--blue);
}

.service-desc {
  font-size: 14.5px;
  color: var(--blue-deep);
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}

.service-link {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--card-color);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  align-self: flex-start;
}

.service-link::after {
  content: '→';
  transition: transform 0.2s;
}

.service-card:hover .service-link::after { transform: translateX(4px); }

/* =============================================
   ABOUT / TODAYS TECH
   ============================================= */

.about {
  padding: 96px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 30%, rgba(74, 181, 237, 0.04), transparent 60%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
  position: relative;
}

.about-visual {
  position: relative;
}

.about-photo {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  margin-bottom: 28px;
  aspect-ratio: 3.4 / 4;
  max-width: 440px;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-quote {
  font-family: var(--font-display);
  font-style: normal;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
  color: var(--blue);
  font-weight: 800;
  letter-spacing: -0.03em;
  position: relative;
  padding: 8px 0 8px 28px;
  border-left: 4px solid var(--red);
  max-width: 440px;
}

.about-quote em {
  color: var(--red);
  font-style: normal;
}

.about-quote-attribution {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-top: 24px;
  display: block;
}

.about-content h2 {
  font-size: clamp(30px, 3.5vw, 42px);
  margin-bottom: 24px;
}

.about-content p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--blue-deep);
  margin-bottom: 18px;
}

.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0;
}

.credential {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
}

.credential::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
}

/* =============================================
   SERVICE AREA
   ============================================= */

.area {
  padding: 80px 0;
  background: white;
}

.area-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}

.area h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  margin-bottom: 16px;
}

.area p {
  color: var(--blue-deep);
  font-size: 16px;
  line-height: 1.6;
}

.area-cities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 20px;
}

.area-cities span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--blue);
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px dashed var(--gray-200);
}

.area-cities span::before {
  content: '◆';
  color: var(--red);
  font-size: 10px;
}

/* =============================================
   REVIEWS / TESTIMONIALS
   ============================================= */

.reviews {
  padding: 96px 0;
  background: var(--cream);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: white;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid var(--gray-200);
  position: relative;
  display: flex;
  flex-direction: column;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 12px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 84px;
  color: var(--gray-100);
  line-height: 1;
}

.review-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.review-text {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--blue);
  margin-bottom: 24px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
}

.review-name {
  font-weight: 700;
  font-size: 14.5px;
  color: var(--blue);
}

.review-loc {
  font-size: 12.5px;
  color: var(--muted);
}

.reviews-cta {
  text-align: center;
  margin-top: 40px;
}

.google-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
}

.google-link span { color: var(--gold); }

/* =============================================
   FINAL CTA
   ============================================= */

.cta-block {
  padding: 96px 0;
  background:
    linear-gradient(135deg, rgba(31, 47, 90, 0.92), rgba(43, 62, 116, 0.88)),
    radial-gradient(circle at 30% 50%, rgba(238, 52, 57, 0.4), transparent 50%);
  background-color: var(--blue-darker);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at top left, rgba(238, 52, 57, 0.2), transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(74, 181, 237, 0.15), transparent 50%);
}

.cta-block .container { position: relative; }

.cta-block .eyebrow { color: var(--blue-light); }

.cta-block h2 {
  color: white;
  font-size: clamp(36px, 5vw, 60px);
  margin: 16px auto 20px;
  max-width: 700px;
}

.cta-block p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  margin: 0 auto 36px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-block .btn-secondary {
  color: white;
  border-color: white;
}

.cta-block .btn-secondary:hover {
  background: white;
  color: var(--blue);
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
  background: var(--blue-darker);
  color: rgba(255,255,255,0.7);
  padding: 0 0 24px;
  font-size: 14.5px;
}

.footer-financing {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: relative;
}

.footer-financing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
}

.financing-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}

.financing-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: white;
  margin: 0 0 14px;
}

.financing-sub {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  max-width: 520px;
}

.financing-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 28px 32px;
  border-left: 1px solid rgba(255,255,255,0.12);
}

.financing-with {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.financeit-footer-logo {
  width: 180px;
  height: auto;
  color: white;
  display: block;
}

.financing-link-footer {
  margin-top: 4px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.financing-link-footer:hover {
  color: white;
}

@media (max-width: 900px) {
  .footer-financing { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; }
  .financing-brand { border-left: none; border-top: 1px solid rgba(255,255,255,0.12); padding: 24px 0 0; align-items: flex-start; }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding: 56px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer h4 {
  color: white;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  font-family: var(--font-body);
}

.footer p { line-height: 1.7; margin: 0 0 12px; }

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer a {
  transition: color 0.2s;
}

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

.footer-brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: white;
  margin-bottom: 12px;
  display: block;
}

.footer-tagline {
  font-style: italic;
  color: var(--gray-100);
  margin-bottom: 16px;
}

.footer-nap {
  margin-top: 16px;
  line-height: 1.8;
}

.footer-nap a { color: white; font-weight: 600; }
.footer-address { font-style: normal; display: block; margin: 2px 0; color: rgba(255,255,255,0.7); }

.footer-credit a { color: rgba(255,255,255,0.7); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.25); }
.footer-credit a:hover { color: #fff; border-bottom-color: #fff; }

/* Payment methods — footer */
.footer-payments { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; padding: 22px 0; border-top: 1px solid rgba(255,255,255,0.1); margin-top: 8px; }
.footer-payments-label { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.payment-logos { display: flex; align-items: center; gap: 10px; }
.pay-chip { width: 62px; height: 40px; background: #fff; border-radius: 6px; display: inline-flex; align-items: center; justify-content: center; padding: 7px 11px; box-sizing: border-box; flex: 0 0 auto; }
.pay-chip img { max-width: 42px; max-height: 22px; width: auto; height: auto; object-fit: contain; display: block; }
.footer-payments-note { font-size: 13px; color: rgba(255,255,255,0.6); }

/* Payment methods — inline band (financing page) */
.payment-band { display: flex; align-items: center; justify-content: space-between; gap: 40px; background: var(--white); border: 1px solid var(--gray-200); border-radius: 20px; padding: 36px 44px; box-shadow: var(--shadow-card); flex-wrap: wrap; }
.payment-band-text { flex: 1 1 340px; }
.payment-band-text h2 { font-size: clamp(22px, 2.6vw, 28px); letter-spacing: -0.015em; margin: 12px 0 12px; }
.payment-band-text p { color: #3d4a63; margin: 0; }
.payment-band-logos { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.payment-band-logos .pay-chip { width: 84px; height: 54px; border: 1px solid var(--gray-200); padding: 10px 14px; }
.payment-band-logos .pay-chip img { max-width: 54px; max-height: 24px; }
@media (max-width: 640px) {
  .footer-payments { flex-direction: column; align-items: flex-start; gap: 12px; }
  .payment-band { padding: 26px 24px; gap: 24px; }
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* =============================================
   ANIMATIONS
   ============================================= */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .rebates-inner { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-main { display: none; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .area-cities { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding-top: 48px; }
  .services, .about, .why, .reviews, .cta-block { padding: 64px 0; }
  .hero-trust { grid-template-columns: 1fr; gap: 12px; }
  .utility-bar { font-size: 12px; }
  .utility-bar .container { justify-content: center; }
  .header .container { flex-wrap: wrap; }
}

/* =============================================
   SUBPAGE COMPONENTS — appended for full site build
   ============================================= */

/* ---- Page hero ---- */
.page-hero { padding: 72px 0 56px; background:
  radial-gradient(1100px 500px at 85% -10%, rgba(74,181,237,0.10), transparent 60%),
  linear-gradient(180deg, var(--white) 0%, var(--cream) 100%); }
.page-hero .container { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.page-hero.no-image .container { display: block; max-width: 880px; }
.breadcrumbs { font-size: 13px; color: var(--muted); margin-bottom: 18px; letter-spacing: 0.02em; }
.breadcrumbs a { color: var(--blue); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs span[aria-hidden] { margin: 0 8px; color: var(--gray-300); }
.page-hero h1 { font-size: clamp(30px, 4.4vw, 46px); line-height: 1.12; letter-spacing: -0.02em; font-weight: 800; margin: 14px 0 18px; color: var(--ink); }
.page-hero h1 em { font-style: normal; color: var(--blue); }
.page-hero .hero-lead { font-size: 18px; line-height: 1.65; color: #3d4a63; margin: 0 0 14px; }
.page-hero .hero-sub { font-size: 15.5px; color: var(--muted); margin: 0 0 26px; }
.page-hero-image { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-deep); aspect-ratio: 4 / 3; }
.page-hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.page-hero-image.portrait { aspect-ratio: 3.4 / 4; max-width: 440px; justify-self: end; }

/* ---- Generic content sections ---- */
.page-section { padding: 72px 0; }
.page-section.tint { background: var(--white); }
.page-section .section-head { margin-bottom: 44px; }
.section-head.left { text-align: left; margin-left: 0; }
.section-head.left p { margin-left: 0; }

.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-grid .split-image { border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-card); }
.split-grid .split-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split-grid h2 { font-size: clamp(24px, 3vw, 32px); letter-spacing: -0.015em; margin: 12px 0 16px; }
.split-grid p { color: #3d4a63; }

/* ---- Checklist ---- */
.check-list { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: #2b3550; }
.check-list li strong { color: var(--ink); }
.check-list .check { flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%; background: var(--green); display: inline-flex; align-items: center; justify-content: center; margin-top: 1px; }
.check-list .check svg { width: 12px; height: 12px; stroke: #fff; stroke-width: 3; fill: none; }
.check-list.cols-2 { grid-template-columns: 1fr 1fr; column-gap: 32px; }

/* ---- Option cards (system types) ---- */
.option-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.option-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 18px; padding: 30px 28px; box-shadow: var(--shadow-soft); display: flex; flex-direction: column; }
.page-section.tint .option-card { background: var(--gray-50); }
.option-card .service-icon { margin-bottom: 18px; }
.option-card h3 { font-size: 19px; margin: 0 0 10px; letter-spacing: -0.01em; }
.option-card p { font-size: 14.5px; color: var(--muted); line-height: 1.65; margin: 0; }

/* ---- Steps ---- */
.steps-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; counter-reset: step; }
.step { background: var(--white); border: 1px solid var(--gray-200); border-radius: 16px; padding: 24px 20px; position: relative; }
.step-num { display: inline-flex; width: 34px; height: 34px; border-radius: 50%; background: var(--blue); color: #fff; font-weight: 700; font-size: 15px; align-items: center; justify-content: center; margin-bottom: 14px; }
.step h3 { font-size: 15.5px; margin: 0 0 8px; }
.step p { font-size: 13.5px; color: var(--muted); margin: 0; line-height: 1.55; }

/* ---- Warranty strip ---- */
.warranty-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.warranty-card { background: linear-gradient(180deg, var(--white), var(--gray-50)); border: 1px solid var(--gray-200); border-radius: 18px; padding: 30px 28px; text-align: center; }
.warranty-card .big { font-size: 40px; font-weight: 900; letter-spacing: -0.03em; color: var(--blue); display: block; line-height: 1; margin-bottom: 10px; }
.warranty-card .big.red { color: var(--red); }
.warranty-card .big.green { color: var(--green); }
.warranty-card h3 { font-size: 16px; margin: 0 0 8px; }
.warranty-card p { font-size: 14px; color: var(--muted); margin: 0; }

/* ---- Rebate program cards ---- */
.program-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.program-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 18px; padding: 30px 28px; box-shadow: var(--shadow-soft); display: flex; flex-direction: column; }
.program-card h3 { font-size: 18px; margin: 0 0 14px; letter-spacing: -0.01em; }
.program-card ul { margin: 0 0 20px; padding-left: 20px; color: #3d4a63; font-size: 14.5px; display: grid; gap: 8px; }
.program-card .program-link { margin-top: auto; font-weight: 600; font-size: 14.5px; color: var(--blue); text-decoration: none; }
.program-card .program-link:hover { text-decoration: underline; }
.program-logo { height: 34px; width: auto; max-width: 200px; object-fit: contain; margin-bottom: 16px; align-self: flex-start; }
.program-logos { display: flex; align-items: center; gap: 20px; margin-bottom: 16px; flex-wrap: wrap; }
.program-logos .program-logo { margin-bottom: 0; align-self: center; }
.program-logos .program-logo[alt="BC Hydro"] { height: 30px; }

/* ---- FAQ ---- */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { background: var(--white); border: 1px solid var(--gray-200); border-radius: 14px; overflow: hidden; }
.faq-item summary { cursor: pointer; padding: 20px 24px; font-weight: 600; font-size: 16px; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 22px; font-weight: 400; color: var(--blue); transition: transform 0.2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 24px 22px; color: #3d4a63; font-size: 15px; line-height: 1.7; }

/* ---- Quote form ---- */
.quote-section {
  padding: 80px 0;
  position: relative;
  color: #fff;
  border-top: 1px solid rgba(74,181,237,0.25);
  background-color: var(--blue-deep);
  background-image:
    radial-gradient(900px 420px at 78% 12%, rgba(74,181,237,0.20), transparent 62%),
    radial-gradient(700px 500px at 8% 95%, rgba(41,150,82,0.12), transparent 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.04' stroke-width='1.2'%3E%3Cpath d='M0 30h18a6 6 0 0 1 6 6v0a6 6 0 0 0 6 6h30'/%3E%3Cpath d='M0 12h30a6 6 0 0 0 6-6v0a6 6 0 0 1 6-6h18'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(180deg, var(--blue-deep), var(--blue-deep));
}
.quote-section + .footer, .quote-section + * { position: relative; }

/* Photo background behind the form, blue overlay on top for readability */
.quote-section.has-bg { background-image: none; background-color: var(--blue-darker); }
.quote-section.has-bg::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image: var(--form-bg);
  background-size: cover; background-position: center;
  opacity: 0.38;
}
.quote-section.has-bg::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(900px 420px at 78% 12%, rgba(74,181,237,0.18), transparent 62%),
    linear-gradient(180deg, rgba(43,62,116,0.82) 0%, rgba(31,47,90,0.88) 100%);
}
.quote-section.has-bg > .container { position: relative; z-index: 2; }
.quote-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: start; }
.quote-info .eyebrow { color: var(--blue-light); }
.quote-info h2 { color: #fff; font-size: clamp(26px, 3.2vw, 36px); letter-spacing: -0.02em; margin: 14px 0 16px; }
.quote-info p { color: rgba(255,255,255,0.85); font-size: 16px; line-height: 1.7; }
.quote-contact { margin-top: 28px; display: grid; gap: 12px; }
.quote-contact a { color: #fff; text-decoration: none; font-weight: 600; font-size: 17px; display: inline-flex; align-items: center; gap: 10px; }
.quote-contact a:hover { color: var(--blue-light); }
.quote-form { background: var(--white); border-radius: 20px; padding: 36px; box-shadow: var(--shadow-deep); color: var(--ink); }
.quote-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.quote-form label { display: block; font-size: 13px; font-weight: 600; margin: 0 0 6px; color: var(--ink); }
.quote-form .field { margin-bottom: 18px; }
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--gray-300); border-radius: 10px;
  font-family: var(--font-body); font-size: 15px; color: var(--ink); background: var(--gray-50);
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus {
  outline: 2px solid var(--blue-light); outline-offset: 1px; border-color: var(--blue-light); background: #fff;
}
.quote-form textarea { resize: vertical; min-height: 110px; }
.quote-form .btn { width: 100%; justify-content: center; font-size: 16px; padding: 15px 24px; }
.form-note { font-size: 12.5px; color: var(--muted); text-align: center; margin: 14px 0 0; }

/* ---- Inline CTA band ---- */
.cta-inline { background: var(--white); border: 1px solid var(--gray-200); border-radius: 20px; padding: 40px 44px; display: flex; align-items: center; justify-content: space-between; gap: 32px; box-shadow: var(--shadow-card); }
.cta-inline h3 { font-size: 22px; margin: 0 0 6px; letter-spacing: -0.015em; }
.cta-inline p { margin: 0; color: var(--muted); font-size: 15px; }
.cta-inline .btn { flex: 0 0 auto; }

/* ---- Thanks page ---- */
.thanks-wrap { min-height: 60vh; display: grid; place-items: center; text-align: center; padding: 80px 24px; background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%); }
.thanks-inner { max-width: 640px; }
.thanks-wrap h1 { font-size: clamp(26px, 4vw, 38px); line-height: 1.15; margin: 16px 0 14px; letter-spacing: -0.02em; }
.thanks-wrap .eyebrow { color: var(--green); }
.thanks-lead { color: #3d4a63; font-size: 17px; line-height: 1.65; max-width: 560px; margin: 0 auto 36px; }
.thanks-check { width: 72px; height: 72px; border-radius: 50%; background: var(--green); display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(41,150,82,0.28); }
.thanks-check svg { width: 36px; height: 36px; stroke: #fff; stroke-width: 3; fill: none; }
.thanks-next { background: var(--white); border: 1px solid var(--gray-200); border-radius: 18px; padding: 30px 32px; text-align: left; box-shadow: var(--shadow-soft); margin-bottom: 32px; }
.thanks-next h2 { font-size: 18px; margin: 0 0 16px; text-align: center; }
.thanks-steps { margin: 0; padding: 0; list-style: none; counter-reset: tstep; display: grid; gap: 14px; }
.thanks-steps li { counter-increment: tstep; position: relative; padding-left: 42px; font-size: 15px; color: #3d4a63; line-height: 1.55; }
.thanks-steps li::before { content: counter(tstep); position: absolute; left: 0; top: -2px; width: 28px; height: 28px; border-radius: 50%; background: var(--blue); color: #fff; font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; justify-content: center; }
.thanks-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.thanks-review { font-size: 14.5px; color: var(--muted); margin: 0; }
.thanks-review a { color: var(--blue); font-weight: 600; text-decoration: none; }
.thanks-review a:hover { text-decoration: underline; }
@media (max-width: 640px) {
  .thanks-next { padding: 24px 22px; }
  .thanks-actions .btn { width: 100%; justify-content: center; }
}

/* ---- Responsive ---- */
/* Column-count variants (replaces inline overrides so media queries can win) */
.steps-grid.steps-4 { grid-template-columns: repeat(4, 1fr); }
.option-grid.option-4 { grid-template-columns: repeat(4, 1fr); }
.option-grid.option-2 { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid.steps-4 { grid-template-columns: repeat(2, 1fr); }
  .option-grid, .option-grid.option-4, .program-grid, .warranty-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .page-hero .container { grid-template-columns: 1fr; gap: 36px; }
  .page-hero-image.portrait { justify-self: start; }
  .split-grid { grid-template-columns: 1fr; gap: 36px; }
  .quote-grid { grid-template-columns: 1fr; gap: 40px; }
  .check-list.cols-2 { grid-template-columns: 1fr; }
  .cta-inline { flex-direction: column; align-items: flex-start; }
  .steps-grid, .steps-grid.steps-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .steps-grid, .steps-grid.steps-4,
  .option-grid, .option-grid.option-4, .option-grid.option-2,
  .program-grid, .warranty-grid { grid-template-columns: 1fr; }
  .quote-form { padding: 26px 22px; }
  .quote-form .form-row { grid-template-columns: 1fr; }
  .page-section { padding: 56px 0; }
  /* Long buttons wrap instead of forcing horizontal overflow */
  .page-section .btn, .cta-inline .btn, .hero-actions .btn {
    white-space: normal; text-align: center; max-width: 100%;
  }
  .hero-actions { flex-wrap: wrap; }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; }
}

/* =============================================
   MOBILE NAV — additive (desktop unchanged)
   ============================================= */
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; margin-left: auto; }
.nav-toggle svg { width: 28px; height: 28px; stroke: var(--blue-deep); stroke-width: 2.2; fill: none; }
.nav-toggle .icon-close { display: none; }
body.nav-open .nav-toggle .icon-open { display: none; }
body.nav-open .nav-toggle .icon-close { display: block; }

@media (max-width: 1024px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; order: 3; }
  .header .container { position: relative; }
  /* Slide-down mobile panel reusing .nav-main markup */
  .nav-main {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: var(--white); border-top: 1px solid var(--gray-200);
    box-shadow: var(--shadow-card); padding: 8px 0; gap: 0; z-index: 200;
  }
  body.nav-open .nav-main { display: flex; }
  .nav-main .nav-item { width: 100%; }
  .nav-main .nav-item.has-dropdown > .nav-link .caret { display: none; }
  .nav-main .nav-link {
    display: block; padding: 13px 24px; font-size: 16px;
    border-bottom: 1px solid var(--gray-100);
  }
  .nav-main .nav-dropdown,
  body.nav-open .nav-main .nav-item:hover .nav-dropdown,
  body.nav-open .nav-main .nav-item:focus-within .nav-dropdown {
    position: static; opacity: 1; visibility: visible;
    transform: none; left: auto; top: auto; right: auto;
    box-shadow: none; padding: 0 0 8px; background: var(--gray-50);
    pointer-events: auto; min-width: 0; width: 100%; border-radius: 0; border: 0;
    transition: none; display: block;
  }
  .nav-main .nav-item.has-dropdown { display: flex; flex-direction: column; }
  .nav-main .nav-dropdown::before { display: none; }
  .nav-main .nav-dropdown a { padding: 11px 36px; font-size: 14.5px; }
  .header .btn-primary { order: 2; }
}
@media (max-width: 640px) {
  .header .container { flex-wrap: nowrap; gap: 8px; }
  .header .btn-primary { font-size: 13px; padding: 9px 14px; white-space: nowrap; }
  .brand-logo { max-height: 44px; }
}
@media (max-width: 480px) {
  .header .container { padding: 14px 14px; gap: 6px; }
  .brand-logo { max-height: 38px; }
  .header .btn-primary { font-size: 12px; padding: 9px 12px; }
  .nav-toggle { padding: 6px; }
}
@media (max-width: 380px) {
  .header .btn-primary { font-size: 0; padding: 10px; }
  .header .btn-primary::before { content: "Quote"; font-size: 12px; }
}

/* ---- Financeit apply lockup (financing page) ---- */
.financeit-apply {
  margin: 40px auto 0; max-width: 460px; text-align: center;
  background: var(--white); border: 1px solid var(--gray-200); border-radius: 20px;
  padding: 36px 40px; box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.financeit-apply-label { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.financeit-apply-logo { height: 40px; width: auto; margin: 6px 0 20px; display: block; }
.financeit-apply .btn { font-size: 16px; padding: 15px 36px; }
.financeit-apply-note { font-size: 13px; color: var(--muted); margin: 14px 0 0; }
