/* ============================================================
   НЕЙРОМИКА v5 — Premium Light / Engineering Aesthetic
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

/* ── Variables ── */
:root {
  --bg:           #F8F8F8;
  --surface:      #EFEFEF;
  --surface-2:    #E5E5E5;
  --surface-dark: #2A2A2A;
  --text:         #111111;
  --text-muted:   #666666;
  --accent:       #1A1A1A;
  --line:         #DCDCDC;
  --white:        #FFFFFF;
  /* v3 flip-card vars */
  --graphite:     #1C1C1E;
  --titanium:     #8E8E93;
  --glass-bg:     rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
input, textarea, button, select { font-family: inherit; font-size: inherit; }

/* ── Typography ── */
h1 {
  font-size: clamp(28px, 4vw, 60px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
h2 {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
h3 {
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 600;
  line-height: 1.3;
}
p { line-height: 1.7; }
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero-content .eyebrow {
  font-size: 9px;
  letter-spacing: 0.08em;
  display: block;
  width: 100%;
  white-space: nowrap;
}
.quote {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 300;
  font-style: italic;
  color: #444;
  line-height: 1.5;
}

/* ── Layout ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 80px 0; }
@media (max-width: 768px) { section { padding: 56px 0; } }

/* ── Plates ── */
.plate {
  background: var(--surface);
  border-radius: 16px;
  padding: 40px;
}
.plate--dark {
  background: var(--surface-dark);
  color: var(--white);
  border-radius: 16px;
  padding: 40px;
}
.plate--dark .text-muted { color: rgba(255,255,255,0.55); }
.plate--white {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 40px;
}
.plate--white.criteria-card {
  border: none !important;
  box-shadow: none;
}

@media (max-width: 768px) {
  .plate, .plate--dark, .plate--white { padding: 28px 24px; }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: #111;
  color: #fff;
  border-color: #111;
}
.btn-primary:hover { background: #333; border-color: #333; }
.btn-outline {
  background: transparent;
  color: #111;
  border-color: #111;
}
.btn-outline:hover { background: rgba(0,0,0,0.04); }
.btn-primary-inv {
  background: var(--white);
  color: #111;
  border-color: var(--white);
}
.btn-primary-inv:hover { background: #e8e8e8; border-color: #e8e8e8; }

/* ── Header ── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid #E0E0E0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 32px;
}
.site-logo {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  flex-shrink: 0;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.15s;
}
.site-nav a:hover, .site-nav a.active { color: var(--text); }
.header-cta { flex-shrink: 0; }

/* Mobile nav */
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.2s;
}
@media (max-width: 900px) {
  .burger { display: flex; }
  .site-nav, .header-cta { display: none; }
  .site-nav.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 16px 24px 24px;
    z-index: 99;
  }
  .site-nav.open a {
    display: block;
    padding: 10px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--line);
    width: 100%;
  }
  .site-nav.open a:last-child { border-bottom: none; }
  .site-nav.open + .header-cta {
    display: block;
    padding: 16px 24px;
    background: var(--white);
    position: absolute;
    top: auto;
  }
}

/* ── Footer ── */
.site-footer {
  background: #111;
  color: rgba(255,255,255,0.7);
  padding: 56px 0 32px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .footer-logo {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}
.footer-brand p { font-size: 13px; max-width: 260px; }
.footer-links { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 8px; transition: color 0.15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.35); margin-left: 20px; }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ── Hero ── */
.hero {
  background: var(--white);
  padding: 100px 0 80px;
  overflow: hidden;
  position: relative;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content .eyebrow { margin-bottom: 20px; text-align: left; }
.hero-content h1 { margin-bottom: 24px; text-align: left; }
.hero__title { text-align: left; white-space: nowrap; overflow: visible; }
.hero-content p { font-size: 18px; color: var(--text-muted); max-width: 560px; margin-bottom: 40px; }
.hero__subtitle { white-space: nowrap; overflow: visible; font-size: clamp(14px, 1.6vw, 18px); }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-deco {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-deco-num {
  font-size: clamp(120px, 18vw, 220px);
  font-weight: 800;
  color: var(--surface-2);
  line-height: 1;
  letter-spacing: -0.05em;
  user-select: none;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-deco { display: none; }
  .hero { padding: 64px 0 56px; }
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--white);
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { max-width: 760px; }
.page-hero p { font-size: 18px; color: var(--text-muted); max-width: 600px; margin-top: 20px; }

/* ── Section labels ── */
.section-label { margin-bottom: 48px; }
.section-label h2 { margin-top: 10px; }

/* ── Grid layouts ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
@media (min-width: 601px) and (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
}

/* ── Criteria card ── */
.criteria-card {
  border-radius: 12px;
  padding: 24px 28px;
  border: none !important;
  border-left: none !important;
  border-right: none !important;
  border-top: none !important;
  border-bottom: none !important;
  outline: none !important;
  box-shadow: none;
}
.criteria-card .card-label {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #111111;
  margin-bottom: 8px;
}
.criteria-card p { font-size: 15px; color: var(--text); }

/* ── Segment card ── */
.segment-card h3 { margin-bottom: 16px; }
.segment-block { margin-top: 12px; }
.segment-block .seg-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.segment-block p { font-size: 15px; }

/* ── UTP block ── */
.utp-block,
.utp-block-light {
  background: #EFEFEF !important;
  color: #111111 !important;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
}
.utp-block p, .utp-block-light p,
.utp-block h2, .utp-block-light h2 {
  color: #111111 !important;
  text-align: justify;
}
.utp-block-light .eyebrow { color: #999; }
.utp-text {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 300;
  line-height: 1.6;
  color: #111111 !important;
  text-align: justify;
}
.utp-text em { font-style: normal; font-weight: 600; color: #111; }

/* ── Product card ── */
.product-card { position: relative; }
.product-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.product-card h3 { margin-bottom: 8px; }
.product-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.product-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin: 12px 0 16px;
}
.product-points { margin-top: 16px; }
.product-points li {
  font-size: 15px;
  color: var(--text);
  padding: 6px 0;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.product-points li::before { content: '·'; font-weight: 700; flex-shrink: 0; }

/* ── Philosophy block ── */
.philo-block { margin-bottom: 24px; }
.philo-block .plate { display: grid; grid-template-columns: 1fr; gap: 16px; }
.philo-quote { font-size: clamp(18px, 2.2vw, 22px); font-weight: 300; font-style: italic; color: #444; }
.philo-author { font-size: 13px; font-weight: 600; color: var(--text-muted); margin-top: 4px; }
.philo-text { font-size: 15px; }

/* ── Values grid ── */
.value-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.value-title { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.value-desc { font-size: 14px; color: var(--text-muted); }

/* ── Principles list ── */
.principle-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.principle-item:last-child { border-bottom: none; }
.principle-arrow { font-size: 18px; font-weight: 700; flex-shrink: 0; color: var(--text); }
.principle-text { font-size: 16px; }

/* ── CTA section ── */
.cta-section {
  background: var(--white);
  padding: 80px 0;
  text-align: center;
}
.cta-section h2 { margin-bottom: 32px; }
.cta-section .eyebrow { margin-bottom: 16px; }

/* ── Contact form ── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.form-field input, .form-field textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: 4px;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  transition: border-color 0.15s;
  outline: none;
}
.form-field input:focus, .form-field textarea:focus { border-color: #999; }
.form-field textarea { min-height: 120px; resize: vertical; }
.form-submit { margin-top: 8px; }

/* ── Contact info ── */
.contact-info { margin-top: 40px; }
.contact-item { display: flex; align-items: center; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-item:last-child { border-bottom: none; }
.contact-icon { font-size: 18px; }
.contact-label { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.contact-value { font-size: 16px; font-weight: 500; }

/* ── Thanks page ── */
.thanks-wrap {
  min-height: calc(100vh - 68px - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
}
.thanks-inner { text-align: center; max-width: 540px; }
.thanks-icon { font-size: 56px; margin-bottom: 24px; }
.thanks-inner h1 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 16px; }
.thanks-inner p { font-size: 17px; color: var(--text-muted); margin-bottom: 32px; }

/* ── Policy / Oferta ── */
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h2 { margin: 40px 0 16px; font-size: 22px; }
.legal-content p { margin-bottom: 16px; }
.legal-content ul { padding-left: 24px; list-style: disc; }
.legal-content ul li { margin-bottom: 8px; }

/* ── Utilities ── */
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-48 { margin-bottom: 48px; }
.text-white { color: #fff; }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.fw-300 { font-weight: 300; }
.fw-500 { font-weight: 500; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }


/* ── Flip cards (removed, replaced by v3 block below) ── */

/* ── Hero Arch Block (from v3) ── */
.hero-arch-block {
  margin-top: 48px;
  width: 100%;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.hero-arch-intro {
  font-size: 1.1rem;
  line-height: 1.65;
  color: #1c1c1e;
  text-align: center;
  margin: 0 0 28px;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.hero-arch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* placeholder — final override below */

@media (max-width: 600px) {
  .hero-arch-grid {
    grid-template-columns: 1fr;
  }
  .hero-arch-intro {
    font-size: 0.98rem;
  }
}

/* ── HERO ARCH CARDS — FINAL OVERRIDE ── */
.hero-arch-card,
section .hero-arch-card,
.hero-arch-grid .hero-arch-card {
  padding: 24px 22px !important;
  border: 1.5px solid #111111 !important;
  background: #F0F0F0 !important;
  border-radius: 10px !important;
  transition: background 0.2s !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}
.hero-arch-card:hover {
  background: #E8E8E8 !important;
  border-color: #111111 !important;
}
.hero-arch-label {
  font-size: 1rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: #111111 !important;
  margin-bottom: 8px !important;
}
.hero-arch-desc {
  font-size: 0.85rem !important;
  line-height: 1.6 !important;
  color: #444444 !important;
  font-weight: 400 !important;
}

/* ============================================================
   FLIP CARDS (MANIFEST BLOCK)
   ============================================================ */
.manifest-section { background: var(--white); }

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

.flip-card {
  perspective: 1000px;
  height: 280px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-front, .flip-back {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 32px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flip-front {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.flip-back {
  background: var(--graphite);
  color: var(--white);
  transform: rotateY(180deg);
}

.flip-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
}

.flip-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--graphite);
}

.flip-pain {
  font-size: 0.875rem;
  color: var(--titanium);
  line-height: 1.6;
}

.flip-back-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
}

.flip-solution {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
  .cards-grid { grid-template-columns: 1fr; }
  .flip-card { height: 240px; }
}

/* ── Section header (from v3) ── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p {
  font-size: 1.1rem;
  color: var(--titanium);
  max-width: 600px;
  margin: 0 auto;
}

/* ── Scroll reveal (from v3) ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══ FLIP CARDS FINAL FIX ══ */
.manifest-section { overflow: visible !important; }
.manifest-section .container { overflow: visible !important; }
.cards-grid { overflow: visible !important; }

.flip-card {
  perspective: 1000px !important;
  height: 280px !important;
  overflow: visible !important;
  position: relative !important;
}

.flip-card-inner {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1) !important;
  transform-style: preserve-3d !important;
  will-change: transform;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg) !important;
}

.flip-front {
  position: absolute !important;
  inset: 0 !important;
  border-radius: 20px !important;
  padding: 28px !important;
  backface-visibility: hidden !important;
  -webkit-backface-visibility: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  background: #F5F5F7 !important;
  border: 1px solid rgba(28,28,30,0.15) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06) !important;
  transform: rotateY(0deg) !important;
}

.flip-back {
  position: absolute !important;
  inset: 0 !important;
  border-radius: 20px !important;
  padding: 28px !important;
  backface-visibility: hidden !important;
  -webkit-backface-visibility: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  background: #1C1C1E !important;
  color: #fff !important;
  transform: rotateY(180deg) !important;
}

.flip-title { color: #1C1C1E !important; font-weight: 600 !important; font-size: 1rem !important; }
.flip-pain { color: #8E8E93 !important; font-size: 0.875rem !important; }
.flip-back-label { color: rgba(255,255,255,0.5) !important; font-size: 0.7rem !important; text-transform: uppercase !important; letter-spacing: 2px !important; }
.flip-solution { color: rgba(255,255,255,0.9) !important; font-size: 0.95rem !important; }

/* ── UTP block color override (force dark text) ── */
.utp-block-light,
.utp-block-light p,
.utp-block-light em,
.utp-text {
  color: #111111 !important;
}

/* ── Flagship Cards (exact copy from v3) ── */
.flagship-card {
  border-radius: 28px;
  padding: 56px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.flagship-dark {
  background: #1C1C1E;
  color: #fff;
}

.flagship-light {
  background: #F5F5F7;
  color: #1C1C1E;
}

.flagship-dark h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.flagship-light h2 { color: #1C1C1E; font-size: clamp(1.6rem, 3vw, 2.4rem); }

.flagship-sub {
  font-size: 1.05rem;
  opacity: 0.8;
  line-height: 1.6;
  max-width: 640px;
}

.flagship-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 4px 0;
}

.flagship-benefit-item {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 18px;
  border-radius: 980px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  width: fit-content;
}

.badge-pill-white {
  border: 1.5px solid rgba(255,255,255,0.6);
  color: rgba(255,255,255,0.85);
}

.badge-pill-dark {
  border: 1.5px solid #1C1C1E;
  color: #1C1C1E;
}

.btn-flagship-white {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  border-radius: 980px;
  font-size: 0.9rem;
  font-weight: 600;
  background: #fff;
  color: #1C1C1E;
  text-decoration: none;
  width: fit-content;
  transition: opacity 0.2s;
  margin-top: 8px;
}
.btn-flagship-white:hover { opacity: 0.88; }

.btn-flagship-dark {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  border-radius: 980px;
  font-size: 0.9rem;
  font-weight: 600;
  background: #1C1C1E;
  color: #fff;
  text-decoration: none;
  width: fit-content;
  transition: opacity 0.2s;
  margin-top: 8px;
}
.btn-flagship-dark:hover { opacity: 0.82; }

.featured-price {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.5px;
}

.featured-details {
  font-size: 0.875rem;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .flagship-card { padding: 36px 24px; }
}
