/* ═══════════════════════════════════════════════════════════════════════════
   POWERMATES DESIGN SYSTEM — styles.css
   Enterprise-grade design system for thepowermates.com
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ──────────────────────────────────────────────────────── */
:root {
  /* Backgrounds — deeper, richer navy */
  --bg:           #060b16;
  --bg2:          #0a1220;
  --bg3:          #0f1a2e;
  --card:         #0c1626;
  --card2:        #101c30;

  /* Brand — warmer mint-cyan for sophistication */
  --cyan:         #36d7b7;
  --cyan-hover:   #2bc4a6;
  --cyan-dim:     #20b397;
  --cyan-glow:    rgba(54, 215, 183, 0.07);
  --cyan-border:  rgba(54, 215, 183, 0.12);
  --cyan-bg:      rgba(54, 215, 183, 0.04);

  /* Secondary accent — warm gold for premium feel */
  --gold:         #e8d5b7;
  --gold-dim:     rgba(232, 213, 183, 0.6);
  --gold-border:  rgba(232, 213, 183, 0.15);
  --gold-bg:      rgba(232, 213, 183, 0.04);

  /* Text — softer whites for less harsh contrast */
  --text:         #f0f2f5;
  --text-secondary: #b8c8d8;
  --muted:        #6b839e;

  /* Borders — slightly more visible */
  --border:       rgba(255, 255, 255, 0.05);
  --border-light: rgba(255, 255, 255, 0.10);

  /* Layout */
  --nav-height:   72px;
  --max-width:    1240px;
  --content-width: 1160px;

  /* Spacing — more generous for premium feel */
  --section-pad:  128px;
  --section-pad-mobile: 80px;

  /* Radius — slightly larger for modern feel */
  --radius-sm:    8px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-pill:  100px;

  /* Shadows — subtler, more layered */
  --shadow-card:  rgba(0, 0, 0, 0.3) 0px 8px 24px;
  --shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.2);
  --shadow-glow:  0 0 40px rgba(54, 215, 183, 0.2);

  /* Transitions — slightly slower for elegance */
  --ease:         cubic-bezier(0.25, 0.1, 0.25, 1);
  --duration:     0.3s;
}


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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Figtree', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }


/* ─── TYPOGRAPHY ─────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h1 { font-size: clamp(48px, 8vw, 96px); }
h2 { font-size: clamp(32px, 5vw, 48px); }
h3 { font-size: clamp(18px, 2.5vw, 22px); font-weight: 700; }
h4 { font-size: 16px; font-weight: 700; }

.c { color: var(--cyan); }
.w { color: #fff; }

/* Gradient text effect for premium accent words */
.gradient-text {
  color: var(--cyan);
}

.section-title .c {
  color: rgba(255, 255, 255, 0.75);
}


/* ─── LAYOUT ─────────────────────────────────────────────────────────────── */
.container {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: var(--section-pad) 24px;
  position: relative;
}


/* ─── SECTION HEADERS ────────────────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(38px, 6vw, 60px);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
}

.section-sub {
  color: var(--muted);
  font-size: 17px;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}


/* ─── NAVBAR ─────────────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  padding: 0 56px;
  background: rgba(6, 11, 22, 0.72);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: background var(--duration) var(--ease), border-color var(--duration) var(--ease);
}

nav.scrolled {
  background: rgba(6, 11, 22, 0.95);
  border-bottom: 1px solid rgba(54, 215, 183, 0.08);
}

.logo {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  flex-shrink: 0;
}
.logo span:first-child { color: #fff; }
.logo span:last-child  { color: var(--cyan); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--duration), background var(--duration);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.nav-links a.active {
  color: var(--cyan);
}

/* Nav Dropdown */
.nav-dropdown-trigger { cursor: pointer; }

.nav-dropdown-trigger::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 4px;
  transition: transform var(--duration);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 280px;
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration), visibility var(--duration), transform var(--duration);
  transform: translateX(-50%) translateY(8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  z-index: 1001;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

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

.nav-dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text-secondary);
  transition: background var(--duration), color var(--duration);
}

.nav-dropdown a:hover {
  background: var(--cyan-bg);
  color: #fff;
}

.dropdown-price {
  font-size: 12px;
  font-weight: 700;
  color: var(--cyan);
}

.dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 0;
}

/* Nav CTA button */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cyan);
  color: #080f1c !important;
  font-size: 14px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 500px;
  text-decoration: none;
  transition: background var(--duration), transform 0.15s;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--cyan-hover);
  transform: translateY(-1px);
}


/* ─── HAMBURGER (MOBILE) ─────────────────────────────────────────────────── */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10000;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }


/* ─── HERO ───────────────────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 100px;
  overflow: hidden;
  background: var(--bg);
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.25;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  width: 100%;
}

.hero-eyebrow {
  display: inline-block;
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}
.hero-eyebrow::before { display: none; }

.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(48px, 9vw, 120px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  animation: fadeUp 0.6s 0.1s ease both;
}

.hero-sub {
  font-size: clamp(17px, 2.2vw, 21px);
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 48px;
  line-height: 1.75;
  font-weight: 300;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-sub strong { color: var(--cyan); font-weight: 500; }

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeUp 0.6s 0.3s ease both;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.4s ease both;
}

.stat-item { text-align: center; }

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.5;
  animation: fadeUp 0.6s 0.7s ease both;
}
.scroll-hint-mouse {
  width: 22px; height: 36px;
  border: 2px solid var(--cyan);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 5px;
}
.scroll-hint-dot {
  width: 4px; height: 4px;
  background: var(--cyan);
  border-radius: 50%;
  animation: scrollDot 1.8s ease-in-out infinite;
}


/* ─── BUTTONS ────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #060b16;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background var(--duration), transform 0.15s, box-shadow var(--duration);
  box-shadow: 0 0 32px rgba(255, 255, 255, 0.1);
}
.btn-primary:hover {
  background: var(--cyan);
  color: #060b16;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 0 56px rgba(54, 215, 183, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  cursor: pointer;
  transition: background var(--duration), border-color var(--duration), transform 0.15s;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-4px) scale(1.02);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  padding: 14px 32px;
  border: 1px solid rgba(46, 232, 211, 0.3);
  border-radius: var(--radius-pill);
  transition: background var(--duration), border-color var(--duration);
}
.btn-outline:hover {
  background: rgba(46, 232, 211, 0.08);
  border-color: rgba(46, 232, 211, 0.5);
}

/* Pricing page CTA buttons */
.pricing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--cyan);
  color: #080f1c;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: background var(--duration), transform 0.15s;
}
.pricing-cta:hover {
  background: var(--cyan-hover);
  transform: translateY(-4px);
}
.pricing-cta.outline {
  background: transparent;
  border: 1px solid var(--cyan-border);
  color: var(--cyan);
}
.pricing-cta.outline:hover {
  background: var(--cyan-bg);
}


/* ─── CARDS ──────────────────────────────────────────────────────────────── */
.topic-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: border-color var(--duration) var(--ease), transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.topic-card:hover {
  border-color: rgba(46, 232, 211, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.topic-icon {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
}

.topic-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.topic-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}


/* ─── TRUST BAR ──────────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
}

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

.trust-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cred-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46, 232, 211, 0.06);
  border: 1px solid rgba(46, 232, 211, 0.15);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--cyan);
}


/* ─── SERVICES GRID ──────────────────────────────────────────────────────── */
.services-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.services-preview-grid .topic-card {
  text-decoration: none;
  display: block;
}


/* ─── ABOUT PILLARS ──────────────────────────────────────────────────────── */
.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.pillar {
  text-align: center;
  padding: 24px;
}

.pillar-icon {
  width: 64px; height: 64px;
  background: var(--cyan-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 26px;
  border: 1px solid var(--cyan-border);
}

.pillar h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pillar p { color: var(--muted); font-size: 14px; }

.manifesto {
  border: 1px solid var(--cyan-border);
  border-left: 4px solid var(--cyan);
  background: rgba(46, 232, 211, 0.04);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  max-width: 800px;
  margin: 0 auto;
}
.manifesto p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  font-style: italic;
}
.manifesto strong { color: var(--cyan); font-style: normal; font-weight: 600; }


/* ─── BRIEFING SECTION ───────────────────────────────────────────────────── */
#briefing {
  background: linear-gradient(135deg, var(--bg2) 0%, rgba(17, 30, 51, 0.8) 100%);
  position: relative;
  overflow: hidden;
}
#briefing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, var(--cyan-glow), transparent 70%);
  pointer-events: none;
}

.briefing-deliverables {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.briefing-card {
  background: var(--card);
  border: 1px solid var(--cyan-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: transform var(--duration), box-shadow var(--duration);
}
.briefing-card:hover {
  transform: translateY(-4px) scale(1.005);
  box-shadow: var(--shadow-hover);
}

.briefing-icon {
  width: 64px; height: 64px;
  background: var(--cyan-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  border: 1px solid var(--cyan-border);
}

.briefing-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}
.briefing-card p { color: var(--muted); font-size: 14px; line-height: 1.7; }

.briefing-steps {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 32px;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.briefing-step { text-align: center; flex: 1; min-width: 180px; }

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(46, 232, 211, 0.1);
  border: 1px solid var(--cyan-border);
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 12px;
}

.briefing-step p { color: var(--muted); font-size: 14px; font-weight: 500; }

.briefing-cred-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}


/* ─── VIDEO / CONTENT SECTION ────────────────────────────────────────────── */
.video-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card2);
  aspect-ratio: 16 / 9;
}
.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}


/* ─── NEWS ARTICLES ──────────────────────────────────────────────────────── */
.news-article {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  margin: 0 auto 24px;
  max-width: 860px;
  transition: border-color var(--duration);
}
.news-article:hover { border-color: var(--cyan-border); }

.news-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.news-tag {
  background: var(--cyan-bg);
  color: var(--cyan);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--cyan-border);
}

.news-date {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #4a6180;
}

.news-article-title {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 12px;
}

.news-article-lead {
  font-size: 15px;
  color: #a8b8d0;
  line-height: 1.7;
  border-left: 3px solid var(--cyan);
  padding-left: 16px;
  margin-bottom: 28px;
}

.news-highlight-grid { display: flex; flex-direction: column; gap: 20px; }

.news-highlight {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg3);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  border: 1px solid var(--border);
}

.news-highlight-icon { font-size: 22px; flex-shrink: 0; margin-top: 1px; }

.news-highlight-label {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.news-highlight p {
  font-size: 14px;
  color: #8a9db8;
  line-height: 1.7;
  margin: 0;
}

.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--cyan-border);
  background: rgba(46, 232, 211, 0.06);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  transition: background 0.15s;
  margin-top: 4px;
}
.news-read-more:hover { background: rgba(46, 232, 211, 0.15); }


/* ─── CTA SECTION ────────────────────────────────────────────────────────── */
#cta {
  background: var(--bg3);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(46, 232, 211, 0.08), transparent);
  pointer-events: none;
}

.cta-content { position: relative; z-index: 1; }

.cta-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.cta-title .c { color: var(--cyan); }

.cta-sub {
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.7;
}

.email-form {
  display: flex;
  align-items: center;
  max-width: 440px;
  margin: 32px auto 0;
  background: var(--card);
  border: 1px solid var(--cyan-border);
  border-radius: 500px;
  overflow: hidden;
  padding: 4px;
}
.email-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  padding: 12px 20px;
}
.email-form input::placeholder { color: var(--muted); }
.email-form button {
  background: var(--cyan);
  border: none;
  cursor: pointer;
  width: 40px; height: 40px;
  border-radius: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--duration);
  flex-shrink: 0;
}
.email-form button:hover { background: var(--cyan-dim); }
.email-form button svg { color: #080f1c; width: 18px; height: 18px; }
.form-caption { font-size: 12px; color: var(--muted); margin-top: 10px; }


/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 64px 48px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: var(--content-width);
  margin: 0 auto 48px;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 16px;
}
.footer-logo .w { color: #fff; }
.footer-logo .c { color: var(--cyan); }
.footer-logo .llc { font-size: 11px; color: var(--muted); font-weight: 500; margin-left: 4px; vertical-align: middle; }

.footer-desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-socials { display: flex; gap: 12px; }

.social-btn {
  width: 40px; height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--muted);
  transition: background var(--duration), border-color var(--duration), color var(--duration);
}
.social-btn:hover {
  background: rgba(46, 232, 211, 0.1);
  border-color: var(--cyan-border);
  color: var(--cyan);
}
.social-btn svg { width: 18px; height: 18px; }

.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.footer-col a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  padding: 5px 0;
  transition: color var(--duration);
}
.footer-col a:hover { color: var(--cyan); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
}

.footer-copy { color: var(--muted); font-size: 13px; }


/* ─── FORM INPUTS (offering pages) ───────────────────────────────────────── */
.form-input {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg2);
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color var(--duration);
}
.form-input:focus {
  outline: none;
  border-color: var(--cyan-border);
}


/* ─── BUNDLE CARDS ───────────────────────────────────────────────────────── */
.bundle-card {
  background: linear-gradient(135deg, rgba(46, 232, 211, 0.06) 0%, rgba(46, 232, 211, 0.02) 100%);
  border: 1px solid var(--cyan-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 32px;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.bundle-card h4 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  color: var(--cyan);
  margin-bottom: 12px;
}
.bundle-card p { color: var(--muted); font-size: 14px; line-height: 1.6; }

.bundle-price {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-top: 12px;
}

.pricing-addon {
  background: var(--cyan-bg);
  border: 1px solid var(--cyan-border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-secondary);
}
.addon-price { color: var(--cyan); font-weight: 700; }


/* ─── TRUST CREDENTIAL STRIP (offering pages) ────────────────────────────── */
.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 20px 24px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}


/* ─── FAQ ACCORDION ──────────────────────────────────────────────────────── */
.faq-section { background: var(--bg2); }

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--duration);
}
.faq-item:hover { border-color: var(--cyan-border); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
  transition: color var(--duration);
}
.faq-question:hover { color: var(--cyan); }

.faq-answer {
  padding: 0 24px 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}


/* ─── SCROLL REVEAL ──────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.05s; }
.reveal-d2 { transition-delay: 0.12s; }
.reveal-d3 { transition-delay: 0.19s; }
.reveal-d4 { transition-delay: 0.26s; }
.reveal-d5 { transition-delay: 0.33s; }
.reveal-d6 { transition-delay: 0.40s; }


/* ─── ANIMATIONS ─────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.8); }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

@keyframes scrollDot {
  0%   { transform: translateY(0); opacity: 1; }
  80%  { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(60px, -40px) scale(1.1); }
  66%      { transform: translate(-30px, 30px) scale(0.95); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(-50px, 50px) scale(0.9); }
  66%      { transform: translate(40px, -20px) scale(1.05); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(30px, 60px) scale(1.08); }
}

@keyframes glowPulse {
  0%, 100% { text-shadow: none; }
  50%      { text-shadow: 0 0 20px rgba(54, 215, 183, 0.15); }
}

@keyframes borderRotate {
  0%   { --angle: 0deg; }
  100% { --angle: 360deg; }
}

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}


/* ─── HERO ORBS (Animated gradient blobs) ───────────────────────────────── */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 1;
}

.hero-orb-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(54, 215, 183, 0.2) 0%, transparent 70%);
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  animation: orbFloat1 30s ease-in-out infinite;
}

.hero-orb-2 { display: none; }
.hero-orb-3 { display: none; }

/* Noise texture overlay for depth */
.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.03;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}


/* ─── GLOW STAT NUMBERS ─────────────────────────────────────────────────── */
.glow-num {
  animation: glowPulse 3s ease-in-out infinite;
}


/* ─── GLASS CARDS ───────────────────────────────────────────────────────── */
.glass-card {
  background: rgba(12, 22, 38, 0.5) !important;
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border: 1px solid rgba(54, 215, 183, 0.08) !important;
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(54, 215, 183, 0.3), rgba(232, 213, 183, 0.15), transparent);
}

.glass-card:hover {
  background: rgba(12, 22, 38, 0.65) !important;
  border-color: rgba(54, 215, 183, 0.15) !important;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 30px rgba(54, 215, 183, 0.06);
}


/* ─── ANIMATED GRADIENT BORDER (Featured cards) ─────────────────────────── */
.tier-card.tier-featured {
  border-color: rgba(46, 232, 211, 0.2);
  background: linear-gradient(160deg, rgba(46, 232, 211, 0.04) 0%, var(--card) 60%);
}


/* ─── SECTION GRADIENT MESH BACKGROUNDS ─────────────────────────────────── */
.tier-section {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.tier-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(54, 215, 183, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

#topics {
  position: relative;
  overflow: hidden;
}

#topics::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 213, 183, 0.03) 0%, transparent 70%);
  pointer-events: none;
}


/* ─── SOCIAL PROOF GLASS STRIP ──────────────────────────────────────────── */
.social-proof {
  background: rgba(6, 11, 22, 0.6);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border-top: 1px solid rgba(54, 215, 183, 0.06);
  border-bottom: 1px solid rgba(54, 215, 183, 0.06);
  padding: 56px 24px;
  position: relative;
  overflow: hidden;
}

.social-proof::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(54, 215, 183, 0.2), rgba(232, 213, 183, 0.1), transparent);
}

.social-proof::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(54, 215, 183, 0.15), transparent);
}

.proof-stat {
  font-family: 'Syne', sans-serif;
  font-size: 52px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--cyan) 0%, #4ae3c6 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}


/* ─── EXPERT CARD GLASS UPGRADE ─────────────────────────────────────────── */
.expert-card {
  background: rgba(12, 22, 38, 0.4);
  border: 1px solid rgba(54, 215, 183, 0.1);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  position: relative;
  overflow: hidden;
}

.expert-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(54, 215, 183, 0.25), transparent);
}

.expert-card:hover {
  border-color: rgba(54, 215, 183, 0.2);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(54, 215, 183, 0.2), 0 0 20px rgba(54, 215, 183, 0.08);
}


/* ─── SHIMMER EFFECT ON PRIMARY BUTTON ──────────────────────────────────── */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  animation: shimmer 4s ease-in-out infinite;
}


/* ─── DIVIDER LINES BETWEEN SECTIONS ────────────────────────────────────── */
section + section::before,
section + div::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(80%, 800px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(54, 215, 183, 0.12), rgba(232, 213, 183, 0.06), transparent);
  pointer-events: none;
}


/* ─── EXPERT CARDS (Hero) ───────────────────────────────────────────────── */
.hero-experts {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-bottom: 48px;
  animation: fadeUp 0.6s 0.25s ease both;
}

.expert-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(15, 27, 46, 0.7);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  backdrop-filter: blur(12px);
  transition: border-color var(--duration), box-shadow var(--duration);
}
.expert-card:hover {
  border-color: var(--cyan-border);
  box-shadow: 0 0 24px rgba(46, 232, 211, 0.1);
}

.expert-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--cyan-border);
  object-fit: cover;
  flex-shrink: 0;
}

.expert-info { text-align: left; }

.expert-name {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.expert-title {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

.expert-badges {
  display: flex;
  gap: 6px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.expert-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--cyan-bg);
  border: 1px solid var(--cyan-border);
  border-radius: var(--radius-pill);
  padding: 2px 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--cyan);
}

@media (max-width: 768px) {
  .hero-experts { flex-direction: column; gap: 16px; }
  .expert-card { width: 100%; max-width: 340px; }
}


/* ─── SERVICE TIER JOURNEY ──────────────────────────────────────────────── */
.tier-section {
  background: var(--bg);
  padding: 96px 24px;
  position: relative;
  overflow: hidden;
}
.tier-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(46, 232, 211, 0.03), transparent 70%);
  pointer-events: none;
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--content-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.tier-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
  position: relative;
  transition: border-color var(--duration) var(--ease), transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.tier-card:hover {
  border-color: rgba(46, 232, 211, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}
/* tier-featured styled via WOW section below */

.tier-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  opacity: 0.7;
}

.tier-name {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.tier-price {
  font-size: 14px;
  color: var(--cyan);
  font-weight: 600;
  margin-bottom: 16px;
}

.tier-desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.tier-features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}

.tier-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  padding: 6px 0;
}

.tier-features li::before {
  content: '✓';
  color: var(--cyan);
  font-weight: 700;
  flex-shrink: 0;
}

.tier-arrow {
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 24px;
}

@media (max-width: 1024px) {
  .tier-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}


/* ─── LEAD MAGNET CTA ───────────────────────────────────────────────────── */
.cta-newsletter {
  background: linear-gradient(135deg, var(--bg3) 0%, rgba(46, 232, 211, 0.04) 100%);
  border: 1px solid var(--cyan-border);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.cta-newsletter h3 {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.cta-newsletter p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.6;
}


/* ─── BREADCRUMB ────────────────────────────────────────────────────────── */
.breadcrumb {
  padding: calc(var(--nav-height) + 20px) 24px 0;
  max-width: var(--content-width);
  margin: 0 auto;
  font-size: 13px;
  color: var(--muted);
}
.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color var(--duration);
}
.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb span {
  margin: 0 6px;
  opacity: 0.5;
}


/* ─── GRADIENT SECTION ──────────────────────────────────────────────────── */
.gradient-section {
  position: relative;
}
.gradient-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(46, 232, 211, 0.03), transparent 70%);
  pointer-events: none;
}


/* ─── FEATURED SECTION HOVER ─────────────────────────────────────────────── */
.featured-hero:hover div:last-child div:nth-child(4) div:first-child {
  transform: scale(1.1);
  background: rgba(46, 232, 211, 0.35);
}
#featured a:hover img { transform: scale(1.05); }
#featured a:hover div[style*="opacity:0"] { opacity: 1 !important; }


/* ─── VIDEO SPOTLIGHT ───────────────────────────────────────────────────────── */
.video-spotlight {
  background: linear-gradient(135deg, var(--bg2) 0%, var(--bg) 100%);
  padding: 80px 24px;
  border-bottom: 1px solid var(--border);
}
.video-spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
  max-width: var(--content-width);
  margin: 0 auto;
}
@media (max-width: 768px) {
  .video-spotlight-grid { grid-template-columns: 1fr; gap: 32px; }
}


/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  nav { padding: 0 20px; }

  .hamburger { display: block; }

  .nav-links {
    display: none !important;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw; height: 100vh;
    background: var(--bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    z-index: 9999;
    padding: 2rem;
    overflow-y: auto;
  }
  body.nav-open { overflow: hidden; }
  .nav-links.open { display: flex !important; }
  .nav-links li { list-style: none; }
  .nav-links a { font-size: 1.2rem; color: #fff; }

  .nav-dropdown {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    min-width: auto;
    margin-top: 0;
    padding: 0;
    transform: none !important;
  }

  .nav-cta { display: none; }

  .hero-title { font-size: clamp(36px, 10vw, 48px); line-height: 1.0; }
  .hero-stats { gap: 32px; }
  .services-preview-grid { grid-template-columns: 1fr !important; }
  .topics-grid { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: 1fr; }
  .briefing-deliverables { grid-template-columns: 1fr; gap: 20px; }
  .briefing-steps { flex-direction: column; gap: 20px; }
  .briefing-cred-bar { gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-socials { justify-content: center; }

  .news-article { padding: 24px 20px; }
  .news-article-title { font-size: 18px; }
  .news-highlight { flex-direction: column; gap: 8px; }
  #featured div[style*="grid-template-columns: repeat(4"] { grid-template-columns: repeat(2, 1fr) !important; }

  .fabcon-grid { grid-template-columns: 1fr !important; }

  /* Mobile fixes for offering page inline grids */
  .more-offerings-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .breadcrumb { padding-top: calc(var(--nav-height) + 12px); font-size: 12px; }
  .cta-newsletter { padding: 28px 20px; }

  /* Who It's For grid — force single column on mobile */
  div[style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
}

@media (max-width: 600px) {
  section { padding: var(--section-pad-mobile) 20px; }
  footer { padding: 48px 20px 24px; }
  .more-offerings-grid { grid-template-columns: 1fr !important; }
}


/* ─── TOPICS GRID ────────────────────────────────────────────────────────── */
#topics { background: var(--bg2); }

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


/* ─── MOBILE STICKY CTA ──────────────────────────────────────────────────── */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(8, 15, 28, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--cyan-border);
  padding: 12px 20px;
  text-align: center;
}

.mobile-sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--cyan);
  color: #080f1c;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 500px;
  text-decoration: none;
  box-shadow: var(--shadow-glow);
  transition: background var(--duration);
}
.mobile-sticky-cta a:hover { background: var(--cyan-hover); }

@media (max-width: 768px) {
  .mobile-sticky-cta { display: block; }
  body { padding-bottom: 72px; }
}


/* Social proof styles consolidated in WOW section above */

.proof-detail {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .proof-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .proof-card { padding: 24px 16px; }
  .proof-stat { font-size: 28px; }
}

@media (max-width: 480px) {
  .proof-grid { grid-template-columns: 1fr 1fr; }
}


/* ─── SAMPLE REPORT MODAL ────────────────────────────────────────────────── */
.report-preview {
  position: relative;
  margin-top: 24px;
  border: 1px solid var(--cyan-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--card);
}

.report-preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: rgba(46, 232, 211, 0.06);
  border-bottom: 1px solid var(--cyan-border);
}

.report-preview-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.report-preview-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.report-preview-actions a {
  font-size: 13px;
  font-weight: 600;
  color: var(--cyan);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: opacity var(--duration);
}
.report-preview-actions a:hover { opacity: 0.8; }

.report-preview iframe {
  width: 100%;
  height: 500px;
  border: none;
  background: #fff;
}

.report-preview-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--card));
  pointer-events: none;
}

.report-preview-expand {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

/* Full-screen report modal */
.report-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  padding: 24px;
}
.report-modal.active { display: flex; flex-direction: column; }

.report-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: var(--card);
  border-bottom: 1px solid var(--border);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  flex-shrink: 0;
}

.report-modal-title {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.report-modal-close {
  background: none;
  border: 1px solid var(--border);
  color: var(--muted);
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background var(--duration), color var(--duration);
}
.report-modal-close:hover { background: rgba(255,255,255,0.1); color: #fff; }

.report-modal iframe {
  flex: 1;
  width: 100%;
  border: none;
  background: #fff;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}


/* ─── CASE STUDY / TESTIMONIAL CARDS ───────────────────────────────────── */
.case-studies { padding: var(--section-pad) 24px; background: var(--bg); }
.case-studies .section-label { text-transform: uppercase; font-size: 0.75rem; letter-spacing: 2px; color: var(--cyan); margin-bottom: 12px; }
.case-studies h2 { font-family: 'Syne', sans-serif; font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 48px; color: var(--text); }
.case-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; max-width: var(--content-width); margin: 0 auto; }
.case-card {
  background: var(--card); border: 1px solid var(--border-light); border-radius: var(--radius-md);
  padding: 32px; position: relative; transition: border-color var(--duration) var(--ease);
  box-shadow: var(--shadow-card);
}
.case-card:hover { border-color: var(--cyan-border); }
.case-card .case-result { font-family: 'Syne', sans-serif; font-size: 1.75rem; font-weight: 700; color: var(--text); margin-bottom: 8px; line-height: 1.2; }
.case-card .case-desc { color: var(--muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 16px; }
.case-card .case-metric { display: inline-block; background: var(--cyan-bg); border: 1px solid var(--cyan-border); border-radius: var(--radius-sm); padding: 4px 12px; font-size: 0.8rem; color: var(--cyan); font-weight: 600; }


/* ─── PAGE-SPECIFIC STYLES ─────────────────────────────────────────────── */
/* Styles unique to individual pages, extracted from embedded blocks */

/* ── about.html ── */
.chevron {
      display: inline-block;
      width: 0;
      height: 0;
      border-left: 4px solid transparent;
      border-right: 4px solid transparent;
      border-top: 4px solid currentColor;
      margin-left: 4px;
      vertical-align: middle;
      transition: transform 0.2s;
    }
.cred-chip {
      background: var(--card);
      border: 1px solid var(--border);
      padding: 0.75rem 1.5rem;
      border-radius: 100px;
      font-size: 0.85rem;
      font-weight: 600;
      color: #e8edf3;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
.cred-dot {
      width: 8px;
      height: 8px;
      background: var(--cyan);
      border-radius: 50%;
      flex-shrink: 0;
    }
.credential-badge {
      background: rgba(46,232,211,0.08);
      border: 1px solid var(--cyan-border);
      color: var(--cyan);
      padding: 0.3rem 0.85rem;
      border-radius: 100px;
      font-size: 0.75rem;
      font-weight: 600;
      white-space: nowrap;
    }
.credentials-bar {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
      padding: 3rem 2rem;
    }
.cta-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }
.cta-section {
      text-align: center;
      padding: 5rem 2rem;
    }
.cyan { color: var(--cyan); }
.eyebrow {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--cyan);
      background: rgba(46,232,211,0.08);
      border: 1px solid var(--cyan-border);
      padding: 0.4rem 1.25rem;
      border-radius: 100px;
      margin-bottom: 1.5rem;
    }
.footer-bottom-links a { color: var(--muted); font-size: 0.8rem; transition: color 0.15s; }
.footer-brand .nav-logo { margin-bottom: 1rem; }
.founder-avatar {
      width: 120px;
      height: 120px;
      min-width: 120px;
      border-radius: 16px;
      border: 2px solid var(--cyan-border);
      overflow: hidden;
      background: var(--bg3);
    }
.founder-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 2.5rem;
      transition: border-color 0.3s, box-shadow 0.3s;
    }
.founder-credentials {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: 1.25rem;
    }
.founder-header {
      display: flex;
      align-items: center;
      gap: 1.25rem;
      margin-bottom: 1.5rem;
    }
.founder-meta h3 {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 1.5rem;
      margin-bottom: 0.25rem;
    }
.founder-title {
      color: var(--cyan);
      font-size: 0.9rem;
      font-weight: 600;
    }
.founders-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2.5rem;
      margin-top: 2rem;
    }
.glow-bg {
      position: relative;
    }
.logo-mates { color: var(--cyan); }
.logo-power { color: #fff; }
.nav-dropdown-menu {
      display: none;
      position: absolute;
      top: calc(100% + 8px);
      left: 0;
      min-width: 320px;
      background: rgba(15,27,46,0.98);
      backdrop-filter: blur(20px);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 0.5rem;
      box-shadow: 0 24px 48px rgba(0,0,0,0.4);
    }
.nav-logo { display: flex; align-items: center; gap: 0; font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.25rem; letter-spacing: -0.02em; }
.pillar-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 2.25rem;
      transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    }
.pillar-link {
      color: var(--cyan);
      font-size: 0.85rem;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      transition: gap 0.2s;
    }
.pillars-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
.section-alt { background: var(--bg2); }
.section-full { max-width: none; }
.site-footer {
      background: var(--bg2);
      border-top: 1px solid var(--border);
      padding: 4rem 2rem 2rem;
    }
.site-nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 2rem;
      height: 72px;
      background: rgba(8,15,28,0.75);
      backdrop-filter: blur(24px) saturate(1.4);
      -webkit-backdrop-filter: blur(24px) saturate(1.4);
      border-bottom: 1px solid var(--border);
    }
.timeline-section { padding-bottom: 3rem; }
.timeline-item {
      position: relative;
      padding-bottom: 2.5rem;
    }
.timeline-year {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--cyan);
      margin-bottom: 0.35rem;
    }

/* ── tenant-scan-enterprise.html ── */
.badge {
      display: inline-block;
      background: var(--cyan-dim);
      border: 1px solid var(--cyan-border);
      color: var(--cyan);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 100px;
      margin-bottom: 1.5rem;
    }
.comparison-links {
      display: flex;
      gap: 2rem;
      justify-content: center;
      flex-wrap: wrap;
    }
.comparison-strip {
      background: var(--bg2);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 2.5rem 2rem;
      text-align: center;
    }
.compliance-badge {
      display: inline-block;
      background: var(--cyan-dim);
      border: 1px solid var(--cyan-border);
      color: var(--cyan);
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 3px 10px;
      border-radius: 100px;
      margin-bottom: 1rem;
    }
.compliance-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 1.75rem;
      transition: border-color 0.2s, transform 0.2s;
    }
.compliance-controls {
      margin-top: 0.75rem;
      font-size: 0.78rem;
      color: var(--cyan);
      font-weight: 600;
    }
.compliance-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.5rem;
    }
.feature-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 1.75rem;
      transition: border-color 0.2s, transform 0.2s;
    }
.feature-icon {
      font-size: 1.75rem;
      margin-bottom: 1rem;
    }
.features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
    }
.final-cta {
      text-align: center;
      background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(46, 232, 211, 0.07) 0%, transparent 70%);
    }
.final-cta-group {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 1.5rem;
    }
.footer-inner {
      max-width: 1080px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1.5rem;
      flex-wrap: wrap;
    }
.footer-social {
      display: flex;
      gap: 1rem;
    }
.hero {
      position: relative;
      min-height: 600px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 6rem 2rem 4rem;
      overflow: hidden;
    }
.hero-cta-group {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 2rem;
    }
.hero-trust {
      display: flex;
      gap: 2rem;
      justify-content: center;
      flex-wrap: wrap;
      font-size: 0.8rem;
      color: var(--muted);
    }
.how-it-works-paid { background: var(--bg3); }
.included-card {
      background: var(--card2);
      border: 1px solid var(--cyan);
      box-shadow: 0 0 32px rgba(46, 232, 211, 0.1);
      border-radius: 16px;
      padding: 2rem;
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      gap: 1.25rem;
      flex-wrap: wrap;
    }
.proof-stat { text-align: center; }
.roi-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 1.75rem;
      text-align: center;
      transition: border-color 0.2s;
    }
.roi-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 1.25rem;
    }
.roi-value {
      font-family: 'Syne', sans-serif;
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--cyan);
      margin-bottom: 0.4rem;
    }
.trust-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
.trust-row {
      display: flex;
      gap: 2.5rem;
      flex-wrap: wrap;
    }
.why-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 1.75rem;
    }
.why-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
      gap: 1.5rem;
    }

/* ── 404.html ── */
.error-actions {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }
.error-code {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: clamp(8rem, 20vw, 14rem);
      line-height: 1;
      color: var(--cyan);
      letter-spacing: -0.04em;
      margin-bottom: 1rem;
      text-shadow: 0 0 80px rgba(46,232,211,0.2);
    }
.error-content {
      position: relative;
      z-index: 1;
      max-width: 560px;
    }
.error-footer {
      text-align: center;
      padding: 2rem;
      border-top: 1px solid var(--border);
    }
.error-footer-copy {
      color: var(--muted);
      font-size: 0.8rem;
    }
.error-footer-links {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      margin-top: 0.75rem;
    }
.error-message {
      color: var(--muted);
      font-size: 1.05rem;
      line-height: 1.8;
      margin-bottom: 2.5rem;
    }
.error-page {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 2rem;
      padding-top: 72px;
      position: relative;
    }
.error-title {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: clamp(1.5rem, 3vw, 2rem);
      margin-bottom: 1rem;
      letter-spacing: -0.02em;
    }

/* ═══════════════════════════════════════════════════════════════════════════
   SERVICE PAGES — WOW Treatment
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── SERVICE CARD (services.html listing) ─────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(12, 22, 38, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-decoration: none;
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease), transform 0.25s var(--ease);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(54, 215, 183, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.service-card:hover {
  border-color: rgba(54, 215, 183, 0.25);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(54, 215, 183, 0.2);
  transform: translateY(-4px);
}

.service-card:hover::before {
  opacity: 1;
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 12px rgba(54, 215, 183, 0.3));
}

.card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.card-header h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.price-badge {
  flex-shrink: 0;
  background: rgba(54, 215, 183, 0.1);
  border: 1px solid rgba(54, 215, 183, 0.2);
  color: var(--cyan);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.service-card .description {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
  flex: 1;
}

.learn-more {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--cyan);
  transition: opacity 0.2s;
}

.service-card:hover .learn-more {
  opacity: 0.8;
}


/* ─── CATEGORY GROUPS (services.html) ──────────────────────────────────── */
.category-group {
  margin-bottom: 4rem;
}

.category-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.25rem;
  padding-left: 2px;
}


/* ─── STATS BAR (services hero) ───────────────────────────────────────── */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  background: rgba(12, 22, 38, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
}

.stats-bar .stat-item {
  text-align: center;
}

.stats-bar .stat-value {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--cyan) 0%, #4ae3c6 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 2px;
}

.stats-bar .stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.04em;
}


/* ─── BUNDLES GRID ─────────────────────────────────────────────────────── */
.bundles-section {
  background: var(--bg2);
}

.bundles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.bundle-card {
  position: relative;
  background: rgba(12, 22, 38, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.25s;
  overflow: hidden;
}

.bundle-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(54, 215, 183, 0.15), transparent);
}

.bundle-card:hover {
  border-color: rgba(54, 215, 183, 0.2);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(54, 215, 183, 0.2);
  transform: translateY(-4px);
}

.bundle-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.bundle-includes {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
}

.bundle-pricing {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-top: 1rem;
}

.bundle-pricing .bundle-price {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
}

.bundle-pricing .bundle-original {
  font-size: 0.9rem;
  color: var(--muted);
  text-decoration: line-through;
}

.bundle-savings {
  display: inline-block;
  margin-top: 0.5rem;
  background: rgba(54, 215, 183, 0.1);
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

.bundle-card.featured {
  grid-column: 1 / -1;
  border-color: rgba(54, 215, 183, 0.2);
  background: linear-gradient(135deg, rgba(54, 215, 183, 0.06) 0%, rgba(12, 22, 38, 0.6) 100%);
  box-shadow: 0 0 48px rgba(54, 215, 183, 0.06);
}

.featured-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.featured-content {
  flex: 1;
  min-width: 280px;
}

.bundle-badge {
  display: inline-block;
  background: var(--cyan);
  color: var(--bg);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
}


/* ─── RISK CARDS (tenant-scan, etc.) ───────────────────────────────────── */
.risks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.risk-card {
  position: relative;
  background: rgba(12, 22, 38, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.25s;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.risk-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(54, 215, 183, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}

.risk-card:hover {
  border-color: rgba(54, 215, 183, 0.2);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(54, 215, 183, 0.2);
  transform: translateY(-4px);
}

.risk-card:hover::before { opacity: 1; }

.risk-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 12px rgba(54, 215, 183, 0.25));
}

.risk-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.risk-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
}


/* ─── DELIVERABLE CARDS ────────────────────────────────────────────────── */
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.deliverable-card {
  position: relative;
  background: rgba(12, 22, 38, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.25s;
  overflow: hidden;
}

.deliverable-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(54, 215, 183, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}

.deliverable-card:hover {
  border-color: rgba(54, 215, 183, 0.2);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(54, 215, 183, 0.2);
  transform: translateY(-4px);
}

.deliverable-card:hover::before { opacity: 1; }

.deliverable-card .icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 12px rgba(54, 215, 183, 0.25));
}

.deliverable-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.deliverable-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
}


/* ─── PROOF STRIP (service pages) ──────────────────────────────────────── */
.proof-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 40px 24px;
  background: rgba(12, 22, 38, 0.6);
  border-top: 1px solid rgba(54, 215, 183, 0.06);
  border-bottom: 1px solid rgba(54, 215, 183, 0.06);
  position: relative;
  overflow: hidden;
}

.proof-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(54, 215, 183, 0.2), rgba(232, 213, 183, 0.1), transparent);
}

.proof-strip::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(54, 215, 183, 0.15), transparent);
}

.proof-strip .proof-stat {
  text-align: center;
}

.proof-strip .stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--cyan) 0%, #4ae3c6 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 4px;
}

.proof-strip .stat-desc {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}


/* ─── HERO PRICE DISPLAY ───────────────────────────────────────────────── */
.hero-price {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.hero-price .price-note {
  font-size: 0.4em;
  font-weight: 500;
  -webkit-text-fill-color: var(--muted);
  color: var(--muted);
}


/* ─── SECURITY STRIP ───────────────────────────────────────────────────── */
.security-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: rgba(54, 215, 183, 0.04);
  border: 1px solid rgba(54, 215, 183, 0.12);
  border-radius: var(--radius-lg);
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}

.security-strip span::before {
  content: '✓';
  color: var(--cyan);
  margin-right: 0.5rem;
  font-weight: 700;
}


/* ─── GLASS UPGRADE FOR ALL CARD TYPES ─────────────────────────────────── */
.feature-card,
.compliance-card,
.roi-card,
.why-card {
  background: rgba(12, 22, 38, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease), transform 0.25s var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.feature-card::before,
.compliance-card::before,
.roi-card::before,
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(54, 215, 183, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}

.feature-card:hover,
.compliance-card:hover,
.roi-card:hover,
.why-card:hover {
  border-color: rgba(54, 215, 183, 0.2);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(54, 215, 183, 0.2);
  transform: translateY(-4px);
}

.feature-card:hover::before,
.compliance-card:hover::before,
.roi-card:hover::before,
.why-card:hover::before {
  opacity: 1;
}


/* ─── CTA SECTION UPGRADE ──────────────────────────────────────────────── */
.cta-section {
  position: relative;
  text-align: center;
  padding: var(--section-pad) 24px;
  background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(54, 215, 183, 0.06) 0%, transparent 70%);
}

.cta-inner {
  max-width: 720px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 1.25rem;
}

.cta-inner .sub {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.cta-inner .cyan {
  background: linear-gradient(135deg, var(--cyan) 0%, #4ae3c6 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-cta-lg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--bg);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.3s, transform 0.15s, box-shadow 0.3s;
  box-shadow: 0 0 32px rgba(255, 255, 255, 0.1);
}

.btn-cta-lg:hover {
  background: var(--cyan);
  color: var(--bg);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 0 56px rgba(54, 215, 183, 0.35);
}

.btn-cta-lg::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  animation: shimmer 4s ease-in-out infinite;
}


/* ─── TRUST BADGES (services CTA) ──────────────────────────────────────── */
.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

.trust-icon {
  font-size: 1.1rem;
}


/* ─── FAQ UPGRADE ──────────────────────────────────────────────────────── */
.faq-item {
  background: rgba(12, 22, 38, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
}


/* ─── METHODOLOGY CARDS (services.html inline → class upgrade) ─────────── */
.method-card {
  background: rgba(12, 22, 38, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  transition: border-color 0.35s, transform 0.25s, box-shadow 0.35s;
  overflow: hidden;
  position: relative;
}

.method-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(54, 215, 183, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}

.method-card:hover {
  border-color: rgba(54, 215, 183, 0.2);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(54, 215, 183, 0.2);
  transform: translateY(-4px);
}

.method-card:hover::before { opacity: 1; }

.method-card .method-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 0 8px rgba(54, 215, 183, 0.2));
}

.method-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--cyan);
}

.method-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}


/* ─── INSIGHT CALLOUT BOX ──────────────────────────────────────────────── */
.insight-box {
  margin-top: 2rem;
  padding: 1.5rem 2rem;
  background: rgba(54, 215, 183, 0.04);
  border: 1px solid rgba(54, 215, 183, 0.15);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.insight-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(54, 215, 183, 0.3), transparent);
}

.insight-box p {
  font-size: 0.95rem;
  line-height: 1.7;
}


/* ─── WHO IT'S FOR CARDS ────────────────────────────────────────────────── */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.who-card {
  background: rgba(12, 22, 38, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  transition: border-color 0.35s, transform 0.25s;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card);
}

.who-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(54, 215, 183, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}

.who-card:hover {
  border-color: rgba(54, 215, 183, 0.2);
  transform: translateY(-4px);
}

.who-card:hover::before { opacity: 1; }

.who-check {
  color: var(--cyan);
  font-size: 1.25rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(54, 215, 183, 0.3));
}

.who-card h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
}

.who-card p {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}


/* ─── CASE STUDY CARDS ─────────────────────────────────────────────────── */
.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.case-card {
  background: rgba(12, 22, 38, 0.5);
  border: 1px solid rgba(54, 215, 183, 0.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.25s;
  overflow: hidden;
  position: relative;
}

.case-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(54, 215, 183, 0.25), transparent);
}

.case-card:hover {
  border-color: rgba(54, 215, 183, 0.25);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(54, 215, 183, 0.2);
  transform: translateY(-4px);
}

.case-label {
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.case-headline {
  font-family: 'Syne', sans-serif;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.case-description {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.case-result {
  color: var(--cyan);
  font-size: 0.85rem;
  font-weight: 600;
}


/* ─── MORE OFFERINGS GRID ──────────────────────────────────────────────── */
.more-offerings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.offering-link {
  display: block;
  text-decoration: none;
  background: rgba(12, 22, 38, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  transition: border-color 0.35s, transform 0.25s, box-shadow 0.35s;
  overflow: hidden;
  position: relative;
}

.offering-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(54, 215, 183, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}

.offering-link:hover {
  border-color: rgba(54, 215, 183, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.offering-link:hover::before { opacity: 1; }

.offering-link .offer-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 0 8px rgba(54, 215, 183, 0.2));
}

.offering-link h3 {
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.offering-link .offer-price {
  color: var(--cyan);
  font-weight: 700;
  font-size: 0.75rem;
  margin-bottom: 0.375rem;
}

.offering-link .offer-desc {
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.4;
}


/* ─── STEP CARDS ───────────────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.step-card {
  background: rgba(12, 22, 38, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  transition: border-color 0.35s, transform 0.25s;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card);
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(54, 215, 183, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}

.step-card:hover {
  border-color: rgba(54, 215, 183, 0.2);
  transform: translateY(-4px);
}

.step-card:hover::before { opacity: 1; }

.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
}

.step-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.step-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
}


/* ─── REPORT MOCKUP CARDS ──────────────────────────────────────────────── */
.report-section { background: var(--bg2); }

.report-mockup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.report-mockup-card {
  background: rgba(12, 22, 38, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  transition: border-color 0.35s, box-shadow 0.35s;
  overflow: hidden;
  position: relative;
}

.report-mockup-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(54, 215, 183, 0.2), transparent);
}

.report-mockup-card:hover {
  border-color: rgba(54, 215, 183, 0.2);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(54, 215, 183, 0.2);
}

.mockup-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.5rem;
}

.mockup-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}


/* ─── PRICING CARDS (service pages) ────────────────────────────────────── */
.pricing-section { background: var(--bg2); }

.pricing-grid {
  display: grid;
  gap: 1.5rem;
}

.pricing-card {
  background: rgba(12, 22, 38, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.25s;
  overflow: hidden;
  position: relative;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(54, 215, 183, 0.15), transparent);
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card.recommended {
  border-color: rgba(54, 215, 183, 0.25) !important;
  box-shadow: 0 0 48px rgba(54, 215, 183, 0.08);
}

.recommended-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
}

.pricing-tier {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.pricing-tagline {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.pricing-features li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
}

.pricing-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.pricing-note a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}


/* ─── FREE SCAN BANNER ─────────────────────────────────────────────────── */
.free-scan-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  background: rgba(54, 215, 183, 0.04);
  border: 1px solid rgba(54, 215, 183, 0.15);
  border-radius: var(--radius-lg);
}

.free-scan-banner p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.free-scan-banner strong {
  color: #fff;
}


/* ─── SERVICE PAGE RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .bundles-grid { grid-template-columns: 1fr; }
  .risks-grid { grid-template-columns: 1fr; }
  .deliverables-grid { grid-template-columns: 1fr; }
  .stats-bar { gap: 1.5rem; }
  .proof-strip { gap: 1.5rem; padding: 24px 16px; }
  .proof-strip .stat-num { font-size: 1.5rem; }
  .security-strip { gap: 1rem; flex-direction: column; text-align: center; }
  .featured-inner { flex-direction: column; text-align: center; }
  .who-grid { grid-template-columns: 1fr; }
  .more-offerings-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr !important; }
}


/* ─── UTILITY CLASSES ────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-muted  { color: var(--muted); }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 16px; }
.mt-2 { margin-top: 32px; }
.mt-3 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 16px; }
.mb-2 { margin-bottom: 32px; }


/* ═══════════════════════════════════════════════════════════════════════════
   BLOG
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Blog filters ── */
.blog-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.blog-filter {
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--muted);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-family: 'Figtree', sans-serif;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}
.blog-filter:hover { border-color: var(--cyan-border); color: var(--text); }
.blog-filter.active {
  background: var(--cyan-bg);
  border-color: var(--cyan);
  color: var(--cyan);
}

/* ── Blog card grid ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}
.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  border-color: var(--cyan-border);
  box-shadow: var(--shadow-hover);
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.blog-tag {
  background: var(--cyan-bg);
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
}
.blog-card-meta time {
  font-size: 0.8rem;
  color: var(--muted);
}
.blog-card h3 {
  margin-bottom: 0.5rem;
}
.blog-card h3 a {
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}
.blog-card h3 a:hover { color: var(--cyan); }
.blog-card > p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
  flex: 1;
}
.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.blog-read-time {
  font-size: 0.78rem;
  color: var(--muted);
}
.blog-read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cyan);
  text-decoration: none;
  transition: opacity var(--duration);
}
.blog-read-more:hover { opacity: 0.8; }

/* ── Blog post page ── */
.blog-post {
  max-width: 780px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + 2rem) 24px 4rem;
}
.blog-post-header {
  margin-bottom: 3rem;
}
.blog-post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.blog-back {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--duration);
}
.blog-back:hover { color: var(--cyan); }
.blog-post-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.blog-post-info time, .blog-post-info .blog-read-time {
  font-size: 0.8rem;
  color: var(--muted);
}
.blog-post h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 1rem;
}
.blog-post h1 span { color: var(--cyan); }
.blog-post-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.blog-post-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.blog-author-img, .blog-bio-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--cyan-border);
}
.blog-post-author div {
  display: flex;
  flex-direction: column;
}
.blog-post-author span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ── Blog post body ── */
.blog-post-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
}
.blog-post-body h2 {
  font-size: clamp(22px, 3vw, 28px);
  color: var(--text);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.blog-post-body p {
  margin-bottom: 1.25rem;
}
.blog-post-body strong { color: var(--text); }
.blog-post-body a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.blog-post-body a:hover { opacity: 0.8; }

/* ── Blog post bio + CTA ── */
.blog-post-bio {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-top: 3rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
}
.blog-bio-img { width: 56px; height: 56px; flex-shrink: 0; }
.blog-post-cta {
  text-align: center;
  padding: 2rem;
  background: var(--bg3);
  border: 1px solid var(--cyan-border);
  border-radius: var(--radius-lg);
  margin-top: 2rem;
}
.blog-post-cta h3 { margin-bottom: 0.5rem; }
.blog-post-cta p { color: var(--muted); margin-bottom: 1rem; }

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-post-meta { flex-direction: column; align-items: flex-start; }
  .blog-post-bio { flex-direction: column; align-items: center; text-align: center; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   PRICING COMPARISON TABLE
   ═══════════════════════════════════════════════════════════════════════════ */

.compare-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -24px;
  padding: 0 24px;
}
.compare-table {
  width: 100%;
  min-width: 900px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.88rem;
}
.compare-table th,
.compare-table td {
  padding: 0.75rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--text-secondary);
  min-width: 200px;
}
.compare-table thead th {
  background: var(--bg3);
  position: sticky;
  top: 0;
  z-index: 2;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  padding: 1rem;
  border-bottom: 2px solid var(--cyan-border);
}
.compare-table thead th.compare-featured {
  background: rgba(46, 232, 211, 0.06);
  border-top: 3px solid var(--cyan);
  border-left: 1px solid var(--cyan-border);
  border-right: 1px solid var(--cyan-border);
}
.compare-table td.compare-featured {
  background: rgba(46, 232, 211, 0.03);
  border-left: 1px solid var(--cyan-border);
  border-right: 1px solid var(--cyan-border);
}
.compare-price {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--cyan);
  margin-top: 0.25rem;
}
.compare-timeline {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.15rem;
}
.compare-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}
.compare-table tbody tr:hover td.compare-featured {
  background: rgba(46, 232, 211, 0.05);
}
.compare-check {
  color: var(--cyan);
  font-size: 1.1rem;
}
.compare-dash {
  color: var(--muted);
  font-size: 0.9rem;
}
.compare-section-row td {
  background: var(--bg2) !important;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cyan);
  text-align: left !important;
  padding: 0.6rem 1rem;
}
.compare-cta-row td {
  padding: 1.25rem 1rem;
  border-bottom: none;
}
.compare-cta-row .btn-primary,
.compare-cta-row .btn-outline {
  font-size: 0.82rem;
  padding: 0.5rem 1.25rem;
}

/* ── Toggle for Individual vs Bundles ── */
.pricing-toggle {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.pricing-toggle-btn {
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--muted);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  font-family: 'Figtree', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}
.pricing-toggle-btn:hover { border-color: var(--cyan-border); color: var(--text); }
.pricing-toggle-btn.active {
  background: var(--cyan-bg);
  border-color: var(--cyan);
  color: var(--cyan);
}

/* ─── TESTIMONIALS ──────────────────────────────────────────────────────── */
.testimonials-section {
  padding: 96px 24px;
  background: var(--bg);
}

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

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: transform var(--duration) var(--ease), border-color var(--duration), box-shadow var(--duration);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--cyan-border);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(54, 215, 183, 0.2), 0 0 0 1px var(--cyan-border);
}

.testimonial-stars {
  color: var(--cyan);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-name {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 2px;
}

.testimonial-role {
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .compare-table { font-size: 0.8rem; }
  .compare-table th, .compare-table td { padding: 0.5rem 0.6rem; }
  .compare-price { font-size: 1.1rem; }
}

/* ─── CLIENT LOGO STRIP ─────────────────────────────────────────────── */
.logo-strip {
  background: var(--bg);
  padding: 48px 24px;
  overflow: hidden;
}
.logo-strip .container {
  text-align: center;
}
.logo-strip-label {
  font-family: 'Figtree', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.logo-strip-scroll {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.logo-strip-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: logoScroll 30s linear infinite;
}
.logo-pill {
  flex-shrink: 0;
  padding: 10px 24px;
  background: rgba(12, 22, 38, 0.6);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
  white-space: nowrap;
  backdrop-filter: blur(8px);
}
@keyframes logoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── RESULTS STATS BAR ─────────────────────────────────────────────── */
.results-stats {
  background: var(--bg2);
  padding: 80px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.results-stats-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.results-stat-item {
  padding: 32px 16px;
}
.results-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #36d7b7, #4ae3c6, #e8d5b7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.results-stat-label {
  font-family: 'Figtree', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.results-stat-detail {
  font-family: 'Figtree', sans-serif;
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
}
@media (max-width: 768px) {
  .results-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .results-stat-item { padding: 24px 8px; }
}

/* ─── CTA SPLIT LAYOUT ──────────────────────────────────────────────── */
.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.cta-checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}
.cta-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Figtree', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--text-secondary);
}
.cta-form-card {
  background: rgba(12, 22, 38, 0.5);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  backdrop-filter: blur(16px) saturate(1.2);
  box-shadow: var(--shadow-card);
}
.cta-form-title {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}
.cta-form-sub {
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
  font-weight: 300;
}
.cta-inline-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-field input,
.form-field select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  color: var(--text);
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  font-weight: 300;
  transition: border-color 0.2s;
  outline: none;
  box-sizing: border-box;
}
.form-field input::placeholder {
  color: var(--muted);
}
.form-field select {
  color: var(--muted);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b839e' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.form-field select option {
  background: var(--bg3);
  color: var(--text);
}
.form-field input:focus,
.form-field select:focus {
  border-color: var(--cyan-border);
  background: rgba(54, 215, 183, 0.04);
}
.cta-form-disclaimer {
  text-align: center;
  font-family: 'Figtree', sans-serif;
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
  font-weight: 300;
}
@media (max-width: 768px) {
  .cta-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cta-form-card { padding: 28px 20px; }
}
