/*
Theme Name: Luminous Consulting
Theme URI: https://example.com/luminous-consulting
Author: Static Export Conversion
Author URI: https://example.com
Description: WordPress-ready conversion of the Luminous Consulting static multi-page website.
Version: 1.0.2
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: luminous-consulting
*/

/* ============================================================
   Luminous Consulting — Static Export Stylesheet
   Scoped under .exported-site for WordPress compatibility
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

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

/* ── CSS Variables ── */
.exported-site {
  --primary: #D4AF37;
  --primary-foreground: #111111;
  --secondary: #F4E7B3;
  --secondary-foreground: #111111;
  --background: #F8F6F0;
  --foreground: #111111;
  --card: #ffffff;
  --card-foreground: #111111;
  --muted: rgba(107,114,128,0.1);
  --muted-foreground: #6B7280;
  --border: rgba(107,114,128,0.2);
  --input: rgba(107,114,128,0.2);
  --ring: #D4AF37;
  --accent: #D4AF37;
  --accent-foreground: #ffffff;
  --destructive: #ef4444;
  --radius: 0.5rem;
  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.07), 0 4px 6px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.08), 0 10px 10px rgba(0,0,0,0.04);
  color: var(--foreground);
  background-color: var(--background);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  line-height: 1.6;
}

/* ── Typography ── */
.exported-site h1,
.exported-site h2,
.exported-site h3,
.exported-site h4,
.exported-site h5,
.exported-site h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
}

.exported-site p,
.exported-site span,
.exported-site a,
.exported-site li,
.exported-site label {
  font-family: var(--font-sans);
}

.exported-site a { text-decoration: none; color: inherit; }
.exported-site ul { list-style: none; }
.exported-site button { cursor: pointer; font-family: var(--font-sans); }
.exported-site img { max-width: 100%; }
.exported-site * { border-color: var(--border); }

/* ── Container ── */
.exported-site .container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  max-width: 1280px;
}

/* ── Buttons ── */
.exported-site .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.exported-site .btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}
.exported-site .btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}
.exported-site .btn-primary:hover { background: #c4a030; border-color: #c4a030; }
.exported-site .btn-outline {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}
.exported-site .btn-outline:hover {
  background: var(--primary);
  color: var(--primary-foreground);
}
.exported-site .btn-outline-white {
  background: transparent;
  border: 1px solid rgba(212,175,55,0.5);
  color: var(--primary);
}
.exported-site .btn-outline-white:hover {
  background: var(--primary);
  color: var(--primary-foreground);
}
.exported-site .btn-dark {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}
.exported-site .btn-dark:hover { background: #222222; }
.exported-site .btn-ghost {
  background: transparent;
  border-color: transparent;
  color: var(--primary);
}
.exported-site .btn-ghost:hover { background: transparent; opacity: 0.8; }
.exported-site .btn-full { width: 100%; }

/* ── Badges ── */
.exported-site .badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--muted-foreground);
}
.exported-site .badge-primary { background: var(--primary); color: var(--primary-foreground); border-color: var(--primary); }
.exported-site .badge-secondary { background: var(--secondary); color: var(--secondary-foreground); border-color: var(--secondary); }
.exported-site .badge-best-seller { background: #111111; color: #D4AF37; border: none; }
.exported-site .badge-most-downloaded { background: #D4AF37; color: #111111; border: none; }
.exported-site .badge-new { background: #dbeafe; color: #1d4ed8; border: none; }
.exported-site .badge-free { background: #dcfce7; color: #15803d; border: none; }
.exported-site .badge-coming-soon { background: #f3f4f6; color: #6b7280; border: none; }
.exported-site .badge-best-value { background: rgba(212,175,55,0.2); color: var(--primary); border: none; font-size: 0.75rem; padding: 0.3rem 0.75rem; }

/* ── Cards ── */
.exported-site .card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.exported-site .card:hover { box-shadow: var(--shadow-lg); }
.exported-site .card-content { padding: 1.5rem; }

/* ── HEADER ── */
.exported-site .site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: #111111;
  color: #ffffff;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s;
}
.exported-site .site-header.scrolled {
  border-bottom: 2px solid var(--primary);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.exported-site .site-header .header-inner {
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.exported-site .site-header .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #ffffff;
}
.exported-site .site-header .logo-icon {
  width: 2rem;
  height: 2rem;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary-foreground);
}
.exported-site .site-header .logo-text {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: 0.025em;
}
.exported-site .site-header .desktop-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}
.exported-site .site-header .desktop-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.exported-site .site-header .desktop-nav a:hover { color: var(--primary); }
.exported-site .site-header .nav-ctas {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(255,255,255,0.2);
}
.exported-site .mobile-toggle {
  display: flex;
  padding: 0.5rem;
  background: none;
  border: none;
  color: #ffffff;
}
.exported-site .mobile-nav {
  display: none;
  position: absolute;
  top: 5rem;
  left: 0;
  width: 100%;
  background: #111111;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 1rem;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
  z-index: 49;
}
.exported-site .mobile-nav.open { display: flex; }
.exported-site .mobile-nav a {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
  padding: 0.25rem 0;
}
.exported-site .mobile-nav a:hover { color: var(--primary); }
.exported-site .mobile-nav .mobile-nav-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}

/* ── FOOTER ── */
.exported-site .site-footer {
  background: #111111;
  color: #ffffff;
  padding: 4rem 0;
}
.exported-site .site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.exported-site .site-footer .footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  max-width: 20rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.exported-site .site-footer .footer-social {
  display: flex;
  gap: 1rem;
}
.exported-site .site-footer .footer-social a {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  transition: color 0.2s;
}
.exported-site .site-footer .footer-social a:hover { color: var(--primary); }
.exported-site .site-footer .footer-col h4 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.exported-site .site-footer .footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.exported-site .site-footer .footer-col ul a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.exported-site .site-footer .footer-col ul a:hover { color: var(--primary); }
.exported-site .site-footer .footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
}

/* ── HERO ── */
.exported-site .page-hero {
  padding: 5rem 0 8rem;
  position: relative;
  overflow: hidden;
}
.exported-site .page-hero-dark {
  background: #111111;
  color: #ffffff;
}
.exported-site .page-hero-light {
  background: var(--background);
  color: var(--foreground);
}
.exported-site .page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.exported-site .page-hero p {
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  max-width: 48rem;
  line-height: 1.7;
}
.exported-site .page-hero-dark p { color: rgba(255,255,255,0.7); }
.exported-site .page-hero-light p { color: var(--muted-foreground); }
.exported-site .page-hero-center { text-align: center; }
.exported-site .page-hero-center p { margin-left: auto; margin-right: auto; }

/* ── HOME HERO specific ── */
.exported-site .home-hero {
  background: #111111;
  color: #ffffff;
  padding: 5rem 0 8rem;
  overflow: hidden;
  position: relative;
}
.exported-site .home-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(212,175,55,0.1) 0%, #111111 50%, #111111 100%);
  pointer-events: none;
}
.exported-site .home-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.exported-site .home-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.exported-site .home-hero .hero-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.exported-site .home-hero .hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ── STATS BANNER ── */
.exported-site .stats-banner {
  background: #111111;
  color: #ffffff;
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.exported-site .stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.exported-site .stat-item {
  text-align: center;
  padding: 0 1rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.exported-site .stat-item:last-child { border-right: none; }
.exported-site .stat-number {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}
.exported-site .stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── TESTIMONIALS ── */
.exported-site .quote-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 0.75rem;
  border-top: 2px solid var(--primary);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}
.exported-site .quote-card:hover { box-shadow: var(--shadow-md); }
.exported-site .quote-card p {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.exported-site .quote-card .quote-author {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-weight: 500;
}

/* ── ENDORSEMENT ── */
.exported-site .endorsement-card {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary);
  padding: 2rem 3rem;
  position: relative;
}
.exported-site .endorsement-card .quote-icon {
  position: absolute;
  top: 2rem;
  left: 2rem;
  width: 3rem;
  height: 3rem;
  color: rgba(212,175,55,0.2);
  transform: rotate(180deg);
}
.exported-site .endorsement-quotes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding-left: 1rem;
}
.exported-site .endorsement-quotes p {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(17,17,17,0.9);
}
.exported-site .endorsement-footer {
  padding-top: 1.5rem;
  padding-left: 1rem;
  border-top: 1px solid rgba(107,114,128,0.2);
}
.exported-site .endorsement-footer .attribution {
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}
.exported-site .endorsement-footer .attribution-note {
  font-size: 0.875rem;
  font-style: italic;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  max-width: 48rem;
}
.exported-site .tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.exported-site .tag-pill {
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 500;
  background: var(--secondary);
  color: var(--secondary-foreground);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
}

/* ── TOOL CARDS ── */
.exported-site .tool-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
  height: 100%;
}
.exported-site .tool-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(212,175,55,0.3);
}
.exported-site .tool-card .card-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
}
.exported-site .tool-card .card-header {
  padding: 1.5rem 1.5rem 0.75rem;
}
.exported-site .tool-card .card-category {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-foreground);
  border: 1px solid var(--border);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
}
.exported-site .tool-card .card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  padding-right: 4rem;
  transition: color 0.2s;
}
.exported-site .tool-card:hover .card-title { color: var(--primary); }
.exported-site .tool-card .card-format {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(212,175,55,0.8);
  margin-bottom: 0.5rem;
}
.exported-site .tool-card .card-format svg { color: rgba(212,175,55,0.7); }
.exported-site .tool-card .card-description {
  font-size: 0.875rem;
  color: rgba(17,17,17,0.75);
  line-height: 1.6;
  margin-top: 0.5rem;
}
.exported-site .tool-card .card-body {
  padding: 0 1.5rem 1rem;
  flex: 1;
}
.exported-site .tool-card .features-toggle {
  background: none;
  border: none;
  padding: 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
  transition: opacity 0.2s;
}
.exported-site .tool-card .features-toggle:hover { opacity: 0.8; }
.exported-site .tool-card .features-toggle svg { transition: transform 0.2s; }
.exported-site .tool-card .features-toggle.open svg { transform: rotate(180deg); }
.exported-site .tool-card .features-list {
  display: none;
  margin-top: 0.75rem;
  padding-left: 0;
}
.exported-site .tool-card .features-list.open { display: block; }
.exported-site .tool-card .features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.375rem;
}
.exported-site .tool-card .features-list li::before {
  content: '';
  display: block;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: rgba(212,175,55,0.5);
  margin-top: 0.4rem;
  flex-shrink: 0;
}
.exported-site .tool-card .card-footer {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
  background: rgba(249,250,251,0.5);
}
.exported-site .tool-card .price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.exported-site .tool-card .price {
  font-weight: 700;
  font-size: 1.25rem;
}
.exported-site .tool-card .access-badge {
  font-size: 0.625rem;
  font-weight: 500;
  border: 1px solid var(--border);
  padding: 0.15rem 0.4rem;
  border-radius: var(--radius);
  background: var(--background);
}
.exported-site .tool-card .card-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.exported-site .tool-card .card-buttons.single { grid-template-columns: 1fr; }

/* ── PROGRAM CARDS ── */
.exported-site .program-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, border-color 0.2s;
  overflow: hidden;
}
.exported-site .program-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(212,175,55,0.3);
}
.exported-site .program-card .prog-header { padding: 1.5rem; }
.exported-site .program-card .prog-type {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}
.exported-site .program-card .prog-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.exported-site .program-card:hover .prog-title { color: var(--primary); }
.exported-site .program-card .prog-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}
.exported-site .program-card .prog-body { padding: 0 1.5rem; flex: 1; }
.exported-site .program-card .prog-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.exported-site .program-card .prog-link {
  color: var(--primary);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.2s;
}
.exported-site .program-card:hover .prog-link { gap: 0.75rem; }

/* ── MOCK DASHBOARD ── */
.exported-site .mock-dashboard {
  background: #1a1a1a;
  border-radius: 0.75rem;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
  overflow: hidden;
  text-align: left;
  animation: fadeSlideLeft 0.8s ease 0.3s both;
}
.exported-site .mock-dashboard-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.exported-site .mock-dots { display: flex; gap: 0.375rem; }
.exported-site .mock-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
}
.exported-site .mock-dot-red { background: rgba(239,68,68,0.8); }
.exported-site .mock-dot-gold { background: rgba(212,175,55,0.8); }
.exported-site .mock-dot-green { background: rgba(16,185,129,0.8); }
.exported-site .mock-title {
  margin-left: 1rem;
  font-family: monospace;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}
.exported-site .mock-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.exported-site .mock-top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.exported-site .mock-metric {
  background: rgba(255,255,255,0.05);
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255,255,255,0.05);
}
.exported-site .mock-metric-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
}
.exported-site .mock-metric-label svg { color: var(--primary); }
.exported-site .mock-metric-value {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  color: #ffffff;
}
.exported-site .mock-metric-value span { font-size: 1.25rem; color: rgba(255,255,255,0.4); }
.exported-site .mock-progress-bar {
  margin-top: 0.5rem;
  width: 100%;
  height: 0.375rem;
  background: rgba(255,255,255,0.1);
  border-radius: 9999px;
  overflow: hidden;
}
.exported-site .mock-progress-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 9999px;
  width: 78%;
}
.exported-site .mock-risk-value { font-size: 1.25rem; font-weight: 500; color: #f59e0b; margin-top: 0.25rem; }
.exported-site .mock-risk-note { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-top: 0.5rem; }
.exported-site .mock-metrics-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.75rem;
}
.exported-site .mock-metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.05);
  padding: 0.75rem;
  border-radius: 0.375rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}
.exported-site .mock-metric-row .row-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.7);
}
.exported-site .mock-metric-row .row-value-high {
  background: rgba(16,185,129,0.1);
  color: #34d399;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.15rem 0.5rem;
  border-radius: 0.25rem;
}
.exported-site .mock-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.exported-site .mock-stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-bottom: 0.25rem; }
.exported-site .mock-stat-value {
  font-size: 1.125rem;
  font-weight: 500;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.exported-site .mock-stat-value svg { color: var(--primary); width: 0.75rem; height: 0.75rem; }

/* ── ASSESSMENT SCORE CARD ── */
.exported-site .score-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-xl);
  padding: 2rem;
}
.exported-site .score-card .score-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.exported-site .score-card .score-label {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}
.exported-site .score-card .score-value {
  font-family: var(--font-serif);
  font-size: 3.75rem;
  line-height: 1;
  color: var(--foreground);
}
.exported-site .score-card .score-value span {
  font-size: 1.5rem;
  color: var(--muted-foreground);
}
.exported-site .score-card .score-status {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #92400e;
  background: #fef3c7;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}
.exported-site .score-card .dimension {
  margin-bottom: 1.5rem;
}
.exported-site .score-card .dimension-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.exported-site .score-card .dimension-name { font-size: 0.875rem; font-weight: 500; }
.exported-site .score-card .dimension-score { font-size: 0.875rem; font-weight: 600; color: var(--muted-foreground); }
.exported-site .score-card .progress-bar {
  width: 100%;
  height: 0.5rem;
  background: var(--secondary);
  border-radius: 9999px;
  overflow: hidden;
}
.exported-site .score-card .progress-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 9999px;
  transition: width 1s ease;
}

/* ── NEWSLETTER CTA ── */
.exported-site .newsletter-section {
  background: #111111;
  color: #ffffff;
  padding: 6rem 0;
  text-align: center;
}
.exported-site .newsletter-section h2 {
  font-size: clamp(1.875rem, 4vw, 3.125rem);
  margin-bottom: 1.5rem;
}
.exported-site .newsletter-section p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
.exported-site .newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 32rem;
  margin: 0 auto;
}
.exported-site .newsletter-form input {
  height: 3rem;
  padding: 0 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  color: #ffffff;
  font-size: 1rem;
  outline: none;
  font-family: var(--font-sans);
}
.exported-site .newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.exported-site .newsletter-form input:focus { border-color: var(--primary); }
.exported-site .newsletter-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 1rem;
}

/* ── CREDENTIAL BADGES ── */
.exported-site .credential-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--background);
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.exported-site .credential-badge .cred-icon {
  width: 3rem;
  height: 3rem;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}
.exported-site .credential-badge .cred-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
}
.exported-site .credential-badge .cred-subtitle {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ── ADVISORY CARDS ── */
.exported-site .advisory-card {
  background: rgba(248,246,240,0.3);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 2rem;
  transition: box-shadow 0.2s, border-color 0.2s;
  height: 100%;
}
.exported-site .advisory-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(212,175,55,0.5);
}
.exported-site .advisory-card .adv-icon {
  width: 3rem;
  height: 3rem;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}
.exported-site .advisory-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.exported-site .advisory-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* ── INSIGHTS / ARTICLES ── */
.exported-site .article-card {
  background: #ffffff;
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: box-shadow 0.2s;
  cursor: pointer;
}
.exported-site .article-card:hover { box-shadow: var(--shadow-lg); }
.exported-site .article-card .article-inner { padding: 2rem; }
.exported-site .article-card .article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.exported-site .article-card .article-category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
}
.exported-site .article-card .article-date {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  font-weight: 500;
}
.exported-site .article-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  transition: color 0.2s;
  line-height: 1.3;
}
.exported-site .article-card:hover h3 { color: var(--primary); }
.exported-site .article-card p {
  color: var(--muted-foreground);
  line-height: 1.7;
}
.exported-site .article-card .article-read {
  margin-top: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.exported-site .article-card .article-arrow {
  color: var(--primary);
  display: inline-block;
  transition: transform 0.2s;
}
.exported-site .article-card:hover .article-arrow { transform: translateX(4px); }

/* ── ACCORDION (FAQ) ── */
.exported-site .accordion { border-top: 1px solid var(--border); }
.exported-site .accordion-item { border-bottom: 1px solid var(--border); }
.exported-site .accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--foreground);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}
.exported-site .accordion-trigger:hover { color: var(--primary); }
.exported-site .accordion-trigger svg { flex-shrink: 0; transition: transform 0.2s; }
.exported-site .accordion-trigger.open svg { transform: rotate(180deg); }
.exported-site .accordion-content {
  display: none;
  padding-bottom: 1rem;
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  line-height: 1.7;
}
.exported-site .accordion-content.open { display: block; }

/* ── FLOATING CTA ── */
.exported-site .floating-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  opacity: 0;
  transform: translateY(3rem) scale(0.9);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
.exported-site .floating-cta.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.exported-site .floating-cta a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: var(--primary-foreground);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  box-shadow: 0 10px 20px rgba(212,175,55,0.3);
  transition: box-shadow 0.2s, background 0.2s;
}
.exported-site .floating-cta a:hover {
  background: #c4a030;
  box-shadow: 0 15px 30px rgba(212,175,55,0.4);
}
.exported-site .floating-cta a svg { transition: transform 0.2s; }
.exported-site .floating-cta a:hover svg { transform: translateX(4px); }

/* ── TOOL DETAIL ── */
.exported-site .tool-detail-breadcrumb {
  background: #F8F6F0;
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
.exported-site .tool-detail-breadcrumb a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}
.exported-site .tool-detail-breadcrumb a:hover { color: var(--foreground); }
.exported-site .purchase-panel {
  background: #ffffff;
  border-radius: 1rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xl);
  padding: 2rem;
  position: sticky;
  top: 7rem;
}
.exported-site .purchase-panel .price-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.exported-site .purchase-panel .price-main {
  font-family: var(--font-serif);
  font-size: 3rem;
  margin-bottom: 1.5rem;
}
.exported-site .preview-panel {
  background: #111111;
  border-radius: 1rem;
  padding: 1.5rem;
  color: #ffffff;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.exported-site .preview-panel .preview-glow {
  position: absolute;
  top: 0; right: 0;
  width: 8rem; height: 8rem;
  background: rgba(212,175,55,0.2);
  border-bottom-left-radius: 50%;
  filter: blur(2rem);
}
.exported-site .preview-panel h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.exported-site .preview-table {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 0.375rem;
  padding: 0.75rem;
  position: relative;
  z-index: 1;
}
.exported-site .preview-table-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}
.exported-site .preview-table-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  font-family: monospace;
  margin-bottom: 0.5rem;
}
.exported-site .preview-table-row:last-child { margin-bottom: 0; }
.exported-site .preview-table-row .price-mid { color: var(--primary); }
.exported-site .preview-table-row .price-dim { color: rgba(255,255,255,0.7); }

/* ── BUNDLE BANNER ── */
.exported-site .bundle-banner {
  background: #111111;
  border-radius: 1rem;
  padding: 3.5rem;
  border: 1px solid rgba(212,175,55,0.2);
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
  margin-top: 5rem;
}
.exported-site .bundle-banner .glow-tr {
  position: absolute;
  top: 0; right: 0;
  width: 20rem; height: 20rem;
  background: rgba(212,175,55,0.1);
  border-radius: 50%;
  filter: blur(3rem);
  transform: translate(33%, -33%);
}
.exported-site .bundle-banner .glow-bl {
  position: absolute;
  bottom: 0; left: 0;
  width: 20rem; height: 20rem;
  background: rgba(212,175,55,0.1);
  border-radius: 50%;
  filter: blur(3rem);
  transform: translate(-33%, 33%);
}
.exported-site .bundle-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.exported-site .bundle-content .bundle-tools li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.5rem;
}
.exported-site .bundle-content .bundle-tools li::before {
  content: '';
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}
.exported-site .bundle-price {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.exported-site .bundle-price .price-amount {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
}
.exported-site .bundle-price .price-save {
  font-weight: 600;
  color: var(--primary);
}
.exported-site .bundle-price .price-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

/* ── SECTIONS ── */
.exported-site .section-sm { padding: 3rem 0; }
.exported-site .section-md { padding: 4rem 0; }
.exported-site .section-lg { padding: 6rem 0; }

.exported-site .section-dark {
  background: #111111;
  color: #ffffff;
}
.exported-site .section-light { background: var(--background); }
.exported-site .section-white { background: #ffffff; }
.exported-site .section-warm { background: #F8F6F0; }

/* ── SECTION HEADING ── */
.exported-site .section-heading {
  margin-bottom: 3rem;
}
.exported-site .section-heading.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 48rem;
}
.exported-site .section-heading h2 {
  font-size: clamp(1.875rem, 4vw, 3.125rem);
  margin-bottom: 1rem;
}
.exported-site .section-heading p {
  font-size: 1.125rem;
  line-height: 1.7;
}
.exported-site .section-heading.dark h2 { color: #ffffff; }
.exported-site .section-heading.dark p { color: rgba(255,255,255,0.7); }
.exported-site .section-heading.light h2 { color: var(--foreground); }
.exported-site .section-heading.light p { color: var(--muted-foreground); }

/* ── GRID UTILITIES ── */
.exported-site .grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.exported-site .grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.exported-site .grid-4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ── CATEGORY TABS ── */
.exported-site .tab-bar {
  display: flex;
  justify-content: center;
  overflow-x: auto;
  padding-bottom: 1rem;
  margin-bottom: 2.5rem;
}
.exported-site .tab-list {
  display: inline-flex;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 0.375rem;
  box-shadow: var(--shadow-sm);
  gap: 0.25rem;
}
.exported-site .tab-btn {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  background: none;
  border: none;
  border-radius: 0.5rem;
  color: var(--muted-foreground);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s;
}
.exported-site .tab-btn.active {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-sm);
}
.exported-site .tab-btn:hover:not(.active) { color: var(--foreground); }

/* ── FORMS ── */
.exported-site .form-input {
  width: 100%;
  height: 2.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 0 0.75rem;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s;
}
.exported-site .form-input::placeholder { color: rgba(255,255,255,0.4); }
.exported-site .form-input:focus { border-color: var(--primary); }
.exported-site .form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.25rem;
}

/* ── PROSE ── */
.exported-site .prose p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: var(--muted-foreground);
}
.exported-site .prose .blockquote {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--foreground);
  border-left: 4px solid var(--primary);
  padding-left: 1.5rem;
  margin: 2rem 0;
  line-height: 1.6;
}

/* ── UTILITY ── */
.exported-site .text-primary { color: var(--primary); }
.exported-site .text-muted { color: var(--muted-foreground); }
.exported-site .text-white { color: #ffffff; }
.exported-site .text-white-70 { color: rgba(255,255,255,0.7); }
.exported-site .text-serif { font-family: var(--font-serif); }
.exported-site .font-medium { font-weight: 500; }
.exported-site .font-semibold { font-weight: 600; }
.exported-site .font-bold { font-weight: 700; }
.exported-site .flex { display: flex; }
.exported-site .flex-col { flex-direction: column; }
.exported-site .items-center { align-items: center; }
.exported-site .justify-center { justify-content: center; }
.exported-site .justify-between { justify-content: space-between; }
.exported-site .flex-wrap { flex-wrap: wrap; }
.exported-site .gap-2 { gap: 0.5rem; }
.exported-site .gap-3 { gap: 0.75rem; }
.exported-site .gap-4 { gap: 1rem; }
.exported-site .gap-6 { gap: 1.5rem; }
.exported-site .gap-8 { gap: 2rem; }
.exported-site .mb-2 { margin-bottom: 0.5rem; }
.exported-site .mb-4 { margin-bottom: 1rem; }
.exported-site .mb-6 { margin-bottom: 1.5rem; }
.exported-site .mb-8 { margin-bottom: 2rem; }
.exported-site .mb-12 { margin-bottom: 3rem; }
.exported-site .mt-2 { margin-top: 0.5rem; }
.exported-site .mt-4 { margin-top: 1rem; }
.exported-site .mt-auto { margin-top: auto; }
.exported-site .max-w-2xl { max-width: 42rem; }
.exported-site .max-w-3xl { max-width: 48rem; }
.exported-site .max-w-4xl { max-width: 56rem; }
.exported-site .max-w-5xl { max-width: 64rem; }
.exported-site .max-w-6xl { max-width: 72rem; }
.exported-site .max-w-7xl { max-width: 80rem; }
.exported-site .mx-auto { margin-left: auto; margin-right: auto; }
.exported-site .text-center { text-align: center; }
.exported-site .text-sm { font-size: 0.875rem; }
.exported-site .text-xs { font-size: 0.75rem; }
.exported-site .text-lg { font-size: 1.125rem; }
.exported-site .text-xl { font-size: 1.25rem; }
.exported-site .italic { font-style: italic; }
.exported-site .hidden { display: none; }
.exported-site .relative { position: relative; }
.exported-site .w-full { width: 100%; }
.exported-site .rounded-full { border-radius: 9999px; }
.exported-site .bg-primary { background: var(--primary); }
.exported-site .bg-secondary { background: var(--secondary); }
.exported-site .bg-green { background: #22c55e; }
.exported-site .w-2 { width: 0.5rem; }
.exported-site .h-2 { height: 0.5rem; }
.exported-site .dot { display: inline-block; border-radius: 50%; }

/* ── ABOUT HERO BIO ── */
.exported-site .founder-photo {
  aspect-ratio: 4/5;
  background: rgba(255,255,255,0.05);
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.exported-site .founder-photo .initials {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: rgba(255,255,255,0.2);
}
.exported-site .founder-photo .photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #111111, transparent 50%);
}
.exported-site .founder-photo .glow-decor {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  width: 12rem;
  height: 12rem;
  background: rgba(212,175,55,0.2);
  border-radius: 50%;
  filter: blur(3rem);
}

/* ── ENGAGEMENT STEPS ── */
.exported-site .engagement-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
  margin-bottom: 4rem;
  text-align: left;
}
.exported-site .engagement-step {
  border-left: 2px solid var(--primary);
  padding-left: 1.5rem;
}
.exported-site .engagement-step h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}
.exported-site .engagement-step p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ── DIAMOND BULLET ── */
.exported-site .diamond-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.exported-site .diamond-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}
.exported-site .diamond { width: 0.5rem; height: 0.5rem; background: var(--primary); transform: rotate(45deg); display: inline-block; }

/* ── FEATURED TOOL GRID ── */
.exported-site .featured-tool-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem 2rem;
}

/* ── ASSESSMENT FORM ── */
.exported-site .assess-form-wrap {
  background: rgba(255,255,255,0.05);
  padding: 2rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}
.exported-site .assess-form-wrap h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.exported-site .assess-form-wrap .form-note {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
}
.exported-site .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

/* ── CHECKLIST ── */
.exported-site .checklist { display: flex; flex-direction: column; gap: 0.75rem; }
.exported-site .checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
}
.exported-site .checklist li svg { color: var(--primary); flex-shrink: 0; }

/* ── WHY ASSESS STEPS ── */
.exported-site .steps-list { display: flex; flex-direction: column; gap: 1rem; }
.exported-site .step-item { display: flex; gap: 0.75rem; }
.exported-site .step-num {
  margin-top: 0.25rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
}
.exported-site .step-item p strong { font-weight: 600; }

/* ── DIMENSIONS GRID ── */
.exported-site .dimension-card {
  background: rgba(248,246,240,0.5);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.5rem;
  height: 100%;
  transition: border-color 0.2s;
}
.exported-site .dimension-card:hover { border-color: rgba(212,175,55,0.3); }
.exported-site .dimension-card .dim-icon { margin-bottom: 1rem; color: var(--primary); }
.exported-site .dimension-card h3 { font-family: var(--font-serif); font-size: 1.125rem; font-weight: 600; margin-bottom: 0.5rem; }
.exported-site .dimension-card p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; }

/* ── TRANSFORMATION CARDS ── */
.exported-site .transformation-card {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 2px solid var(--primary);
  border-radius: calc(var(--radius) + 4px);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  color: #ffffff;
  transition: border-color 0.2s;
}
.exported-site .transformation-card:hover { border-color: rgba(212,175,55,0.5); }
.exported-site .transformation-card .tc-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.15rem 0.5rem;
  border-radius: 0.25rem;
  margin-bottom: 1rem;
  width: max-content;
}
.exported-site .transformation-card h3 { font-family: var(--font-serif); font-size: 1.25rem; margin-bottom: 0.75rem; line-height: 1.3; }
.exported-site .transformation-card p { color: rgba(255,255,255,0.6); margin-bottom: 2rem; flex: 1; }

/* ── SCROLL REVEAL ── */
.exported-site .reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.exported-site .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.exported-site .reveal-left {
  opacity: 0;
  transform: translateX(-1.25rem);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.exported-site .reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.exported-site .reveal-right {
  opacity: 0;
  transform: translateX(1.25rem);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.exported-site .reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── HERO ENTRANCE ANIMATION ── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(1.25rem); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideLeft {
  from { opacity: 0; transform: translateX(1.25rem); }
  to { opacity: 1; transform: translateX(0); }
}
.exported-site .anim-hero-1 { animation: fadeSlideUp 0.6s ease both; }
.exported-site .anim-hero-2 { animation: fadeSlideUp 0.6s ease 0.1s both; }
.exported-site .anim-hero-3 { animation: fadeSlideUp 0.6s ease 0.2s both; }

/* ── RESPONSIVE ── */
@media (min-width: 640px) {
  .exported-site .home-hero .hero-ctas { flex-direction: row; }
  .exported-site .newsletter-form { flex-direction: row; }
}

@media (min-width: 768px) {
  .exported-site .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .exported-site .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .exported-site .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .exported-site .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .exported-site .featured-tool-grid { grid-template-columns: repeat(2, 1fr); }
  .exported-site .endorsement-quotes { grid-template-columns: repeat(3, 1fr); }
  .exported-site .engagement-steps { grid-template-columns: repeat(3, 1fr); }
  .exported-site .site-footer .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .exported-site .form-row { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .exported-site .site-header .desktop-nav { display: flex; }
  .exported-site .mobile-toggle { display: none; }
  .exported-site .home-hero-grid { grid-template-columns: 1fr 1fr; }
  .exported-site .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .exported-site .advisory-grid { grid-template-columns: repeat(4, 1fr); }
  .exported-site .bundle-inner { flex-direction: row; align-items: center; }
  .exported-site .tool-detail-grid { display: grid; grid-template-columns: 1fr 400px; gap: 4rem; }
  .exported-site .two-col-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
  .exported-site .founder-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
}

@media (min-width: 1280px) {
  .exported-site .tools-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

/* ── INCLUDE BASIC GRID for tools ── */
.exported-site .tools-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .exported-site .tools-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1280px) {
  .exported-site .tools-grid { grid-template-columns: repeat(3, 1fr); }
}

.exported-site .advisory-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .exported-site .advisory-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ── INCLUDE FEATURE: who-box ── */
.exported-site .who-box {
  background: #F8F6F0;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
}
.exported-site .who-box h3 { font-family: var(--font-serif); font-size: 1.25rem; margin-bottom: 1rem; }
.exported-site .who-box li { display: flex; align-items: center; gap: 0.5rem; font-weight: 500; margin-bottom: 0.75rem; }
.exported-site .who-box li svg { color: var(--primary); }

/* ── INCLUDED ITEMS LIST ── */
.exported-site .included-list {
  background: #F8F6F0;
  border-radius: 0.75rem;
  padding: 2rem;
  border: 1px solid var(--border);
  margin-bottom: 3rem;
}
.exported-site .included-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.exported-site .included-list li:last-child { margin-bottom: 0; }
.exported-site .included-list li svg { color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.exported-site .included-list li span { font-weight: 500; }

/* ── WORDPRESS DYNAMIC HEADER SUPPORT ── */
.exported-site .site-header .custom-logo {
  display: block;
  width: auto;
  max-width: 260px;
  max-height: 3rem;
}
.exported-site .site-header .desktop-nav .primary-menu,
.exported-site .site-header .mobile-nav .mobile-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.exported-site .site-header .desktop-nav .primary-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.exported-site .site-header .desktop-nav .primary-menu li,
.exported-site .site-header .mobile-nav .mobile-menu li {
  margin: 0;
  padding: 0;
}
.exported-site .site-header .desktop-nav .primary-menu a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
  text-decoration: none;
}
.exported-site .site-header .desktop-nav .primary-menu a:hover,
.exported-site .site-header .desktop-nav .primary-menu .current-menu-item > a,
.exported-site .site-header .desktop-nav .primary-menu .current_page_item > a {
  color: var(--primary);
}
.exported-site .site-header .mobile-nav .mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.exported-site .site-header .mobile-nav .mobile-menu a {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
  padding: 0.25rem 0;
  text-decoration: none;
}
.exported-site .site-header .mobile-nav .mobile-menu a:hover,
.exported-site .site-header .mobile-nav .mobile-menu .current-menu-item > a,
.exported-site .site-header .mobile-nav .mobile-menu .current_page_item > a {
  color: var(--primary);
}

