
    /* Cross-fade lin la navigarea între pagini (elimină flash-ul).
       Ignorat automat de browserele care nu suportă. */
    @view-transition { navigation: auto; }
    ::view-transition-old(root),
    ::view-transition-new(root) { animation-duration: .22s; }
    @media (prefers-reduced-motion: reduce) {
      ::view-transition-old(root),
      ::view-transition-new(root) { animation: none; }
    }

    /* Skip-to-content link (accessibility) */
    .skip-link{position:absolute;top:-100%;left:1rem;background:var(--lime);color:var(--navy);padding:.75rem 1.5rem;font-family:var(--display);font-weight:700;z-index:9999;border-radius:2px;transition:top .2s}
    .skip-link:focus{top:1rem}

    :root {
      --navy:        #0f1133;
      --navy-mid:    #161942;
      --navy-light:  #1e2458;
      --blue:        #4a8ec2;
      --blue-light:  #6ba8d6;
      --lime:        #c8f135;
      --lime-dark:   #a8cc1a;
      --lime-deep:   #5f6e10;
      --lime-dim:    rgba(200,241,53,0.12);
      --white:       #ffffff;
      --off-white:   #f4f6f2;
      --gray-light:  #e8ecf0;
      --muted:       #5a6a7a;
      --font:        'Barlow', sans-serif;
      --display:     'Barlow Condensed', sans-serif;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font);
      color: var(--navy);
      background: var(--white);
      font-size: 16px;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }
    h1,h2,h3,h4,h5 {
      font-family: var(--display);
      font-weight: 700;
      line-height: 1.05;
    }
    a { text-decoration: none; }
    img { max-width: 100%; height: auto; display: block; }

    /* ── NAVBAR ─────────────────────────────────────────────── */
    .nav-wrap {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 1.25rem 0;
      transition: background .3s, padding .3s, box-shadow .3s;
    }
    .nav-wrap.scrolled {
      background: var(--navy);
      padding: .7rem 0;
      box-shadow: 0 2px 32px rgba(0,0,0,.3);
    }
    .nav-wrap.menu-open {
      background: var(--navy);
      box-shadow: 0 2px 32px rgba(0,0,0,.3);
    }
    .nav-inner {
      display: flex; align-items: center;
      justify-content: space-between; gap: 1rem;
    }
    .nav-brand {
      font-family: var(--display);
      font-size: 1.55rem; font-weight: 800;
      color: var(--white); letter-spacing: .06em;
    }
    .nav-brand .dot { color: var(--lime); }
    .nav-logo {
      height: 82px; width: auto; display: block;
      object-fit: contain;
      transition: height .3s, width .3s;
    }
    .nav-wrap.scrolled .nav-logo { height: 56px; width: auto; }
    @media (max-width: 767px) {
      .nav-logo { height: 52px; width: auto; }
    }
    /* [ÎNLOCUIEȘTE logo-ul] — când ai SVG/PNG:
       <img src="/assets/identity/logo.svg" alt="FZN Arena" height="36"> */

    .nav-links {
      display: flex; align-items: center; gap: .25rem;
      list-style: none;
    }
    .nav-links a {
	
      font-family: var(--font);
      font-size: .82rem; font-weight: 700;
      letter-spacing: .07em; text-transform: uppercase;
      color: rgba(255,255,255,			1);
      padding: .45rem .9rem;
      border-radius: 2px;
      transition: color .2s, background .2s;
    }
    .nav-links a:hover { color: var(--white); background: rgba(255,255,255,.06); }

    .btn-nav {
      font-family: var(--display);
      font-size: .88rem; font-weight: 700;
      letter-spacing: .1em; text-transform: uppercase;
      background: var(--lime); color: var(--navy);
      padding: .5rem 1.5rem; border-radius: 2px;
      transition: background .2s, transform .15s;
      white-space: nowrap;
    }
    .btn-nav:hover { background: var(--lime-dark); transform: translateY(-1px); }

    .hamburger {
      display: none; flex-direction: column;
      gap: 5px; cursor: pointer; padding: 4px;
      background: none; border: none;
    }
    .hamburger span {
      display: block; width: 24px; height: 2px;
      background: rgba(255,255,255,.8);
      transition: all .3s;
    }
    .mobile-menu {
      display: none; flex-direction: column;
      gap: .25rem; padding: 1rem 0 1.25rem;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-size: .88rem; font-weight: 500;
      letter-spacing: .07em; text-transform: uppercase;
      color: rgba(255,255,255,.75); padding: .75rem 0;
      min-height: 48px; display: flex; align-items: center;
      border-bottom: 1px solid rgba(255,255,255,.06);
    }
    .mobile-menu a:last-child { border-bottom: none; }

    @media (max-width: 991px) {
      .nav-links, .btn-nav { display: none; }
      .hamburger { display: flex; }
    }

    /* ── BUTTONS ─────────────────────────────────────────────── */
    .btn-lime {
      display: inline-block;
      background: var(--lime); color: var(--navy);
      font-family: var(--display); font-size: 1rem;
      font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
      padding: .9rem 2.2rem; border-radius: 2px;
      transition: background .2s, transform .15s, box-shadow .2s;
    }
    .btn-lime:hover {
      background: var(--lime-dark); color: var(--navy);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(200,241,53,.25);
    }
    .btn-ghost {
      display: inline-block;
      background: transparent; color: var(--white);
      font-family: var(--display); font-size: 1rem;
      font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
      padding: .85rem 2.2rem; border-radius: 2px;
      border: 1.5px solid rgba(255,255,255,.35);
      transition: border-color .2s, background .2s;
    }
    .btn-ghost:hover {
      border-color: var(--white);
      background: rgba(255,255,255,.07);
      color: var(--white);
    }
    .btn-outline-dark {
      display: inline-block;
      background: transparent; color: var(--navy);
      font-family: var(--display); font-size: .9rem;
      font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
      padding: .75rem 2rem; border-radius: 2px;
      border: 1.5px solid var(--navy);
      transition: background .2s, color .2s;
    }
    .btn-outline-dark:hover {
      background: var(--navy); color: var(--white);
    }

    /* ── SHARED SECTION STYLES ──────────────────────────────── */
    .section { padding: 5.5rem 0; }
    .section--dark { background: var(--navy); }
    .section--navy-mid { background: var(--navy-mid); }
    .section--off { background: var(--off-white); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--lime-deep); margin-bottom: .75rem;
}
    .eyebrow::before {
      content: ''; width: 24px; height: 2px; background: var(--lime);
    }
    .eyebrow--blue { color: var(--blue-light); }
    .eyebrow--blue::before { background: var(--blue-light); }
    /* variantă pt. eyebrow pe fundal navy (section--dark / section--navy-mid) —
       default-ul .eyebrow e acum lime-deep (contrast ok pe alb), dar pe navy
       trebuie lime deschis, altfel nu se mai vede. */
    .eyebrow--on-navy { color: var(--lime); }
    /* .eyebrow--dark = alias intenționat "text închis la culoare", identic cu default-ul.
       Păstrat pentru compatibilitate cu marcajul existent. */
    .eyebrow--dark { color: var(--lime-deep); }

		.section-title {
		  font-family: var(--display);
		  font-size: clamp(1.2rem, 2.5vw, 2rem);
		  font-weight: 800; text-transform: uppercase; line-height: 1.02;
		  margin-bottom: 1.25rem;
		}
    .section-title--light { color: var(--white); }
    .section-body {
      font-size: 1rem; color: var(--muted);
      line-height: 1.75; max-width: 520px;
    }
    .section-body--light { color: rgba(255,255,255,.6); }

    /* ── HERO ────────────────────────────────────────────────── */
    .hero {
      position: relative; min-height: 100vh;
      display: flex; align-items: center;
      background: var(--navy); overflow: hidden;
    }
    /* [ÎNLOCUIEȘTE] Foto hero — poză full-bleed cu terenul/atmosfera:
       <img class="hero-bg" src="/assets/images/hero-teren.jpg" alt=""> */
    .hero-bg-placeholder {
      position: absolute; inset: 0;
      background: linear-gradient(130deg, #0f1133 0%, #192060 55%, #0a0e28 100%);
    }
    /* Grid pattern subtil */
    .hero-bg-placeholder::after {
      content: '';
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(200,241,53,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200,241,53,.04) 1px, transparent 1px);
      background-size: 72px 72px;
    }
    /* Slideshow foto hero */
    .hero-slideshow {
      position: absolute; inset: 0; z-index: 0;
    }
    .hero-slide {
      position: absolute; inset: 0;
      background-size: cover; background-position: center;
      opacity: 0;
      will-change: opacity;
      animation: heroSlideFade 15s infinite;
    }
    .hero-slide:nth-child(1) { animation-delay: 0s; }
    .hero-slide:nth-child(2) { animation-delay: 3s; }
    .hero-slide:nth-child(3) { animation-delay: 6s; }
    .hero-slide:nth-child(4) { animation-delay: 9s; }
    .hero-slide:nth-child(5) { animation-delay: 12s; }
    @keyframes heroSlideFade {
      0%   { opacity: 0; }
      5%   { opacity: 1; }
      15%  { opacity: 1; }
      25%  { opacity: 0; }
      100% { opacity: 0; }
    }
    @media (prefers-reduced-motion: reduce) {
      .hero-slide { animation: none; opacity: 0; }
      .hero-slide:first-child { opacity: 1; }
    }
    /* Blob lime decorativ */
    .hero-blob {
      position: absolute; top: -120px; right: -180px;
      width: 600px; height: 600px; border-radius: 50%;
      background: radial-gradient(circle, rgba(200,241,53,.08) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-blob-2 {
      position: absolute; bottom: -200px; left: -100px;
      width: 500px; height: 500px; border-radius: 50%;
      background: radial-gradient(circle, rgba(74,142,194,.07) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-overlay {
      position: absolute; inset: 0; z-index: 1;
      background:
        linear-gradient(to right, rgba(10,12,38,.85) 0%, rgba(10,12,38,.55) 55%, rgba(10,12,38,.7) 100%),
        linear-gradient(to top, rgba(10,12,38,.75) 0%, rgba(10,12,38,.25) 40%, rgba(10,12,38,.35) 100%);
    }
    .hero-content {
      position: relative; z-index: 2;
      padding-top: 7rem; padding-bottom: 10rem;
    }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: .5rem;
      font-size: .72rem; font-weight: 700;
      letter-spacing: .22em; text-transform: uppercase;
      color: var(--lime); margin-bottom: 1.25rem;
    }
    .hero-eyebrow::before {
      content: ''; width: 32px; height: 2px; background: var(--lime);
    }
    .hero-title {
      font-family: var(--display);
      font-size: clamp(2rem, 4vw, 3.5rem);
      font-weight: 800; text-transform: uppercase;
      color: var(--white); line-height: .95;
      margin-bottom: 1.75rem;
    }
    .hero-title .accent { color: var(--lime); }
    .hero-sub {
      font-size: 1.05rem; font-weight: 300;
      color: rgba(255,255,255,.7);
      max-width: 460px; line-height: 1.7;
      margin-bottom: 2.5rem;
    }
    .hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

    /* Stats bar la baza hero */
    .hero-stats {
      position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
      border-top: 1px solid rgba(255,255,255,.08);
    }
    .hero-stats-inner {
      display: grid; grid-template-columns: repeat(5, 1fr);
    }
    .hero-stat {
      padding: 1.5rem 1.75rem;
      border-right: 1px solid rgba(255,255,255,.08);
    }
    .hero-stat:last-child { border-right: none; }
    .hero-stat-num {
      font-family: var(--display);
      font-size: 2.6rem; font-weight: 800;
      color: var(--white); line-height: 1;
    }
    .hero-stat-num .unit { font-size: 1.4rem; color: var(--lime); }
    .hero-stat-lbl {
      font-size: .7rem; font-weight: 600;
      letter-spacing: .16em; text-transform: uppercase;
      color: rgba(255,255,255,.65); margin-top: .3rem;
    }

    @media (max-width: 767px) {
      .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
      .hero-stat { padding: 1rem 1.25rem; }
      .hero { display: block; min-height: auto; }
      .hero-content { padding-bottom: 2.5rem; }
      .hero-stats { position: relative; z-index: 2; margin-top: 1rem; }
    }

    /* Scroll line */
    .scroll-line {
      position: absolute; bottom: 6rem; right: 2.5rem; z-index: 2;
      display: flex; flex-direction: column; align-items: center; gap: .5rem;
    }
    .scroll-line__bar {
      width: 1px; height: 48px;
      background: linear-gradient(to bottom, transparent, rgba(200,241,53,.5));
      animation: pulse 2s ease-in-out infinite;
    }
    .scroll-line__text {
      font-size: .62rem; letter-spacing: .2em; text-transform: uppercase;
      color: rgba(255,255,255,.6); writing-mode: vertical-rl;
    }
    @keyframes pulse {
      0%,100% { opacity:.4; transform: scaleY(1); }
      50% { opacity:1; transform: scaleY(1.15); }
    }
    @media (max-width: 767px) { .scroll-line { display: none; } }

    /* ── WHY FZN — features ─────────────────────────────────── */
    .feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 0;
    }
    .feature-item {
      padding: 2rem 1.75rem;
      border-top: 2px solid var(--gray-light);
      transition: border-color .25s;
    }
    .feature-item:hover { border-color: var(--lime); }
    .feature-icon {
	transition: background .2s;
      width: 44px; height: 44px;
      background: var(--lime-dim);
      border-radius: 2px;
      display: flex; align-items: center; justify-content: center;
      color: var(--lime); font-size: 1.4rem;
      /* On off-white bg, lime icon background */
      margin-bottom: 1.25rem;
    }
	.feature-item:hover .feature-icon {
  background: rgba(200,241,53,.3);
}
    .section--off .feature-icon { background: rgba(200,241,53,.15); }
    .feature-title {
      font-family: var(--display);
      font-size: 1.05rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: .04em;
      margin-bottom: .5rem; color: var(--navy);
    }
    .feature-body {
      font-size: .9rem; color: var(--muted); line-height: 1.7;
    }

    /* ── SERVICES GRID ──────────────────────────────────────── */
    .svc-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
      gap: 6px;
    }
    .svc-card {	
      position: relative; overflow: hidden;
      border-radius: 3px; display: flex;
      flex-direction: column; justify-content: flex-start;
      padding: 2rem; min-height: 340px;
      transition: transform .3s;
      color: var(--white);
    }
    .svc-card:hover { transform: translateY(-3px); }

    .svc-bg {
      position: absolute; inset: 0;
      transition: transform .4s;
    }
    .svc-card:hover .svc-bg { transform: scale(1.04); }
    .svc-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(15,17,51,.94) 0%, rgba(15,17,51,.25) 65%, transparent 100%);
    }
    .svc-content { position: relative; z-index: 2; }
    .svc-num {
      font-size: .80rem; font-weight: 1000;
      letter-spacing: .2em; text-transform: uppercase;
      color: var(--lime); margin-bottom: 2rem;
    }
    .svc-title {
      font-family: var(--display);
      font-size: 1.5rem; font-weight: 800;
      text-transform: uppercase; margin-top: 0rem;
    }
    .svc-desc {
      font-size: .85rem; color: rgba(255,255,255,.6);
      line-height: 1.6; margin-bottom: 1rem;
    }
    .svc-link {
      font-family: var(--display);
      font-size: .80rem; font-weight: 1000;
      letter-spacing: .12em; text-transform: uppercase;
      color: var(--lime);
      display: inline-flex; align-items: center; gap: .4rem;
      transition: gap .2s;
    }
    .svc-card:hover .svc-link { gap: .75rem; }

    @media (max-width: 767px) {
      .svc-grid { grid-template-columns: 1fr; }
    }



    .court-list { list-style: none; padding: 0; }
    .court-item {
      display: flex; gap: 1.1rem; align-items: flex-start;
      padding: 1.4rem 0;
      border-bottom: 1px solid rgba(255,255,255,.07);
    }
    .court-item:last-child { border-bottom: none; }
    .court-ic {
      width: 38px; height: 38px; flex-shrink: 0;
      background: rgba(200,241,53,.1); border-radius: 2px;
      display: flex; align-items: center; justify-content: center;
      color: var(--lime); font-size: 1.1rem;
    }
    .court-item-title {
      font-family: var(--display);
      font-size: .95rem; font-weight: 700;
      text-transform: uppercase; color: var(--white);
      margin-bottom: .2rem;
    }
    .court-item-body {
      font-size: .85rem; color: rgba(255,255,255,.65); line-height: 1.55;
    }
    /* variantă pentru secțiuni cu fundal deschis (alb) */
    .court-list--onlight .court-item { border-bottom-color: var(--gray-light); }
    .court-list--onlight .court-item-title { color: var(--navy); }
    .court-list--onlight .court-item-body { color: var(--muted); }

    /* ── ACADEMIE ────────────────────────────────────────────── */
    .academy-card {
      background: var(--white);
      border: 1.5px solid var(--gray-light);
      border-radius: 3px; padding: 2rem 1.75rem;
      height: 100%; transition: border-color .25s, box-shadow .25s, transform .25s;
    }
    .academy-card:hover {
      border-color: var(--lime);
      box-shadow: 0 8px 32px rgba(200,241,53,.12);
      transform: translateY(-3px);
    }
    .academy-card__badge {
      display: inline-block;
      background: var(--lime); color: var(--navy);
      font-size: .68rem; font-weight: 800;
      letter-spacing: .16em; text-transform: uppercase;
      padding: 3px 10px; border-radius: 2px; margin-bottom: 1.25rem;
    }
    .academy-card__title {
      font-family: var(--display);
      font-size: 1.3rem; font-weight: 800;
      text-transform: uppercase; margin-bottom: .6rem;
    }
    .academy-card__body {
      font-size: .9rem; color: var(--muted);
      line-height: 1.7; margin-bottom: 1.5rem;
    }
    .academy-card__features {
      list-style: none; padding: 0;
    }
    .academy-card__features li {
      font-size: .85rem; color: var(--muted);
      padding: .35rem 0;
      border-bottom: 1px solid var(--gray-light);
      display: flex; align-items: center; gap: .5rem;
    }
    .academy-card__features li:last-child { border-bottom: none; }
    .academy-card__features li i { color: var(--lime); font-size: .9rem; }

    /* Coach cards */
    .coach-card {
      background: var(--navy-light);
      border-radius: 3px; overflow: hidden;
      transition: transform .3s;
    }
    .coach-card:hover { transform: translateY(-3px); }
    .coach-photo {
      aspect-ratio: 3/4; background: var(--navy);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--display); font-size: .68rem;
      letter-spacing: .15em; text-transform: uppercase;
      color: rgba(255,255,255,.18);
    }
    /* [ÎNLOCUIEȘTE cu: <img src="/assets/images/antrenor-X.jpg" alt="Antrenor"> */
    .coach-info { padding: 1.25rem; }
    .coach-name {
      font-family: var(--display);
      font-size: 1.1rem; font-weight: 800;
      text-transform: uppercase; color: var(--white);
      margin-bottom: .25rem;
    }
    .coach-role {
      font-size: .78rem; color: var(--lime);
      font-weight: 600; letter-spacing: .1em;
      text-transform: uppercase; margin-bottom: .75rem;
    }
    .coach-bio {
      font-size: .84rem; color: rgba(255,255,255,.65);
      line-height: 1.6;
    }

    /* ── COMUNITATE ──────────────────────────────────────────── */
    .community-photo-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: auto auto;
      gap: 6px;
    }
    .comm-photo {
      background: var(--navy-light); border-radius: 2px;
      overflow: hidden; aspect-ratio: 1;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--display); font-size: .62rem;
      letter-spacing: .12em; text-transform: uppercase;
      color: rgba(255,255,255,.15);
    }
    /* [ÎNLOCUIEȘTE cu: style="background-image:url('...'); background-size:cover;" */
    .comm-photo--wide { grid-column: span 2; aspect-ratio: 2/1; }

    .community-feature {
      display: grid;
      grid-template-columns: 36px 170px 1fr;
      column-gap: 1rem;
      align-items: start;
      padding: 1.25rem 0;
      border-bottom: 1px solid rgba(255,255,255,.07);
    }
    .community-feature:last-child { border-bottom: none; }
    .comm-ic {
      width: 36px; height: 36px;
      background: rgba(200,241,53,.1); border-radius: 2px;
      display: flex; align-items: center; justify-content: center;
      color: var(--lime); font-size: 1rem;
    }
    .comm-feature-title {
      font-family: var(--display); font-size: .95rem;
      font-weight: 700; text-transform: uppercase; line-height: 1.2;
      color: var(--white); margin-bottom: 0;
      padding-top: .6rem;
    }
    .comm-feature-body {
      font-size: .84rem; color: rgba(255,255,255,.65); line-height: 1.55;
      padding-top: .45rem;
    }
    /* Variantă pentru folosire pe fundal deschis (ex: academia.html) */
    .community-feature--onlight { border-bottom-color: var(--gray-light); }
    .community-feature--onlight .comm-feature-title { color: var(--navy); }
    .community-feature--onlight .comm-feature-body { color: var(--muted); }

    /* ── PREȚURI ─────────────────────────────────────────────── */
    .price-card {
      background: var(--white);
      border: 1.5px solid var(--gray-light);
      border-radius: 3px; padding: 2rem 1.75rem;
      height: 100%; display: flex; flex-direction: column;
      transition: border-color .25s, box-shadow .25s, transform .25s;
    }
    .price-card:hover {
      border-color: var(--blue);
      box-shadow: 0 12px 32px rgba(74,142,194,.1);
      transform: translateY(-3px);
    }
    .price-card--featured {
      background: var(--navy); border-color: var(--navy);
      color: var(--white);
    }
    .price-card--featured:hover { border-color: var(--lime); }
    .price-badge {
      display: inline-block;
      background: var(--lime); color: var(--navy);
      font-size: .68rem; font-weight: 800;
      letter-spacing: .16em; text-transform: uppercase;
      padding: 3px 10px; border-radius: 2px; margin-bottom: 1.25rem;
    }
    .price-type {
      font-size: .7rem; font-weight: 700;
      letter-spacing: .2em; text-transform: uppercase;
      color: var(--blue); margin-bottom: .4rem;
    }
    .price-card--featured .price-type { color: var(--lime); }
    .price-name {
      font-family: var(--display);
      font-size: 1.35rem; font-weight: 800;
      text-transform: uppercase; margin-bottom: 1.5rem;
    }
    .price-amount {
      font-family: var(--display);
      font-size: 2.8rem; font-weight: 800; line-height: 1;
    }
    .price-amount span { font-size: 1.3rem; }
    .price-per {
      font-size: .78rem; color: var(--muted); margin-bottom: 1.75rem;
    }
    .price-card--featured .price-per { color: rgba(255,255,255,.65); }
    .price-features {
      list-style: none; padding: 0; flex: 1; margin-bottom: 2rem;
    }
    .price-features li {
      display: flex; align-items: center; gap: .55rem;
      font-size: .88rem; padding: .38rem 0;
      color: var(--muted);
      border-bottom: 1px solid #f0f4f8;
    }
    .price-card--featured .price-features li {
      color: rgba(255,255,255,.65);
      border-bottom-color: rgba(255,255,255,.06);
    }
    .price-features li i { color: var(--lime); font-size: .95rem; flex-shrink: 0; }

    /* ── BLOG ────────────────────────────────────────────────── */
    .blog-card {
      background: var(--white);
      border: 1.5px solid var(--gray-light);
      border-radius: 3px; overflow: hidden; height: 100%;
      transition: border-color .25s, transform .25s, box-shadow .25s;
      display: flex; flex-direction: column;
    }
    .blog-card:hover {
      border-color: var(--lime);
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(200,241,53,.1);
    }
    .blog-thumb {
      aspect-ratio: 1/1;
      background: var(--off-white);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--display); font-size: .68rem;
      letter-spacing: .15em; text-transform: uppercase;
      color: var(--muted);
      overflow: hidden;
    }
    .blog-thumb img {
      width: 100%; height: 100%;
      object-fit: cover; display: block;
    }
    /* [ÎNLOCUIEȘTE cu: <img src="..." alt="..."> */
    .blog-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
    .blog-cat {
      font-size: .68rem; font-weight: 700;
      letter-spacing: .18em; text-transform: uppercase;
      color: var(--lime-dark); margin-bottom: .6rem;
    }
    .blog-title {
      font-family: var(--display);
      font-size: 1.1rem; font-weight: 800;
      text-transform: uppercase; line-height: 1.15;
      color: var(--navy); margin-bottom: .75rem;
      flex: 1;
    }
    .blog-meta {
      font-size: .78rem; color: var(--muted);
      display: flex; align-items: center; gap: .5rem;
    }
    .blog-meta i { font-size: .8rem; }

    /* ── TESTIMONIALE ────────────────────────────────────────── */
    .testi-card {
      background: var(--navy-light);
      border: 1px solid rgba(255,255,255,.06);
      border-radius: 3px; padding: 2rem; height: 100%;
    }
    .testi-stars { color: var(--lime); letter-spacing: 2px; margin-bottom: 1rem; }
    .testi-quote {
      font-size: .93rem; color: rgba(255,255,255,.65);
      line-height: 1.75; font-style: italic; margin-bottom: 1.5rem;
    }
    .testi-author { display: flex; align-items: center; gap: .75rem; }
    .testi-avatar {
      width: 38px; height: 38px; border-radius: 50%;
      background: rgba(200,241,53,.15);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--display); font-weight: 800; font-size: .82rem;
      color: var(--lime); flex-shrink: 0;
    }
    .testi-name {
      font-family: var(--display); font-size: .88rem;
      font-weight: 800; text-transform: uppercase; color: var(--white);
    }
    .testi-role { font-size: .75rem; color: rgba(255,255,255,.35); }

    /* ── CTA BANNER ──────────────────────────────────────────── */
    .cta-banner {
      background: var(--lime); padding: 5rem 0;
      position: relative; overflow: hidden;
    }
    .cta-banner::before {
      content: ''; position: absolute;
      top: -100px; right: -100px;
      width: 400px; height: 400px; border-radius: 50%;
      background: rgba(15,17,51,.06);
    }
    .cta-title {
      font-family: var(--display);
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 800; text-transform: uppercase;
      color: var(--navy); line-height: 1.02; margin-bottom: 1rem;
    }
    .cta-sub {
      font-size: 1rem; color: rgba(15,17,51,.65);
      max-width: 420px; margin: 0 auto 2.5rem; line-height: 1.7;
    }
    .btn-cta-dark {
      display: inline-block;
      background: var(--navy); color: var(--white);
      font-family: var(--display); font-size: 1rem;
      font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
      padding: .9rem 2.4rem; border-radius: 2px;
      transition: background .2s, transform .15s;
    }
    .btn-cta-dark:hover {
      background: var(--navy-mid); color: var(--white);
      transform: translateY(-2px);
    }
    .btn-cta-outline {
      display: inline-block;
      background: transparent; color: var(--navy);
      font-family: var(--display); font-size: 1rem;
      font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
      padding: .85rem 2.4rem; border-radius: 2px;
      border: 2px solid rgba(15,17,51,.25);
      transition: border-color .2s, background .2s;
    }
    .btn-cta-outline:hover {
      border-color: var(--navy);
      background: rgba(15,17,51,.07);
      color: var(--navy);
    }

    /* ── FOOTER ──────────────────────────────────────────────── */
    .footer {
      background: var(--navy); color: rgba(255,255,255,.55);
      padding: 4.5rem 0 2rem;
    }
    .footer-brand {
      font-family: var(--display);
      font-size: 1.5rem; font-weight: 800;
      color: var(--white); letter-spacing: .06em;
      display: block; margin-bottom: .75rem;
    }
    .footer-brand .dot { color: var(--lime); }
    .footer-tagline {
      font-size: .85rem; line-height: 1.65;
      max-width: 240px; margin-bottom: 1.5rem;
    }
    .footer-social { display: flex; gap: .6rem; }
    .footer-social-link {
      width: 44px; height: 44px;
      border: 1px solid rgba(255,255,255,.12); border-radius: 2px;
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,.65); font-size: 1.1rem;
      transition: border-color .2s, color .2s;
    }
    .footer-social-link:hover { border-color: var(--lime); color: var(--lime); }
    .footer-heading {
      font-family: var(--display); font-size: .68rem;
      font-weight: 800; letter-spacing: .22em; text-transform: uppercase;
      color: var(--white); margin-bottom: 1.25rem;
    }
    .footer-links { list-style: none; padding: 0; }
    .footer-links li { margin-bottom: .55rem; }
    .footer-links a {
      color: rgba(255,255,255,.65); font-size: .85rem;
      transition: color .2s;
    }
    .footer-links a:hover { color: var(--lime); }
    .footer-contact-item {
      display: flex; gap: .6rem; align-items: center;
      font-size: .85rem; margin-bottom: .75rem;
    }
    .footer-contact-item i { color: var(--lime); font-size: .95rem; flex-shrink: 0; }
    .footer-contact-item a { color: rgba(255,255,255,.65); transition: color .2s; }
    .footer-contact-item a:hover { color: var(--lime); }
    .footer-contact-item span { color: rgba(255,255,255,.65); }
    .footer-divider { border-color: rgba(255,255,255,.07); margin: 2.5rem 0 1.5rem; }
    .footer-bottom {
      display: flex; flex-wrap: wrap;
      justify-content: space-between; align-items: center;
      gap: .75rem; font-size: .78rem;
    }
    .footer-legal a {
      color: rgba(255,255,255,.35); margin-left: 1.25rem; transition: color .2s;
    }
    .footer-legal a:hover { color: var(--lime); }

    /* ── MISC UTILS ──────────────────────────────────────────── */
    .link-lime {
      font-family: var(--display); font-size: .83rem;
      font-weight: 700; letter-spacing: .1em;
      text-transform: uppercase; color: var(--lime-dark);
      display: inline-flex; align-items: center; gap: .4rem;
      transition: gap .2s;
    }
    .link-lime:hover { gap: .75rem; color: var(--lime-dark); }

    .open-badge {
      display: inline-flex; align-items: center; gap: .4rem;
      background: rgba(200,241,53,.12);
      color: #7aaa10;
      font-size: .72rem; font-weight: 700;
      letter-spacing: .12em; text-transform: uppercase;
      padding: 4px 12px; border-radius: 2px;
	  transition: background .2s, color .2s;
cursor: default;
    }
	.open-badge:hover {
  background: rgba(200,241,53,.25);
  color: #5a8800;
}
    .open-badge::before {
      content: ''; width: 6px; height: 6px;
      border-radius: 50%; background: var(--lime);
    }
  

/* ===== next style block ===== */


.fzn-wm-list { margin-top: 2rem; }

.fzn-wm-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
  padding-left: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease, border-color .25s;
}
.fzn-wm-item:last-child { border-bottom: none; }
.fzn-wm-item.visible { opacity: 1; transform: translateY(0); }
.fzn-wm-item:hover { border-color: rgba(200,241,53,.3); }
.fzn-wm-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 2px; height: 0;
  background: var(--lime);
  transition: height .4s ease;
}
.fzn-wm-item:hover::before {
  height: 100%;
}

.fzn-wm-item.fzn-wm-right {
  flex-direction: row-reverse;
  text-align: right;
}
.fzn-wm-item.fzn-wm-right .fzn-wm-num {
  right: auto;
  left: 0;
}

.fzn-wm-num {
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-family: var(--display);
  font-size: 8rem; font-weight: 800;
  color: rgba(255,255,255,.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.fzn-wm-icon {
font-size: 2.2rem;
  color: var(--lime);
  flex-shrink: 0;
  width: 48px;
  text-align: center;
  transition: transform .3s ease;
}
.fzn-wm-item:hover .fzn-wm-icon {
  transform: scale(1.25) rotate(8deg);
}

.fzn-wm-content { flex: 1; }

.fzn-wm-title {
  font-family: var(--display);
  font-size: 1.1rem; font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: .3rem;
}

.fzn-wm-body {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
  margin: 0;
}


/* ===== next style block ===== */


/* TABS */
.fzn-tabs {
  display: flex; gap: .5rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--gray-light);
  padding-bottom: 0;
}
.fzn-tab {
  font-family: var(--display);
  font-size: .88rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  background: none; border: none;
  padding: .75rem 1.5rem;
  color: var(--muted); cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color .2s, border-color .2s;
}
.fzn-tab:hover { color: var(--navy); }
.fzn-tab.active {
  color: var(--navy);
  border-bottom-color: var(--lime);
}

.fzn-tab-content { display: none; }
.fzn-tab-content.active { display: block; }

/* PRICE TABLE */
.fzn-price-table {
  width: 100%; border-collapse: collapse;
  font-family: var(--font);
}
.fzn-price-table th {
  font-family: var(--display);
  font-size: .75rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--muted); padding: .75rem 1.5rem;
  text-align: center; border-bottom: 2px solid var(--gray-light);
}
.fzn-price-table th:first-child { text-align: left; }
.fzn-price-table td {
  padding: 1.25rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--gray-light);
  font-size: .95rem; color: var(--navy);
}
.fzn-price-table td:first-child { text-align: left; }
.fzn-price-table tr:last-child td { border-bottom: none; }
.fzn-price-table tbody tr { transition: background .2s; }
.fzn-price-table tbody tr:hover td { background: var(--gray-light); }
.fzn-price-table tbody tr:hover td:first-child { box-shadow: inset 3px 0 0 var(--lime); }
.fzn-per {
  font-size: .75rem; color: var(--muted);
  display: block; font-weight: 400;
}

/* PACKAGE CARDS */
.fzn-pkg-card {
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: 3px; padding: 2rem;
  text-align: center;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.fzn-pkg-card:hover {
  border-color: var(--lime);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(200,241,53,.1);
}
.fzn-pkg-card.fzn-pkg-featured {
  background: var(--navy);
  border-color: var(--navy);
}
.fzn-pkg-badge {
  display: inline-block;
  background: var(--lime); color: var(--navy);
  font-size: .68rem; font-weight: 800;
  letter-spacing: .15em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 2px;
  margin-bottom: 1rem;
}
.fzn-pkg-name {
  font-family: var(--display);
  font-size: 1.2rem; font-weight: 800;
  text-transform: uppercase; margin-bottom: 1rem;
  color: var(--navy);
}
.fzn-pkg-featured .fzn-pkg-name { color: var(--white); }
.fzn-pkg-price {
  font-family: var(--display);
  font-size: 2.5rem; font-weight: 800;
  color: var(--navy); line-height: 1;
  margin-bottom: .25rem;
}
.fzn-pkg-price span { font-size: 1rem; }
.fzn-pkg-featured .fzn-pkg-price { color: var(--lime); }
.fzn-pkg-period {
  font-size: .82rem; color: var(--muted);
}
.fzn-pkg-featured .fzn-pkg-period { color: rgba(255,255,255,.65); }


/* ===== next style block ===== */


.fzn-price-tabs {
  display: flex; gap: .5rem; flex-wrap: wrap;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--gray-light);
}
.fzn-price-tab {
  font-family: var(--display);
  font-size: .88rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  background: none; border: none;
  padding: .75rem 1.5rem;
  color: var(--muted); cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color .2s, border-color .2s;
}
.fzn-price-tab:hover { color: var(--navy); }
.fzn-price-tab.active { color: var(--navy); border-bottom-color: var(--lime); }

.fzn-price-panel { display: none; }
.fzn-price-panel.active { display: block; }

.fzn-price-block-card {
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: 3px; padding: 2rem; height: 100%;
}
.fzn-price-block-label {
  font-family: var(--display);
  font-size: 1.1rem; font-weight: 800;
  text-transform: uppercase; color: var(--navy); margin-bottom: .25rem;
}
.fzn-price-block-sub { font-size: .82rem; color: var(--muted); }

.fzn-credit-card {
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: 3px; padding: 2rem; text-align: center;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  height: 100%;
}
.fzn-credit-card:hover { border-color: var(--lime); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(200,241,53,.1); }
.fzn-credit-card.fzn-credit-featured { background: var(--navy); border-color: var(--navy); }
.fzn-credit-pay { font-size: .88rem; color: var(--muted); margin-bottom: 1rem; }
.fzn-credit-featured .fzn-credit-pay { color: rgba(255,255,255,.65); }
.fzn-credit-featured .fzn-credit-pay strong { color: var(--white); }
.fzn-credit-get { font-family: var(--display); font-size: 3rem; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: .5rem; }
.fzn-credit-featured .fzn-credit-get { color: var(--lime); }
.fzn-credit-bonus { display: inline-block; background: var(--lime); color: var(--navy); font-family: var(--display); font-size: .8rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: 4px 12px; border-radius: 2px; margin-bottom: .75rem; }
.fzn-credit-note { font-size: .82rem; color: var(--muted); }
.fzn-credit-featured .fzn-credit-note { color: rgba(255,255,255,.65); }

/* ===== shared additions for interior pages ===== */

/* Page header (mini hero for interior pages) */
.page-header {
  position: relative; background: var(--navy);
  padding-top: 9.5rem; padding-bottom: 3.5rem; overflow: hidden;
}
.page-header-bg {
  position: absolute; inset: 0; z-index: 1;
  background: var(--navy);
}
.page-header-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,241,53,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,241,53,.04) 1px, transparent 1px);
  background-size: 72px 72px;
}
/* Variantă cu video de fundal (ex: academia.html) */
.page-header-video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
}
.page-header-bg--video {
  background: linear-gradient(180deg, rgba(15,17,51,.6) 0%, rgba(15,17,51,.8) 100%);
}
.page-header-content { position: relative; z-index: 2; }
.breadcrumb-fzn {
  display: flex; align-items: center; gap: .5rem; flex-wrap: wrap;
  font-size: .78rem; font-weight: 600; letter-spacing: .04em;
  color: rgba(255,255,255,.65); margin-bottom: 1.25rem;
}
.breadcrumb-fzn a { color: rgba(255,255,255,.65); transition: color .2s; }
.breadcrumb-fzn a:hover { color: var(--lime); }
.breadcrumb-fzn .sep { color: rgba(255,255,255,.5); }
.breadcrumb-fzn .current { color: var(--lime); }
.page-title {
  font-family: var(--display); font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800; text-transform: uppercase; color: var(--white);
  line-height: 1.02; margin-bottom: 1rem;
}
.page-sub {
  font-size: 1rem; color: rgba(255,255,255,.65);
  max-width: 620px; line-height: 1.7;
}

/* FAQ accordion */
.faq-item {
  border-bottom: 1px solid var(--gray-light);
}
.faq-item:first-child { border-top: 1px solid var(--gray-light); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 1.4rem 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--display); font-size: 1.02rem; font-weight: 700;
  color: var(--navy); text-transform: none;
}
.faq-q i { color: var(--lime-dark); transition: transform .25s; flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .3s ease;
}
.faq-a-inner { padding-bottom: 1.4rem; font-size: .92rem; color: var(--muted); line-height: 1.7; max-width: 680px; }
.faq-item.open .faq-a { max-height: 400px; }

/* Simple contact / booking form */
.fzn-form-group { margin-bottom: 1.25rem; }
.fzn-form-label {
  display: block; font-size: .78rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--muted);
  margin-bottom: .5rem;
}
.fzn-form-control {
  width: 100%; padding: .8rem 1rem; border: 1.5px solid var(--gray-light);
  border-radius: 2px; font-family: var(--font); font-size: .95rem;
  color: var(--navy); background: var(--white); transition: border-color .2s;
}
.fzn-form-control:focus { outline: none; border-color: var(--lime); }
textarea.fzn-form-control { resize: vertical; min-height: 120px; }
.fzn-form-control-dark {
  background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.12);
  color: var(--white);
}
.fzn-form-control-dark:focus { border-color: var(--lime); }
.fzn-form-note { font-size: .78rem; color: var(--muted); margin-top: .5rem; }

/* Legal / long-form text pages */
.legal-content h2 {
  font-family: var(--display); font-size: 1.3rem; font-weight: 800;
  text-transform: uppercase; color: var(--navy); margin: 2.5rem 0 1rem;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { font-size: .95rem; color: var(--muted); line-height: 1.8; }
.legal-content p { margin-bottom: 1rem; }
.legal-content ul { padding-left: 1.25rem; margin-bottom: 1rem; }
.legal-content li { margin-bottom: .5rem; }
.legal-content strong { color: var(--navy); }
.legal-updated { font-size: .82rem; color: var(--muted); margin-bottom: 2.5rem; display: inline-block; background: var(--off-white); padding: .5rem 1rem; border-radius: 2px; }
.article-hero-img { width: 100%; border-radius: 4px; margin-bottom: 2.5rem; display: block; }
.legal-content img.article-inline-img { width: 100%; border-radius: 4px; margin: 2rem 0; display: block; }
.article-img-caption { font-size: .78rem; color: var(--muted); margin-top: -1.5rem; margin-bottom: 2rem; text-align: center; }

/* Simple info cards used across interior pages */
.info-card {
  background: var(--white); border: 1.5px solid var(--gray-light);
  border-radius: 3px; padding: 2rem; height: 100%;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.info-card:hover { border-color: var(--lime); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(200,241,53,.1); }
.info-card-icon {
  width: 44px; height: 44px; background: var(--lime-dim); border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  color: var(--lime-dark); font-size: 1.3rem; margin-bottom: 1.25rem;
}
.info-card-title { font-family: var(--display); font-size: 1.05rem; font-weight: 700; text-transform: uppercase; margin-bottom: .5rem; color: var(--navy); }
.info-card-body { font-size: .88rem; color: var(--muted); line-height: 1.7; }

@media (max-width: 767px) {
  .page-header { padding-top: 7.5rem; padding-bottom: 2.5rem; }
}

/* ============ Cookie Consent ============ */
.cookie-consent {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 9999;
  background: var(--navy); color: #fff;
  box-shadow: 0 -4px 24px rgba(0,0,0,.25);
  padding: 1.25rem 1.5rem;
}
.cookie-consent[hidden] { display: none; }
.cookie-consent-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
}
.cookie-consent-text { margin: 0; font-size: .95rem; color: rgba(255,255,255,.85); flex: 1 1 320px; }
.cookie-consent-text a { color: var(--lime); text-decoration: underline; }
.cookie-consent-actions { display: flex; gap: .75rem; flex-wrap: wrap; }
.btn-cookie {
  border-radius: 3px; padding: .55rem 1.25rem; font-weight: 600; font-size: .9rem;
  border: 1px solid rgba(255,255,255,.3); background: transparent; color: #fff; cursor: pointer;
  transition: all .15s ease; white-space: nowrap;
}
.btn-cookie-outline:hover { background: rgba(255,255,255,.1); }
.btn-cookie-accept { background: var(--lime); border-color: var(--lime); color: var(--navy); }
.btn-cookie-accept:hover { filter: brightness(1.08); }

.cookie-modal { position: fixed; inset: 0; z-index: 10000; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.cookie-modal[hidden] { display: none; }
.cookie-modal-backdrop { position: absolute; inset: 0; background: rgba(10,12,30,.6); }
.cookie-modal-box {
  position: relative; background: #fff; color: var(--navy); border-radius: 6px;
  max-width: 480px; width: 100%; max-height: 85vh; overflow-y: auto;
  box-shadow: 0 12px 48px rgba(0,0,0,.3);
}
.cookie-modal-header { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; border-bottom: 1px solid #eee; }
.cookie-modal-header h3 { margin: 0; font-size: 1.15rem; }
.cookie-modal-close { background: none; border: none; font-size: 1.5rem; line-height: 1; cursor: pointer; color: var(--navy); }
.cookie-modal-body { padding: 1.25rem 1.5rem; }
.cookie-modal-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; padding: .85rem 0; border-bottom: 1px solid #f0f0f0; }
.cookie-modal-row:last-child { border-bottom: none; }
.cookie-modal-row strong { display: block; font-size: .95rem; margin-bottom: .2rem; }
.cookie-modal-row p { margin: 0; font-size: .85rem; color: #666; }
.cookie-switch { position: relative; display: inline-block; width: 42px; height: 24px; flex-shrink: 0; }
.cookie-switch input { opacity: 0; width: 0; height: 0; }
.cookie-switch span { position: absolute; inset: 0; background: #ccc; border-radius: 24px; transition: .15s; cursor: pointer; }
.cookie-switch span::before { content: ""; position: absolute; height: 18px; width: 18px; left: 3px; bottom: 3px; background: #fff; border-radius: 50%; transition: .15s; }
.cookie-switch input:checked + span { background: var(--lime); }
.cookie-switch input:checked + span::before { transform: translateX(18px); }
.cookie-switch-disabled span { opacity: .6; cursor: not-allowed; }
.cookie-modal-footer { padding: 1rem 1.5rem 1.5rem; text-align: right; }

.booking-consent-placeholder { text-align: center; padding: 3rem 1.5rem; }
.booking-consent-placeholder p { color: var(--navy); margin-bottom: 1rem; }

@media (max-width: 575px) {
  .cookie-consent-inner { flex-direction: column; align-items: stretch; }
  .cookie-consent-actions { justify-content: stretch; }
  .btn-cookie { flex: 1; }
}

/* ============ Mobile nav quick-book button ============ */
.nav-mobile-actions { display: none; align-items: center; gap: .5rem; }
.btn-nav-mobile {
  display: none; align-items: center; gap: .35rem;
  background: var(--lime); color: var(--navy);
  font-family: var(--display); font-size: .78rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  padding: .45rem .75rem; border-radius: 2px;
  white-space: nowrap; transition: background .2s;
}
.btn-nav-mobile:hover, .btn-nav-mobile:active { background: var(--lime-dark); color: var(--navy); }
.btn-nav-mobile i { font-size: .95rem; line-height: 1; }

@media (max-width: 991px) {
  .nav-mobile-actions { display: flex; }
  .btn-nav-mobile { display: inline-flex; }
}
@media (max-width: 400px) {
  .btn-nav-mobile span { display: none; }
  .btn-nav-mobile { padding: .5rem .6rem; }
}

.amo-countdown {
  position: fixed;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  z-index: 9999;
  background: linear-gradient(150deg,#0F3A41,#0A2226);
  border: 1.5px solid rgba(69,197,190,.4);
  border-radius: 8px;
  padding: 8px 10px;
  display: flex; flex-direction: column; gap: 5px;
  width: 150px;
  height: fit-content;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0,0,0,.32);
  transition: box-shadow .2s;
  font-family: 'Poppins', 'Inter', sans-serif;
}
.amo-countdown:hover {
  box-shadow: 0 10px 26px rgba(0,0,0,.4);
}
.amo-countdown-close {
  position: absolute; top: 5px; right: 5px;
  width: 14px; height: 14px;
  background: rgba(255,255,255,.08);
  border: none; border-radius: 50%;
  color: rgba(255,255,255,.6);
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; cursor: pointer;
  transition: background .2s, color .2s;
}
.amo-countdown-close:hover { background: rgba(255,255,255,.16); color: #fff; }
.amo-countdown-label {
  font-size: 9px; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
  color: #45C5BE; padding-right: 12px;
  line-height: 1.25;
}
.amo-countdown-timer { display: flex; gap: 4px; }
.amo-countdown-unit {
  flex: 1; text-align: center;
  background: rgba(159,231,225,.1);
  border-radius: 4px; padding: 4px 2px;
}
.amo-countdown-unit span {
  display: block; font-weight: 800; font-size: 12px;
  color: #fff; line-height: 1;
}
.amo-countdown-unit small {
  display: block; font-size: 7px; letter-spacing: .06em;
  text-transform: uppercase; color: #9FE7E1; margin-top: 2px;
}
.amo-countdown-cta {
  font-size: 9px; font-weight: 600;
  color: #C9A15A;
  display: flex; align-items: center; gap: 3px;
}
.amo-countdown-cta i { font-size: 8px; color: #C9A15A; }

@media (max-width: 480px) {
  .amo-countdown {
    top: auto;
    bottom: 1rem;
    right: .5rem;
    transform: none;
    width: 138px;
    padding: .5rem .55rem;
    gap: .3rem;
    border-radius: 8px;
    z-index: 99999;
  }
  .amo-countdown-close {
    width: 14px; height: 14px;
    top: .3rem; right: .3rem;
    font-size: .46rem;
  }
  .amo-countdown-label {
    font-size: .54rem;
    padding-right: .8rem;
  }
  .amo-countdown-timer { gap: .22rem; }
  .amo-countdown-unit {
    padding: .22rem .08rem;
    border-radius: 4px;
  }
  .amo-countdown-unit span { font-size: .68rem; }
  .amo-countdown-unit small { font-size: .4rem; }
  .amo-countdown-cta { font-size: .54rem; gap: .2rem; }
  .amo-countdown-cta i { font-size: .5rem; }
}
@media (max-width: 575px) {
  .cookie-consent { padding: .85rem 1rem; }
  .cookie-consent-inner {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: .75rem;
  }
  .cookie-consent-text { flex: 0 1 auto; }
  .cookie-consent-actions {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: stretch;
    gap: .5rem;
  }
  .btn-cookie { flex: 1; padding: .5rem .5rem; font-size: .78rem; white-space: nowrap; }
}
