/* =============================================================
   NIA PASCHER — Red Neon Brand Stylesheet
   Palette, typography, layout, components, animations.
   ============================================================= */

/* ============================== TOKENS ============================== */
:root {
  /* Colors — Red Neon palette */
  --black:        #000000;
  --velvet:       #0A0203;
  --velvet-2:     #140509;
  --neon:         #FF1A2E;
  --neon-glow:    #FF4D5C;
  --blood:        #7A0010;
  --bone:         #F5EFEA;
  --smoke:        #8A7E7C;
  --bronze:       #B0866C;

  /* Typography */
  --font-display: 'Monoton', system-ui, sans-serif;
  --font-heading: 'Bebas Neue', 'Inter', sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-script:  'Allura', cursive;

  /* Sizes */
  --max-w:       1180px;
  --max-narrow:  720px;
  --radius:      4px;
  --radius-card: 14px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================== RESET ============================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--bone);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.25s var(--ease); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ============================== HEADER ============================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 26, 46, 0.18);
}
.logo { display: inline-flex; align-items: center; }
.logo-text {
  font-family: var(--font-script);
  font-size: 32px;
  color: var(--neon);
  text-shadow:
    0 0 6px var(--neon),
    0 0 14px var(--neon-glow),
    0 0 28px rgba(255, 26, 46, 0.45);
  letter-spacing: 0.5px;
}
.site-nav { display: flex; gap: 28px; align-items: center; }
.site-nav a {
  font-family: var(--font-heading);
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone);
  position: relative;
  padding: 6px 0;
}
.site-nav a:hover, .site-nav a.active {
  color: var(--neon);
  text-shadow: 0 0 10px rgba(255, 26, 46, 0.7);
}

/* ============================== HERO ============================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 100px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(255, 26, 46, 0.18) 0%, rgba(0,0,0,0) 55%),
    radial-gradient(ellipse at 80% 90%, rgba(122, 0, 16, 0.35) 0%, rgba(0,0,0,0) 50%),
    var(--black);
}
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 26, 46, 0.025) 0,
    rgba(255, 26, 46, 0.025) 1px,
    transparent 1px,
    transparent 4px
  );
  mix-blend-mode: screen;
  opacity: 0.6;
}
.hero-glow::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, transparent 30%, rgba(0,0,0,0.85) 100%);
}
.hero-inner {
  position: relative;
  text-align: center;
  max-width: 900px;
  z-index: 1;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(30px, 5.5vw, 64px);
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin: 0 0 28px;
  color: var(--neon);
  text-shadow:
    0 0 4px rgba(255, 26, 46, 0.7),
    0 0 10px rgba(255, 77, 92, 0.45),
    0 0 24px rgba(122, 0, 16, 0.35);
  animation: flicker 9s infinite;
}
.hero-emphasis {
  display: inline-block;
  color: var(--bone);
  text-shadow: 0 0 6px rgba(255, 26, 46, 0.25);
}
@keyframes flicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    opacity: 1;
    text-shadow:
      0 0 4px rgba(255, 26, 46, 0.7),
      0 0 10px rgba(255, 77, 92, 0.45),
      0 0 24px rgba(122, 0, 16, 0.35);
  }
  20%, 24%, 55% {
    opacity: 0.92;
    text-shadow: 0 0 3px rgba(255, 26, 46, 0.6);
  }
}
.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--bone);
  max-width: 640px;
  margin: 0 auto 40px;
  font-weight: 300;
}
.hero-cta { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* ============================== BUTTONS ============================== */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 15px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
}
.btn-primary {
  background: transparent;
  border: 1px solid var(--neon);
  color: var(--neon);
  text-shadow: 0 0 6px rgba(255, 26, 46, 0.7);
  box-shadow:
    0 0 12px rgba(255, 26, 46, 0.35),
    inset 0 0 20px rgba(255, 26, 46, 0.05);
}
.btn-primary:hover {
  color: var(--bone);
  background: rgba(255, 26, 46, 0.12);
  box-shadow:
    0 0 24px rgba(255, 26, 46, 0.85),
    inset 0 0 30px rgba(255, 26, 46, 0.15);
  text-shadow: 0 0 10px var(--neon-glow);
}
.btn-ghost {
  background: transparent;
  border: 1px solid rgba(245, 239, 234, 0.25);
  color: var(--bone);
}
.btn-ghost:hover {
  border-color: var(--neon);
  color: var(--neon);
}
.btn-large { padding: 20px 44px; font-size: 16px; }

/* ============================== SECTIONS ============================== */
.section { padding: 100px 24px; position: relative; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.narrow { max-width: var(--max-narrow); margin: 0 auto; }
.centered { text-align: center; }
.section-eyebrow {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--neon);
  margin: 0 0 18px;
  text-shadow: 0 0 8px rgba(255, 26, 46, 0.5);
}
.section-headline {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--bone);
  margin: 0 0 32px;
}
.section p { color: var(--bone); opacity: 0.85; margin: 0 0 20px; }
.section p.muted { color: var(--smoke); opacity: 1; }

/* Section variants */
.section-problem  { background: var(--black); }
.section-guide    { background: var(--velvet); border-top: 1px solid rgba(255, 26, 46, 0.1); border-bottom: 1px solid rgba(255, 26, 46, 0.1); }
.section-plan     { background: var(--black); }
.section-samples  { background: var(--velvet-2); border-top: 1px solid rgba(255, 26, 46, 0.1); border-bottom: 1px solid rgba(255, 26, 46, 0.1); }
.section p.samples-rights {
  margin: 56px auto 0;
  max-width: 720px;
  padding: 18px 22px;
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--smoke);
  text-align: center;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255, 26, 46, 0.18);
  border-radius: 4px;
  background: rgba(255, 26, 46, 0.02);
  opacity: 1;
}
.section-slowburn { background: var(--black); }
.section-range    { background: var(--velvet); border-top: 1px solid rgba(255, 26, 46, 0.1); border-bottom: 1px solid rgba(255, 26, 46, 0.1); }
.section-finalcta { background: var(--black); padding: 120px 24px; text-align: center; }

/* ============================== FEATURE LIST ============================== */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
}
.feature-list li {
  padding: 18px 0 18px 28px;
  border-bottom: 1px solid rgba(245, 239, 234, 0.08);
  position: relative;
  color: var(--bone);
  opacity: 0.9;
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 28px;
  width: 12px;
  height: 1px;
  background: var(--neon);
  box-shadow: 0 0 6px var(--neon);
}
.feature-list strong { color: var(--neon); font-weight: 500; }

/* ============================== AUTHOR NOTE ============================== */
.author-note {
  margin-top: 56px;
  padding: 36px 36px 32px;
  border-left: 2px solid var(--neon);
  background: rgba(255, 26, 46, 0.04);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  position: relative;
}
.author-note::before {
  content: '';
  position: absolute;
  left: -2px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--neon);
  box-shadow: 0 0 12px var(--neon), 0 0 24px rgba(255, 26, 46, 0.5);
}
.author-note-title {
  font-family: var(--font-script);
  font-size: 32px;
  color: var(--neon);
  margin: 0 0 18px;
  text-shadow: 0 0 6px rgba(255, 26, 46, 0.5);
  letter-spacing: 0.5px;
  font-weight: 400;
}
.author-note p {
  color: var(--bone);
  opacity: 0.88;
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.75;
}
.author-note p:last-of-type { margin-bottom: 24px; }
.btn-small { padding: 12px 24px; font-size: 13px; }

/* ============================== PLAN STEPS ============================== */
.plan-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 56px;
}
.plan-step {
  padding: 36px 28px;
  background: var(--velvet);
  border: 1px solid rgba(255, 26, 46, 0.18);
  border-radius: var(--radius-card);
  text-align: center;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.plan-step:hover {
  transform: translateY(-4px);
  border-color: var(--neon);
  box-shadow: 0 12px 40px rgba(255, 26, 46, 0.2);
}
.plan-num {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--neon);
  text-shadow: 0 0 8px var(--neon);
  display: block;
  margin-bottom: 16px;
}
.plan-step h4 {
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 12px;
  color: var(--bone);
}
.plan-step p { margin: 0; opacity: 0.8; }

/* ============================== SAMPLE GRID ============================== */
.sample-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 760px) {
  .sample-grid { grid-template-columns: 1fr; max-width: 360px; }
}
.sample-card {
  background: var(--velvet);
  border: 1px solid rgba(255, 26, 46, 0.2);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.sample-card:hover {
  transform: translateY(-6px);
  border-color: var(--neon);
  box-shadow: 0 20px 50px rgba(255, 26, 46, 0.28);
}
.sample-cover {
  display: none;
}
.sample-body { padding: 22px 22px 18px; display: flex; flex-direction: column; flex: 1; align-items: flex-start; }
.sample-tag {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--neon);
  padding: 5px 11px;
  border: 1px solid var(--neon);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  text-shadow: 0 0 6px rgba(255, 26, 46, 0.6);
  box-shadow: 0 0 10px rgba(255, 26, 46, 0.25);
  margin-bottom: 14px;
  align-self: flex-start;
}
.sample-body h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: var(--bone);
  line-height: 1.15;
  align-self: flex-start;
}
.sample-quick {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--neon);
  opacity: 0.92;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin: 0 0 14px;
  flex: 1;
  text-shadow: 0 0 6px rgba(255, 26, 46, 0.25);
  align-self: flex-start;
  text-align: left;
}
.sample-hook {
  color: var(--bone);
  opacity: 0.75;
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 22px;
  flex: 1;
}
.sample-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid rgba(245, 239, 234, 0.08);
  width: 100%;
}
.sample-time {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--smoke);
}
.sample-link {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--neon);
  text-shadow: 0 0 6px rgba(255, 26, 46, 0.5);
}
.sample-link:hover { color: var(--neon-glow); text-shadow: 0 0 10px var(--neon-glow); }

/* ============================== AUDIO PLAYER (Red Neon styling) ============================== */
.sample-audio {
  width: 100%;
  height: 36px;
  margin-top: 10px;
  border-radius: 999px;
  outline: none;
  background: var(--black);
  filter: invert(0.92) hue-rotate(180deg) saturate(1.3) contrast(1.05);
  box-shadow: 0 0 0 1px rgba(255, 26, 46, 0.25), 0 0 18px rgba(255, 26, 46, 0.08);
  transition: box-shadow 0.3s ease;
}
.sample-audio:hover {
  box-shadow: 0 0 0 1px rgba(255, 26, 46, 0.5), 0 0 22px rgba(255, 26, 46, 0.18);
}
.sample-audio::-webkit-media-controls-panel {
  background-color: #0a0a0a;
  border-radius: 999px;
}

/* ============================== SLOW BURN PROOF ============================== */
.pull-quote {
  font-family: var(--font-script);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--neon);
  text-align: center;
  margin: 56px auto;
  max-width: 600px;
  line-height: 1.3;
  text-shadow: 0 0 14px rgba(255, 26, 46, 0.55);
  border: none;
  padding: 0;
}
.coming-soon {
  margin-top: 56px;
  padding: 40px;
  border: 1px solid rgba(255, 26, 46, 0.25);
  border-radius: var(--radius-card);
  background: rgba(255, 26, 46, 0.04);
}
.coming-soon h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--neon);
  margin: 0 0 20px;
  text-shadow: 0 0 8px rgba(255, 26, 46, 0.4);
}
.coming-soon ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.coming-soon li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(245, 239, 234, 0.06);
  color: var(--bone);
  opacity: 0.85;
}
.coming-soon li:last-child { border-bottom: none; }

/* ============================== RANGE GRID ============================== */
.range-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 56px;
}
.range-card {
  padding: 32px 24px;
  background: var(--black);
  border: 1px solid rgba(255, 26, 46, 0.2);
  border-radius: var(--radius-card);
  text-align: center;
  transition: all 0.3s var(--ease);
}
.range-card:hover {
  border-color: var(--neon);
  background: rgba(255, 26, 46, 0.05);
  box-shadow: 0 12px 30px rgba(255, 26, 46, 0.2);
}
.range-card h4 {
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--neon);
  margin: 0 0 14px;
  text-shadow: 0 0 8px rgba(255, 26, 46, 0.4);
}
.range-card p { margin: 0; font-size: 14px; opacity: 0.8; }

/* ============================== FINAL CTA ============================== */
.finalcta-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 52px);
  line-height: 1.15;
  margin: 0 0 48px;
  color: var(--neon);
  text-shadow:
    0 0 4px rgba(255, 26, 46, 0.7),
    0 0 10px rgba(255, 77, 92, 0.45),
    0 0 24px rgba(122, 0, 16, 0.35);
}

/* ============================== CONTACT PAGE ============================== */
.section-contact-hero {
  padding: 120px 24px 60px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 26, 46, 0.18) 0%, rgba(0,0,0,0) 55%),
    var(--black);
}
.contact-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 84px);
  line-height: 1.05;
  margin: 0 0 24px;
  color: var(--neon);
  text-shadow:
    0 0 6px var(--neon),
    0 0 14px var(--neon-glow),
    0 0 32px rgba(255, 26, 46, 0.5);
}
.contact-sub {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.85;
}
.section-contact-form { padding: 60px 24px 120px; }
.contact-form { display: flex; flex-direction: column; gap: 24px; }
.contact-form[hidden], .contact-success[hidden] { display: none !important; }
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row-checkbox { flex-direction: row; align-items: center; gap: 12px; }
.form-row label {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--neon);
}
.form-row-checkbox label {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--bone);
  opacity: 0.9;
}
.form-row input[type="text"],
.form-row input[type="email"],
.form-row select,
.form-row textarea {
  background: var(--velvet);
  border: 1px solid rgba(255, 26, 46, 0.25);
  color: var(--bone);
  padding: 14px 16px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 16px;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.form-row textarea { resize: vertical; min-height: 140px; }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--neon);
  box-shadow: 0 0 16px rgba(255, 26, 46, 0.4);
}
.form-row input::placeholder,
.form-row textarea::placeholder { color: var(--smoke); opacity: 0.7; }
.form-row input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--neon); }

.contact-success {
  margin-top: 48px;
  padding: 40px;
  border: 1px solid var(--neon);
  border-radius: var(--radius-card);
  background: rgba(255, 26, 46, 0.06);
  box-shadow: 0 0 30px rgba(255, 26, 46, 0.2);
  text-align: center;
}
.contact-success h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--neon);
  margin: 0 0 14px;
  text-shadow: 0 0 10px rgba(255, 26, 46, 0.6);
}
.contact-success a { color: var(--neon); border-bottom: 1px solid currentColor; }

.quick-pick {
  margin-top: 64px;
  padding: 36px;
  border-top: 1px solid rgba(255, 26, 46, 0.15);
}
.quick-pick h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone);
  margin: 0 0 24px;
  text-align: center;
}
.quick-pick ul { list-style: none; padding: 0; margin: 0; }
.quick-pick li { padding: 14px 0; border-bottom: 1px solid rgba(245, 239, 234, 0.05); }
.quick-pick li:last-child { border-bottom: none; }
.quick-pick a { color: var(--neon); border-bottom: 1px dashed currentColor; }

/* ============================== FOOTER ============================== */
.site-footer {
  background: var(--velvet);
  border-top: 1px solid rgba(255, 26, 46, 0.2);
  padding: 64px 24px 40px;
  text-align: center;
}
.footer-inner { max-width: 800px; margin: 0 auto; }
.footer-brand {
  font-family: var(--font-script);
  font-size: 36px;
  color: var(--neon);
  text-shadow:
    0 0 6px var(--neon),
    0 0 14px var(--neon-glow),
    0 0 28px rgba(255, 26, 46, 0.45);
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--smoke);
  margin-bottom: 32px;
  font-style: italic;
}
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.footer-nav a {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone);
  opacity: 0.85;
}
.footer-nav a:hover { color: var(--neon); }
.footer-social {
  margin-bottom: 32px;
  font-size: 14px;
  color: var(--smoke);
}
.footer-social a { color: var(--bone); }
.footer-social a:hover { color: var(--neon); }
.footer-fineprint { font-size: 12px; color: var(--smoke); opacity: 0.7; }

/* ============================== STICKY SOCIAL BAR ============================== */
.sticky-social {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sticky-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(255, 26, 46, 0.4);
  color: var(--neon);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 0 12px rgba(255, 26, 46, 0.25);
  transition: all 0.3s var(--ease);
  position: relative;
}
.sticky-icon:hover {
  background: var(--neon);
  color: var(--black);
  border-color: var(--neon);
  box-shadow: 0 0 24px rgba(255, 26, 46, 0.85);
  transform: translateX(-4px);
}
.sticky-label {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: rgba(0,0,0,0.92);
  border: 1px solid var(--neon);
  color: var(--neon);
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--radius);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s var(--ease);
  text-shadow: 0 0 6px rgba(255, 26, 46, 0.6);
  box-shadow: 0 0 12px rgba(255, 26, 46, 0.3);
}
.sticky-icon:hover .sticky-label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ============================== RESPONSIVE ============================== */
@media (max-width: 768px) {
  .site-header { padding: 14px 20px; }
  .logo-text { font-size: 28px; }
  .site-nav { gap: 16px; }
  .site-nav a { font-size: 12px; letter-spacing: 0.14em; }
  .hero { padding: 60px 20px 80px; min-height: auto; }
  .section { padding: 70px 20px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; text-align: center; }
  .sticky-social { bottom: 16px; right: 16px; gap: 10px; }
  .sticky-icon { width: 44px; height: 44px; }
  .sticky-label { display: none; }
  .footer-nav { gap: 18px; }
}

@media (max-width: 480px) {
  .site-nav a:not(:last-child) { display: none; }
  .hero-headline { font-size: 30px; }
  .section-headline { font-size: 28px; }
}
