/* ============================================== */
/* SENZOFIT FRANCHISE — Editorial Maison stylesheet */
/* ============================================== */

:root {
  --ink: #0a1628;
  --ink-soft: #162133;
  --ink-deep: #050d18;
  --cream: #f5f1e8;
  --cream-warm: #ede8db;
  --cream-deep: #e3dccc;
  --paper: #faf7ef;
  --gold: #b8956a;
  --gold-bright: #d4ad7a;
  --gold-deep: #8a6e4e;
  --sage: #7d9181;
  --rose: #e8c4b8;
  --bone: #dcd5c4;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

body {
  font-feature-settings: 'kern', 'liga', 'calt';
  text-rendering: optimizeLegibility;
}

/* ---------- GRAIN OVERLAY ---------- */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.grain-overlay-dark {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' fill='white'/></svg>");
  opacity: 0.5;
  mix-blend-mode: screen;
}

/* ---------- TYPOGRAPHY HELPERS ---------- */
.font-display {
  font-family: 'Fraunces', ui-serif, Georgia, serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
}

.font-display em,
em.font-display {
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 80, 'WONK' 1;
}

.text-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}

.tracking-micro {
  letter-spacing: 0.32em;
}

.tracking-editorial {
  letter-spacing: 0.18em;
}

.tracking-tightest {
  letter-spacing: -0.04em;
}

/* ---------- TOP BAR · Ecosistem ---------- */
.top-bar {
  background: var(--ink-deep);
  border-bottom: 1px solid rgba(245, 241, 232, 0.06);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
}

.top-bar-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.4);
  font-weight: 500;
  font-family: 'Inter Tight', sans-serif;
}

.top-bar-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.top-bar-link {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(245, 241, 232, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: color 0.3s ease;
  font-family: 'Inter Tight', sans-serif;
  position: relative;
}

.top-bar-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold-bright);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.top-bar-link:hover {
  color: var(--gold-bright);
}

.top-bar-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.top-bar-link svg {
  opacity: 0.55;
  transition: opacity 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}

.top-bar-link:hover svg {
  opacity: 1;
  transform: translate(1px, -1px);
}

/* Mobile ecosystem links inside mobile menu */
.mobile-ext-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(245, 241, 232, 0.08);
  font-size: 0.88rem;
  font-family: 'Inter Tight', sans-serif;
  letter-spacing: 0.04em;
  color: rgba(245, 241, 232, 0.8);
  font-weight: 400;
  transition: all 0.3s ease;
}

.mobile-ext-link:hover {
  color: var(--gold-bright);
  padding-left: 0.5rem;
}

.mobile-ext-link svg {
  opacity: 0.5;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-ext-link:hover svg {
  opacity: 1;
  transform: translate(1px, -1px);
}

/* Hide top-bar when mobile menu is open (prevents bleed) */
body.mobile-menu-open #top-bar {
  display: none;
}

/* Nav becomes opaque ink when mobile menu is open — stays above scrollable menu */
body.mobile-menu-open #main-nav {
  background: var(--ink) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: 1px solid rgba(245, 241, 232, 0.08);
  top: 0 !important;
}

body.mobile-menu-open #main-nav .logo-text {
  color: var(--cream) !important;
}

body.mobile-menu-open #main-nav .logo-symbol {
  color: var(--gold-bright);
}

body.mobile-menu-open #main-nav #menu-toggle span {
  background: var(--cream);
}

/* Hide brand text on very small phones (<380px) */
@media (max-width: 380px) {
  #main-nav .logo-text {
    display: none;
  }
}

/* ---------- NAVIGATION ---------- */
#main-nav {
  background: transparent;
}

#main-nav.nav-scrolled {
  background: rgba(250, 247, 239, 0.92);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid rgba(10, 22, 40, 0.06);
}

#main-nav.nav-scrolled .logo-text,
#main-nav.nav-scrolled .nav-link {
  color: var(--ink);
}

#main-nav .logo-text {
  color: rgba(245, 241, 232, 0.95);
  transition: color 0.5s ease;
}

#main-nav.nav-scrolled .logo-text {
  color: var(--ink);
}

.nav-link {
  position: relative;
  color: rgba(245, 241, 232, 0.85);
  transition: color 0.3s ease;
  padding-bottom: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.nav-link:hover {
  color: var(--gold-bright);
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

#main-nav.nav-scrolled .nav-link {
  color: rgba(10, 22, 40, 0.7);
}

#main-nav.nav-scrolled .nav-link:hover {
  color: var(--gold-deep);
}

/* ---------- CTA PILLS ---------- */
.cta-pill {
  border-radius: 999px;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.cta-pill::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-bright);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: -1;
}

.cta-pill:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.cta-pill-light {
  background: var(--gold);
  color: var(--ink);
  border: 1px solid var(--gold);
}

.cta-pill-light:hover {
  color: var(--ink-deep);
  border-color: var(--gold-bright);
}

.cta-pill-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245, 241, 232, 0.4);
}

.cta-pill-ghost::before {
  background: var(--cream);
}

.cta-pill-ghost:hover {
  color: var(--ink);
  border-color: var(--cream);
}

.cta-pill-dark {
  background: var(--ink);
  color: var(--cream);
  border: 1px solid var(--ink);
}

.cta-pill-dark::before {
  background: var(--gold);
}

.cta-pill-dark:hover {
  color: var(--ink);
  border-color: var(--gold);
}

.cta-pill-gold {
  background: var(--gold);
  color: var(--ink);
  border: 1px solid var(--gold);
}

#main-nav .cta-pill {
  background: var(--gold);
  color: var(--ink);
  border: 1px solid var(--gold);
}

#main-nav.nav-scrolled .cta-pill {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

/* ---------- SECTION MARKERS ---------- */
.section-marker {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-marker::after {
  content: '';
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.2;
  max-width: 80px;
}

/* ---------- HERO ---------- */
.hero-section {
  min-height: 100vh;
  min-height: 100svh;
}

.hero-bg {
  will-change: transform;
}

.hero-fade {
  opacity: 0;
  transform: translateY(40px);
  animation: heroFadeUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-line-1 { animation-delay: 0.3s; }
.hero-line-2 { animation-delay: 0.5s; }
.hero-line-3 { animation-delay: 0.7s; }
.hero-sub { animation-delay: 0.9s; }
.hero-cta { animation-delay: 1.1s; }
.hero-stats { animation-delay: 1.3s; }
.hero-eyebrow { animation-delay: 0.1s; }

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-ornament {
  animation: rotate 60s linear infinite;
  transform-origin: center;
}

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

/* Scroll indicator */
.scroll-indicator {
  width: 1px;
  height: 60px;
  position: relative;
  overflow: hidden;
  background: rgba(245, 241, 232, 0.15);
}

.scroll-line {
  position: absolute;
  top: -100%;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold-bright));
  animation: scrollDown 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes scrollDown {
  to { top: 100%; }
}

/* ---------- TRUST BAR MARQUEE ---------- */
.trust-marquee {
  animation: marquee 50s linear infinite;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- REVEAL ON SCROLL ---------- */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- PILLAR CARDS ---------- */
.pillar-card {
  background: var(--cream);
  padding: 3rem 2.5rem;
  border-radius: 4px;
  position: relative;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  border: 1px solid rgba(184, 149, 106, 0.15);
}

.pillar-card:hover {
  background: var(--paper);
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -20px rgba(10, 22, 40, 0.15);
  border-color: rgba(184, 149, 106, 0.4);
}

.pillar-rule {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0 1.5rem;
  transition: width 0.5s ease;
}

.pillar-card:hover .pillar-rule {
  width: 100px;
}

.pillar-checklist li {
  position: relative;
}

/* ---------- POSITIONING (Singur vs Cu Senzofit) ---------- */
.positioning-col {
  transition: background 0.5s ease;
}

.positioning-col-highlight {
  background: linear-gradient(135deg, var(--ink-soft), var(--ink));
}

.positioning-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.positioning-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(245, 241, 232, 0.08);
}

.positioning-item:last-child {
  border-bottom: none;
}

.positioning-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- TRACK TABS ---------- */
.track-tabs {
  border: 1px solid rgba(10, 22, 40, 0.1);
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper);
}

.track-tab {
  padding: 2rem 2.5rem;
  background: transparent;
  cursor: pointer;
  transition: all 0.4s ease;
  border: none;
  position: relative;
}

.track-tab + .track-tab {
  border-left: 1px solid rgba(10, 22, 40, 0.08);
}

.track-tab:hover:not(.track-tab-active) {
  background: rgba(184, 149, 106, 0.04);
}

.track-tab-active {
  background: var(--ink);
  color: var(--cream);
}

.track-tab-active .text-ink,
.track-tab-active .text-eyebrow {
  color: var(--cream) !important;
}

.track-tab-active .text-ink\/60 {
  color: rgba(245, 241, 232, 0.65) !important;
}

.track-tab-active::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
}

.track-content {
  display: none;
}

.track-content-active {
  display: block;
  animation: trackFadeIn 0.6s ease;
}

@keyframes trackFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .track-tab + .track-tab {
    border-left: none;
    border-top: 1px solid rgba(10, 22, 40, 0.08);
  }
}

/* ---------- IMAGE FRAMES ---------- */
.image-frame {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}

.image-frame img {
  transition: transform 1.5s cubic-bezier(0.22, 1, 0.36, 1), filter 1s ease;
  filter: brightness(0.95) saturate(0.95);
}

.image-frame:hover img {
  transform: scale(1.04);
  filter: brightness(1) saturate(1);
}

.image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(245, 241, 232, 0.06);
  pointer-events: none;
}

.image-frame-mark {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(10, 22, 40, 0.85);
  color: var(--gold-bright);
  padding: 0.4rem 0.8rem;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  backdrop-filter: blur(10px);
}

.image-frame-mark-light {
  background: rgba(245, 241, 232, 0.15);
  color: var(--cream);
}

.image-frame-dark {
  background: var(--ink-deep);
}

/* ---------- PROVIDED LIST ---------- */
.provided-list {
  list-style: none;
  padding: 0;
}

.provided-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.5rem 0;
  border-bottom: 1px dotted rgba(10, 22, 40, 0.08);
}

.provided-bullet {
  color: var(--gold);
  font-style: italic;
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  line-height: 1.2;
  flex-shrink: 0;
}

/* ---------- INVEST TIERS ---------- */
.invest-tier {
  background: var(--paper);
  padding: 1.5rem 1rem;
  border: 1px solid rgba(10, 22, 40, 0.1);
  border-radius: 4px;
  text-align: center;
  transition: all 0.4s ease;
}

.invest-tier:hover {
  border-color: rgba(184, 149, 106, 0.4);
  transform: translateY(-3px);
}

.invest-tier-highlight {
  background: linear-gradient(180deg, var(--cream), var(--cream-warm));
  border-color: var(--gold);
  border-width: 2px;
  transform: scale(1.04);
}

/* ---------- FEE TABLE ---------- */
.fee-table {
  background: var(--paper);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(10, 22, 40, 0.08);
}

.fee-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(10, 22, 40, 0.06);
  transition: background 0.3s ease;
}

.fee-row:last-child {
  border-bottom: none;
}

.fee-row:hover {
  background: rgba(184, 149, 106, 0.04);
}

/* ---------- KPI BLOCKS ---------- */
.kpi-block {
  padding: 1.5rem 1rem;
  border-left: 2px solid var(--gold);
  background: var(--paper);
  transition: all 0.4s ease;
}

.kpi-block:hover {
  background: var(--cream);
  border-left-width: 4px;
}

/* ---------- PRICING CARDS ---------- */
.pricing-card {
  background: var(--paper);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(10, 22, 40, 0.08);
  border-radius: 6px;
  position: relative;
  transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(10, 22, 40, 0.15);
  border-color: rgba(184, 149, 106, 0.3);
}

.pricing-card-highlight {
  background: linear-gradient(160deg, var(--ink), var(--ink-soft));
  color: var(--cream);
  border: 1px solid var(--gold);
  transform: scale(1.04);
  box-shadow: 0 30px 60px -20px rgba(10, 22, 40, 0.4);
}

.pricing-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-bright);
  color: var(--ink);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-weight: 600;
}

.pricing-eyebrow {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold-deep);
  margin-bottom: 1rem;
}

.pricing-amount {
  margin-bottom: 1.5rem;
}

.pricing-rule {
  height: 1px;
  background: rgba(10, 22, 40, 0.1);
  margin: 0 0 1.5rem;
}

.pricing-rule-light {
  background: rgba(245, 241, 232, 0.15);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  flex: 1;
}

.pricing-features li {
  padding: 0.6rem 0;
  border-bottom: 1px dotted rgba(10, 22, 40, 0.08);
  font-size: 0.95rem;
  color: rgba(10, 22, 40, 0.75);
  font-weight: 300;
  position: relative;
  padding-left: 1.5rem;
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1rem;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

.pricing-features-light li {
  border-bottom-color: rgba(245, 241, 232, 0.1);
  color: rgba(245, 241, 232, 0.85);
}

.pricing-features-light li::before {
  background: var(--gold-bright);
}

.pricing-cta {
  display: inline-block;
  text-align: center;
  padding: 0.9rem 1.5rem;
  background: var(--ink);
  color: var(--cream);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
  transition: all 0.4s ease;
}

.pricing-cta:hover {
  background: var(--gold);
  color: var(--ink);
}

.pricing-cta-light {
  background: var(--gold-bright);
  color: var(--ink);
}

.pricing-cta-light:hover {
  background: var(--cream);
}

/* ---------- ADDONS CARD ---------- */
.addons-card {
  background: var(--paper);
  padding: 3rem;
  border: 1px solid rgba(10, 22, 40, 0.08);
  border-radius: 6px;
}

.addon-item {
  padding: 1.5rem;
  border-left: 2px solid var(--gold);
  background: var(--cream);
}

/* ---------- COMPARISON TABLE ---------- */
.comparison-table {
  background: var(--paper);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(10, 22, 40, 0.08);
}

.comp-header,
.comp-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  align-items: stretch;
}

.comp-header {
  border-bottom: 2px solid rgba(10, 22, 40, 0.1);
}

.comp-row {
  border-bottom: 1px solid rgba(10, 22, 40, 0.05);
  transition: background 0.3s ease;
}

.comp-row:hover {
  background: rgba(184, 149, 106, 0.04);
}

.comp-row:last-child {
  border-bottom: none;
}

.comp-cell {
  padding: 1.5rem 1.5rem;
  display: flex;
  align-items: center;
}

.comp-cell-feature {
  font-weight: 500;
  color: var(--ink);
  background: rgba(10, 22, 40, 0.02);
  border-right: 1px solid rgba(10, 22, 40, 0.05);
  font-size: 0.92rem;
}

.comp-cell-a {
  background: var(--ink);
  color: var(--cream);
  border-right: 1px solid rgba(245, 241, 232, 0.1);
  flex-direction: column;
  align-items: flex-start;
  font-weight: 300;
}

.comp-cell-b {
  flex-direction: column;
  align-items: flex-start;
  font-weight: 300;
}

.comp-header .comp-cell-a,
.comp-header .comp-cell-b {
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: 1.75rem 1.5rem;
}

.comp-pill {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.comp-pill-gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  font-weight: 500;
}

.comp-yes {
  color: var(--sage);
  font-weight: 500;
}

.comp-cell-a.comp-yes {
  color: var(--gold-bright);
}

.comp-no {
  color: var(--rose);
  opacity: 0.8;
}

.comp-partial {
  color: var(--gold-deep);
}

@media (max-width: 768px) {
  .comp-header,
  .comp-row {
    grid-template-columns: 1fr;
  }
  .comp-cell-feature {
    background: var(--ink);
    color: var(--cream);
    padding: 1rem 1.5rem;
  }
}

/* ---------- ROI SIMULATOR ---------- */
.simulator-card {
  background: linear-gradient(160deg, var(--ink-soft), var(--ink));
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(184, 149, 106, 0.2);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 968px) {
  .simulator-card {
    grid-template-columns: 1fr;
  }
}

.sim-inputs {
  padding: 3rem;
  border-right: 1px solid rgba(245, 241, 232, 0.08);
}

@media (max-width: 968px) {
  .sim-inputs {
    border-right: none;
    border-bottom: 1px solid rgba(245, 241, 232, 0.08);
  }
}

.sim-input-group {
  margin-bottom: 2rem;
}

.sim-input-group:last-child {
  margin-bottom: 0;
}

.sim-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.65);
  margin-bottom: 1rem;
  font-weight: 500;
}

.sim-value-display {
  color: var(--gold-bright);
  font-family: 'Fraunces', serif;
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.95rem;
}

.sim-options {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
}

.sim-option {
  padding: 1rem;
  background: rgba(245, 241, 232, 0.04);
  border: 1px solid rgba(245, 241, 232, 0.1);
  border-radius: 4px;
  color: rgba(245, 241, 232, 0.7);
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sim-option:hover {
  border-color: rgba(184, 149, 106, 0.4);
  color: var(--cream);
}

.sim-option-active {
  background: rgba(184, 149, 106, 0.15);
  border-color: var(--gold);
  color: var(--cream);
}

.sim-option-title {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
}

.sim-option-active .sim-option-title {
  color: var(--gold-bright);
}

.sim-option-sub {
  font-size: 0.7rem;
  opacity: 0.6;
  font-weight: 300;
}

.sim-slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 2px;
  background: rgba(245, 241, 232, 0.2);
  outline: none;
  border-radius: 999px;
}

.sim-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  background: var(--gold-bright);
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid var(--ink);
  box-shadow: 0 0 0 1px var(--gold-bright), 0 0 20px rgba(212, 173, 122, 0.4);
  transition: transform 0.2s ease;
}

.sim-slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

.sim-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: var(--gold-bright);
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid var(--ink);
}

.sim-slider-marks {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: rgba(245, 241, 232, 0.4);
  margin-top: 0.75rem;
  letter-spacing: 0.05em;
}

.sim-outputs {
  padding: 3rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.2));
}

.sim-output-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(245, 241, 232, 0.08);
  margin-bottom: 2rem;
}

.sim-output {
  background: var(--ink);
  padding: 1.5rem;
}

.sim-output-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.55);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.sim-output-value {
  transition: color 0.3s ease;
}

.sim-output-value.flash {
  animation: simFlash 0.5s ease;
}

@keyframes simFlash {
  0% { color: var(--gold-bright); }
  50% { color: var(--cream); transform: scale(1.04); }
  100% { color: var(--gold-bright); transform: scale(1); }
}

.sim-cta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245, 241, 232, 0.08);
}

/* ---------- CRM MOCKUP ---------- */
.crm-mockup {
  position: relative;
  perspective: 1500px;
}

.crm-browser {
  background: linear-gradient(180deg, var(--ink-soft), var(--ink));
  border-radius: 8px;
  overflow: hidden;
  box-shadow:
    0 60px 100px -40px rgba(10, 22, 40, 0.4),
    0 30px 60px -25px rgba(10, 22, 40, 0.3),
    0 1px 0 rgba(245, 241, 232, 0.08) inset;
  transform: rotateY(-3deg) rotateX(2deg);
  transform-origin: center center;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.crm-mockup:hover .crm-browser {
  transform: rotateY(0) rotateX(0);
}

.crm-browser-bar {
  background: var(--ink-deep);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid rgba(245, 241, 232, 0.08);
}

.crm-traffic-lights {
  display: flex;
  gap: 0.4rem;
}

.crm-traffic-lights span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(245, 241, 232, 0.2);
}

.crm-traffic-lights span:nth-child(1) { background: #ff5f57; }
.crm-traffic-lights span:nth-child(2) { background: #febc2e; }
.crm-traffic-lights span:nth-child(3) { background: #28c840; }

.crm-url {
  flex: 1;
  background: rgba(245, 241, 232, 0.06);
  padding: 0.4rem 1rem;
  border-radius: 4px;
  font-size: 0.75rem;
  color: rgba(245, 241, 232, 0.5);
  font-family: 'Fraunces', serif;
  font-style: italic;
  text-align: center;
  letter-spacing: 0.02em;
}

.crm-app {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 480px;
}

.crm-sidebar {
  background: var(--ink-deep);
  padding: 1.5rem 0;
  border-right: 1px solid rgba(245, 241, 232, 0.05);
}

.crm-logo {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 2rem;
  color: var(--gold-bright);
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 400;
}

.crm-logo span {
  color: var(--cream);
}

.crm-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.crm-nav li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
  color: rgba(245, 241, 232, 0.55);
  cursor: pointer;
  transition: all 0.2s ease;
  border-left: 2px solid transparent;
}

.crm-nav li:hover {
  background: rgba(245, 241, 232, 0.04);
  color: var(--cream);
}

.crm-nav-active {
  background: rgba(184, 149, 106, 0.1) !important;
  color: var(--gold-bright) !important;
  border-left-color: var(--gold-bright) !important;
}

.crm-main {
  padding: 1.5rem;
}

.crm-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(245, 241, 232, 0.06);
  margin-bottom: 1.5rem;
}

.crm-search {
  background: rgba(245, 241, 232, 0.05);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.78rem;
  color: rgba(245, 241, 232, 0.45);
  font-style: italic;
}

.crm-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.crm-stat {
  background: rgba(245, 241, 232, 0.04);
  padding: 1rem;
  border-radius: 4px;
  border-left: 2px solid var(--gold);
}

.crm-stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.5);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.crm-stat-value {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  color: var(--cream);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.crm-stat-trend {
  font-size: 0.7rem;
  color: var(--gold-bright);
  font-style: italic;
}

.crm-calendar {
  background: rgba(245, 241, 232, 0.03);
  border-radius: 6px;
  padding: 1rem;
  border: 1px solid rgba(245, 241, 232, 0.04);
}

.crm-calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(245, 241, 232, 0.06);
  margin-bottom: 0.75rem;
}

.crm-slot {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.25rem;
  transition: background 0.2s ease;
}

.crm-slot:hover {
  background: rgba(245, 241, 232, 0.04);
}

.crm-slot-active {
  background: rgba(184, 149, 106, 0.12) !important;
  border-left: 2px solid var(--gold-bright);
}

.crm-slot-time {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--gold-bright);
  font-size: 0.95rem;
}

.crm-slot-name {
  font-size: 0.85rem;
  color: var(--cream);
  font-weight: 500;
}

.crm-slot-service {
  font-size: 0.7rem;
  color: rgba(245, 241, 232, 0.5);
  margin-top: 1px;
}

.crm-slot-status {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.4);
}

.crm-slot-active .crm-slot-status {
  color: var(--gold-bright);
}

.crm-mockup-mark {
  position: absolute;
  bottom: -2rem;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(10, 22, 40, 0.5);
  font-family: 'Fraunces', serif;
  font-style: italic;
}

@media (max-width: 768px) {
  .crm-browser {
    transform: none;
  }
  .crm-app {
    grid-template-columns: 1fr;
  }
  .crm-sidebar {
    display: none;
  }
}

/* ---------- CRM FEATURES ---------- */
.crm-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.crm-feature {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(10, 22, 40, 0.08);
}

.crm-feature:last-child {
  border-bottom: none;
}

.crm-feature-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--gold-deep);
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
}

.crm-feature strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.crm-feature p {
  font-size: 0.9rem;
  color: rgba(10, 22, 40, 0.65);
  font-weight: 300;
  line-height: 1.55;
}

/* ---------- SHOWROOM CARD ---------- */
.showroom-card {
  background: linear-gradient(135deg, var(--ink), var(--ink-soft));
  padding: 4rem;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.showroom-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(184, 149, 106, 0.15), transparent 70%);
  pointer-events: none;
}

.showroom-tag {
  background: rgba(245, 241, 232, 0.06);
  border: 1px solid rgba(245, 241, 232, 0.15);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  color: rgba(245, 241, 232, 0.85);
  font-weight: 300;
  transition: all 0.3s ease;
}

.showroom-tag:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

@media (max-width: 768px) {
  .showroom-card {
    padding: 2.5rem 1.5rem;
  }
}

/* ---------- TIMELINE ---------- */
.timeline {
  position: relative;
  padding-left: 4rem;
}

.timeline-line {
  position: absolute;
  left: 1.4rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(184, 149, 106, 0.2);
  overflow: hidden;
}

.timeline-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--timeline-progress, 0%);
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  transition: height 0.6s ease;
}

.timeline-step {
  position: relative;
  padding-bottom: 4rem;
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -4rem;
  top: -0.5rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--ink-deep);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold-bright);
  z-index: 2;
}

.timeline-dot-final {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 0 30px rgba(184, 149, 106, 0.4);
}

.timeline-duration {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.timeline-title {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.timeline-desc {
  color: rgba(245, 241, 232, 0.7);
  font-weight: 300;
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 640px;
}

@media (max-width: 768px) {
  .timeline {
    padding-left: 3rem;
  }
  .timeline-line {
    left: 1rem;
  }
  .timeline-dot {
    left: -3rem;
    width: 2.4rem;
    height: 2.4rem;
    font-size: 0.85rem;
  }
}

/* ---------- PROFILE CARDS ---------- */
.profile-card {
  background: var(--paper);
  padding: 2.5rem 2rem;
  border-radius: 6px;
  border: 1px solid rgba(10, 22, 40, 0.08);
  transition: all 0.5s ease;
  position: relative;
}

.profile-card:hover {
  background: var(--cream);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.profile-card-highlight {
  background: linear-gradient(160deg, var(--ink), var(--ink-soft));
  color: var(--cream);
  border-color: var(--gold);
}

.profile-card-highlight .profile-title {
  color: var(--cream);
}

.profile-card-highlight .profile-desc {
  color: rgba(245, 241, 232, 0.75);
}

.profile-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 1.25rem;
}

.profile-title {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.profile-desc {
  font-size: 0.95rem;
  color: rgba(10, 22, 40, 0.65);
  font-weight: 300;
  line-height: 1.55;
}

/* ---------- HONESTY BLOCK (cine NU e potrivit + ce NU promitem) ---------- */
.honesty-card {
  padding: 2.5rem;
  background: var(--paper);
}

.honesty-card-dark {
  background: linear-gradient(160deg, var(--ink), var(--ink-soft));
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.honesty-card-dark::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
}

.honesty-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.honesty-eyebrow-light {
  color: var(--gold-bright);
}

.honesty-title {
  font-family: 'Fraunces', serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.honesty-title-light {
  color: var(--cream);
}

.honesty-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.honesty-list li {
  padding: 0.65rem 0 0.65rem 1.5rem;
  border-bottom: 1px dotted rgba(10, 22, 40, 0.08);
  font-size: 0.92rem;
  color: rgba(10, 22, 40, 0.72);
  font-weight: 300;
  position: relative;
  line-height: 1.5;
}

.honesty-list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  top: 0.65rem;
  color: var(--rose-deep);
  font-style: italic;
  font-size: 0.85rem;
  font-family: 'Fraunces', serif;
}

.honesty-list li:last-child {
  border-bottom: none;
}

.honesty-text {
  color: rgba(245, 241, 232, 0.78);
  font-weight: 300;
  font-size: 0.96rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.honesty-text-italic {
  font-style: italic;
  color: var(--gold-bright);
  border-top: 1px solid rgba(245, 241, 232, 0.12);
  padding-top: 1rem;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .honesty-card {
    padding: 2rem 1.5rem;
  }
}

/* ---------- FOOTER pending links ---------- */
.footer-pending {
  font-size: 0.88rem;
  color: rgba(245, 241, 232, 0.32);
  font-weight: 300;
  cursor: not-allowed;
  display: inline-block;
}

.footer-pending em {
  font-style: italic;
  color: rgba(245, 241, 232, 0.45);
  font-size: 0.78rem;
  margin-left: 0.25rem;
}

/* ---------- STORY ---------- */
.story-dropcap::first-letter {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 4.5rem;
  font-weight: 400;
  color: var(--gold-bright);
  float: left;
  line-height: 0.85;
  padding-right: 0.75rem;
  padding-top: 0.5rem;
}

.story-quote {
  border-left: 2px solid var(--gold);
  padding: 1.5rem 0 1.5rem 2rem;
  background: linear-gradient(90deg, rgba(184, 149, 106, 0.04), transparent);
}

.story-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 500;
}

.story-stat {
  background: var(--ink-soft);
  padding: 1.5rem;
  text-align: center;
}

.story-stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.55);
  margin-top: 0.5rem;
  font-weight: 500;
}

/* ---------- MARKET STATS ---------- */
.market-stat {
  background: var(--paper);
  padding: 3rem 2rem;
  text-align: left;
  transition: background 0.4s ease;
}

.market-stat:hover {
  background: var(--cream);
}

.market-stat-value {
  font-weight: 300;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
  line-height: 0.95;
}

.market-stat-label {
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.market-stat-detail {
  font-size: 0.78rem;
  color: rgba(10, 22, 40, 0.55);
  font-style: italic;
  font-weight: 300;
}

/* ---------- TESTIMONIALS ---------- */
.testimonial-card {
  background: var(--paper);
  padding: 2.5rem;
  border-radius: 6px;
  border: 1px solid rgba(10, 22, 40, 0.08);
  position: relative;
  transition: all 0.5s ease;
}

.testimonial-card:hover {
  background: var(--cream);
  transform: translateY(-3px);
  box-shadow: 0 30px 60px -25px rgba(10, 22, 40, 0.15);
}

.testimonial-quote-mark {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 5rem;
  line-height: 0.6;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.testimonial-quote {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 2rem;
  font-style: italic;
  letter-spacing: -0.005em;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(10, 22, 40, 0.1);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 500;
  color: var(--ink);
  font-size: 0.95rem;
}

.testimonial-role {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(10, 22, 40, 0.5);
  margin-top: 2px;
}

.testimonial-tag {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(184, 149, 106, 0.12);
  color: var(--gold-deep);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}

.testimonial-tag-a {
  background: var(--ink);
  color: var(--gold-bright);
}

/* ---------- FAQ ---------- */
.faq-categories {
  list-style: none;
  padding: 0;
  margin: 0;
  position: sticky;
  top: 100px;
}

.faq-categories li {
  padding: 0.75rem 1rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: rgba(10, 22, 40, 0.55);
  border-left: 1px solid rgba(10, 22, 40, 0.1);
  transition: all 0.3s ease;
  font-weight: 400;
}

.faq-categories li:hover {
  color: var(--ink);
  border-left-color: var(--gold);
}

.faq-cat-active {
  color: var(--ink) !important;
  font-weight: 500 !important;
  border-left-color: var(--gold) !important;
  border-left-width: 2px !important;
  background: rgba(184, 149, 106, 0.06);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  background: var(--paper);
  border: 1px solid rgba(10, 22, 40, 0.08);
  border-radius: 4px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq-item:hover {
  border-color: rgba(184, 149, 106, 0.3);
}

.faq-item[open] {
  background: var(--cream);
  border-color: var(--gold);
}

.faq-question {
  padding: 1.5rem 1.5rem;
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  letter-spacing: -0.01em;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-cat-tag {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: rgba(184, 149, 106, 0.1);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  font-weight: 500;
  flex-shrink: 0;
}

.faq-icon {
  margin-left: auto;
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--gold);
  transition: transform 0.3s ease;
}

.faq-icon::before {
  width: 12px;
  height: 1px;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 1px;
  height: 12px;
  transform: translate(-50%, -50%);
}

.faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: rgba(10, 22, 40, 0.7);
  font-weight: 300;
  line-height: 1.7;
  font-size: 0.97rem;
}

.faq-item[hidden] {
  display: none;
}

@media (max-width: 1024px) {
  .faq-categories {
    position: relative;
    top: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .faq-categories li {
    border-left: none;
    border: 1px solid rgba(10, 22, 40, 0.1);
    border-radius: 999px;
    padding: 0.4rem 1rem;
    background: var(--paper);
    font-size: 0.78rem;
  }
}

/* ---------- INVEST BREAKDOWN ---------- */
.invest-breakdown {
  background: linear-gradient(180deg, transparent, rgba(184, 149, 106, 0.04));
  padding: 2rem 0;
}

.invest-bar {
  display: flex;
  height: 60px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--ink-deep);
  margin-bottom: 1rem;
  border: 1px solid rgba(245, 241, 232, 0.1);
}

.invest-segment {
  height: 100%;
  position: relative;
  cursor: help;
  transition: all 0.4s ease;
}

.invest-segment:hover {
  filter: brightness(1.15);
}

.invest-segment::after {
  content: attr(data-label);
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--gold-bright);
  padding: 0.3rem 0.7rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.invest-segment:hover::after {
  opacity: 1;
}

.invest-rows {
  display: grid;
  gap: 0.75rem;
}

.invest-row {
  display: grid;
  grid-template-columns: 12px 1.5fr 60px 100px 2fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(245, 241, 232, 0.08);
  transition: background 0.3s ease;
}

.invest-row:hover {
  background: rgba(245, 241, 232, 0.02);
}

.invest-row-color {
  height: 24px;
  border-radius: 2px;
}

.invest-row-label {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  color: var(--cream);
  font-weight: 400;
}

.invest-row-pct {
  color: var(--gold-bright);
  font-style: italic;
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
}

.invest-row-val {
  color: var(--cream);
  font-size: 1.1rem;
}

.invest-row-note {
  font-size: 0.82rem;
  color: rgba(245, 241, 232, 0.5);
  font-weight: 300;
  font-style: italic;
}

@media (max-width: 768px) {
  .invest-row {
    grid-template-columns: 12px 1fr 1fr;
    gap: 1rem;
  }
  .invest-row-note,
  .invest-row-pct {
    display: none;
  }
}

/* ---------- FINANCE OPTIONS ---------- */
.finance-card {
  background: rgba(245, 241, 232, 0.04);
  padding: 2rem;
  border-radius: 6px;
  border: 1px solid rgba(245, 241, 232, 0.08);
  transition: all 0.4s ease;
}

.finance-card:hover {
  background: rgba(184, 149, 106, 0.08);
  border-color: rgba(184, 149, 106, 0.4);
  transform: translateY(-3px);
}

.finance-title {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  color: var(--gold-bright);
  font-weight: 400;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.finance-desc {
  color: rgba(245, 241, 232, 0.7);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ---------- CONTACT FORM ---------- */
.contact-form {
  background: var(--paper);
  padding: 3rem;
  border-radius: 8px;
  border: 1px solid rgba(10, 22, 40, 0.08);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(10, 22, 40, 0.6);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-req {
  color: var(--gold-deep);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(10, 22, 40, 0.2);
  padding: 0.75rem 0;
  font-family: 'Inter Tight', sans-serif;
  font-size: 1rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s ease;
  font-weight: 400;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-bottom-color: var(--gold);
}

.form-field input.error,
.form-field select.error,
.form-field textarea.error {
  border-bottom-color: #c25c5c;
}

.form-field textarea {
  resize: vertical;
  min-height: 100px;
  font-family: 'Inter Tight', sans-serif;
}

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%230a1628' stroke-width='1.5'%3E%3Cpath d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 12px;
  padding-right: 1.5rem;
  cursor: pointer;
}

.form-checkbox {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: 0.85rem !important;
  color: rgba(10, 22, 40, 0.7) !important;
  font-weight: 300 !important;
  line-height: 1.5;
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--gold);
}

.form-checkbox a {
  color: var(--gold-deep);
  border-bottom: 1px dotted var(--gold-deep);
}

.form-submit-row {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(10, 22, 40, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .contact-form {
    padding: 1.5rem;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- FORM SUCCESS ---------- */
.form-success {
  background: var(--paper);
  padding: 4rem 3rem;
  border-radius: 8px;
  border: 1px solid var(--gold);
  text-align: center;
  animation: successFade 0.8s ease;
}

@keyframes successFade {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.form-success-mark {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  color: var(--gold);
  animation: successDraw 1s ease;
}

@keyframes successDraw {
  from { transform: rotate(-10deg) scale(0); }
  to { transform: rotate(0) scale(1); }
}

/* ---------- CONTACT INFO CARDS ---------- */
.contact-info-card {
  display: block;
  padding: 1.5rem;
  border-left: 1px solid rgba(10, 22, 40, 0.1);
  transition: all 0.4s ease;
}

.contact-info-card:hover {
  border-left-color: var(--gold);
  transform: translateX(4px);
}

.contact-info-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 1rem;
  color: var(--gold-deep);
}

.contact-info-icon svg {
  width: 100%;
  height: 100%;
}

.contact-info-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(10, 22, 40, 0.5);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.contact-info-value {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 0.25rem;
  font-weight: 400;
}

.contact-info-detail {
  font-size: 0.78rem;
  color: rgba(10, 22, 40, 0.5);
  font-style: italic;
}

/* ---------- FOOTER ---------- */
.footer-heading {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-bright);
  margin-bottom: 1.25rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(245, 241, 232, 0.55);
  font-weight: 300;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--gold-bright);
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(245, 241, 232, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 241, 232, 0.6);
  transition: all 0.3s ease;
}

.footer-social:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
  background: rgba(184, 149, 106, 0.1);
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

/* ---------- MOBILE MENU ---------- */
#mobile-menu.menu-open {
  transform: translateX(0);
}

#menu-toggle.menu-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--cream);
}

#menu-toggle.menu-active span:nth-child(2) {
  opacity: 0;
}

#menu-toggle.menu-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  width: 28px;
  margin-left: 0;
  background: var(--cream);
}

.mobile-link {
  display: block;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(245, 241, 232, 0.08);
  font-size: 1.05rem;
  letter-spacing: -0.005em;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.mobile-link:hover {
  color: var(--gold-bright);
  padding-left: 0.5rem;
}

/* ---------- FLOATING CTA ---------- */
.floating-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--ink);
  color: var(--cream);
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 90;
  box-shadow: 0 10px 30px -10px rgba(10, 22, 40, 0.5);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.4s ease;
}

.floating-cta:hover {
  background: var(--gold);
  color: var(--ink);
}

/* ---------- ACCESSIBILITY ---------- */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal-up {
    opacity: 1;
    transform: none;
  }
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--paper);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-deep);
}

/* ---------- LEGAL PAGES (cookies, gdpr, termeni) ---------- */
.legal-nav {
  background: rgba(250, 247, 239, 0.92);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid rgba(10, 22, 40, 0.06);
  position: sticky;
  top: 0;
  z-index: 50;
}

.legal-page {
  position: relative;
  z-index: 2;
}

.legal-prose {
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(10, 22, 40, 0.78);
  font-weight: 300;
}

.legal-prose h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.85rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin: 3rem 0 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(10, 22, 40, 0.08);
  scroll-margin-top: 100px;
}

.legal-prose h2:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.legal-prose h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink);
  margin: 2rem 0 1rem;
  letter-spacing: -0.01em;
}

.legal-prose p {
  margin-bottom: 1rem;
}

.legal-prose ul,
.legal-prose ol {
  margin: 1rem 0 1.5rem;
  padding-left: 0;
  list-style: none;
}

.legal-prose ul li,
.legal-prose ol li {
  position: relative;
  padding-left: 1.75rem;
  padding-bottom: 0.5rem;
  line-height: 1.7;
}

.legal-prose ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 500;
}

.legal-prose ol {
  counter-reset: item;
}

.legal-prose ol li {
  counter-increment: item;
}

.legal-prose ol li::before {
  content: counter(item) '.';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-deep);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 0.95rem;
  font-weight: 500;
}

.legal-prose ul ul {
  margin: 0.5rem 0 0.75rem;
}

.legal-prose ul ul li::before {
  content: '·';
  font-size: 1.4rem;
  top: -0.3rem;
}

.legal-prose strong {
  color: var(--ink);
  font-weight: 500;
}

.legal-prose em {
  font-style: italic;
  color: var(--ink);
}

.legal-prose code {
  background: rgba(184, 149, 106, 0.1);
  padding: 0.15em 0.45em;
  border-radius: 3px;
  font-family: 'Fraunces', monospace;
  font-size: 0.9em;
  color: var(--gold-deep);
  font-weight: 500;
}

.legal-link {
  color: var(--gold-deep);
  border-bottom: 1px dotted var(--gold-deep);
  transition: all 0.3s ease;
}

.legal-link:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

.legal-tag {
  display: inline-block;
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  background: rgba(125, 145, 129, 0.12);
  color: var(--sage-deep);
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  margin-left: 0.4rem;
  vertical-align: 1px;
}

.legal-tag-optional {
  background: rgba(184, 149, 106, 0.12);
  color: var(--gold-deep);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0 2rem;
  font-size: 0.92rem;
  background: var(--paper);
  border: 1px solid rgba(10, 22, 40, 0.08);
  border-radius: 4px;
  overflow: hidden;
}

.legal-table thead {
  background: var(--ink);
  color: var(--cream);
}

.legal-table th {
  padding: 0.85rem 1rem;
  text-align: left;
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}

.legal-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(10, 22, 40, 0.05);
  vertical-align: top;
  line-height: 1.55;
}

.legal-table tr:last-child td {
  border-bottom: none;
}

.legal-table tr:hover {
  background: rgba(184, 149, 106, 0.04);
}

.legal-note {
  background: rgba(184, 149, 106, 0.06);
  border-left: 2px solid var(--gold);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  color: rgba(10, 22, 40, 0.72);
  border-radius: 0 4px 4px 0;
}

.legal-contact {
  background: var(--paper);
  border: 1px solid rgba(10, 22, 40, 0.08);
  border-radius: 4px;
  padding: 1.25rem 1.5rem !important;
  margin: 1rem 0 1.5rem !important;
}

.legal-contact li {
  padding-left: 0 !important;
  padding-bottom: 0.5rem !important;
  line-height: 1.55;
  font-size: 0.95rem;
}

.legal-contact li::before {
  display: none !important;
}

.legal-contact li:last-child {
  padding-bottom: 0 !important;
}

.legal-rights {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 !important;
  padding-left: 0 !important;
}

.legal-rights li {
  background: var(--paper);
  border: 1px solid rgba(10, 22, 40, 0.08);
  border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
  padding: 1rem 1.25rem !important;
  display: block;
}

.legal-rights li::before {
  display: none !important;
}

.legal-rights li strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.legal-rights li span {
  display: block;
  font-size: 0.92rem;
  color: rgba(10, 22, 40, 0.7);
  font-weight: 300;
  line-height: 1.55;
}

.legal-disclaimer {
  margin-top: 4rem;
  padding: 1.5rem 2rem;
  background: var(--ink);
  color: var(--cream);
  border-radius: 4px;
  border-left: 3px solid var(--gold-bright);
}

.legal-disclaimer p {
  font-size: 0.92rem;
  color: rgba(245, 241, 232, 0.78);
  font-weight: 300;
  line-height: 1.65;
  margin: 0;
}

.legal-disclaimer strong {
  color: var(--gold-bright);
  font-weight: 500;
}

.legal-cross-nav {
  margin-top: 5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(10, 22, 40, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}

.legal-cross-nav a {
  color: rgba(10, 22, 40, 0.6);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.legal-cross-nav a:hover {
  color: var(--gold-deep);
  border-bottom-color: var(--gold);
}

.legal-footer {
  background: var(--ink-deep);
  color: var(--cream);
  margin-top: 4rem;
}

.legal-footer a {
  color: rgba(245, 241, 232, 0.6);
  transition: color 0.2s ease;
}

@media (max-width: 768px) {
  .legal-prose h2 {
    font-size: 1.55rem;
  }
  .legal-table {
    font-size: 0.85rem;
  }
  .legal-table th,
  .legal-table td {
    padding: 0.65rem 0.75rem;
  }
}

/* ---------- COOKIE CONSENT BANNER ---------- */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 480px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 6px;
  border: 1px solid rgba(184, 149, 106, 0.3);
  padding: 1.5rem 1.5rem 1.25rem;
  box-shadow:
    0 30px 60px -20px rgba(10, 22, 40, 0.5),
    0 15px 30px -15px rgba(10, 22, 40, 0.3);
  z-index: 200;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
  pointer-events: none;
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-weight: 500;
  margin-bottom: 0.6rem;
}

.cookie-banner-title {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 0.65rem;
  line-height: 1.25;
  color: var(--cream);
}

.cookie-banner-text {
  font-size: 0.85rem;
  color: rgba(245, 241, 232, 0.75);
  font-weight: 300;
  line-height: 1.55;
  margin-bottom: 1.2rem;
}

.cookie-banner-text a {
  color: var(--gold-bright);
  border-bottom: 1px dotted var(--gold-bright);
  transition: color 0.2s ease;
}

.cookie-banner-text a:hover {
  color: var(--cream);
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.cookie-btn {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.cookie-btn-accept {
  background: var(--gold);
  color: var(--ink);
  flex: 1;
  min-width: 140px;
}

.cookie-btn-accept:hover {
  background: var(--gold-bright);
}

.cookie-btn-reject {
  background: transparent;
  color: rgba(245, 241, 232, 0.85);
  border-color: rgba(245, 241, 232, 0.25);
  flex: 1;
  min-width: 140px;
}

.cookie-btn-reject:hover {
  border-color: var(--cream);
  color: var(--cream);
}

.cookie-btn-customize {
  background: transparent;
  color: rgba(245, 241, 232, 0.6);
  font-size: 0.68rem;
  padding: 0.5rem 0.5rem;
  letter-spacing: 0.15em;
  text-decoration: underline;
  text-decoration-color: rgba(245, 241, 232, 0.3);
  text-underline-offset: 4px;
  margin-top: 0.5rem;
  width: 100%;
  text-align: center;
}

.cookie-btn-customize:hover {
  color: var(--gold-bright);
  text-decoration-color: var(--gold-bright);
}

@media (max-width: 540px) {
  .cookie-banner {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    padding: 1.25rem 1.25rem 1rem;
  }
  .cookie-banner-title {
    font-size: 1.15rem;
  }
}

/* Cookie modal — personalize */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(10, 22, 40, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cookie-modal.is-open {
  display: flex;
  opacity: 1;
}

.cookie-modal-card {
  background: var(--paper);
  border-radius: 8px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  border: 1px solid rgba(184, 149, 106, 0.3);
  box-shadow: 0 40px 80px -20px rgba(10, 22, 40, 0.4);
}

.cookie-modal-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  margin-bottom: 0.6rem;
}

.cookie-modal-title {
  font-family: 'Fraunces', serif;
  font-size: 1.85rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.cookie-modal-subtitle {
  font-size: 0.9rem;
  color: rgba(10, 22, 40, 0.65);
  font-weight: 300;
  line-height: 1.55;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(10, 22, 40, 0.08);
}

.cookie-category {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(10, 22, 40, 0.06);
}

.cookie-category:last-of-type {
  border-bottom: none;
}

.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.cookie-category-name {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
}

.cookie-category-name span.always-on {
  display: inline-block;
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  background: rgba(125, 145, 129, 0.15);
  color: var(--sage-deep);
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  margin-left: 0.5rem;
  vertical-align: 2px;
}

.cookie-category-desc {
  font-size: 0.85rem;
  color: rgba(10, 22, 40, 0.6);
  font-weight: 300;
  line-height: 1.55;
}

/* Toggle switch */
.cookie-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.cookie-toggle input {
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.2);
  border-radius: 999px;
  transition: background 0.3s ease;
}

.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: var(--paper);
  border-radius: 50%;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 1px 3px rgba(10, 22, 40, 0.2);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: var(--gold);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateX(20px);
}

.cookie-toggle input:disabled {
  cursor: not-allowed;
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
  background: var(--sage);
  opacity: 0.7;
}

.cookie-modal-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(10, 22, 40, 0.08);
}

.cookie-modal-actions .cookie-btn {
  flex: 1;
}

.cookie-btn-save {
  background: var(--ink);
  color: var(--cream);
}

.cookie-btn-save:hover {
  background: var(--gold);
  color: var(--ink);
}

@media (max-width: 540px) {
  .cookie-modal-card {
    padding: 1.75rem 1.5rem;
  }
  .cookie-modal-title {
    font-size: 1.55rem;
  }
  .cookie-modal-actions {
    flex-direction: column;
  }
}

/* Footer "Gestionează cookies" link */
.footer-cookie-trigger {
  font-size: 0.78rem;
  color: rgba(245, 241, 232, 0.5);
  font-weight: 300;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  border-bottom: 1px dotted rgba(245, 241, 232, 0.2);
  transition: all 0.3s ease;
  font-family: inherit;
}

.footer-cookie-trigger:hover {
  color: var(--gold-bright);
  border-bottom-color: var(--gold-bright);
}

/* ---------- PRINT ---------- */
@media print {
  .grain-overlay,
  #main-nav,
  #mobile-menu,
  .floating-cta,
  .scroll-indicator,
  .cookie-banner,
  .cookie-modal,
  .legal-cross-nav {
    display: none !important;
  }
  body {
    background: white;
    color: black;
  }
  .legal-prose {
    color: black;
  }
  .legal-table thead {
    background: #ddd;
    color: black;
  }
}
