/* NeuropathSock CZ — style_k7x9mz.css */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,500;0,9..144,700;1,9..144,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --amber:    #E8A020;
  --amber-lt: #F5C85A;
  --sand:     #FDF6E3;
  --sand-dk:  #F0E6C8;
  --dark:     #1A1208;
  --dark2:    #2E2010;
  --mid:      #6B5430;
  --text:     #3A2C14;
  --muted:    #8B7355;
  --white:    #FFFFFF;
  --radius:   10px;
  --shadow:   0 4px 24px rgba(26,18,8,.12);
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}
img { max-width: 100%; display: block; }
a { color: var(--amber); text-decoration: none; }
a:hover { text-decoration: underline; }
h1,h2,h3,h4 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

/* ── DISCLAIMER BAR ─────────────────────────────────────── */
.disclaimer-bar {
  background: var(--dark2);
  color: rgba(255,255,255,.75);
  font-size: .72rem;
  text-align: center;
  padding: .55rem 1rem;
  line-height: 1.4;
}
.disclaimer-bar a { color: var(--amber-lt); }

/* ── NAV ─────────────────────────────────────────────────── */
.site-nav {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,.3);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: .9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--amber);
  text-decoration: none;
  letter-spacing: -.02em;
}
.nav-logo span { color: var(--white); }
.nav-links { display: flex; gap: 1.8rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--amber); text-decoration: none; }
.nav-cta {
  background: var(--amber);
  color: var(--dark) !important;
  padding: .5rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 600 !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--amber-lt) !important; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 55%, #3A2806 100%);
  color: var(--white);
  padding: 5rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 70% 50%, rgba(232,160,32,.18), transparent);
  pointer-events: none;
}
.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-block;
  background: var(--amber);
  color: var(--dark);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 4px;
  margin-bottom: 1.2rem;
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--white);
  margin-bottom: 1.2rem;
  font-style: italic;
  font-weight: 300;
}
.hero h1 strong {
  font-style: normal;
  font-weight: 700;
  color: var(--amber);
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 1.8rem;
  max-width: 480px;
}
.price-group {
  display: flex;
  align-items: baseline;
  gap: .8rem;
  margin-bottom: 1.8rem;
  flex-wrap: wrap;
}
.price-now {
  font-family: 'Fraunces', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--amber);
}
.price-old {
  font-size: 1.2rem;
  color: rgba(255,255,255,.45);
  text-decoration: line-through;
}
.price-badge {
  background: #d63031;
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  padding: .25rem .7rem;
  border-radius: 4px;
  letter-spacing: .04em;
}
.btn-primary {
  display: inline-block;
  background: var(--amber);
  color: var(--dark);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 1rem 2.2rem;
  border-radius: var(--radius);
  transition: background .2s, transform .15s;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover { background: var(--amber-lt); transform: translateY(-2px); text-decoration: none; }
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--amber);
  border: 2px solid var(--amber);
  font-size: 1rem;
  font-weight: 600;
  padding: .85rem 1.8rem;
  border-radius: var(--radius);
  transition: all .2s;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}
.btn-secondary:hover { background: var(--amber); color: var(--dark); text-decoration: none; }
.hero-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-product-img {
  max-width: 420px;
  width: 100%;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,.5));
  border-radius: 12px;
}
.trust-strip {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  color: rgba(255,255,255,.7);
}
.trust-item .icon { color: var(--amber); font-size: 1rem; }

/* ── STATS ───────────────────────────────────────────────── */
.stats-section {
  background: var(--dark2);
  padding: 3rem 1.5rem;
}
.stats-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat-item {}
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--amber);
  display: block;
}
.stat-label {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  margin-top: .2rem;
}

/* ── SECTION SHARED ──────────────────────────────────────── */
.section-pad { padding: 5rem 1.5rem; }
.section-pad-sm { padding: 3.5rem 1.5rem; }
.container { max-width: 1140px; margin: 0 auto; }
.section-eyebrow {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: .6rem;
  display: block;
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 3rem;
}
.bg-sand { background: var(--sand); }
.bg-dark { background: var(--dark); }
.text-white { color: var(--white); }

/* ── HOW IT WORKS ────────────────────────────────────────── */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.how-card {
  background: var(--white);
  border: 1px solid var(--sand-dk);
  border-radius: 14px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .2s;
}
.how-card:hover { transform: translateY(-4px); }
.how-num {
  width: 52px; height: 52px;
  background: var(--amber);
  color: var(--dark);
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}
.how-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.how-card p { font-size: .92rem; color: var(--muted); }

/* ── FEATURES ────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(232,160,32,.2);
  border-radius: var(--radius);
  padding: 1.4rem;
}
.feature-icon {
  width: 44px; height: 44px;
  background: var(--amber);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.feature-item h3 { font-size: 1rem; color: var(--white); margin-bottom: .3rem; }
.feature-item p { font-size: .88rem; color: rgba(255,255,255,.6); }

/* ── COLOR SELECTOR ─────────────────────────────────────── */
.color-section {
  padding: 5rem 1.5rem;
  background: var(--sand);
}
.color-wrap {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.color-preview {
  width: 100%;
  max-width: 400px;
  margin: 0 auto 2rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: opacity .3s;
}
.color-swatches {
  display: flex;
  justify-content: center;
  gap: .8rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.color-swatch {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 3px solid transparent;
  cursor: pointer;
  transition: transform .2s, border-color .2s;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.color-swatch:hover { transform: scale(1.12); }
.color-swatch.active { border-color: var(--amber); transform: scale(1.12); }
.color-name {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

/* ── ORDER SECTION ───────────────────────────────────────── */
.order-section {
  background: var(--dark);
  padding: 5rem 1.5rem;
  text-align: center;
}
.order-box {
  max-width: 560px;
  margin: 0 auto;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(232,160,32,.25);
  border-radius: 20px;
  padding: 2.5rem 2rem;
}
.order-price-big {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--amber);
}
.order-price-old {
  font-size: 1.1rem;
  color: rgba(255,255,255,.4);
  text-decoration: line-through;
  margin-left: .5rem;
}
.order-discount-badge {
  display: inline-block;
  background: #d63031;
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  padding: .25rem .8rem;
  border-radius: 4px;
  margin-left: .8rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
  margin-bottom: .8rem;
}
.form-input {
  width: 100%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  padding: .85rem 1rem;
  font-size: .95rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--white);
  transition: border-color .2s;
}
.form-input::placeholder { color: rgba(255,255,255,.35); }
.form-input:focus { outline: none; border-color: var(--amber); }
.form-input.full { grid-column: 1 / -1; }
.form-select {
  width: 100%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  padding: .85rem 1rem;
  font-size: .95rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--white);
  cursor: pointer;
  appearance: none;
}
.form-select option { background: var(--dark2); color: var(--white); }
.order-submit {
  width: 100%;
  margin-top: .8rem;
  font-size: 1.1rem;
  padding: 1.1rem;
}
.order-note {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  margin-top: .8rem;
}

/* ── REVIEWS ─────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--sand-dk);
  border-radius: 14px;
  padding: 1.6rem;
  box-shadow: var(--shadow);
}
.stars {
  color: var(--amber);
  font-size: 1.1rem;
  margin-bottom: .7rem;
  letter-spacing: .05em;
}
.review-text {
  font-size: .93rem;
  color: var(--text);
  margin-bottom: 1rem;
  font-style: italic;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: .7rem;
}
.reviewer-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--amber);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: .85rem;
  color: var(--dark);
  flex-shrink: 0;
}
.reviewer-name { font-weight: 600; font-size: .88rem; }
.reviewer-location { font-size: .78rem; color: var(--muted); }

/* ── STORY SECTION ───────────────────────────────────────── */
.story-section { padding: 5rem 1.5rem; background: var(--sand); }
.story-inner {
  max-width: 820px;
  margin: 0 auto;
}
.story-inner blockquote {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 300;
  color: var(--dark);
  border-left: 4px solid var(--amber);
  padding-left: 1.5rem;
  margin: 2rem 0;
  line-height: 1.5;
}
.story-inner p { margin-bottom: 1rem; color: var(--text); }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--sand-dk);
  padding: 1.2rem 0;
}
.faq-q {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  color: var(--dark);
}
.faq-q::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--amber);
  flex-shrink: 0;
  transition: transform .25s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  display: none;
  font-size: .93rem;
  color: var(--muted);
  padding-top: .8rem;
  line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

/* ── BLOG GRID ───────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--sand-dk);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s;
}
.blog-card:hover { transform: translateY(-4px); }
.blog-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.blog-card-body { padding: 1.2rem 1.4rem 1.4rem; }
.blog-card-cat {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: .5rem;
  display: block;
}
.blog-card h3 {
  font-size: 1.05rem;
  margin-bottom: .6rem;
  line-height: 1.35;
}
.blog-card p { font-size: .88rem; color: var(--muted); margin-bottom: 1rem; }
.blog-card-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--amber);
}
.blog-card-large { grid-column: span 2; }
.blog-card-large .blog-card-img { aspect-ratio: 2/1; }

/* ── ARTICLE PAGES ───────────────────────────────────────── */
.article-hero {
  background: linear-gradient(135deg, var(--dark), var(--dark2));
  padding: 4rem 1.5rem 3rem;
  text-align: center;
  color: var(--white);
}
.article-hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  color: var(--white);
  max-width: 800px;
  margin: 0 auto 1rem;
}
.article-hero .article-meta {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
}
.article-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.article-body h2 {
  font-size: 1.5rem;
  margin: 2rem 0 .8rem;
}
.article-body h3 {
  font-size: 1.15rem;
  margin: 1.5rem 0 .5rem;
}
.article-body p { margin-bottom: 1rem; }
.article-body ul, .article-body ol { margin: .5rem 0 1rem 1.5rem; }
.article-body li { margin-bottom: .4rem; }
.info-box {
  background: var(--sand);
  border-left: 4px solid var(--amber);
  padding: 1.2rem 1.4rem;
  border-radius: 0 8px 8px 0;
  margin: 1.5rem 0;
}
.info-box p { margin: 0; font-size: .92rem; }
.disclaimer-article {
  background: var(--sand-dk);
  border-radius: 8px;
  padding: 1rem 1.2rem;
  font-size: .8rem;
  color: var(--muted);
  margin: 2rem 0;
  line-height: 1.5;
}
.article-cta {
  background: var(--dark2);
  border-radius: 14px;
  padding: 2rem;
  text-align: center;
  margin: 2.5rem 0;
}
.article-cta p { color: rgba(255,255,255,.75); margin-bottom: 1rem; }
.article-cta .btn-primary { font-size: .95rem; }

/* ── LEGAL PAGES ─────────────────────────────────────────── */
.legal-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.legal-body h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  padding-bottom: .8rem;
  border-bottom: 2px solid var(--sand-dk);
}
.legal-body h2 { font-size: 1.25rem; margin: 1.8rem 0 .6rem; }
.legal-body h3 { font-size: 1.05rem; margin: 1.2rem 0 .4rem; }
.legal-body p { margin-bottom: .9rem; font-size: .95rem; }
.legal-body ul, .legal-body ol { margin: .5rem 0 1rem 1.5rem; }
.legal-body li { margin-bottom: .4rem; font-size: .95rem; }
.legal-body section { margin-bottom: 1.5rem; }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.55);
  padding: 3rem 1.5rem 1.5rem;
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .nav-logo { display: block; margin-bottom: .6rem; }
.footer-brand p { font-size: .82rem; max-width: 280px; }
.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: .9rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .4rem; }
.footer-col a { color: rgba(255,255,255,.55); font-size: .85rem; }
.footer-col a:hover { color: var(--amber); text-decoration: none; }
.footer-bottom {
  padding-top: 1.5rem;
  font-size: .78rem;
  text-align: center;
}

/* ── THANK YOU ───────────────────────────────────────────── */
.thankyou-section {
  padding: 6rem 1.5rem;
  text-align: center;
  min-height: 70vh;
  display: flex;
  align-items: center;
}
.thankyou-box {
  max-width: 560px;
  margin: 0 auto;
}
.thankyou-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}
.thankyou-box h1 { font-size: 2.4rem; margin-bottom: 1rem; color: var(--dark); }
.thankyou-box p { color: var(--muted); margin-bottom: 1.2rem; }

/* ── BLOG LISTING PAGE ───────────────────────────────────── */
.blog-hero {
  background: linear-gradient(135deg, var(--dark), var(--dark2));
  padding: 3.5rem 1.5rem 2.5rem;
  text-align: center;
  color: var(--white);
}
.blog-hero h1 { color: var(--white); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin: 0 auto 1.8rem; }
  .price-group { justify-content: center; }
  .trust-strip { justify-content: center; }
  .hero-img-wrap { order: -1; }
  .hero-product-img { max-width: 280px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .features-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card-large { grid-column: span 1; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

/* ===== ADVERTORIAL LABEL ===== */
.advertorial-label {
  background: var(--sand-dk);
  border-bottom: 1px solid #d4c49a;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  padding: 5px 16px;
  font-weight: 700;
}

/* ===== AWARENESS BLOCK ===== */
.awareness-section {
  padding: 80px 24px;
  background: var(--dark);
}
.awareness-inner { max-width: 1100px; margin: 0 auto; }
.awareness-eyebrow {
  display: inline-block;
  background: rgba(232,160,32,0.2); color: var(--amber);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 5px 14px;
  border-radius: 50px; margin-bottom: 16px;
}
.awareness-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700; color: #fff;
  text-align: center; margin-bottom: 12px;
}
.awareness-sub { text-align: center; color: rgba(255,255,255,0.6); font-size: 1rem; max-width: 560px; margin: 0 auto 48px; }
.awareness-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 20px; margin-bottom: 48px;
}
.aw-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(232,160,32,0.2);
  border-radius: 12px; padding: 28px 20px;
  display: flex; flex-direction: column; gap: 8px;
}
.aw-icon { font-size: 26px; }
.aw-num { font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 700; color: var(--amber); line-height: 1.1; }
.aw-label { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.85); border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 10px; line-height: 1.4; }
.aw-text { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.65; margin: 0; }
.aw-cta-row {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(232,160,32,0.2);
  border-radius: 12px; padding: 28px 36px;
}
.aw-cta-text { font-size: 1rem; font-weight: 500; color: rgba(255,255,255,0.85); margin: 0; max-width: 500px; }

/* ===== NF FORM PICKER ===== */
.nf-picker-row {
  display: flex; gap: 32px; flex-wrap: wrap;
  margin-bottom: 24px; padding: 20px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
}
.nf-picker-group { display: flex; flex-direction: column; gap: 10px; }
.nf-picker-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.nf-color-dots { display: flex; gap: 10px; }
.nf-dot {
  width: 32px; height: 32px; border-radius: 50%;
  border: 3px solid transparent; cursor: pointer;
  transition: transform 0.15s, border-color 0.15s;
}
.nf-dot input { display: none; }
.nf-dot.active { border-color: var(--amber); transform: scale(1.2); }
.nf-selected-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.nf-size-btns { display: flex; gap: 10px; }
.nf-size-btn {
  cursor: pointer; border: 2px solid rgba(255,255,255,0.2);
  border-radius: 8px; padding: 10px 16px;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  font-size: 0.9rem; font-weight: 700; color: rgba(255,255,255,0.7);
  transition: border-color 0.2s;
}
.nf-size-btn input { display: none; }
.nf-size-btn span { font-size: 0.75rem; font-weight: 400; color: rgba(255,255,255,0.4); }
.nf-size-btn.active { border-color: var(--amber); color: var(--amber); }

/* NAV extended */
.site-nav .nav-logo { flex-shrink: 0; white-space: nowrap; }
.site-nav .nav-cta { flex-shrink: 0; white-space: nowrap; }
@media (min-width: 769px) {
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 0.82rem; }
}
@media (max-width: 768px) {
  .awareness-grid { grid-template-columns: 1fr 1fr; }
  .aw-cta-row { flex-direction: column; text-align: center; padding: 24px 20px; }
  .nf-picker-row { flex-direction: column; gap: 20px; }
}
@media (max-width: 480px) {
  .awareness-grid { grid-template-columns: 1fr; }
}
