/* =============================================
   SOURCE ENERGY GROUP — Main Stylesheet
   Brand: #ff3131 → #ff914d | Green: #00bf63
   Font: Inter | Dark: #111827
   ============================================= */

:root {
  --gradient-start: #ff3131;
  --gradient-mid: #ff753a;
  --gradient-end: #ff914d;
  --green: #00bf63;
  --dark: #111827;
  --black: #000000;
  --nav-bg: #0A0A0A;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --gradient-primary: linear-gradient(90deg, #ff3131 0%, #ff753a 50%, #ff914d 100%);
  --gradient-hero: linear-gradient(135deg, #ff3131 0%, #ff914d 100%);
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition-base); }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; color: var(--dark); }

/* ─── TYPOGRAPHY UTILITIES ─── */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-badge {
  display: inline-block;
  padding: 0.375rem var(--spacing-md);
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--spacing-sm);
}

.section-heading {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: var(--spacing-md);
  color: var(--dark);
}

.section-subheading {
  font-size: 1.125rem;
  color: var(--gray-600);
  text-align: center;
  max-width: 760px;
  margin: 0 auto var(--spacing-xl);
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  text-align: center;
  white-space: nowrap;
  font-family: var(--font-primary);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gradient-hero);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255, 49, 49, 0.35);
  border: 2px solid transparent;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 49, 49, 0.45);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--gray-300);
}

.btn-outline-dark:hover {
  border-color: var(--gray-500);
  background: var(--gray-50);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
}

/* ─── NAV ─── */
.site-nav {
  position: sticky;
  top: 0;
  background: var(--nav-bg);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.nav-wordmark {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.nav-wordmark span {
  display: block;
  font-size: 0.625rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.nav-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.nav-cta {
  margin-left: 0.75rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--gradient-hero);
  color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px rgba(255, 49, 49, 0.4);
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(255, 49, 49, 0.5);
  color: var(--white);
}

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 1rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

.nav-mobile a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color var(--transition-fast);
}

.nav-mobile a:hover { color: var(--white); }

.nav-mobile .nav-cta-mobile {
  margin-top: 1rem;
  padding: 0.875rem;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  background: var(--gradient-hero);
  color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px rgba(255, 49, 49, 0.4);
  border: none;
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--nav-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: var(--spacing-2xl) 0 var(--spacing-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: var(--spacing-2xl);
}

.footer-brand-name {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.footer-tagline {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
}

.footer-tagline + p {
  font-family: var(--font-primary);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.footer-col-title {
  font-family: var(--font-primary);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li,
.footer-links-list a {
  font-family: var(--font-primary);
  color: rgba(255,255,255,0.6);
  font-size: 0.9375rem;
  transition: color var(--transition-fast);
  text-decoration: none;
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.footer-contact-item svg { flex-shrink: 0; margin-top: 3px; }

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-bottom: var(--spacing-md);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.footer-copy {
  font-family: var(--font-primary);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.7;
}

.footer-credentials {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-cred {
  font-family: var(--font-primary);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  font-weight: 500;
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: linear-gradient(135deg, var(--nav-bg) 0%, #1a1a2e 100%);
  padding: var(--spacing-3xl) 0 var(--spacing-2xl);
  position: relative;
  overflow: hidden;
}

.page-hero-blob {
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: var(--gradient-hero);
  opacity: 0.07;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero-heading {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--spacing-md);
  line-height: 1.1;
}

.page-hero-sub {
  font-size: 1.1875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

/* ─── TRUST ROW ─── */
.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
  padding: var(--spacing-md) 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
}

.trust-item svg { flex-shrink: 0; }

/* ─── CARDS ─── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(255, 49, 49, 0.1), rgba(255, 145, 77, 0.08));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
}

.card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.card-text {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ─── CTA SECTION ─── */
.cta-section {
  background: linear-gradient(135deg, var(--nav-bg) 0%, #1a1a2e 100%);
  padding: var(--spacing-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-blob {
  position: absolute;
  top: -40%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: var(--gradient-hero);
  opacity: 0.08;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.cta-section-heading {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--spacing-md);
}

.cta-section-body {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 640px;
  margin: 0 auto var(--spacing-xl);
  line-height: 1.7;
}

/* ─── STAT CALLOUT ─── */
.stat-callout {
  background: linear-gradient(135deg, rgba(255, 49, 49, 0.08), rgba(255, 145, 77, 0.06));
  border: 1px solid rgba(255, 49, 49, 0.15);
  border-left: 4px solid var(--gradient-start);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  text-align: center;
  margin: var(--spacing-xl) auto;
  max-width: 720px;
}

.stat-callout-number {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-callout-text {
  font-size: 1rem;
  color: var(--gray-700);
  font-weight: 500;
}

/* ─── BLOG ─── */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.blog-card-body {
  padding: var(--spacing-lg);
}

.blog-category {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gradient-start);
  margin-bottom: 0.625rem;
}

.blog-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.blog-card-excerpt {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
}

.blog-meta {
  font-size: 0.8125rem;
  color: var(--gray-400);
  margin-bottom: 0.75rem;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gradient-start);
  transition: gap var(--transition-fast);
}

.blog-read-more:hover { gap: 0.625rem; color: var(--gradient-start); }

/* ─── ARTICLE ─── */
.article-header {
  background: linear-gradient(135deg, var(--nav-bg) 0%, #1a1a2e 100%);
  padding: var(--spacing-3xl) 0 var(--spacing-2xl);
  position: relative;
  overflow: hidden;
}

.article-header-blob {
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: var(--gradient-hero);
  opacity: 0.07;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
  margin-bottom: var(--spacing-md);
}

.article-category-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(255, 49, 49, 0.15);
  color: #ff7a7a;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.article-date-read {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
}

.article-title {
  font-size: clamp(1.875rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  max-width: 820px;
}

.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--spacing-3xl) var(--spacing-lg);
}

.article-body p {
  font-size: 1.0625rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.article-body h2 {
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--dark);
  margin: var(--spacing-xl) 0 var(--spacing-sm);
  line-height: 1.25;
}

.article-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin: var(--spacing-md) 0 var(--spacing-xs);
}

.article-cta-box {
  background: linear-gradient(135deg, rgba(255, 49, 49, 0.07), rgba(255, 145, 77, 0.05));
  border: 1px solid rgba(255, 49, 49, 0.15);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  margin: var(--spacing-2xl) 0;
  text-align: center;
}

.article-cta-box p {
  color: var(--gray-700);
  margin-bottom: var(--spacing-md);
}

/* ─── FORMS ─── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: var(--spacing-md);
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8125rem var(--spacing-sm);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: var(--font-primary);
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gradient-start);
  box-shadow: 0 0 0 3px rgba(255, 49, 49, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
}

.form-submit {
  width: 100%;
  padding: 1.125rem;
  font-size: 1.125rem;
  font-weight: 700;
  background: var(--gradient-hero);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: 0 4px 20px rgba(255, 49, 49, 0.35);
  font-family: var(--font-primary);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 49, 49, 0.45);
}

.form-error {
  display: none;
  padding: 0.875rem var(--spacing-sm);
  background: rgba(255, 49, 49, 0.06);
  border: 1px solid rgba(255, 49, 49, 0.2);
  border-radius: var(--radius-md);
  color: #c0392b;
  font-size: 0.9375rem;
  margin-bottom: var(--spacing-md);
}

/* ─── FAQ ACCORDION ─── */
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md) 0;
  cursor: pointer;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--dark);
  gap: var(--spacing-md);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-primary);
}

.faq-question:hover { color: var(--gradient-start); }

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast), transform var(--transition-base);
}

.faq-item.open .faq-icon {
  background: var(--gradient-hero);
  transform: rotate(45deg);
}

.faq-item.open .faq-icon svg { stroke: white; }

.faq-answer {
  display: none;
  padding: 0 0 var(--spacing-md);
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.7;
}

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

/* ─── STEP CARDS ─── */
.step-card {
  display: flex;
  gap: var(--spacing-md);
  padding: var(--spacing-xl);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--spacing-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.step-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--gradient-hero);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
}

.step-content { flex: 1; }

.step-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.375rem;
}

.step-badge {
  display: inline-block;
  padding: 0.2rem 0.625rem;
  background: rgba(0, 191, 99, 0.1);
  color: var(--green);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-body {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.step-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.step-bullet {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.step-bullet svg { flex-shrink: 0; margin-top: 2px; }

/* ─── COMPARISON ─── */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.comparison-card {
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  border: 2px solid var(--gray-200);
}

.comparison-card.good {
  border-color: var(--green);
  background: rgba(0, 191, 99, 0.03);
}

.comparison-card.bad {
  border-color: rgba(255, 49, 49, 0.3);
  background: rgba(255, 49, 49, 0.02);
}

.comparison-card-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--spacing-sm);
  padding-bottom: var(--spacing-sm);
  border-bottom: 1px solid var(--gray-200);
}

.comparison-row {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--gray-700);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-100);
  line-height: 1.5;
}

.comparison-row:last-child { border-bottom: none; }

.comparison-row svg { flex-shrink: 0; margin-top: 2px; }

.comparison-difference {
  text-align: center;
  padding: var(--spacing-xl);
  background: var(--gradient-hero);
  border-radius: var(--radius-lg);
  color: var(--white);
}

.comparison-difference-number {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.comparison-difference-label {
  font-size: 1rem;
  opacity: 0.85;
  font-weight: 500;
}

/* ─── DIFFERENTIATOR GRID ─── */
.diff-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  justify-content: center;
}
.diff-grid .diff-card {
  flex: 0 0 calc(25% - var(--spacing-md) * 3 / 4);
  min-width: 220px;
}
@media(max-width:1024px){ .diff-grid .diff-card { flex: 0 0 calc(50% - var(--spacing-md) / 2); } }
@media(max-width:600px){ .diff-grid .diff-card { flex: 0 0 100%; } }

.diff-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.diff-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.diff-card-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(0, 191, 99, 0.12), rgba(0, 191, 99, 0.06));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.875rem;
}

.diff-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.375rem;
}

.diff-card-text {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ─── THANK YOU ─── */
.thankyou-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--nav-bg) 0%, #1a1a2e 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: var(--spacing-2xl) var(--spacing-lg);
}

.thankyou-icon {
  width: 80px;
  height: 80px;
  background: rgba(0, 191, 99, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-md);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .container { padding: 0 1rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .comparison-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .page-hero { padding: var(--spacing-2xl) 0 var(--spacing-xl); }
  .article-body { padding: var(--spacing-xl) var(--spacing-sm); }
  .step-card { flex-direction: column; }
  .step-number { width: 44px; height: 44px; font-size: 1.125rem; }

  .trust-row { gap: var(--spacing-sm); }
}

@media (max-width: 480px) {
  .container { padding: 0 0.875rem; }
  .section-heading { font-size: 1.75rem; }
  .section-subheading { font-size: 1rem; }
  .btn-lg { padding: 1rem 1.5rem; font-size: 1rem; }
}

/* ── REVIEWS SECTION (global) ── */
.reviews-section { padding: 5rem 0; background: var(--gray-50); }
.reviews-grid { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; }
.reviews-grid-3 .review-card { flex: 0 0 calc(33.333% - 1rem); min-width: 260px; }
@media(max-width:900px){ .reviews-grid-3 .review-card { flex: 0 0 calc(50% - 0.75rem); } }
@media(max-width:600px){ .reviews-grid-3 .review-card { flex: 0 0 100%; } }
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 3px solid #ff3131;
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.review-stars { display: flex; gap: 2px; }
.review-quote { font-style: italic; color: var(--gray-700); line-height: 1.7; font-size: 0.9375rem; flex: 1; }
.review-author { display: flex; flex-direction: column; gap: 0.125rem; }
.review-name { font-weight: 700; color: var(--dark); font-size: 0.9375rem; }
.review-detail { font-size: 0.8125rem; color: var(--gray-500); }
.review-source { display: flex; align-items: center; gap: 0.375rem; font-size: 0.8125rem; color: var(--gray-500); margin-top: auto; }
.review-hidden { display: none; }

.reviews-grid-2 .review-card { flex: 0 0 calc(50% - 0.75rem); min-width: 280px; }
@media(max-width:700px){ .reviews-grid-2 .review-card { flex: 0 0 100%; } }

/* HIW styles moved to seg-brand.css */
  .hiw-step-left { flex-direction: row; align-items: center; }
}

/* ─── HOME HERO ─── */
.hero {
  position: relative;
  padding: 5rem 0 4rem;
  background: linear-gradient(150deg, #0f0f14 0%, #111827 55%, #0f0f14 100%);
  overflow: hidden;
}
.hero-blob {
  position: absolute;
  top: -40%; right: -10%;
  width: 700px; height: 700px;
  background: var(--gradient-hero);
  opacity: 0.07;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-blob-2 {
  position: absolute;
  bottom: -30%; left: -10%;
  width: 500px; height: 500px;
  background: linear-gradient(135deg, #ff914d, #ff3131);
  opacity: 0.05;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
  animation: heroFadeUp 0.6s ease 0.05s both;
}
.hero-heading {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: heroFadeUp 0.6s ease 0.15s both;
}
.hero-subheading {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 2rem;
  animation: heroFadeUp 0.6s ease 0.25s both;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
  animation: heroFadeUp 0.6s ease 0.35s both;
}
.hero-trust-pills {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  animation: heroFadeUp 0.6s ease 0.45s both;
}
.hero-trust-pill {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
}
.hero-stats {
  display: flex;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 2rem;
  flex-wrap: wrap;
  animation: heroFadeUp 0.6s ease 0.55s both;
}
.hero-stat { display: flex; flex-direction: column; gap: 0.25rem; }
.hero-stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.hero-stat-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}
.hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 1.5rem;
  padding: 2rem;
  animation: heroFadeUp 0.7s ease 0.3s both;
}
.hero-card-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}
.hero-card-stat {
  text-align: center;
  padding: 1.5rem;
  background: var(--gradient-hero);
  border-radius: 1rem;
  margin-bottom: 1.25rem;
}
.hero-card-stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.hero-card-stat-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-card-list { display: flex; flex-direction: column; gap: 0.625rem; }
.hero-card-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  padding: 0.625rem;
  background: rgba(255,255,255,0.03);
  border-radius: 0.625rem;
  border: 1px solid rgba(255,255,255,0.06);
}
.hero-card-item-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 1024px) { .hero-inner { gap: 2.5rem; } }
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-heading { font-size: clamp(1.875rem, 8vw, 2.75rem); }
  .hero-cta-row { flex-direction: column; }
  .hero-cta-row .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 1.25rem; }
}

/* ─── HOME PROBLEMS ─── */
.problems-section { padding: 5rem 0; background: var(--gray-50); }
.problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.problem-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--gray-200);
  border-top: 3px solid #ff3131;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.problem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.problem-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(255,49,49,0.1), rgba(255,145,77,0.07));
  border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.problem-title { font-size: 1.0625rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.problem-text { font-size: 0.9375rem; color: var(--gray-600); line-height: 1.65; }
.stat-callout-red {
  max-width: 680px;
  margin: 0 auto;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255,49,49,0.06), rgba(255,145,77,0.04));
  border: 1px solid rgba(255,49,49,0.15);
  border-left: 4px solid #ff3131;
  border-radius: 1rem;
  text-align: center;
}
.stat-callout-red-number {
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-callout-red-text { font-size: 1rem; color: var(--gray-700); font-weight: 500; }
@media (max-width: 768px) { .problems-grid { grid-template-columns: 1fr; } }

/* ─── HOME SOLUTION ─── */
.solution-section { padding: 5rem 0; background: var(--white); }
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.solution-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.solution-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.solution-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
}
.solution-title { font-size: 1.125rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.solution-text { font-size: 0.9375rem; color: var(--gray-600); line-height: 1.65; }
@media (max-width: 1024px) { .solution-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px)  { .solution-grid { grid-template-columns: 1fr; } }

/* ─── COMPARISON SECTION ─── */
.comparison-section { padding: 5rem 0; background: var(--gray-50); }
/* Extended comparison card — used on homepage & why-us */
.comparison-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.comparison-bad  { border-top: 3px solid #ff3131; }
.comparison-good { border-top: 3px solid #00bf63; }
.comparison-header {
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid var(--gray-200);
}
.comparison-icon-wrap {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.875rem;
}
.ci-bad  { background: rgba(255,49,49,.08); }
.ci-good { background: rgba(0,191,99,.08); }
.comparison-title { font-size: 1.125rem; font-weight: 800; color: var(--dark); margin-bottom: 0.25rem; }
.comparison-price { font-size: 0.875rem; color: var(--gray-500); font-weight: 500; }
.comparison-result {
  margin-top: var(--spacing-md);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.cr-bad  { background: rgba(255,49,49,.05); border: 1px solid rgba(255,49,49,.15); }
.cr-good { background: rgba(0,191,99,.05);  border: 1px solid rgba(0,191,99,.2); }
.comparison-result strong { font-size: 1rem; color: var(--dark); }
.comparison-result span   { font-size: 0.8125rem; color: var(--gray-500); }

/* ─── TIMELINE ITEMS ─── */
.timeline-item {
  display: flex;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.timeline-item:last-of-type { border-bottom: none; }
.timeline-year {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  min-width: 60px;
  padding-top: 0.125rem;
}
.timeline-text { font-size: 0.9375rem; color: var(--gray-700); line-height: 1.6; }

/* ─── HOME PROCESS ABBREVIATED ─── */
.process-abbreviated { padding: 5rem 0; background: var(--white); }
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 760px;
  margin: 0 auto;
}
.process-step-mini {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}
.process-step-mini:hover { transform: translateX(4px); }
.process-step-mini-num {
  width: 40px; height: 40px;
  flex-shrink: 0;
  background: var(--gradient-hero);
  border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 800; color: var(--white);
}
.process-step-mini-content { flex: 1; }
.process-step-mini-title { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.125rem; }
.process-step-mini-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green);
  background: rgba(0,191,99,0.1);
  padding: 0.15rem 0.5rem;
  border-radius: 50px;
}

/* ─── HOME SECTIONS ─── */
.diff-section  { padding: 5rem 0; background: var(--gray-50); }
.faq-preview   { padding: 4rem 0; background: var(--white); }
.faq-preview-inner { max-width: 760px; margin: 0 auto; }
.blog-preview  { padding: 5rem 0; background: var(--gray-50); }
.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) { .blog-preview-grid { grid-template-columns: 1fr; } }

/* ─── WHY US PAGE ─── */
.whyus-section { padding: 5rem 0; }
.whyus-section.alt { background: var(--gray-50); }
.three-engine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.engine-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.engine-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.engine-number {
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
}
.engine-title { font-size: 1.125rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.engine-text  { font-size: 0.9375rem; color: var(--gray-600); line-height: 1.65; }
.diff-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.diff-detail-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 1rem;
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}
.diff-detail-card:hover { transform: translateY(-3px); }
.diff-detail-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(0,191,99,0.1);
  border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
}
.diff-detail-title { font-size: 1.0625rem; font-weight: 700; color: var(--dark); margin-bottom: 0.375rem; }
.diff-detail-text  { font-size: 0.9rem; color: var(--gray-600); line-height: 1.65; }
@media (max-width: 1024px) { .three-engine-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) {
  .three-engine-grid { grid-template-columns: 1fr; }
  .diff-detail-grid  { grid-template-columns: 1fr; }
}

/* ─── PROCESS / OUR-PROCESS PAGE ─── */
.process-section     { padding: 5rem 0; }
.process-section.alt { background: var(--gray-50); }


/* ─── FAQ PAGE ─── */
.faq-section { padding: 5rem 0; }
.faq-inner   { max-width: 800px; margin: 0 auto; }
.faq-intro {
  background: linear-gradient(135deg, rgba(255,49,49,0.06), rgba(255,145,77,0.04));
  border: 1px solid rgba(255,49,49,0.12);
  border-radius: 1rem;
  padding: 1.75rem;
  margin-bottom: 3rem;
  font-size: 0.9375rem;
  color: var(--gray-700);
  line-height: 1.7;
}

/* ─── CONTACT PAGE ─── */
.contact-section { padding: 5rem 0; background: var(--gray-50); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-calendar-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.contact-calendar-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--gray-100);
}
.contact-calendar-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
}
.contact-calendar-sub  { font-size: 0.875rem; color: var(--gray-500); }
.contact-calendar-body { padding: 0; }
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.contact-form-title { font-size: 1.25rem; font-weight: 700; color: var(--dark); margin-bottom: 0.375rem; }
.contact-form-sub {
  font-size: 0.9375rem;
  color: var(--gray-500);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}
.contact-trust-pills {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-100);
  margin-top: 1.25rem;
}
.contact-trust-pill {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: var(--gray-500);
  font-weight: 500;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ─── THANK YOU PAGE ─── */
.thankyou-section {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, #0f0f14 0%, #111827 55%, #0f0f14 100%);
  padding: 3rem 1rem;
  position: relative;
  overflow: hidden;
}
.thankyou-blob {
  position: absolute;
  top: -20%; right: -10%;
  width: 500px; height: 500px;
  background: rgba(0,191,99,0.12);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.thankyou-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
}
.thankyou-icon-wrap {
  width: 80px; height: 80px;
  background: rgba(0,191,99,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.thankyou-heading {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  animation: fadeUp 0.6s ease 0.15s both;
}
.thankyou-subheading {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.6s ease 0.25s both;
}
.thankyou-steps {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 1rem;
  padding: 1.75rem;
  margin-bottom: 2rem;
  text-align: left;
  animation: fadeUp 0.6s ease 0.35s both;
}
.thankyou-steps-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}
.thankyou-step {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.thankyou-step:last-child { border-bottom: none; }
.thankyou-step-num {
  width: 28px; height: 28px;
  flex-shrink: 0;
  background: var(--gradient-hero);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 800; color: var(--white);
}
.thankyou-step-text {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  padding-top: 0.25rem;
}
@keyframes scaleIn {
  from { transform: scale(0.5); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── BLOG LISTING PAGE ─── */
.blog-listing { padding: 5rem 0; }
.blog-listing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.blog-listing-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-listing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-listing-category {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gradient-start);
  margin-bottom: 0.5rem;
}
.blog-listing-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.blog-listing-meta  { font-size: 0.8125rem; color: var(--gray-400); margin-bottom: 0.875rem; }
.blog-listing-excerpt {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}
.blog-listing-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gradient-start);
  transition: gap 0.15s ease;
}
.blog-listing-link:hover { gap: 0.625rem; }
@media (max-width: 768px) { .blog-listing-grid { grid-template-columns: 1fr; } }

/* ─── BLOG ARTICLE NAV ─── */
.article-nav { padding: 1.25rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.15s ease;
  margin-bottom: 1.5rem;
  text-decoration: none;
}
.article-back:hover { color: var(--white); }

/* ─── INSTALL GALLERY ─── */
@media(max-width:768px) { .install-gallery-grid { grid-template-columns: 1fr 1fr !important; } }

/* ─── BLOG POST: REBATE DATA CARD ─── */
.rebate-data-card {
  background: linear-gradient(135deg, rgba(255,49,49,0.05), rgba(255,145,77,0.03));
  border: 1px solid rgba(255,49,49,0.12);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  margin: 1.5rem 0;
}
.rebate-data-card-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gradient-start);
  margin-bottom: 1rem;
}
.rebate-data-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 0.9375rem;
  color: var(--gray-700);
}
.rebate-data-row:last-child { border-bottom: none; }
.rebate-data-value { font-weight: 700; color: var(--dark); }

/* ─── BLOG POST: LOAD CARD ─── */
.load-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-left: 3px solid var(--gradient-start);
  border-radius: 0.75rem;
  padding: 1.25rem 1.5rem;
  margin: 1.25rem 0;
}
.load-card-title { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.375rem; }
.load-card-detail { font-size: 0.9375rem; color: var(--gray-600); line-height: 1.65; }
.load-card-cost {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  background: linear-gradient(90deg, #ff3131, #ff914d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── UTILITY CLASSES (converted from repeated inline styles) ─── */
/* Footer logo image */
.footer-logo-img {
  height: 36px;
  width: auto;
  display: block;
  max-width: 200px;
  object-fit: contain;
}
/* Footer brand row */
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.625rem;
}
/* Install gallery image */
.install-gallery-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 0.75rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
/* Comparison kicker callout */
.comparison-kicker {
  margin-top: 2rem;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  border-left: 4px solid #ff3131;
  font-size: 0.9375rem;
  color: var(--gray-700);
  line-height: 1.7;
}
/* Article hero content wrapper (blog posts) */
.article-hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}
/* CTA center block (used on page CTAs) */
.cta-center-block {
  text-align: center;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
/* Muted footnote text (used under CTAs) */
.cta-footnote {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-500);
  font-size: 0.875rem;
  font-weight: 500;
}

/* ─── INSTALL GALLERY SECTION ─── */
.install-gallery-section { padding: 4rem 0; background: var(--gray-50); }

/* ─── THREE-COL GRID (install photos header) ─── */
.three-col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 768px) { .three-col-grid { grid-template-columns: 1fr 1fr; } }

/* ─── REVIEWS SHOW-MORE BUTTON ─── */
.btn-show-more {
  font-size: 0.9375rem;
  padding: 0.875rem 2rem;
  transition: opacity 0.2s ease;
}
.btn-show-more:hover { opacity: 0.9; }

/* ─── GOOGLE REVIEWS LINK ─── */
.reviews-google-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-500);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
}
.reviews-google-link:hover { color: var(--gray-700); }

/* ── PROMO BAR ── */

/* ── PROMO MARQUEE (from proven funnel CSS) ── */
.promo-bar { overflow: hidden; position: relative; z-index: 999; }
.marquee-wrapper{width:100%;padding:13px 0;background:var(--gradient-hero);}
.marquee-track{display:flex;align-items:center;width:max-content;animation:marqueeScroll 28s linear infinite;}
.marquee-track:hover{animation-play-state:paused;}
.marquee-item{display:inline-flex;align-items:center;gap:8px;white-space:nowrap;font-size:clamp(12px,2vw,13.5px);font-weight:500;color:rgba(255,255,255,.95);letter-spacing:.03em;}
.marquee-sep{display:inline-block;width:4px;height:4px;background:rgba(255,255,255,.45);border-radius:50%;margin:0 28px;flex-shrink:0;}
@keyframes marqueeScroll{0%{transform:translateX(0)}

/* ── BLOG TWO-COLUMN LAYOUT ── */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: start;
  padding: 3rem 0 4rem;
}
.blog-article-col { min-width: 0; }
.blog-sidebar-col { position: sticky; top: 100px; }
.blog-sidebar-form {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-xl);
}
.sidebar-form-label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: .5rem;
}
.sidebar-form-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: .375rem;
  line-height: 1.2;
}
.sidebar-form-sub {
  font-size: .875rem;
  color: var(--gray-600);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
@media(max-width:900px) {
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar-col { position: static; }
}

/* Blog index pagination */
.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem 0 1rem;
}
.blog-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gray-600);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  text-decoration: none;
  transition: all var(--transition-base);
}
.blog-page-btn:hover {
  border-color: var(--gradient-start);
  color: var(--gradient-start);
}
.blog-page-active {
  background: var(--gradient-hero);
  color: var(--white) !important;
  border-color: transparent !important;
}

/* Post prev/next pagination */
.post-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  margin: 2rem 0;
}
.post-page-prev,
.post-page-next,
.post-page-index {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gray-600);
  text-decoration: none;
  transition: color var(--transition-base);
}
.post-page-prev:hover,
.post-page-next:hover { color: var(--gradient-start); }
.post-page-index {
  font-size: 0.875rem;
  color: var(--gray-400);
  padding: 0.5rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 50px;
}
.post-page-index:hover {
  color: var(--gradient-start);
  border-color: var(--gradient-start);
}
