/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'neue-haas-unica', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  color: #0a2540;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ========== LAYOUT ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== NAV (Stripe-style) ========== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s, box-shadow 0.3s;
}
/* Offset for WP admin bar when logged in */
.admin-bar nav {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar nav {
    top: 46px;
  }
}
nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.03);
}
nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-size: 20px;
  font-weight: 700;
  color: #0a2540;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo svg,
.nav-logo img {
  height: 36px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 15px;
  font-weight: 400;
  color: #425466;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-cta {
  background: #1300FC;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px !important;
  font-weight: 500 !important;
  transition: background 0.2s;
}
.nav-cta:hover { background: #2a1aff; }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}
.hero canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
}
.hero .container {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto 0 calc((100vw - 1200px) / 2 + 24px);
  padding-top: 100px;
}
@media (max-width: 1248px) {
  .hero .container { margin-left: 24px; }
}
.hero-label {
  display: inline-block;
  font-size: 17px;
  font-weight: 400;
  color: #061B31;
  letter-spacing: 0;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 500;
  line-height: 1.08;
  color: #0a2540;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.hero p {
  font-size: 18px;
  line-height: 1.7;
  color: #425466;
  margin-bottom: 36px;
  max-width: 540px;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1300FC;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}
.hero-cta:hover { background: #2a1aff; transform: translateY(-1px); }
.hero-cta .google-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-cta .arrow { transition: transform 0.2s; }
.hero-cta:hover .arrow { transform: translateX(3px); }
.hero-note {
  margin-top: 16px;
  font-size: 13px;
  color: #8898aa;
}

/* ========== SECTIONS ========== */
section {
  padding: 120px 0;
}
section:nth-child(even) {
  background: #f6f9fc;
}

/* ========== PROBLEM / VALUE SECTIONS (alternating 2-col) ========== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-text h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #0a2540;
  margin-bottom: 20px;
}
.split-text p {
  font-size: 17px;
  line-height: 1.7;
  color: #425466;
  margin-bottom: 24px;
}
.split-visual {
  position: relative;
  background: linear-gradient(135deg, #f6f9fc 0%, #e8f0fe 100%);
  border-radius: 16px;
  padding: 48px;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.split-visual-content {
  text-align: center;
  color: #8898aa;
  font-size: 15px;
}

/* ========== FEATURES GRID (Stripe-style cards) ========== */
.features-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.features-header h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #0a2540;
  margin-bottom: 16px;
}
.features-header p {
  font-size: 17px;
  color: #425466;
  line-height: 1.7;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.feature-card {
  background: #fff;
  border: 1px solid #e6ebf1;
  border-radius: 16px;
  padding: 40px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.feature-icon.attribution { background: #e3f8ed; }
.feature-icon.scoring { background: #fff3cd; }
.feature-icon.ai { background: #e8e0ff; }
.feature-icon.gated { background: #dbeafe; }
.feature-card h3 {
  font-size: 20px;
  font-weight: 500;
  color: #0a2540;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 15px;
  line-height: 1.65;
  color: #425466;
}

/* ========== POWERED BY SECTION ========== */
.powered-header {
  margin-bottom: 56px;
}
.powered-header h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #0a2540;
  margin-bottom: 12px;
}
.powered-header p {
  font-size: 17px;
  color: #425466;
}
.powered-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.powered-item {
  background: #fff;
  border: 1px solid #e6ebf1;
  border-radius: 12px;
  padding: 28px;
}
.powered-item p {
  font-size: 15px;
  color: #425466;
  line-height: 1.6;
}

/* ========== TESTIMONIALS ========== */
.testimonials-header {
  text-align: center;
  margin-bottom: 56px;
}
.testimonials-header h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 500;
  letter-spacing: -0.025em;
  color: #0a2540;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid #e6ebf1;
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
}
.testimonial-quote {
  font-size: 15px;
  line-height: 1.7;
  color: #425466;
  flex: 1;
  margin-bottom: 24px;
}
.testimonial-author {
  border-top: 1px solid #e6ebf1;
  padding-top: 16px;
}
.testimonial-name {
  font-size: 15px;
  font-weight: 500;
  color: #0a2540;
}
.testimonial-role {
  font-size: 13px;
  color: #8898aa;
  margin-top: 2px;
}

/* ========== CTA SECTION ========== */
.cta-section {
  text-align: center;
  background: #1300FC !important;
  color: #fff;
}
.cta-section h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 500;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  color: #fff;
}
.cta-section p {
  font-size: 18px;
  color: #8898aa;
  margin-bottom: 36px;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #1300FC;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}
.cta-btn:hover { background: #f0f0ff; transform: translateY(-1px); }
.cta-note {
  margin-top: 16px;
  font-size: 13px;
  color: #68778d;
}

/* ========== FOOTER ========== */
footer {
  padding: 48px 0;
  border-top: 1px solid #e6ebf1;
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.footer-links a {
  font-size: 14px;
  color: #8898aa;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: #0a2540; }
.footer-copy {
  font-size: 13px;
  color: #8898aa;
}

/* ========== SECTION CTA BUTTONS (inline) ========== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1300FC;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-primary:hover { background: #2a1aff; }

/* ========== PRICING PAGE ========== */
.pricing-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: #fff;
}
.pricing-hero .hero-label {
  margin-bottom: 16px;
}
.pricing-hero h1 {
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 500;
  line-height: 1.1;
  color: #0a2540;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.pricing-hero p {
  font-size: 18px;
  line-height: 1.6;
  color: #425466;
  max-width: 520px;
  margin: 0 auto;
}
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 0 120px;
}
.pricing-card {
  background: #fff;
  border: 1px solid #e6ebf1;
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.pricing-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.pricing-card.featured {
  border-color: #1300FC;
  box-shadow: 0 4px 24px rgba(19, 0, 252, 0.12);
  position: relative;
}
.pricing-card.featured::before {
  content: 'Most popular';
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: #1300FC;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}
.pricing-card-name {
  font-size: 22px;
  font-weight: 500;
  color: #0a2540;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.pricing-card-tagline {
  font-size: 15px;
  color: #425466;
  line-height: 1.5;
  margin-bottom: 24px;
}
.pricing-card-price {
  font-size: 48px;
  font-weight: 500;
  color: #0a2540;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-card-price .period {
  font-size: 16px;
  font-weight: 400;
  color: #8898aa;
  letter-spacing: 0;
}
.pricing-card-price-note {
  font-size: 14px;
  color: #8898aa;
  margin-bottom: 24px;
}
.pricing-card-free {
  font-size: 48px;
  font-weight: 500;
  color: #0a2540;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-card-best {
  font-size: 13px;
  font-weight: 500;
  color: #8898aa;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.pricing-card-best-text {
  font-size: 15px;
  color: #425466;
  margin-bottom: 28px;
}
.pricing-card-cta {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  margin-top: auto;
}
.pricing-card-cta.primary {
  background: #1300FC;
  color: #fff;
}
.pricing-card-cta.primary:hover {
  background: #2a1aff;
  transform: translateY(-1px);
}
.pricing-card-cta.secondary {
  background: #f6f9fc;
  color: #0a2540;
  border: 1px solid #e6ebf1;
}
.pricing-card-cta.secondary:hover {
  background: #edf2f7;
  transform: translateY(-1px);
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.pricing-features li {
  font-size: 15px;
  color: #425466;
  line-height: 1.5;
  padding: 8px 0;
  border-bottom: 1px solid #f0f4f8;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pricing-features li::before {
  content: '\2713';
  color: #1300FC;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-divider {
  height: 1px;
  background: #e6ebf1;
  margin: 24px 0;
}
@media (max-width: 900px) {
  .pricing-cards { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
}

/* ========== COMPARISON TABLE ========== */
.comparison-section {
  padding: 0 0 120px;
}
.comparison-section .section-intro {
  text-align: center;
  margin-bottom: 56px;
}
.comparison-section .section-intro h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  color: #0a2540;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}
.comparison-section .section-intro p {
  font-size: 17px;
  color: #425466;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
}
.compare-table colgroup col:first-child { width: 28%; }
.compare-table colgroup col { width: 24%; }

/* Column headers */
.compare-table thead th {
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 500;
  color: #0a2540;
  text-align: center;
  border-bottom: 2px solid #e6ebf1;
}
.compare-table thead th:first-child {
  text-align: left;
  color: #8898aa;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.compare-table thead th.col-featured {
  color: #1300FC;
}

/* Section headings */
.compare-table .section-row td {
  padding: 40px 20px 12px;
  font-size: 14px;
  font-weight: 600;
  color: #0a2540;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 2px solid #0a2540;
}

/* Feature rows */
.compare-table tbody tr.feature-row {
  transition: background 0.15s;
}
.compare-table tbody tr.feature-row:hover {
  background: #f6f9fc;
}
.compare-table tbody tr.feature-row th,
.compare-table tbody tr.feature-row td {
  padding: 14px 20px;
  border-bottom: 1px solid #f0f4f8;
  vertical-align: middle;
}
.compare-table tbody tr.feature-row th {
  text-align: left;
  font-size: 14px;
  font-weight: 400;
  color: #425466;
  line-height: 1.4;
}
.compare-table tbody tr.feature-row th .feature-sub {
  display: block;
  font-size: 12px;
  color: #8898aa;
  font-weight: 400;
  margin-top: 2px;
}
.compare-table tbody tr.feature-row td {
  text-align: center;
  font-size: 14px;
  color: #425466;
}
.compare-table tbody tr.feature-row td strong {
  color: #0a2540;
  font-weight: 600;
}

/* Checkmark */
.compare-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(19, 0, 252, 0.08);
  color: #1300FC;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

/* Dash (not available) */
.compare-dash {
  color: #d1d5db;
  font-size: 18px;
  font-weight: 400;
}

/* Featured column highlight */
.compare-table tbody tr.feature-row td.col-featured {
  background: rgba(19, 0, 252, 0.02);
}
.compare-table thead th.col-featured {
  background: rgba(19, 0, 252, 0.03);
}

/* Bottom CTA row */
.compare-table .cta-row td {
  padding: 28px 20px;
  text-align: center;
  border-bottom: none;
}
.compare-table .cta-row td a {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.2s;
}
.compare-table .cta-row td a.cta-secondary {
  background: #f6f9fc;
  color: #0a2540;
  border: 1px solid #e6ebf1;
}
.compare-table .cta-row td a.cta-secondary:hover {
  background: #edf2f7;
}
.compare-table .cta-row td a.cta-primary {
  background: #1300FC;
  color: #fff;
}
.compare-table .cta-row td a.cta-primary:hover {
  background: #2a1aff;
}

/* Responsive: horizontal scroll on mobile */
@media (max-width: 900px) {
  .comparison-section {
    padding: 0 0 80px;
  }
  .compare-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -24px;
    padding: 0 24px;
  }
  .compare-table {
    min-width: 640px;
  }
}

/* Hide page title bar on block-template pages (they have their own hero) */
.page-template-tpl-blocks .page-header,
.page-template-tpl-tools .page-header,
.page-template-tpl-tools-php .page-header,
.page-template-tpl-agencies .page-header,
.page-template-tpl-agencies-php .page-header {
  display: none;
}
.page-template-tpl-blocks .page-content,
.page-template-tpl-tools .page-content,
.page-template-tpl-tools-php .page-content,
.page-template-tpl-agencies .page-content,
.page-template-tpl-agencies-php .page-content {
  padding-top: 140px;
}

/* ========== BLOG / ARCHIVE ========== */
.page-header {
  padding: 160px 0 60px;
  background: #f6f9fc;
}
.page-header h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  color: #0a2540;
  letter-spacing: -0.025em;
}
.page-content {
  padding: 80px 0;
}
.page-content p,
.page-content li {
  font-size: 17px;
  line-height: 1.7;
  color: #425466;
  margin-bottom: 20px;
}
.page-content h2 {
  font-size: 28px;
  font-weight: 500;
  color: #0a2540;
  margin: 40px 0 16px;
}
.page-content h3 {
  font-size: 22px;
  font-weight: 500;
  color: #0a2540;
  margin: 32px 0 12px;
}
.page-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 24px 0;
}
.page-content a {
  color: #1300FC;
  text-decoration: underline;
}
.page-content a:hover {
  color: #2a1aff;
}

/* Post cards for archive */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}
.post-card {
  background: #fff;
  border: 1px solid #e6ebf1;
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.post-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.post-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.post-card-body {
  padding: 28px;
}
.post-card-body h2 {
  font-size: 20px;
  font-weight: 500;
  color: #0a2540;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.post-card-body h2 a {
  color: inherit;
  text-decoration: none;
}
.post-card-body h2 a:hover {
  color: #1300FC;
}
.post-card-meta {
  font-size: 13px;
  color: #8898aa;
  margin-bottom: 12px;
}
.post-card-excerpt {
  font-size: 15px;
  line-height: 1.65;
  color: #425466;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 60px;
}
.pagination a,
.pagination span {
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  text-decoration: none;
  color: #425466;
  border: 1px solid #e6ebf1;
}
.pagination .current {
  background: #1300FC;
  color: #fff;
  border-color: #1300FC;
}
.pagination a:hover {
  background: #f6f9fc;
}

/* ========== GUTENBERG BLOCK OVERRIDES ========== */
/* Buttons: match Stripe-inspired theme */
.wp-block-button__link,
.wp-element-button {
  background: #1300FC !important;
  color: #fff !important;
  border-radius: 8px !important;
  font-family: 'neue-haas-unica', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  text-decoration: none !important;
  transition: background 0.2s, transform 0.2s;
}
.wp-block-button__link:hover,
.wp-element-button:hover {
  background: #2a1aff !important;
  transform: translateY(-1px);
}

/* Outlined / secondary button variant */
.wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent !important;
  color: #1300FC !important;
  border: 2px solid #1300FC;
}
.wp-block-button.is-style-outline .wp-block-button__link:hover {
  background: rgba(19, 0, 252, 0.06) !important;
}

/* Headings: theme font and weight */
.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.wp-block-heading {
  font-family: 'neue-haas-unica', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
  color: #0a2540;
  letter-spacing: -0.02em;
}

/* Cover & group block backgrounds */
.wp-block-cover,
.wp-block-group.has-background {
  border-radius: 16px;
}

/* Separator / divider */
.wp-block-separator {
  border-color: #e6ebf1;
  opacity: 1;
}

/* Columns: consistent gap */
.wp-block-columns {
  gap: 40px;
}

/* ========== AGENCIES PAGE ========== */
.hero-visual {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.hero-visual img {
  max-width: 100%;
  height: auto;
  margin-right: 40px;
}

.stats-section {
  background: #fff !important;
}
.stats-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}
.badge-top4 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5c518 0%, #f9d94e 100%);
  font-size: 36px;
  font-weight: 600;
  color: #0a2540;
  margin-bottom: 32px;
  box-shadow: 0 4px 16px rgba(245, 197, 24, 0.2);
}
.stats-header h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #0a2540;
  margin-bottom: 16px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.stats-header p {
  font-size: 18px;
  color: #425466;
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto;
}

.stats-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.stats-image {
  display: flex;
  justify-content: center;
}
.chart-placeholder {
  background: linear-gradient(135deg, #f6f9fc 0%, #e8f0fe 100%);
  border-radius: 16px;
  padding: 48px;
  text-align: center;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.chart-placeholder svg {
  margin-bottom: 20px;
}
.chart-placeholder p {
  font-size: 15px;
  font-weight: 500;
  color: #0a2540;
  margin: 0;
}

.stats-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.stats-list li {
  counter-increment: list-counter;
}
.stats-list li::before {
  content: counter(list-counter);
  display: block;
  width: 48px;
  height: 48px;
  background: #1300FC;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}
.stats-list h3 {
  font-size: 20px;
  font-weight: 500;
  color: #0a2540;
  margin: 0 0 12px 0;
  letter-spacing: -0.01em;
}
.stats-list p {
  font-size: 15px;
  line-height: 1.65;
  color: #425466;
  margin: 0;
}

.split-visual img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.testimonial-logo {
  text-align: center;
  margin-bottom: 48px;
}
.testimonial-logo img {
  max-height: 60px;
  width: auto;
}

.testimonials-grid {
  max-width: 640px;
  margin: 0 auto;
}
.testimonial-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.testimonial-quote {
  font-size: 18px;
  line-height: 1.7;
  color: #425466;
  font-style: italic;
  flex: 1;
  margin-bottom: 24px;
}

/* Counter for stats list */
.stats-list {
  counter-reset: list-counter;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .features-grid { grid-template-columns: 1fr; }
  .powered-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  footer .container { flex-direction: column; gap: 16px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .posts-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .stats-content { grid-template-columns: 1fr; gap: 40px; }
}
