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

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

:root {
  --blue: #0076E1;
  --navy: #0A1C3A;
  --light-bg: #F4F7FA;
  --white: #FFFFFF;
  --gray-text: #6B7280;
  --orange: #FF5A1F;
  --red-bg: #FFEBEB;
  --red-text: #E53E3E;
  --green-bg: #E6F9F3;
  --green-text: #0D9488;
  --border: #E5E7EB;
  --dark-bg: #0F172A;
  --font: 'Plus Jakarta Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--navy); line-height: 1.6; overflow-x: hidden; background: var(--white); }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; font-family: var(--font); }
img { max-width: 100%; }
ul { list-style: none; }

/* HEADER */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.header-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.logo { display: flex; align-items: center; gap: 10px; font-size: 26px; font-weight: 800; color: var(--navy); }
.logo-icon { width: 36px; height: 36px; position: relative; }
.logo-icon svg { width: 100%; height: 100%; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-size: 15px; font-weight: 500; color: var(--navy);
  display: flex; align-items: center; gap: 4px;
  padding: 8px 0; transition: color 0.2s;
}
.nav-links > li > a:hover { color: var(--blue); }
.chevron { font-size: 10px; transition: transform 0.2s; }
.nav-links > li:hover .chevron { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: 100%; left: -16px;
  background: var(--white); border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  padding: 12px 0; min-width: 220px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all 0.25s ease;
}
.nav-links > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block; padding: 10px 24px; font-size: 14px; font-weight: 500;
  color: var(--navy); transition: all 0.15s;
}
.dropdown a:hover { background: var(--light-bg); color: var(--blue); }

.header-cta {
  background: var(--blue); color: var(--white);
  padding: 12px 24px; border-radius: 9999px;
  font-size: 14px; font-weight: 600;
  transition: all 0.3s ease;
}
.header-cta:hover { background: #005bb5; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,118,225,0.3); }

/* HERO */
.hero {
  padding: 140px 40px 60px; background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 70%);
  position: relative; overflow: hidden; min-height: 90vh;
  display: flex; align-items: center;
}
.hero-bg-shapes {
  position: absolute; top: -100px; right: -100px;
  width: 700px; height: 700px; z-index: 0;
}
.hero-shape-1 {
  position: absolute; top: 0; right: 0;
  width: 500px; height: 500px;
  background: var(--navy); transform: rotate(45deg);
  border-radius: 0;
}
.hero-shape-2 {
  position: absolute; top: -60px; right: 80px;
  width: 400px; height: 400px;
  background: var(--blue); transform: rotate(45deg);
}
.hero-inner {
  max-width: 1280px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; position: relative; z-index: 1;
}

/* Hero Left */
.hero-badge {
  display: inline-block; padding: 8px 16px;
  border: 1px solid var(--border); border-radius: 9999px;
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
  color: var(--blue); text-transform: uppercase; margin-bottom: 24px;
}
.hero-title { font-size: 60px; font-weight: 800; line-height: 1.1; margin-bottom: 24px; }
.hero-title .blue { color: var(--blue); }
.hero-subtitle { font-size: 18px; color: var(--gray-text); margin-bottom: 32px; max-width: 520px; line-height: 1.7; }
.hero-ctas { display: flex; gap: 16px; margin-bottom: 32px; flex-wrap: wrap; }
.btn-primary {
  background: var(--blue); color: var(--white);
  padding: 14px 28px; border-radius: 9999px;
  font-size: 15px; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
  transition: all 0.3s ease;
}
.btn-primary:hover { background: #005bb5; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,118,225,0.3); }
.btn-secondary {
  background: var(--navy); color: var(--white);
  padding: 14px 28px; border-radius: 9999px;
  font-size: 15px; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
  transition: all 0.3s ease;
}
.btn-secondary:hover { background: #061224; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(10,28,58,0.3); }

.hero-rating { display: flex; align-items: center; gap: 8px; padding-top: 24px; border-top: 1px solid var(--border); }
.stars { color: #F59E0B; font-size: 18px; }
.rating-text { font-size: 15px; color: var(--gray-text); }
.rating-text strong { color: var(--navy); font-weight: 700; }

/* Diagnostic Card */
.diagnostic-card {
  background: var(--white); border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border: 1px solid var(--border); padding: 28px;
  position: relative;
}
.diagnostic-header {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px;
}
.diagnostic-header h4 { font-size: 12px; letter-spacing: 1.5px; color: var(--gray-text); text-transform: uppercase; }
.live-dot {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--orange);
}
.live-dot::before {
  content: ''; width: 8px; height: 8px;
  background: #22C55E; border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.diagnostic-tabs { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.diag-tab {
  padding: 16px 12px; border: 1px solid var(--border);
  border-radius: 12px; cursor: pointer; text-align: left;
  transition: all 0.3s ease; background: var(--white);
}
.diag-tab:hover { border-color: var(--blue); }
.diag-tab.active { border-color: var(--orange); border-width: 2px; }
.diag-tab .tab-icon { font-size: 22px; margin-bottom: 8px; display: block; }
.diag-tab.active .tab-icon { color: var(--orange); }
.diag-tab h5 { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.diag-tab p { font-size: 11px; color: var(--gray-text); }

.diagnostic-content {
  background: var(--light-bg); border-radius: 12px; padding: 24px;
  border-top: 3px solid var(--green-text);
}
.fix-label { font-size: 11px; font-weight: 700; color: var(--orange); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.fix-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.fix-desc { font-size: 13px; color: var(--gray-text); margin-bottom: 16px; line-height: 1.5; }

.stats-compare { display: flex; align-items: center; gap: 12px; }
.stat-before {
  flex: 1; background: var(--red-bg); border-radius: 10px; padding: 14px;
}
.stat-before .label { font-size: 10px; font-weight: 700; color: var(--red-text); text-transform: uppercase; letter-spacing: 0.5px; }
.stat-before .value { font-size: 22px; font-weight: 800; color: var(--navy); margin: 4px 0 2px; }
.stat-before .detail { font-size: 11px; color: var(--gray-text); }
.stat-arrow { color: var(--blue); font-size: 20px; }
.stat-after {
  flex: 1; background: var(--green-bg); border-radius: 10px; padding: 14px;
}
.stat-after .label { font-size: 10px; font-weight: 700; color: var(--green-text); text-transform: uppercase; letter-spacing: 0.5px; }
.stat-after .value { font-size: 16px; font-weight: 700; color: var(--navy); margin: 4px 0 2px; }

.diagnostic-dots { display: flex; justify-content: center; gap: 6px; margin-top: 16px; }
.diagnostic-dots .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); transition: all 0.3s;
}
.diagnostic-dots .dot.active { width: 20px; border-radius: 4px; background: var(--green-text); }

/* Connector Pills */
.connector-section { padding: 40px 40px; display: flex; justify-content: center; background: var(--light-bg); }
.connector-pills {
  display: flex; align-items: center; gap: 16px;
  background: var(--white); border-radius: 9999px;
  padding: 14px 32px; border: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.pill-item { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; }
.pill-dot { width: 10px; height: 10px; border-radius: 50%; }
.pill-dot.blue-dot { background: var(--blue); }
.pill-dot.orange-dot { background: var(--orange); }
.pill-dot.green-dot { background: #22C55E; }
.pill-arrow { color: var(--gray-text); font-size: 16px; }

/* Trust Bar */
.trust-bar {
  padding: 40px 0; background: var(--white);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  overflow: hidden; position: relative;
}
.trust-marquee {
  display: flex; gap: 48px; animation: marquee 30s linear infinite;
  white-space: nowrap;
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.trust-item {
  font-size: 13px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gray-text);
  flex-shrink: 0;
}

/* GTM OS Section */
.gtm-section { padding: 100px 40px; background: var(--white); }
.section-center { text-align: center; max-width: 800px; margin: 0 auto 60px; }
.section-label {
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--blue); margin-bottom: 16px;
}
.section-title { font-size: 44px; font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.section-title .blue { color: var(--blue); }

.gtm-tabs-container { max-width: 1280px; margin: 0 auto; }
.gtm-tabs-nav {
  display: flex; gap: 4px; margin-bottom: 48px;
  border-bottom: 2px solid var(--border); padding-bottom: 0;
}
.gtm-tab-btn {
  padding: 14px 24px; font-size: 14px; font-weight: 600;
  color: var(--gray-text); background: none;
  border-bottom: 3px solid transparent; margin-bottom: -2px;
  transition: all 0.3s ease; white-space: nowrap;
}
.gtm-tab-btn:hover { color: var(--navy); }
.gtm-tab-btn.active { color: var(--blue); border-bottom-color: var(--blue); }

.gtm-tab-content { display: none; animation: fadeIn 0.5s ease; }
.gtm-tab-content.active { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.gtm-content-text h3 { font-size: 32px; font-weight: 800; margin-bottom: 16px; line-height: 1.3; }
.gtm-content-text p { font-size: 16px; color: var(--gray-text); line-height: 1.7; margin-bottom: 24px; }
.gtm-visual {
  background: var(--light-bg); border-radius: 20px; padding: 40px;
  display: flex; align-items: center; justify-content: center;
  min-height: 350px; position: relative; overflow: hidden;
}
.gtm-visual-graphic {
  width: 100%; text-align: center;
}
.gtm-icon-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.gtm-icon-card {
  background: var(--white); border-radius: 12px; padding: 20px;
  text-align: center; box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s;
}
.gtm-icon-card:hover { transform: translateY(-4px); }
.gtm-icon-card .icon { font-size: 28px; margin-bottom: 8px; }
.gtm-icon-card span { font-size: 12px; font-weight: 600; color: var(--navy); }

/* HubSpot Partner Section */
.hubspot-section {
  padding: 100px 40px;
  background: linear-gradient(135deg, var(--navy) 0%, #0F2847 100%);
  color: var(--white);
}
.hubspot-inner { max-width: 1280px; margin: 0 auto; text-align: center; }
.hubspot-inner .section-label { color: var(--blue); }
.hubspot-inner .section-title { color: var(--white); font-size: 40px; margin-bottom: 48px; }
.hubspot-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; margin-bottom: 48px; }
.hubspot-stat {
  text-align: center; padding: 32px;
  background: rgba(255,255,255,0.05); border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s;
}
.hubspot-stat:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.hubspot-stat .number { font-size: 48px; font-weight: 800; color: var(--blue); margin-bottom: 8px; }
.hubspot-stat .desc { font-size: 15px; color: rgba(255,255,255,0.7); }

/* Results Section */
.results-section { padding: 100px 40px; background: var(--light-bg); }
.results-inner { max-width: 1280px; margin: 0 auto; }
.results-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.result-card {
  background: var(--white); border-radius: 16px; padding: 32px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transition: all 0.3s ease; border: 1px solid var(--border);
}
.result-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.result-metric { font-size: 42px; font-weight: 800; color: var(--blue); margin-bottom: 8px; }
.result-label { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 16px; }
.result-desc { font-size: 14px; color: var(--gray-text); line-height: 1.6; }

/* 8 Pillars Section */
.pillars-section { padding: 100px 40px; background: var(--white); }
.pillars-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px;
}
.pillar-card {
  background: var(--light-bg); border-radius: 16px; padding: 28px;
  text-align: center; transition: all 0.3s ease;
  border: 1px solid transparent; cursor: pointer;
}
.pillar-card:hover { border-color: var(--blue); transform: translateY(-4px); background: var(--white); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.pillar-card .pillar-icon { font-size: 32px; margin-bottom: 12px; }
.pillar-card .pillar-num { font-size: 11px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.pillar-card h4 { font-size: 15px; font-weight: 700; }

/* CTA Section */
.cta-section {
  padding: 100px 40px;
  background: linear-gradient(135deg, var(--blue) 0%, #0058AA 100%);
  text-align: center; color: var(--white);
}
.cta-section h2 { font-size: 44px; font-weight: 800; margin-bottom: 16px; }
.cta-section p { font-size: 18px; opacity: 0.9; max-width: 600px; margin: 0 auto 32px; }
.cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--blue);
  padding: 16px 32px; border-radius: 9999px;
  font-size: 16px; font-weight: 700;
  transition: all 0.3s ease;
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* Footer */
.footer { background: var(--dark-bg); color: rgba(255,255,255,0.7); padding: 80px 40px 32px; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.6; margin-bottom: 24px; }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; font-size: 16px; color: rgba(255,255,255,0.7);
}
.social-link:hover { background: var(--blue); color: var(--white); }

.footer-col h4 {
  font-size: 14px; font-weight: 700; color: var(--white);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 14px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--blue); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px; display: flex;
  justify-content: space-between; align-items: center;
  font-size: 13px;
}
.footer-badges { display: flex; gap: 16px; align-items: center; }
.footer-badge {
  padding: 6px 12px; border-radius: 6px;
  background: rgba(255,255,255,0.05); font-size: 11px;
  font-weight: 600; color: rgba(255,255,255,0.5);
}

/* =============================================
   SAAS AFFILIATE SECTION
   ============================================= */
.saas-affiliate-section {
  padding: 100px 40px;
  background: linear-gradient(180deg, var(--white) 0%, #F0F4FF 50%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}
.saas-affiliate-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,118,225,0.06) 0%, transparent 70%);
  top: -200px; right: -200px;
}
.saas-affiliate-section::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,216,0.05) 0%, transparent 70%);
  bottom: -150px; left: -150px;
}
.saas-affiliate-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Partner Badge */
.saas-partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #0076E1, #00B4D8);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  animation: shimmer 3s ease infinite;
}
.partner-icon { font-size: 16px; }
@keyframes shimmer {
  0%, 100% { box-shadow: 0 0 20px rgba(0,118,225,0.3); }
  50% { box-shadow: 0 0 30px rgba(0,118,225,0.5), 0 0 60px rgba(0,180,216,0.2); }
}

.saas-subtitle {
  font-size: 17px;
  color: var(--gray-text);
  max-width: 700px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* Filter Tabs */
.saas-filter-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.saas-filter-btn {
  padding: 10px 24px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
  background: var(--white);
  color: var(--gray-text);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  cursor: pointer;
}
.saas-filter-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.saas-filter-btn.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: 0 4px 12px rgba(0,118,225,0.3);
}

/* Tools Grid */
.saas-tools-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

/* Tool Card */
.saas-tool-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.saas-tool-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), #00B4D8);
  opacity: 0;
  transition: opacity 0.3s;
}
.saas-tool-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,118,225,0.12);
  border-color: rgba(0,118,225,0.3);
}
.saas-tool-card:hover::before { opacity: 1; }
.saas-tool-card.hidden {
  display: none;
}

.tool-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}
.tool-logo {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.tool-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--light-bg);
  color: var(--gray-text);
  white-space: nowrap;
}
.tool-badge.hot {
  background: #FFF3E0;
  color: #E65100;
}
.tool-name {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--navy);
}
.tool-category {
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.tool-desc {
  font-size: 13px;
  color: var(--gray-text);
  line-height: 1.5;
  margin-bottom: 14px;
  min-height: 40px;
}
.tool-commission {
  background: linear-gradient(135deg, #F0FFF4, #E6FFFA);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  border: 1px solid rgba(13,148,136,0.15);
}
.commission-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--green-text);
}
.commission-value {
  font-size: 13px;
  font-weight: 800;
  color: var(--green-text);
}
.tool-features {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.tool-feature {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--light-bg);
  color: var(--navy);
}
.tool-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 10px 16px;
  background: var(--navy);
  color: var(--white);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.3s;
}
.tool-cta:hover {
  background: var(--blue);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,118,225,0.3);
}

/* Growth Partner CTA Banner */
.growth-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #0F2847 60%, #122E55 100%);
  border-radius: 24px;
  padding: 48px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}
.growth-banner::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(0,118,225,0.15);
  top: -100px; right: -80px;
}
.growth-banner::after {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(0,180,216,0.1);
  bottom: -80px; left: -60px;
}
.ps-banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.ps-banner-left {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex: 1;
}
.ps-logo-badge {
  width: 56px; height: 56px;
  min-width: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue), #00B4D8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 24px rgba(0,118,225,0.4);
}
.ps-banner-left h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.ps-banner-left p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-width: 480px;
}
.ps-banner-right {
  display: flex;
  gap: 32px;
}
.ps-stat {
  text-align: center;
}
.ps-stat-num {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.ps-stat-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.ps-banner-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 1;
}
.ps-cta-main {
  box-shadow: 0 8px 24px rgba(0,118,225,0.4);
}
.ps-cta-secondary {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s;
}
.ps-cta-secondary:hover { color: var(--white); }

/* Trust Row */
.saas-trust-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.saas-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-text);
}
.trust-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--green-bg);
  color: var(--green-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

/* Promo Metrics Dashboard */
.promo-metrics-dashboard {
  background: var(--white); border-radius: 20px; padding: 32px;
  border: 1px solid var(--border); margin-bottom: 48px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.metrics-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--border);
}
.metrics-header h3 { font-size: 18px; font-weight: 700; }
.metrics-live {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; color: var(--green-text);
}
.live-pulse {
  width: 8px; height: 8px; border-radius: 50%; background: #22C55E;
  animation: pulse 2s infinite;
}
.metrics-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.metric-card {
  text-align: center; padding: 20px; border-radius: 14px;
  background: var(--light-bg); transition: all 0.3s;
}
.metric-card:hover { transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0,0,0,0.06); }
.metric-icon {
  width: 44px; height: 44px; border-radius: 12px; margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.metric-value { font-size: 28px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.metric-label { font-size: 12px; font-weight: 600; color: var(--gray-text); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.metric-trend { font-size: 11px; font-weight: 700; border-radius: 6px; display: inline-block; padding: 2px 8px; }
.metric-trend.up { background: var(--green-bg); color: var(--green-text); }

/* Promo Methodology */
.promo-methodology { margin-bottom: 48px; }
.method-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 16px; }
.method-card {
  background: var(--white); border-radius: 14px; padding: 24px 18px;
  border: 1px solid var(--border); text-align: center;
  transition: all 0.3s; position: relative;
}
.method-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); border-color: var(--blue); }
.method-num {
  font-size: 11px; font-weight: 800; color: var(--blue);
  position: absolute; top: 12px; right: 14px; opacity: 0.4;
}
.method-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.method-card p { font-size: 12px; color: var(--gray-text); line-height: 1.5; margin-bottom: 12px; }
.method-tag {
  font-size: 10px; font-weight: 700; padding: 4px 10px;
  border-radius: 6px; background: #DBEAFE; color: var(--blue);
  display: inline-block;
}

/* Tool Rating & Secondary CTA */
.tool-rating { font-size: 13px; color: #F59E0B; margin-bottom: 6px; }
.tool-rating span { color: var(--gray-text); font-weight: 600; font-size: 12px; }
.tool-cta-try {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  width: 100%; padding: 8px 16px; margin-top: 8px;
  background: transparent; color: var(--blue); border: 1.5px solid var(--blue);
  border-radius: 10px; font-size: 12px; font-weight: 700; transition: all 0.3s;
}
.tool-cta-try:hover { background: var(--blue); color: var(--white); }

/* Responsive */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-title { font-size: 44px; }
  .diagnostic-card { max-width: 600px; }
  .gtm-tab-content.active { grid-template-columns: 1fr; }
  .hubspot-stats { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .saas-tools-grid { grid-template-columns: repeat(3, 1fr); }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .method-grid { grid-template-columns: repeat(3, 1fr); }
  .ps-banner-content { flex-direction: column; }
  .ps-banner-right { justify-content: center; }
  .pillars-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .header-inner { padding: 0 20px; }
  .nav-links { display: none; }
  .hero { padding: 120px 20px 40px; }
  .hero-title { font-size: 36px; }
  .hero-ctas { flex-direction: column; }
  .diagnostic-tabs { grid-template-columns: 1fr; }
  .connector-pills { flex-direction: column; gap: 8px; padding: 16px; }
  .section-title { font-size: 32px; }
  .gtm-tabs-nav { overflow-x: auto; }
  .saas-tools-grid { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .saas-affiliate-section { padding: 60px 20px; }
  .growth-banner { padding: 28px; }
  .ps-banner-left { flex-direction: column; }
  .ps-banner-left h3 { font-size: 20px; }
  .ps-banner-right { flex-wrap: wrap; gap: 20px; }
  .ps-banner-actions { flex-direction: column; }
  .saas-trust-row { flex-direction: column; align-items: center; }
  .pillars-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}
