  :root {
      --gold: #f9b14b;
      --black: #0a0a0a;
      --dark2: #1a1a1a;
      --dark3: #222222;
      --gray: #888888;
      --lightgray: #cccccc;
      --white: #ffffff;
  }

  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  html {
      scroll-behavior: smooth;
  }

  body {
      background: var(--black);
      color: var(--white);
      font-family: 'Segoe UI', sans-serif;
      overflow-x: hidden;
  }

  input {
      font-size: 18px;
  }

  /* NAVBAR */
  .navbar {
      background: rgba(10, 10, 10, 0.95);
      border-bottom: 1px solid #222;
      backdrop-filter: blur(10px);
      position: sticky;
      top: 0;
      z-index: 1000;
  }

  @media(max-width:767px) {
      .navbar {
          background: #0a0a0a;
          backdrop-filter: none;
      }
  }

  .navbar-brand img {
      height: 38px;
      filter: drop-shadow(0 0 20px rgba(249, 177, 75, 0.4));
  }

  .nav-link {
      color: var(--lightgray) !important;
      font-size: .9rem;
      letter-spacing: .5px;
      transition: .2s;
  }

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

  /* 8 — navbar user icon pulse glow on load */
.btn-nav-user {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s, color .25s, border-color .25s, box-shadow .25s;
  cursor: pointer; font-size: .95rem; padding: 0;
  animation: userPulse 2s ease 1s 2;
  text-decoration: none;
}
.btn-nav-user:hover { background: var(--gold); color: var(--black); animation: none; }

/* Estado logout (sesión iniciada) */
.btn-nav-user.logged-in {
  border-color: #e05c5c;
  color: #e05c5c;
  animation: none;
}
.btn-nav-user.logged-in:hover {
  background: #e05c5c;
  color: #fff;
  border-color: #e05c5c;
  box-shadow: 0 0 0 4px rgba(224,92,92,0.15);
}

@keyframes userPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(249,177,75,0); }
  50%      { box-shadow: 0 0 0 7px rgba(249,177,75,0.25); }
}

  /* HERO */
  #hero {
      min-height: 100vh;
      background: var(--black);
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
  }

  #hero-canvas {
      position: absolute;
      inset: 0;
      z-index: 0;
  }

  .hero-content {
      position: relative;
      z-index: 1;
      text-align: center;
      padding: 2rem;
      width: 100%;
  }

  @media(max-width:767px) {
      .hero-content {
          padding-top: 0;
          margin-top: -7vh;
      }
  }

  .hero-slogan {
      white-space: nowrap;
      font-family: 'Taviraj', serif;
      font-size: clamp(.6rem, 9vw, 6rem);
      line-height: 1.1;
      letter-spacing: .04em;
      text-transform: uppercase;
      margin-bottom: .6rem;
      display: flex;
      align-items: baseline;
      justify-content: center;
      gap: 0;
  }

  .s-thin {
      font-weight: 100;
      font-style: normal;
      color: var(--white);
  }

  .s-yo {
      font-weight: 100;
      font-style: normal;
      color: var(--gold);
  }

  .s-italic {
      font-weight: 400;
      font-style: italic;
      color: var(--gold);
  }

  .hero-desc {
      font-size: 1.5rem;
      color: var(--lightgray);
      max-width: 800px;
      margin: 1rem auto 2rem;
      line-height: 1.7;
  }

  @media(max-width:575px) {
      .hero-desc {
          font-size: 1.25rem;
      }
  }

  .hero-btns {
      display: flex;
      gap: 12px;
      justify-content: center;
      align-items: center;
      flex-wrap: nowrap;
      margin-bottom: 2.5rem;
  }

  .hero-email-input {
      flex: 1 1 0;
      min-width: 0;
      max-width: 340px;
      background: rgba(255, 255, 255, 0.07);
      border: 2px solid rgba(255, 255, 255, 0.18);
      border-radius: 30px;
      color: var(--white);
      font-size: 18px;
      padding: 12px 20px;
      outline: none;
      transition: border-color .3s, background .3s, box-shadow .3s;
  }

  .hero-email-input::placeholder {
      color: rgba(255, 255, 255, 0.35);
  }

  .hero-email-input:focus {
      border-color: var(--gold);
      background: rgba(255, 255, 255, 0.1);
      box-shadow: 0 0 0 3px rgba(249, 177, 75, 0.12);
  }

  .btn-hero {
      border-radius: 30px;
      padding: 12px 22px;
      font-size: .95rem;
      font-weight: 700;
      flex-shrink: 0;
      text-align: center;
      transition: .3s;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      border: 2px solid transparent;
      white-space: nowrap;
  }

  .btn-hero-reg {
      background: var(--gold);
      color: var(--black);
      border-color: var(--gold);
      box-shadow: 0 4px 20px rgba(249, 177, 75, 0.3);
  }

  .btn-hero-reg:hover {
      background: #e09d38;
      border-color: #e09d38;
      transform: translateY(-2px);
      color: var(--black);
  }

  @media(max-width:575px) {
      .hero-btns {
          flex-direction: column;
          align-items: stretch;
          max-width: 340px;
          margin-left: auto;
          margin-right: auto;
      }

      .hero-email-input {
          max-width: 100%;
      }

      .btn-hero {
          width: 100%;
      }
  }

  .hero-sponsor-label {
      font-size: .68rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gray);
      margin-bottom: .8rem;
  }

  .hero-sponsors {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
  }

  .sponsor-pill {
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 14px;
  }

  .sponsor-pill img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
  }

  .sponsor-pill img:hover {
      transform: translateY(-2px);
  }

  .hero-scroll {
      margin-top: 2.5rem;
  }

  .hero-scroll a {
      color: var(--gray);
      font-size: 1.3rem;
      animation: bounce 2s infinite;
      display: inline-block;
  }

  @keyframes bounce {

      0%,
      100% {
          transform: translateY(0)
      }

      50% {
          transform: translateY(8px)
      }
  }

  @keyframes fadeDown {
      from {
          opacity: 0;
          transform: translateY(-20px)
      }

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

  @keyframes fadeUp2 {
      from {
          opacity: 0;
          transform: translateY(20px)
      }

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

  @keyframes scaleIn {
      from {
          opacity: 0;
          transform: scale(.8)
      }

      to {
          opacity: 1;
          transform: scale(1)
      }
  }

  .hero-slogan {
      animation: fadeDown .7s .3s ease both;
  }

  .hero-desc {
      animation: fadeUp2 .7s .5s ease both;
  }

  .hero-btns {
      animation: fadeUp2 .7s .7s ease both;
  }

  .hero-sponsors-wrap {
      animation: fadeUp2 .7s .9s ease both;
  }

  /* SECTION / SUBSECTION TITLES */
  .section-title {
      font-family: 'Taviraj', serif;
      font-weight: 400;
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      letter-spacing: 2px;
      text-transform: uppercase;
  }

  .section-title span {
      color: var(--gold);
      font-style: italic;
  }

  /* 6 — section line gradient */
  .section-line {
      height: 3px;
      border-radius: 2px;
      margin: .5rem auto 1.5rem;
      width: 160px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
  }

  .text-secondary {
      font-size: 1.25rem;
  }

  .subsection-title {
      font-family: 'Taviraj', serif;
      font-weight: 100;
      font-size: clamp(1.1rem, 2vw, 1.5rem);
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--lightgray);
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      gap: 12px;
  }

  /* 6 — subsection lines also gradient */
  .subsection-title::before,
  .subsection-title::after {
      content: '';
      flex: 1;
      height: 1px;
      background: linear-gradient(to right, transparent, #444, transparent);
  }

  /* METRICS */
  #metrics {
      background: var(--black);
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      padding: 70px 0;
      position: relative;
      overflow: hidden;
  }

  #metrics::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 50% 100%, rgba(249, 177, 75, 0.07) 0%, transparent 65%);
      pointer-events: none;
  }

  .metrics-tagline {
      text-align: center;
      font-size: clamp(1.1rem, 2.5vw, 1.5rem);
      color: var(--lightgray);
      font-style: italic;
      margin-bottom: 3rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.6;
  }

  .metrics-tagline strong {
      color: var(--gold);
      font-style: normal;
  }

  .metrics-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      max-width: 900px;
      margin: 0 auto;
  }

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

  .metric-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: 18px;
      padding: 2rem 1.5rem;
      text-align: center;
      position: relative;
      overflow: hidden;
      transition: border-color .3s, transform .3s, box-shadow .3s;
      cursor: default;
  }

  .metric-card:hover {
      border-color: rgba(249, 177, 75, 0.3);
      transform: translateY(-4px);
      box-shadow: 0 12px 35px rgba(249, 177, 75, 0.08);
  }

  .metric-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      opacity: 0;
      transition: opacity .3s;
  }

  .metric-card:hover::after {
      opacity: 1;
  }

  .metric-icon {
      font-size: 1.4rem;
      color: var(--gold);
      margin-bottom: .8rem;
      opacity: .85;
  }

  .metric-number {
      font-size: clamp(2rem, 4vw, 2.8rem);
      font-weight: 800;
      color: var(--white);
      line-height: 1;
      margin-bottom: .4rem;
      font-variant-numeric: tabular-nums;
      letter-spacing: -1px;
  }

  .metric-number span.gold {
      color: var(--gold);
  }

  .metric-label {
      font-size: .8rem;
      color: var(--gray);
      letter-spacing: .5px;
      text-transform: uppercase;
      line-height: 1.5;
  }

  .metric-badge {
      display: inline-block;
      background: rgba(249, 177, 75, 0.12);
      border: 1px solid rgba(249, 177, 75, 0.2);
      color: var(--gold);
      font-size: .6rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 2px 8px;
      border-radius: 20px;
      margin-top: .6rem;
  }

  /* CLIENTS */
  #clients {
      background: var(--black);
      padding: 52px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .clients-label {
      text-align: center;
      font-size: .68rem;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--gray);
      margin-bottom: 2.2rem;
  }

  /* DESKTOP: fila estática */
  .clients-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 3.5rem;
      flex-wrap: nowrap;
  }

  .client-logo {
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: .7;
      transition: opacity .3s, filter .3s, transform .3s;
  }

  .client-logo:hover {
      opacity: .9;
      filter: grayscale(0) brightness(1);
      transform: translateY(-3px);
  }

  .client-logo img {
      max-height: 70px;
      max-width: 150px;
      object-fit: contain;
      display: block;
  }

  /* MOBILE: carrusel de a 1 */
  .clients-carousel {
      display: none;
      position: relative;
      overflow: hidden;
  }

  .clients-carousel-track {
      display: flex;
      transition: transform .5s cubic-bezier(.4, 0, .2, 1);
  }

  .clients-carousel-slide {
      min-width: 100%;
      height: 90px;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .clients-carousel-slide .client-logo {
      height: 70px;
      opacity: .75;
      filter: grayscale(0) brightness(1.1);
  }

  .clients-carousel-slide .client-logo img {
      max-height: 70px;
      max-width: 160px;
  }

  .clients-cdots {
      display: flex;
      gap: 7px;
      justify-content: center;
      margin-top: 1.4rem;
  }

  .clients-cdot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #333;
      border: none;
      cursor: pointer;
      padding: 0;
      transition: background .3s, width .3s;
  }

  .clients-cdot.active {
      background: var(--gold);
      width: 18px;
      border-radius: 3px;
  }

  @media(max-width: 767px) {
      .clients-row {
          display: none;
      }

      .clients-carousel {
          display: block;
      }
  }

  /* ABOUT */
  #about {
      background: var(--black);
      padding: 90px 0;
  }

  /* FEATURE CARDS — desktop */
  .feature-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.2rem;
  }

  .dir-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.2rem;
  }

  @media(max-width:991px) {
      .dir-grid {
          grid-template-columns: repeat(2, 1fr);
      }
  }

  /* 1 — Glassmorphism cards */
  .feature-card {
      background: rgba(255, 255, 255, 0.04);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 16px;
      padding: 1.8rem 1.5rem;
      text-align: center;
      transition: border-color .3s, box-shadow .3s, transform .3s;
      position: relative;
      overflow: hidden;
  }

  .feature-card:hover::before {
      opacity: 1;
  }

  .feature-card:hover {
      border-color: rgba(249, 177, 75, 0.5);
      transform: translateY(-5px);
      box-shadow: 0 10px 40px rgba(249, 177, 75, 0.12);
  }

  .feature-icon {
      font-size: 2rem;
      color: var(--gold);
      margin-bottom: .8rem;
      position: relative;
      z-index: 1;
  }

  .feature-card h5 {
      font-weight: 700;
      font-size: .9rem;
      letter-spacing: .5px;
      text-transform: uppercase;
      margin-bottom: .5rem;
      position: relative;
      z-index: 1;
  }

  .feature-card p {
      color: var(--gray);
      font-size: 1rem;
      line-height: 1.6;
      position: relative;
      z-index: 1;
  }

  /* MOBILE CAROUSEL */
  .mcarousel-wrap {
      display: none;
      position: relative;
      padding: .5rem 0 0;
  }

  .mcarousel-viewport {
      overflow: hidden;
      width: 100%;
  }

  .mcarousel-track {
      display: flex;
      transition: transform .4s cubic-bezier(.4, 0, .2, 1);
      will-change: transform;
  }

  .mcarousel-track .feature-card {
      flex: 0 0 82vw;
      max-width: 320px;
      margin: 0 8px;
      opacity: .5;
      transform: scale(.94);
      transition: opacity .35s, transform .35s, border-color .35s, box-shadow .35s;
  }

  .mcarousel-track .feature-card.active {
      opacity: 1;
      transform: scale(1);
      border-color: rgba(249, 177, 75, 0.6);
      box-shadow: 0 0 24px rgba(249, 177, 75, 0.18);
  }

  .mcarousel-dots {
      display: flex;
      gap: 7px;
      justify-content: center;
      margin-top: 1rem;
      padding-bottom: .5rem;
  }

  .mcarousel-dots .mdot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #333;
      border: none;
      cursor: pointer;
      transition: background .3s, transform .3s, width .3s;
      padding: 0;
  }

  .mcarousel-dots .mdot.active {
      background: var(--gold);
      transform: scale(1.2);
      width: 20px;
      border-radius: 4px;
  }

  @media(max-width:767px) {

      .feature-grid,
      .dir-grid {
          display: none !important;
      }

      .mcarousel-wrap {
          display: block !important;
      }
  }

  /* PRICING */
  #pricing {
      background: var(--dark2);
      padding: 90px 0;
  }

  /* 1 — glass pricing cards */
  .price-card {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 20px;
      padding: 2.5rem 2rem;
      transition: border-color .25s, box-shadow .25s, transform .25s;
      height: 100%;
      position: relative;
      overflow: hidden;
      will-change: transform;
  }

  /* 3 — animated gradient border for featured */
  .price-card.featured {
      border: none;
      background: rgba(255, 255, 255, 0.05);
  }

  .price-card.featured::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 20px;
      padding: 1.5px;
      background: linear-gradient(135deg, #f9b14b, #fff5, #f9b14b, #fff2, #f9b14b);
      background-size: 300% 300%;
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: destination-out;
      mask-composite: exclude;
      animation: borderSpin 4s linear infinite;
      pointer-events: none;
      will-change: background-position;
  }

  @keyframes borderSpin {
      0% {
          background-position: 0% 50%;
      }

      50% {
          background-position: 100% 50%;
      }

      100% {
          background-position: 0% 50%;
      }
  }

  .price-card.featured {
      box-shadow: 0 0 40px rgba(249, 177, 75, 0.15);
  }

  .price-card.featured::before {
      content: 'RECOMENDADO';
      position: absolute;
      top: 20px;
      right: -30px;
      background: var(--gold);
      color: var(--black);
      font-size: .65rem;
      font-weight: 800;
      letter-spacing: 1px;
      padding: 5px 44px;
      transform: rotate(40deg);
      z-index: 1;
  }

  .price-badge {
      display: inline-block;
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 4px 14px;
      border-radius: 20px;
      margin-bottom: 1rem;
  }

  .price-badge.free {
      background: rgba(255, 255, 255, 0.05);
      color: var(--gray);
      border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .price-badge.premium {
      background: rgba(249, 177, 75, 0.15);
      color: var(--gold);
      border: 1px solid rgba(249, 177, 75, 0.4);
  }

  .price-amount {
      font-size: 2.8rem;
      font-weight: 900;
      line-height: 1;
      margin-bottom: .2rem;
  }

  .price-amount span {
      font-size: 1rem;
      font-weight: 400;
      color: var(--gray);
  }

  .price-subtitle {
      font-size: .85rem;
      color: var(--gray);
      margin-bottom: 1.8rem;
  }

  .price-divider {
      border-color: rgba(255, 255, 255, 0.08);
      margin: 1.5rem 0;
  }

  .price-list li {
      font-size: .9rem;
      padding: 6px 0;
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .price-list li .yes {
      color: #4caf50;
  }

  .price-list li .no {
      color: #555;
  }

  .price-list li.disabled {
      color: #444;
      text-decoration: line-through;
  }

  .btn-price {
      width: 100%;
      border-radius: 30px;
      padding: 12px;
      font-weight: 700;
      font-size: .95rem;
      margin-top: 2rem;
      transition: .3s;
      border: none;
      cursor: pointer;
      text-decoration: none;
      display: block;
      text-align: center;
  }

  .btn-price.free-btn {
      background: rgba(255, 255, 255, 0.05);
      color: var(--gray);
      border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .btn-price.free-btn:hover {
      border-color: var(--gold);
      color: var(--gold);
  }

  .btn-price.premium-btn {
      background: var(--gold);
      color: var(--black);
      box-shadow: 0 4px 20px rgba(249, 177, 75, 0.3);
  }

  .btn-price.premium-btn:hover {
      background: #e09d38;
      transform: translateY(-2px);
  }

  /* REVIEWS */
  #reviews {
      background: var(--black);
      padding: 90px 0;
  }

  .reviews-page {
      display: none;
      align-items: stretch;
  }

  .reviews-page.active {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
  }

  @media(max-width:767px) {
      .reviews-page.active {
          grid-template-columns: 1fr;
          gap: 1.2rem;
      }
  }

  .review-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: 16px;
      padding: 2rem;
      display: flex;
      flex-direction: column;
      transition: border-color .25s, box-shadow .25s, transform .25s;
      will-change: transform;
      height: 100%;
      min-height: 300px;
  }

  .review-card:hover {
      border-color: rgba(249, 177, 75, 0.35);
      transform: translateY(-4px);
      box-shadow: 0 10px 30px rgba(249, 177, 75, 0.08);
  }

  .review-text-wrap {
      flex: 1;
      display: flex;
      flex-direction: column;
  }

  .review-stars {
      color: var(--gold);
      font-size: 1rem;
      margin-bottom: .8rem;
      letter-spacing: 2px;
      flex-shrink: 0;
  }

  /* Contenedor de texto con altura fija de exactamente 4 líneas */
  .review-text-box {
      height: calc(0.92rem * 1.75 * 4);
      overflow: hidden;
      position: relative;
      flex-shrink: 0;
      margin-bottom: .5rem;
  }

  .review-text {
      color: var(--lightgray);
      font-size: .92rem;
      line-height: 1.75;
      font-style: italic;
      margin: 0;
  }

  /* Fade al final cuando el texto es largo */
  .review-text-box.has-more::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 2.5rem;
      background: linear-gradient(transparent, rgba(13, 13, 13, 0.97));
      pointer-events: none;
  }

  /* Caja expandida: sin altura fija, sin fade */
  .review-text-box.expanded {
      height: auto;
      overflow: visible;
  }

  .review-text-box.expanded::after {
      display: none;
  }

  .review-read-more {
      background: none;
      border: none;
      padding: 0;
      font-size: .78rem;
      font-weight: 700;
      color: var(--gold);
      cursor: pointer;
      letter-spacing: .3px;
      flex-shrink: 0;
      display: none;
      align-items: center;
      gap: 5px;
      margin-bottom: .8rem;
      opacity: .85;
      transition: opacity .2s;
  }

  .review-read-more.visible {
      display: inline-flex;
  }

  .review-read-more:hover {
      opacity: 1;
  }

  .review-read-more i {
      font-size: .65rem;
      transition: transform .25s;
  }

  .review-read-more.open i {
      transform: rotate(180deg);
  }

  .review-author {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: auto;
      padding-top: 1rem;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .review-avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      color: var(--black);
      font-size: .95rem;
      flex-shrink: 0;
  }

  .review-name {
      font-weight: 700;
      font-size: .88rem;
  }

  .review-role {
      font-size: .76rem;
      color: var(--gray);
      margin-top: 2px;
  }

  .reviews-controls {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1.2rem;
      margin-top: 2rem;
  }

  .rev-btn {
      background: transparent;
      border: 1px solid #333;
      color: var(--lightgray);
      border-radius: 50%;
      width: 38px;
      height: 38px;
      cursor: pointer;
      transition: .3s;
      font-size: .9rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
  }

  .rev-btn:hover {
      border-color: var(--gold);
      color: var(--gold);
  }

  .review-dots {
      display: flex;
      gap: 8px;
      align-items: center;
  }

  .rdot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #333;
      border: none;
      cursor: pointer;
      transition: background .3s, transform .3s, width .3s;
      padding: 0;
  }

  .rdot.active {
      background: var(--gold);
      transform: scale(1.2);
      width: 20px;
      border-radius: 4px;
  }

  /* MODAL */
  .modal-content {
      background: rgba(20, 20, 20, 0.92);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      color: var(--white);
  }

  .modal-header {
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      padding: 1.5rem 2rem 1rem;
  }

  .modal-body {
      padding: 1.5rem 2rem;
  }

  .modal-title {
      font-weight: 800;
      font-size: 1.1rem;
      letter-spacing: .5px;
  }

  .modal-logo {
      height: 32px;
      margin-right: 10px;
  }

  .btn-close {
      filter: invert(1) opacity(.5);
  }

  .form-control-dark {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: var(--white);
      border-radius: 10px;
      padding: 11px 14px;
      width: 100%;
      transition: .3s;
  }

  .form-control-dark:focus {
      outline: none;
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(249, 177, 75, 0.1);
      background: rgba(255, 255, 255, 0.07);
      color: var(--white);
  }

  .form-control-dark::placeholder {
      color: #555;
  }

  .form-label-dark {
      font-size: .82rem;
      color: var(--gray);
      letter-spacing: .5px;
      text-transform: uppercase;
      margin-bottom: .4rem;
      display: block;
  }

  .forgot-link {
      font-size: .82rem;
      color: var(--gray);
      text-decoration: none;
      transition: .2s;
  }

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

  .btn-modal-login {
      width: 100%;
      background: var(--gold);
      color: var(--black);
      font-weight: 700;
      border: none;
      border-radius: 30px;
      padding: 12px;
      font-size: 1rem;
      transition: .3s;
      cursor: pointer;
      margin-top: .5rem;
  }

  .btn-modal-login:hover {
      background: #e09d38;
      transform: translateY(-1px);
  }

  .modal-register-link {
      text-align: center;
      margin-top: 1rem;
      font-size: .85rem;
      color: var(--gray);
  }

  .modal-register-link a {
      color: var(--gold);
      text-decoration: none;
      font-weight: 600;
  }

  /* SOCIAL */
  .social-links {
      display: flex;
      gap: 12px;
      justify-content: center;
      margin-bottom: 1.2rem;
  }

  .social-link {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1px solid #333;
      color: var(--gray);
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transition: .3s;
      font-size: .95rem;
  }

  .social-link:hover {
      border-color: var(--gold);
      color: var(--gold);
  }

  /* FOOTER */
  footer {
      background: #050505;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      padding: 40px 0 20px;
  }

  footer p {
      color: var(--gray);
      font-size: .82rem;
  }

  footer a {
      color: var(--gray);
      text-decoration: none;
      transition: .2s;
  }

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

  .footer-divider {
      border-color: rgba(255, 255, 255, 0.06);
      margin: 1.5rem 0;
  }

  .footer-logo-wrap {
      text-align: center;
      margin-bottom: 1.2rem;
  }

  .footer-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: nowrap;
  }

  .footer-col {
      flex: 1;
      white-space: nowrap;
  }

  .footer-col-center {
      text-align: center;
  }

  .footer-col-right {
      text-align: right;
  }

  @media(max-width:767px) {
      .footer-row {
          flex-direction: column;
          align-items: center;
      }

      .footer-col,
      .footer-col-center,
      .footer-col-right {
          text-align: center;
          flex: unset;
          white-space: normal;
      }
  }

  /* FADE UP */
  .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity .6s ease, transform .6s ease;
  }

  .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
  }

  /* REGISTER PAGE */
  #register-page {
    min-height: 100vh;
    background: var(--black);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 3rem 1rem;
  }
  #reg-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
  }
  #register-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 40%, rgba(249,177,75,0.07) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
  }
  .register-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 460px;
    animation: fadeUp2 .7s .2s ease both;
  }
  .register-header {
    text-align: center;
    margin-bottom: 2rem;
  }
  .register-logo {
    height: 52px;
    margin-bottom: 1.2rem;
    filter: drop-shadow(0 0 18px rgba(249,177,75,0.35));
    animation: scaleIn .6s ease both;
  }
  .register-eyebrow {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(249,177,75,0.1);
    border: 1px solid rgba(249,177,75,0.22);
    border-radius: 30px; padding: 4px 14px;
    font-size: .7rem; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1rem;
  }
  .register-title {
    font-family: 'Taviraj', serif;
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 400;
    letter-spacing: .04em;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: .4rem;
  }
  .register-title span { color: var(--gold); font-style: italic; }
  .register-subtitle {
    font-size: .88rem;
    color: var(--gray);
    margin-top: .4rem;
  }
  .register-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 2.2rem 2rem;
    animation: fadeUp2 .7s .35s ease both;
  }
  .reg-field { margin-bottom: 1.3rem; }
  .reg-label {
    font-size: .72rem;
    color: var(--gray);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: .45rem;
    display: flex;
    align-items: center;
    gap: 7px;
  }
  .reg-label i { color: var(--gold); font-size: .72rem; }
  .reg-input-wrap { position: relative; }
  .reg-input {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: var(--white);
    padding: 12px 16px;
    outline: none;
    transition: border-color .25s, background .25s, box-shadow .25s;
    font-family: 'Segoe UI', sans-serif;
  }
  .reg-input::placeholder { color: rgba(255,255,255,0.2); }
  .reg-input:focus {
    border-color: var(--gold);
    background: rgba(255,255,255,0.07);
    box-shadow: 0 0 0 3px rgba(249,177,75,0.1);
  }
  .reg-eye {
    position: absolute; right: 14px; top: 50%;
    transform: translateY(-50%);
    background: none; border: none;
    color: var(--gray); cursor: pointer;
    font-size: .85rem; padding: 0;
    transition: color .2s;
  }
  .reg-eye:hover { color: var(--gold); }
  .reg-input.has-eye { padding-right: 42px; }
  .reg-validation {
    margin-top: .4rem;
    font-size: .78rem;
    min-height: 1rem;
  }
  .reg-validation .alert {
    background: rgba(249,177,75,0.08);
    border: 1px solid rgba(249,177,75,0.2);
    border-radius: 8px;
    color: var(--gold);
    padding: 6px 12px;
    font-size: .78rem;
    margin: 0;
  }
  .reg-validation .close,
  .reg-validation .btn-close { display: none; }
  .reg-captcha {
    display: flex;
    justify-content: center;
    margin: 1.4rem 0 1.2rem;
  }
  .reg-submit {
    width: 100%;
    background: var(--gold);
    color: var(--black);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: .5px;
    border: none;
    border-radius: 30px;
    padding: 13px;
    cursor: pointer;
    transition: background .25s, transform .25s, box-shadow .25s;
    box-shadow: 0 4px 20px rgba(249,177,75,0.3);
    text-transform: uppercase;
  }
  .reg-submit:hover {
    background: #e09d38;
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(249,177,75,0.4);
  }
  .reg-submit:active { transform: translateY(0); }
  .reg-divider {
    display: flex; align-items: center; gap: 12px;
    margin: 1.4rem 0;
  }
  .reg-divider::before, .reg-divider::after {
    content: ''; flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.08);
  }
  .reg-divider span {
    font-size: .72rem;
    color: var(--gray);
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
  }
  .register-footer {
    text-align: center;
    font-size: .83rem;
    color: var(--gray);
  }
  .register-footer a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: color .2s;
  }
  .register-footer a:hover { color: #e09d38; }
  @media(max-width: 480px) {
    .register-card { padding: 1.6rem 1.2rem; }
  }