/* ============================================================
   LinkedIn Lead Booster — Premium Light SaaS v3
   Aesthetic: Corporate Minimal — Clean, Trustworthy, Elegant
   Fonts: Bricolage Grotesque (display) + Inter (body)
   Palette: White · Slate · Deep Navy · Electric Blue · Amber
   Reference: profilegenius, aimfox — B2B professional SaaS
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,300;12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Backgrounds */
  --bg-page:      #ffffff;
  --bg-subtle:    #f8f9fc;
  --bg-muted:     #f1f4f9;
  --bg-card:      #ffffff;
  --bg-dark:      #0d1b2e;
  --bg-dark-2:    #112240;

  /* Borders */
  --border-light:  #e8ecf3;
  --border-default:#d1d9e6;
  --border-strong: #b0bcce;

  /* Navy / Blue — primary brand */
  --navy:          #0d1b2e;
  --navy-mid:      #1a3a5c;
  --blue:          #1d4ed8;
  --blue-mid:      #2563eb;
  --blue-light:    #3b82f6;
  --blue-pale:     #eff6ff;
  --blue-muted:    rgba(29,78,216,0.08);
  --blue-border:   rgba(29,78,216,0.18);

  /* Amber — CTA accent */
  --amber:         #d97706;
  --amber-bright:  #f59e0b;
  --amber-pale:    #fffbeb;
  --amber-muted:   rgba(217,119,6,0.08);
  --amber-border:  rgba(217,119,6,0.18);

  /* Semantic */
  --green:         #059669;
  --green-pale:    #ecfdf5;
  --green-muted:   rgba(5,150,105,0.08);
  --green-border:  rgba(5,150,105,0.18);
  --red:           #dc2626;
  --red-pale:      #fef2f2;
  --red-muted:     rgba(220,38,38,0.07);
  --red-border:    rgba(220,38,38,0.15);

  /* Text */
  --text-primary:   #0d1b2e;
  --text-secondary: #4a5568;
  --text-tertiary:  #718096;
  --text-disabled:  #a0aec0;
  --text-white:     #ffffff;
  --text-on-dark:   #e2e8f0;

  /* Typography */
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Spacing */
  --sp-1:  4px;   --sp-2:  8px;   --sp-3:  12px;  --sp-4:  16px;
  --sp-5:  20px;  --sp-6:  24px;  --sp-8:  32px;  --sp-10: 40px;
  --sp-12: 48px;  --sp-16: 64px;  --sp-20: 80px;  --sp-24: 96px;

  /* Radius */
  --r-sm:   6px;
  --r-md:   10px;
  --r-lg:   14px;
  --r-xl:   20px;
  --r-2xl:  28px;
  --r-full: 9999px;

  /* Shadows — subtle, professional */
  --shadow-xs:   0 1px 2px rgba(13,27,46,0.06);
  --shadow-sm:   0 1px 4px rgba(13,27,46,0.08), 0 2px 8px rgba(13,27,46,0.04);
  --shadow-md:   0 4px 16px rgba(13,27,46,0.10), 0 1px 4px rgba(13,27,46,0.06);
  --shadow-lg:   0 8px 32px rgba(13,27,46,0.12), 0 2px 8px rgba(13,27,46,0.06);
  --shadow-xl:   0 20px 60px rgba(13,27,46,0.14);
  --shadow-blue: 0 4px 20px rgba(29,78,216,0.20);
  --shadow-card: 0 0 0 1px var(--border-light), 0 2px 8px rgba(13,27,46,0.06);

  /* Transitions */
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast:     0.12s;
  --t-base:     0.20s;
  --t-slow:     0.30s;
}

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

html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-page);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-subtle); }
::-webkit-scrollbar-thumb { background: var(--border-default); border-radius: var(--r-full); }
::-webkit-scrollbar-thumb:hover { background: var(--blue-mid); }

::selection { background: rgba(29,78,216,0.12); color: var(--navy); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}

h1 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 2.8vw, 2.25rem); }
h3 { font-size: clamp(1.125rem, 2vw, 1.5rem); }
h4 { font-size: 1.0625rem; font-weight: 600; }

p { color: var(--text-secondary); line-height: 1.7; }

a { color: var(--blue-mid); text-decoration: none; transition: color var(--t-fast) var(--ease); }
a:hover { color: var(--blue); }

strong { font-weight: 600; color: var(--text-primary); }

code {
  font-family: 'Menlo', 'Monaco', monospace;
  font-size: 0.8125rem;
  background: var(--bg-muted);
  border: 1px solid var(--border-light);
  border-radius: var(--r-sm);
  padding: 1px 6px;
  color: var(--blue-mid);
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container    { max-width: 1140px; margin: 0 auto; padding: 0 var(--sp-6); }
.container-sm { max-width: 760px;  margin: 0 auto; padding: 0 var(--sp-6); }
.container-xs { max-width: 500px;  margin: 0 auto; padding: 0 var(--sp-6); }

.section    { padding: var(--sp-20) 0; }
.section-sm { padding: var(--sp-12) 0; }
.section-lg { padding: var(--sp-24) 0; }

.section-alt {
  background: var(--bg-subtle);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--sp-5); }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-5); }

.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col     { display: flex; flex-direction: column; }
.items-center { align-items: center; }
.gap-2 { gap: var(--sp-2); } .gap-3 { gap: var(--sp-3); }
.gap-4 { gap: var(--sp-4); } .gap-6 { gap: var(--sp-6); }

.mt-2{margin-top:var(--sp-2);} .mt-3{margin-top:var(--sp-3);} .mt-4{margin-top:var(--sp-4);}
.mt-6{margin-top:var(--sp-6);} .mt-8{margin-top:var(--sp-8);} .mt-10{margin-top:var(--sp-10);}
.mt-12{margin-top:var(--sp-12);} .mb-2{margin-bottom:var(--sp-2);} .mb-3{margin-bottom:var(--sp-3);}
.mb-4{margin-bottom:var(--sp-4);} .mb-6{margin-bottom:var(--sp-6);} .mb-8{margin-bottom:var(--sp-8);}
.mb-10{margin-bottom:var(--sp-10);} .mb-12{margin-bottom:var(--sp-12);}

.text-center { text-align: center; }
.w-full      { width: 100%; }
.truncate    { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: all var(--t-fast) var(--ease);
  position: relative;
}
.btn:active { transform: scale(0.98); }

/* Primary — deep navy/blue */
.btn-primary {
  background: var(--navy);
  color: var(--text-white);
  border-color: var(--navy);
  box-shadow: var(--shadow-xs);
}
.btn-primary:hover {
  background: var(--navy-mid);
  color: var(--text-white);
  border-color: var(--navy-mid);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

/* Blue variant */
.btn-blue {
  background: var(--blue-mid);
  color: var(--text-white);
  border-color: var(--blue-mid);
  box-shadow: var(--shadow-blue);
}
.btn-blue:hover {
  background: var(--blue);
  color: var(--text-white);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(29,78,216,0.28);
}

/* Amber — main CTA */
.btn-amber {
  background: var(--amber);
  color: #fff;
  border-color: var(--amber);
  box-shadow: 0 2px 8px rgba(217,119,6,0.20);
  font-weight: 700;
}
.btn-amber:hover {
  background: #b45309;
  color: #fff;
  border-color: #b45309;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(217,119,6,0.28);
}

/* Ghost */
.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border-color: var(--border-default);
}
.btn-ghost:hover {
  background: var(--bg-subtle);
  color: var(--text-primary);
  border-color: var(--border-strong);
}

/* Outline */
.btn-outline {
  background: transparent;
  color: var(--text-secondary);
  border-color: var(--border-default);
}
.btn-outline:hover {
  background: var(--bg-subtle);
  color: var(--text-primary);
  border-color: var(--border-strong);
}

/* Danger */
.btn-danger {
  background: var(--red-muted);
  color: var(--red);
  border-color: var(--red-border);
}
.btn-danger:hover { background: rgba(220,38,38,0.12); }

/* Sizes */
.btn-xs  { padding: 5px 11px; font-size: 0.75rem; border-radius: var(--r-sm); }
.btn-sm  { padding: 7px 14px; font-size: 0.8125rem; }
.btn-lg  { padding: 13px 28px; font-size: 0.9375rem; border-radius: var(--r-lg); }
.btn-xl  { padding: 15px 36px; font-size: 1rem; border-radius: var(--r-lg); font-weight: 700; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.45; cursor: not-allowed; pointer-events: none; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 var(--sp-6);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 1px 0 var(--border-light);
}

.navbar-inner {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  flex-shrink: 0;
}

.brand-icon {
  width: 34px;
  height: 34px;
  background: var(--navy);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-xs);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.025em;
}

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

.navbar-nav a {
  display: flex;
  align-items: center;
  padding: 6px 12px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--r-md);
  transition: all var(--t-fast) var(--ease);
}
.navbar-nav a:hover { color: var(--text-primary); background: var(--bg-subtle); }
/* Buttons inside navbar must NOT inherit the link color */
.navbar-nav a.btn-primary,
.navbar-nav a.btn-primary:hover { color: #ffffff !important; }
.navbar-nav a.btn-ghost,
.navbar-nav a.btn-ghost:hover  { color: var(--text-secondary); }
.navbar-nav .btn { margin-left: var(--sp-3); }

/* Plan badges */
.plan-badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 7px;
  border-radius: var(--r-full);
  line-height: 1;
}
.plan-free { background: var(--bg-muted); color: var(--text-tertiary); border: 1px solid var(--border-default); }
.plan-pro  { background: #fef3c7; color: #92400e; border: 1px solid #fde68a; }

/* User avatar */
.user-avatar {
  width: 28px; height: 28px;
  background: var(--navy);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--t-base), box-shadow var(--t-base);
}
.card:hover { border-color: var(--border-default); box-shadow: var(--shadow-md); }

.card-sm    { padding: var(--sp-4); border-radius: var(--r-lg); }
.card-lg    { padding: var(--sp-8); border-radius: var(--r-2xl); }
.card-flush { padding: 0; overflow: hidden; }

.card-elevated {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
}

.problem-card {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  padding: var(--sp-4);
  background: var(--red-pale);
  border: 1px solid var(--red-border);
  border-radius: var(--r-lg);
  transition: border-color var(--t-fast);
}
.problem-card:hover { border-color: rgba(220,38,38,0.25); }

.rec-card {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  padding: var(--sp-4);
  background: var(--green-pale);
  border: 1px solid var(--green-border);
  border-radius: var(--r-lg);
  transition: border-color var(--t-fast);
}
.rec-card:hover { border-color: rgba(5,150,105,0.28); }

.card-bullet {
  width: 22px; height: 22px;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
  font-family: var(--font-display);
}
.bullet-danger  { background: var(--red-muted);   color: var(--red);   border: 1px solid var(--red-border); }
.bullet-success { background: var(--green-muted);  color: var(--green); border: 1px solid var(--green-border); }

.card-text { font-size: 0.875rem; color: var(--text-primary); line-height: 1.65; }

/* ============================================================
   TAGS
   ============================================================ */
.tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding: 3px 10px;
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
}
.tag-blue   { background: var(--blue-muted);  color: var(--blue);  border: 1px solid var(--blue-border); }
.tag-amber  { background: var(--amber-muted); color: var(--amber); border: 1px solid var(--amber-border); }
.tag-green  { background: var(--green-muted); color: var(--green); border: 1px solid var(--green-border); }
.tag-red    { background: var(--red-muted);   color: var(--red);   border: 1px solid var(--red-border); }
.tag-muted  { background: var(--bg-muted);    color: var(--text-tertiary); border: 1px solid var(--border-default); }

.score-pill {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 9px;
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 700;
}
.score-pill-high { background: var(--green-muted); color: var(--green); border: 1px solid var(--green-border); }
.score-pill-mid  { background: var(--amber-muted); color: var(--amber); border: 1px solid var(--amber-border); }
.score-pill-low  { background: var(--red-muted);   color: var(--red);   border: 1px solid var(--red-border); }

/* ============================================================
   FORMS
   ============================================================ */
.form-stack  { display: flex; flex-direction: column; gap: var(--sp-5); }
.form-group  { display: flex; flex-direction: column; gap: var(--sp-2); }

.form-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.005em;
}

.form-input {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg-page);
  border: 1px solid var(--border-default);
  border-radius: var(--r-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: all var(--t-fast) var(--ease);
  outline: none;
  -webkit-appearance: none;
}
.form-input::placeholder { color: var(--text-disabled); font-size: 0.875rem; }
.form-input:hover { border-color: var(--border-strong); }
.form-input:focus {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.10);
}
.form-input.error { border-color: var(--red); box-shadow: 0 0 0 3px rgba(220,38,38,0.08); }

.form-hint  { font-size: 0.8rem; color: var(--text-tertiary); }
.form-error { font-size: 0.8125rem; color: var(--red); display: flex; align-items: center; gap: var(--sp-1); }

/* ============================================================
   ALERTS
   ============================================================ */
.alert {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: 12px var(--sp-4);
  border-radius: var(--r-lg);
  font-size: 0.875rem;
  line-height: 1.55;
  margin-bottom: var(--sp-5);
}
.alert-icon { font-size: 0.9rem; flex-shrink: 0; margin-top: 1px; }

.alert-error   { background: var(--red-pale);   border: 1px solid var(--red-border);   color: #991b1b; }
.alert-success { background: var(--green-pale);  border: 1px solid var(--green-border); color: #065f46; }
.alert-info    { background: var(--blue-pale);   border: 1px solid var(--blue-border);  color: #1e40af; }
.alert-warning { background: var(--amber-pale);  border: 1px solid var(--amber-border); color: #92400e; }

/* ============================================================
   LOADING
   ============================================================ */
.spinner {
  border: 2px solid var(--border-light);
  border-top-color: var(--blue-mid);
  border-radius: var(--r-full);
  animation: spin 0.7s linear infinite;
}
.spinner-sm { width: 16px; height: 16px; }
.spinner-md { width: 28px; height: 28px; }
.spinner-lg { width: 44px; height: 44px; border-width: 3px; }

@keyframes spin { to { transform: rotate(360deg); } }

.loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  display: none;
  z-index: 1000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-5);
  text-align: center;
}
.loading-overlay.active { display: flex; }
.loading-title    { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; color: var(--navy); transition: opacity 0.25s; }
.loading-subtitle { font-size: 0.875rem; color: var(--text-tertiary); transition: opacity 0.25s; }
.loading-dots { display: flex; gap: var(--sp-2); }
.loading-dots span {
  width: 6px; height: 6px;
  background: var(--blue-mid);
  border-radius: var(--r-full);
  animation: dot-bounce 1.4s ease-in-out infinite;
}
.loading-dots span:nth-child(2) { animation-delay: 0.16s; }
.loading-dots span:nth-child(3) { animation-delay: 0.32s; }
@keyframes dot-bounce {
  0%,80%,100% { transform: scale(0.6); opacity: 0.4; }
  40%         { transform: scale(1);   opacity: 1; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: var(--sp-24) var(--sp-6) var(--sp-20);
  background: linear-gradient(145deg, #f0f7ff 0%, #f5f8ff 45%, #edf5f0 100%);
  overflow: hidden;
}

/* Subtle grid */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border-light) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-light) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 75% 60% at 50% 0%, black 30%, transparent 100%);
}

/* Soft blue glow top right */
.hero-glow {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(29,78,216,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
}

/* Eyebrow pill */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 5px 12px;
  background: var(--blue-muted);
  border: 1px solid var(--blue-border);
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: var(--sp-6);
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--blue-mid);
  border-radius: var(--r-full);
  animation: pulse-dot 2.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; }
  50%     { opacity: 0.4; }
}

.hero-title { margin-bottom: var(--sp-6); max-width: 780px; }
.text-gradient {
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: var(--sp-10);
}

.hero-actions { display: flex; align-items: center; gap: var(--sp-3); flex-wrap: wrap; }

/* Social proof */
.hero-proof {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  margin-top: var(--sp-12);
  padding-top: var(--sp-10);
  border-top: 1px solid var(--border-light);
  flex-wrap: wrap;
}

.proof-avatars { display: flex; }
.proof-avatar {
  width: 30px; height: 30px;
  border-radius: var(--r-full);
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 800;
  color: white;
  margin-left: -7px;
  flex-shrink: 0;
}
.proof-avatar:first-child { margin-left: 0; }

.proof-text { font-size: 0.875rem; color: var(--text-secondary); }
.proof-text strong { color: var(--text-primary); }
.stars { color: #f59e0b; font-size: 0.75rem; letter-spacing: 1px; }

.proof-divider { width: 1px; height: 24px; background: var(--border-light); }

.proof-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
}
.proof-stat-label { display: block; font-size: 0.72rem; color: var(--text-tertiary); margin-top: 2px; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}
.eyebrow-line { width: 18px; height: 2px; background: var(--blue-mid); border-radius: 1px; }
.eyebrow-text {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-mid);
}

.section-title    { margin-bottom: var(--sp-3); }
.section-subtitle { font-size: 1.0625rem; color: var(--text-secondary); line-height: 1.7; max-width: 540px; }
.section-subtitle.centered { margin: 0 auto; text-align: center; }

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  box-shadow: var(--shadow-sm);
  transition: all var(--t-base) var(--ease);
}
.feature-card:hover {
  border-color: var(--blue-border);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.feature-icon-wrap {
  width: 44px; height: 44px;
  background: var(--blue-muted);
  border: 1px solid var(--blue-border);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: var(--sp-4);
}

.feature-title { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: var(--sp-2); letter-spacing: -0.02em; }
.feature-desc  { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.65; }

/* ============================================================
   STEPS
   ============================================================ */
.step-item {
  display: flex;
  gap: var(--sp-5);
  align-items: flex-start;
  padding: var(--sp-5) 0;
  border-bottom: 1px solid var(--border-light);
}
.step-item:last-child { border-bottom: none; }

.step-num {
  width: 38px; height: 38px;
  background: var(--navy);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.step-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: var(--sp-1); letter-spacing: -0.02em; }
.step-desc  { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  box-shadow: var(--shadow-sm);
}

.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}
.testimonial-name { font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; color: var(--text-primary); margin-bottom: 2px; }
.testimonial-role { font-size: 0.78rem; color: var(--text-tertiary); }
.testimonial-quote { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; font-style: italic; }

/* ============================================================
   SCORE / RESULTS
   ============================================================ */
.score-ring-wrap {
  position: relative;
  width: 140px; height: 140px;
  flex-shrink: 0;
}
.score-ring-wrap svg { transform: rotate(-90deg); display: block; }
.score-ring-track { fill: none; stroke: var(--border-light); stroke-width: 8; }
.score-ring-fill  { fill: none; stroke-width: 8; stroke-linecap: round; transition: stroke-dashoffset 1.5s cubic-bezier(0.4,0,0.2,1); }

.score-ring-center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1px;
}
.score-ring-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}
.score-ring-sub {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
}

.score-high .score-ring-fill { stroke: var(--green); }
.score-high .score-ring-num  { color: var(--green); }
.score-mid  .score-ring-fill { stroke: var(--amber); }
.score-mid  .score-ring-num  { color: var(--amber); }
.score-low  .score-ring-fill { stroke: var(--red); }
.score-low  .score-ring-num  { color: var(--red); }

.progress-bar {
  width: 100%;
  height: 6px;
  background: var(--bg-muted);
  border-radius: var(--r-full);
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  border-radius: var(--r-full);
  transition: width 1.5s cubic-bezier(0.4,0,0.2,1);
}
.score-high .progress-fill { background: var(--green); }
.score-mid  .progress-fill { background: var(--amber); }
.score-low  .progress-fill { background: var(--red); }

/* Result section headers */
.result-section-header { display: flex; align-items: center; gap: var(--sp-3); margin-bottom: var(--sp-4); }
.result-icon {
  width: 28px; height: 28px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; flex-shrink: 0;
}
.result-icon-danger  { background: var(--red-muted);   color: var(--red);   border: 1px solid var(--red-border); }
.result-icon-success { background: var(--green-muted);  color: var(--green); border: 1px solid var(--green-border); }
.result-icon-blue    { background: var(--blue-muted);   color: var(--blue);  border: 1px solid var(--blue-border); }
.result-icon-amber   { background: var(--amber-muted);  color: var(--amber); border: 1px solid var(--amber-border); }
.result-section-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--text-primary); letter-spacing: -0.02em; }

/* Headline, CTA, Strategy boxes */
.headline-box {
  background: var(--blue-pale);
  border: 1px solid var(--blue-border);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
}
.headline-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: var(--sp-3);
}
.headline-text {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.45;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-4);
}

.cta-box {
  background: var(--green-pale);
  border: 1px solid var(--green-border);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
}
.cta-text { font-size: 0.9375rem; color: var(--text-primary); line-height: 1.7; }

.strategy-box {
  background: var(--amber-pale);
  border: 1px solid var(--amber-border);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
}
.strategy-text { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.75; }

.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 6px 12px;
  background: white;
  border: 1px solid var(--border-default);
  border-radius: var(--r-md);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
  box-shadow: var(--shadow-xs);
}
.copy-btn:hover  { color: var(--text-primary); border-color: var(--border-strong); box-shadow: var(--shadow-sm); }
.copy-btn.copied { color: var(--green); border-color: var(--green-border); background: var(--green-pale); }

/* ============================================================
   UPGRADE / PRICING
   ============================================================ */
.upgrade-card {
  background: var(--navy);
  border-radius: var(--r-2xl);
  padding: var(--sp-12);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.upgrade-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(29,78,216,0.3) 0%, transparent 60%);
  pointer-events: none;
}
.upgrade-card-content { position: relative; z-index: 1; }
.upgrade-title    { color: white; margin-bottom: var(--sp-3); }
.upgrade-subtitle { color: rgba(255,255,255,0.7); max-width: 500px; margin: 0 auto var(--sp-8); font-size: 1rem; line-height: 1.7; }

.upgrade-features-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
  margin-bottom: var(--sp-8);
}
.upgrade-feature-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}
.upgrade-feature-item .check { color: #6ee7b7; font-size: 0.85rem; }

/* Pricing cards */
.pricing-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--r-2xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-sm);
}
.pricing-card-pro {
  border-color: #fbbf24;
  box-shadow: var(--shadow-md), 0 0 0 1px #fde68a;
}

.pricing-badge {
  display: inline-flex;
  padding: 3px 10px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border-radius: var(--r-full);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: white;
  margin-bottom: var(--sp-5);
}
.pricing-tier { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-tertiary); margin-bottom: var(--sp-5); }
.pricing-tier-pro { color: var(--amber); }
.pricing-price { font-family: var(--font-display); font-size: 3rem; font-weight: 800; color: var(--navy); line-height: 1; letter-spacing: -0.04em; margin-bottom: var(--sp-1); }
.pricing-period { font-size: 0.8rem; color: var(--text-tertiary); margin-bottom: var(--sp-6); }

.pricing-features { display: flex; flex-direction: column; gap: var(--sp-3); margin-bottom: var(--sp-8); }
.pricing-feature {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.pricing-feature .check { color: var(--green); }
.pricing-feature .cross { color: var(--text-disabled); }
.pricing-feature.muted  { color: var(--text-disabled); }

/* ============================================================
   DASHBOARD LAYOUT
   ============================================================ */
.dashboard-layout { display: grid; grid-template-columns: 224px 1fr; min-height: 100vh; }

.sidebar {
  position: sticky; top: 0;
  height: 100vh; overflow-y: auto;
  display: flex; flex-direction: column;
  background: var(--bg-page);
  border-right: 1px solid var(--border-light);
  padding: var(--sp-5) 0;
}

.sidebar-logo {
  display: flex; align-items: center; gap: var(--sp-3);
  padding: var(--sp-2) var(--sp-4) var(--sp-5);
  text-decoration: none;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: var(--sp-3);
}

.sidebar-section-label {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-disabled);
  padding: var(--sp-4) var(--sp-4) var(--sp-2);
}

.sidebar-nav { padding: 0 var(--sp-3); flex: 1; }

.sidebar-item {
  display: flex; align-items: center; gap: var(--sp-3);
  padding: 8px var(--sp-3);
  border-radius: var(--r-md);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all var(--t-fast) var(--ease);
  margin-bottom: 1px;
  cursor: pointer;
}
.sidebar-item:hover  { color: var(--text-primary); background: var(--bg-subtle); }
.sidebar-item.active { color: var(--navy); background: var(--bg-muted); font-weight: 600; }

.sidebar-item-icon { width: 16px; text-align: center; font-size: 0.9rem; flex-shrink: 0; }

.sidebar-bottom {
  padding: var(--sp-3);
  border-top: 1px solid var(--border-light);
  margin-top: auto;
}
.sidebar-user {
  display: flex; align-items: center; gap: var(--sp-3);
  padding: var(--sp-3);
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  margin-bottom: var(--sp-2);
}
.sidebar-user-info { overflow: hidden; flex: 1; min-width: 0; }
.sidebar-user-name {
  font-size: 0.8275rem; font-weight: 600; color: var(--text-primary);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; display: block; margin-bottom: 3px;
}

.dashboard-main { background: var(--bg-subtle); min-height: 100vh; padding: var(--sp-8); overflow-x: hidden; }
.page-header  { margin-bottom: var(--sp-8); }
.page-title   { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--navy); letter-spacing: -0.03em; margin-bottom: 4px; }
.page-subtitle{ font-size: 0.875rem; color: var(--text-secondary); }

/* Stat cards */
.stat-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  padding: var(--sp-5) var(--sp-6);
  box-shadow: var(--shadow-xs);
}
.stat-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-tertiary); margin-bottom: var(--sp-3); }
.stat-value { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--navy); line-height: 1; letter-spacing: -0.04em; margin-bottom: var(--sp-2); }
.stat-sub   { font-size: 0.78rem; color: var(--text-tertiary); }

/* Tables */
.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
  text-align: left; padding: var(--sp-3) var(--sp-4);
  font-size: 0.6875rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-tertiary);
  border-bottom: 1px solid var(--border-light);
}
.data-table td {
  padding: var(--sp-4); font-size: 0.875rem;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-primary); vertical-align: middle;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover td { background: var(--bg-subtle); }

.table-header {
  padding: var(--sp-4) var(--sp-5);
  border-bottom: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: space-between;
  background: white;
}
.table-title { font-family: var(--font-display); font-size: 0.9375rem; font-weight: 700; color: var(--navy); letter-spacing: -0.02em; }

/* Empty state */
.empty-state { padding: var(--sp-16) var(--sp-6); text-align: center; background: white; }
.empty-state-icon  { font-size: 2.5rem; opacity: 0.25; margin-bottom: var(--sp-4); display: block; }
.empty-state-title { font-family: var(--font-display); font-size: 1.0625rem; font-weight: 700; color: var(--navy); margin-bottom: var(--sp-2); }
.empty-state-desc  { font-size: 0.875rem; color: var(--text-tertiary); margin-bottom: var(--sp-6); }

/* Admin badge */
.admin-badge {
  display: inline-flex; align-items: center; gap: 3px;
  padding: 2px 8px;
  background: #fef3c7; border: 1px solid #fde68a;
  border-radius: var(--r-full);
  font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: #92400e;
}

/* ============================================================
   AUTH PAGES
   ============================================================ */
.auth-layout { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; }

.auth-left {
  background: var(--navy);
  padding: var(--sp-10);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.auth-left-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(29,78,216,0.3) 0%, transparent 60%);
  pointer-events: none;
}

.auth-left-logo { margin-bottom: var(--sp-12); position: relative; z-index: 1; }
.auth-left-content { flex: 1; position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: center; }
.auth-left-title { color: white; font-size: clamp(1.75rem, 2.5vw, 2.25rem); font-weight: 800; margin-bottom: var(--sp-4); }
.auth-left-subtitle { color: rgba(255,255,255,0.65); font-size: 0.9375rem; line-height: 1.7; margin-bottom: var(--sp-8); }

.auth-perk-list { display: flex; flex-direction: column; gap: var(--sp-4); margin-bottom: var(--sp-8); }
.auth-perk { display: flex; align-items: flex-start; gap: var(--sp-3); }
.auth-perk-icon {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; flex-shrink: 0;
}
.auth-perk-title { font-size: 0.875rem; font-weight: 600; color: white; margin-bottom: 2px; }
.auth-perk-desc  { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

.auth-testimonial {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-xl);
  padding: var(--sp-5);
  position: relative; z-index: 1;
}
.auth-testimonial-quote  { font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.7; font-style: italic; margin-bottom: var(--sp-3); }
.auth-testimonial-author { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.45); }

.auth-right {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: var(--sp-10); background: var(--bg-page);
}
.auth-form-wrap   { width: 100%; max-width: 420px; }
.auth-back        { display: inline-flex; align-items: center; gap: var(--sp-2); font-size: 0.8125rem; color: var(--text-tertiary); margin-bottom: var(--sp-8); }
.auth-back:hover  { color: var(--text-primary); }
.auth-form-title  { font-size: 1.75rem; font-weight: 800; margin-bottom: var(--sp-1); }
.auth-form-subtitle { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: var(--sp-8); }

.auth-divider { display: flex; align-items: center; gap: var(--sp-3); margin: var(--sp-6) 0; }
.auth-divider-line { flex: 1; height: 1px; background: var(--border-light); }
.auth-divider-text { font-size: 0.78rem; color: var(--text-tertiary); font-weight: 500; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--sp-10) var(--sp-6);
  text-align: center;
}
.footer-brand { display: flex; align-items: center; justify-content: center; gap: var(--sp-3); margin-bottom: var(--sp-4); }
.footer-brand-name { font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; color: white; }
.footer-text  { font-size: 0.8125rem; color: rgba(255,255,255,0.4); }
.footer-links { display: flex; align-items: center; justify-content: center; gap: var(--sp-6); margin-top: var(--sp-3); flex-wrap: wrap; }
.footer-links a { font-size: 0.8125rem; color: rgba(255,255,255,0.45); transition: color var(--t-fast); }
.footer-links a:hover { color: rgba(255,255,255,0.85); }

/* ============================================================
   MISC
   ============================================================ */
.divider { height: 1px; background: var(--border-light); margin: var(--sp-8) 0; }

.url-cell { max-width: 260px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 0.84rem; color: var(--text-secondary); }

/* Animations */
@keyframes fadeUp { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }

.animate-in  { animation: fadeUp 0.45s var(--ease) forwards; }
.animate-d1  { opacity:0; animation: fadeUp 0.45s var(--ease) 0.08s forwards; }
.animate-d2  { opacity:0; animation: fadeUp 0.45s var(--ease) 0.16s forwards; }
.animate-d3  { opacity:0; animation: fadeUp 0.45s var(--ease) 0.24s forwards; }
.animate-d4  { opacity:0; animation: fadeUp 0.45s var(--ease) 0.32s forwards; }

/* Responsive */
@media (max-width: 1024px) {
  .dashboard-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .dashboard-main { padding: var(--sp-5); }
  .grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .auth-layout { grid-template-columns: 1fr; }
  .auth-left   { display: none; }
  .auth-right  { padding: var(--sp-8) var(--sp-5); min-height: 100vh; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .upgrade-card { padding: var(--sp-8) var(--sp-5); }
  .hero { padding: 100px var(--sp-5) var(--sp-12); }
  .proof-divider { display: none; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   TARGETED FIXES — v3.1
   ============================================================ */

/* Upgrade card — ensure ALL direct text children are white */
.upgrade-card,
.upgrade-card * {
  --text-primary:   #ffffff;
  --text-secondary: rgba(255,255,255,0.72);
  --text-tertiary:  rgba(255,255,255,0.45);
}
.upgrade-card h1,.upgrade-card h2,.upgrade-card h3,.upgrade-card h4 { color: #ffffff; }
.upgrade-card p  { color: rgba(255,255,255,0.72); }
.upgrade-card .tag-amber { background: rgba(245,158,11,0.2); color: #fcd34d; border-color: rgba(245,158,11,0.3); }

/* Dashboard upgrade card layout fix */
.upgrade-card-inner {
  position: relative;
  z-index: 1;
}

/* Hero section — pastel green-to-blue gradient */
.hero { background: linear-gradient(145deg, #9bb6d3 0%, #f5f8ff 45%, #cae1d2 100%) !important; }

/* Navbar button text — always white on dark buttons */
.navbar-nav li a.btn-primary { color: #ffffff !important; background: var(--navy); }
.navbar-nav li a.btn-primary:hover { color: #ffffff !important; background: var(--navy-mid); }

/* Auth right panel background */
.auth-right { background: #fafbff; }

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: calc(100% - 48px);
  max-width: 660px;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-xl);
  padding: 18px 22px;
  box-shadow: 0 16px 48px rgba(13,27,46,0.35);
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  animation: cookieSlideUp 0.4s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
@keyframes cookieSlideUp {
  from { opacity:0; transform:translateX(-50%) translateY(20px); }
  to   { opacity:1; transform:translateX(-50%) translateY(0); }
}
.cookie-banner.hiding {
  animation: cookieSlideDown 0.3s ease forwards;
}
@keyframes cookieSlideDown {
  from { opacity:1; transform:translateX(-50%) translateY(0); }
  to   { opacity:0; transform:translateX(-50%) translateY(16px); }
}
.cookie-icon { font-size:1.4rem; flex-shrink:0; }
.cookie-text { flex:1; min-width:200px; }
.cookie-text p { font-size:0.84rem; color:rgba(255,255,255,0.72); line-height:1.55; margin:0; }
.cookie-text a { color:rgba(255,255,255,0.55); text-decoration:underline; }
.cookie-text a:hover { color:white; }
.cookie-actions { display:flex; gap:8px; flex-shrink:0; }
.btn-cookie-accept {
  padding:8px 18px;
  background:white;
  color:var(--navy);
  border:none;
  border-radius:var(--r-md);
  font-size:0.84rem;
  font-weight:700;
  cursor:pointer;
  transition:all 0.15s ease;
  white-space:nowrap;
  font-family:var(--font-body);
}
.btn-cookie-accept:hover { background:#f0f4ff; transform:translateY(-1px); }
.btn-cookie-decline {
  padding:8px 14px;
  background:transparent;
  color:rgba(255,255,255,0.45);
  border:1px solid rgba(255,255,255,0.15);
  border-radius:var(--r-md);
  font-size:0.84rem;
  font-weight:500;
  cursor:pointer;
  transition:all 0.15s ease;
  white-space:nowrap;
  font-family:var(--font-body);
}
.btn-cookie-decline:hover { color:rgba(255,255,255,0.8); border-color:rgba(255,255,255,0.3); }
@media (max-width:560px) {
  .cookie-banner { bottom:12px; padding:14px 16px; }
  .cookie-actions { width:100%; }
  .btn-cookie-accept,.btn-cookie-decline { flex:1; text-align:center; justify-content:center; }
}

/* ============================================================
   SOCIAL SHARE BAR
   ============================================================ */
.share-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.share-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  margin-right: 4px;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: var(--r-md);
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.15s ease;
  white-space: nowrap;
  cursor: pointer;
  font-family: var(--font-body);
}
.share-btn:hover { transform: translateY(-1px); }

.share-btn svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* LinkedIn */
.share-linkedin {
  background: #f0f7ff;
  color: #0a66c2;
  border-color: #bfdbfe;
}
.share-linkedin:hover {
  background: #0a66c2;
  color: white;
  border-color: #0a66c2;
}

/* Facebook */
.share-facebook {
  background: #f0f2ff;
  color: #1877f2;
  border-color: #c7d2fe;
}
.share-facebook:hover {
  background: #1877f2;
  color: white;
  border-color: #1877f2;
}

/* X / Twitter */
.share-x {
  background: var(--bg-muted);
  color: var(--text-primary);
  border-color: var(--border-default);
}
.share-x:hover {
  background: #000000;
  color: white;
  border-color: #000000;
}

/* Reddit */
.share-reddit {
  background: #fff4f0;
  color: #ff4500;
  border-color: #fecaca;
}
.share-reddit:hover {
  background: #ff4500;
  color: white;
  border-color: #ff4500;
}

/* Email */
.share-email {
  background: var(--bg-muted);
  color: var(--text-secondary);
  border-color: var(--border-default);
}
.share-email:hover {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

/* Copy link */
.share-copy {
  background: var(--bg-muted);
  color: var(--text-secondary);
  border-color: var(--border-default);
}
.share-copy:hover {
  background: var(--bg-subtle);
  color: var(--text-primary);
  border-color: var(--border-strong);
}
.share-copy.copied {
  background: var(--green-pale);
  color: var(--green);
  border-color: var(--green-border);
}

/* Share section wrapper */
.share-section {
  padding: var(--sp-8) 0;
  border-top: 1px solid var(--border-light);
}
.share-section-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.share-section-text { flex: 1; min-width: 200px; }
.share-section-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.share-section-sub { font-size: 0.84rem; color: var(--text-tertiary); }

@media (max-width: 640px) {
  .share-bar { gap: 7px; }
  .share-btn { padding: 7px 11px; font-size: 0.78rem; }
  .share-btn span.share-btn-text { display: none; }
  .share-section-inner { flex-direction: column; align-items: flex-start; }
}
