:root {
  --orange: #FF5500;
  --orange-light: #FF7733;
  --black: #0A0A0A;
  --black-2: #111111;
  --black-3: #1A1A1A;
  --white: #FFFFFF;
  --white-dim: rgba(255, 255, 255, 0.75);
  --white-muted: rgba(255, 255, 255, 0.35);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  min-height: 100vh;
}

/* ── PAGE LOADER ── */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  font-family: var(--font-display);
  font-size: 48px;
  letter-spacing: 4px;
  color: var(--white);
  animation: logoPulse 1s ease infinite alternate;
}

.loader-logo span {
  color: var(--orange);
}

@keyframes logoPulse {
  from {
    opacity: 0.3;
    transform: scale(0.97);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  background: rgba(10, 10, 10, 0.95);
  border-bottom: 1px solid rgba(255, 85, 0, 0.2);
  backdrop-filter: blur(12px);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--white);
  text-decoration: none;
}

.nav-logo span {
  color: var(--orange);
}

.nav-logo img {
  max-height: 40px;
  display: block;
}

.nav-back {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white-dim);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-back:hover {
  color: var(--orange);
}

.nav-back svg {
  width: 16px;
  height: 16px;
}

/* ── MAIN SPLIT LAYOUT ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: 72px;
}

/* ── LEFT PANEL ── */
.left-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 80px 60px;
  background: var(--black-2);
}

/* BG image with overlay */
.left-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=900&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  filter: brightness(0.18) saturate(0.4);
  z-index: 0;
}

/* Orange diagonal accent */
.left-panel::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--orange), transparent);
  z-index: 1;
}

/* Animated grid */
.left-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: linear-gradient(rgba(255, 85, 0, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 85, 0, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 60px 60px;
  }
}

/* Ghost watermark */
.left-watermark {
  position: absolute;
  bottom: -20px;
  left: -10px;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 180px;
  line-height: 1;
  color: rgba(255, 85, 0, 0.05);
  letter-spacing: -5px;
  pointer-events: none;
  user-select: none;
}

.left-content {
  position: relative;
  z-index: 2;
  max-width: 480px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 85, 0, 0.15);
  border: 1px solid rgba(255, 85, 0, 0.4);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 18px;
  margin-bottom: 32px;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: blink 1.4s ease infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.2
  }
}

.headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 5vw, 76px);
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.headline .hl {
  color: var(--orange);
}

.headline .stroke {
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.4);
  color: transparent;
}

.subheadline {
  font-size: 16px;
  color: var(--white-dim);
  line-height: 1.75;
  margin-bottom: 44px;
  max-width: 420px;
}

/* Feature list */
.features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}

.features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--white-dim);
  line-height: 1.5;
}

.feat-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  margin-top: 1px;
}

/* Stats row */
.stats-row {
  display: flex;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--orange);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-top: 4px;
}

/* ── RIGHT PANEL ── */
.right-panel {
  display: flex;
  justify-content: center;
  padding: 80px 52px;
  background: #111111;
  position: relative;
}

/* WHITE FORM CARD */
.form-card {
  width: 100%;
  max-width: 460px;
  background: #ffffff;
  border: none;
  border-top: 5px solid var(--orange);
  padding: 48px 44px;
  position: relative;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.18), 0 4px 24px rgba(255, 85, 0, 0.15);
  border-radius: 2px;
}

.form-card::before {
  content: '';
  position: absolute;
  top: -5px;
  right: 0;
  width: 60px;
  height: 5px;
  background: var(--black);
}

.form-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--orange), transparent);
}

.form-title {
  font-family: var(--font-display);
  font-size: 38px;
  color: #111111;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 6px;
}

.form-title span {
  color: var(--orange);
}

.form-sub {
  font-size: 14px;
  color: #666666;
  margin-bottom: 28px;
  line-height: 1.6;
}

/* INPUT GROUPS */
.input-group {
  margin-bottom: 20px;
}

.input-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 8px;
}

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrap svg {
  position: absolute;
  left: 14px;
  width: 16px;
  height: 16px;
  color: var(--orange);
  pointer-events: none;
  flex-shrink: 0;
  opacity: 0.75;
}

.input-wrap input,
.input-wrap select {
  width: 100%;
  background: #f8f8f8;
  border: 1.5px solid #e0e0e0;
  color: #111111;
  padding: 14px 16px 14px 42px;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  border-radius: 2px;
  appearance: none;
}

.input-wrap input::placeholder {
  color: #aaaaaa;
}

.input-wrap input:focus {
  border-color: var(--orange);
  background: #fff8f5;
  box-shadow: 0 0 0 3px rgba(255, 85, 0, 0.1);
}

.input-wrap input:focus+.focus-line,
.input-wrap select:focus+.focus-line {
  width: 100%;
}

.focus-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--orange);
  transition: width 0.35s ease;
}

/* Row of 2 inputs */
.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* SUBMIT BUTTON */
.submit-btn {
  width: 100%;
  margin-top: 8px;
  background: var(--orange);
  color: var(--white);
  border: none;
  cursor: pointer;
  padding: 18px 32px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(255, 85, 0, 0.4);
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.5s ease;
}

.submit-btn:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(255, 85, 0, 0.6);
}

.submit-btn:hover::before {
  left: 100%;
}

.submit-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.form-footer {
  text-align: center;
  margin-top: 18px;
  font-size: 12px;
  color: #888888;
  line-height: 1.6;
}

.form-footer a {
  color: var(--orange);
  text-decoration: none;
}

.form-footer a:hover {
  text-decoration: underline;
}

/* ── SUCCESS MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  width: 100%;
  max-width: 480px;
  background: var(--black-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 48px 40px;
  text-align: center;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
  transform: scale(0.92) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.modal-overlay.open .modal-card {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white-muted);
  font-size: 22px;
  line-height: 1;
  transition: color 0.3s;
}

.modal-close:hover {
  color: var(--orange);
}

.success-ring {
  width: 80px;
  height: 80px;
  border: 3px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 36px;
  animation: ringPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes ringPop {
  from {
    transform: scale(0);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-title {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.modal-title span {
  color: var(--orange);
}

.modal-desc {
  font-size: 15px;
  color: var(--white-dim);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* DIGITAL PASS */
.digital-pass {
  background: var(--black-3);
  border: 1px solid rgba(255, 85, 0, 0.3);
  padding: 28px 24px 20px;
  margin-bottom: 28px;
  position: relative;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

/* Perforation line */
.digital-pass::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(255, 85, 0, 0.3) 0, rgba(255, 85, 0, 0.3) 8px, transparent 8px, transparent 14px);
}

.pass-top {
  margin-bottom: 20px;
}

.pass-gym-name {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 4px;
  color: var(--orange);
  margin-bottom: 4px;
}

.pass-type {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--white-muted);
  text-transform: uppercase;
}

.pass-bottom {
  padding-top: 20px;
}

.pass-label-txt {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--white-muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.pass-name {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
  letter-spacing: 2px;
}

.pass-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
}

.pass-meta-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--white-muted);
  text-transform: uppercase;
}

.pass-meta-val {
  font-size: 13px;
  font-weight: 700;
  color: var(--white-dim);
  margin-top: 2px;
}

/* Barcode */
.barcode {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  height: 40px;
  margin-top: 16px;
}

.bar {
  background: var(--white);
  height: 100%;
  width: 3px;
  border-radius: 1px;
}

.bar.thin {
  width: 1.5px;
  height: 75%;
}

.bar.thick {
  width: 5px;
}

.bar.gap {
  background: transparent;
  width: 4px;
}

/* Modal CTA */
.modal-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  padding: 16px 36px;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: background 0.3s, transform 0.2s;
  border: none;
  cursor: pointer;
}

.modal-btn:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
}

/* ── CONTACT INFO BAR ── */
.contact-info-bar {
  background: #0A0A0A;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-bar-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 52px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}

.contact-bar-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 40px 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.contact-bar-item--mid {
  padding: 0 40px;
}

.contact-bar-item--last {
  padding: 0 0 0 40px;
  border-right: none;
}

.cbi-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: rgba(255, 85, 0, 0.1);
  border: 1.5px solid rgba(255, 85, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.cbi-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 85, 0, 0.8);
  margin-bottom: 5px;
}

.cbi-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: #fff;
  letter-spacing: 1px;
  line-height: 1.1;
  display: block;
  text-decoration: none;
}

.cbi-link {
  transition: color 0.3s;
  font-size: 26px;
}

.cbi-link:hover {
  color: var(--orange);
}

.cbi-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 2px;
}

/* ── RESPONSIVE ── */
/* Tablet */
@media (max-width: 960px) {
  nav {
    padding: 14px 24px;
  }

  .nav-back span {
    display: none;
  }

  /* Stack panels as column — form (right-panel) first, info (left-panel) second */
  .split {
    display: flex;
    flex-direction: column;
    min-height: unset;
    padding-top: 60px;
  }

  /* FORM PANEL — comes first on mobile */
  .right-panel {
    order: 1;
    padding: 36px 24px 40px;
    min-height: unset;
    background: #111111;
  }

  /* INFO PANEL — comes second on mobile */
  .left-panel {
    order: 2;
    padding: 52px 24px;
    min-height: unset;
  }

  .left-watermark {
    font-size: 110px;
  }

  .hero-left-accent {
    display: none;
  }

  .stats-row {
    gap: 24px;
    flex-wrap: wrap;
  }

  /* Form card full width on tablet */
  .form-card {
    max-width: 100%;
    padding: 36px 28px;
  }
}

/* Mobile */
@media (max-width: 600px) {

  /* Nav */
  nav {
    padding: 12px 16px;
  }

  .nav-logo {
    font-size: 22px;
  }

  .nav-back {
    font-size: 11px;
    padding: 7px 12px;
    letter-spacing: 1px;
  }

  .nav-back svg {
    display: none;
  }

  /* Split — form fills screen on load */
  .split {
    display: flex;
    flex-direction: column;
    padding-top: 56px;
  }

  /* FORM PANEL — appears first (top) on mobile */
  .right-panel {
    order: 1;
    padding: 24px 16px 32px;
    background: #111111;
  }

  /* INFO PANEL — appears second (bottom) on mobile */
  .left-panel {
    order: 2;
    padding: 40px 16px;
  }

  /* Form card */
  .form-card {
    max-width: 100%;
    padding: 28px 20px 24px;
    clip-path: none;
    border-radius: 4px;
  }

  .form-card::before {
    display: none;
  }

  .form-card::after {
    display: none;
  }

  .form-title {
    font-size: 30px;
  }

  .form-sub {
    font-size: 13px;
    margin-bottom: 20px;
  }

  /* Inputs */
  .input-group {
    margin-bottom: 16px;
  }

  .input-group label {
    font-size: 10px;
  }

  .input-wrap input {
    padding: 13px 14px 13px 38px;
    font-size: 14px;
  }

  .submit-btn {
    padding: 16px 20px;
    font-size: 13px;
  }

  .form-footer {
    font-size: 11px;
    margin-top: 14px;
  }

  /* Hero left info section */
  .hero-title {
    font-size: 48px;
  }

  .hero-sub {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .badge {
    font-size: 10px;
    padding: 7px 14px;
    margin-bottom: 20px;
  }

  .features li {
    font-size: 13px;
    gap: 10px;
  }

  .fi {
    width: 22px;
    height: 22px;
    font-size: 11px;
    flex-shrink: 0;
  }

  .stats-row {
    gap: 16px;
    padding-top: 24px;
    flex-wrap: wrap;
  }

  .stat-num {
    font-size: 34px;
  }

  .stat-lbl {
    font-size: 10px;
  }

  .left-watermark {
    font-size: 72px;
  }

  /* Contact bar — single column on mobile */
  .contact-bar-grid {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }

  .contact-bar-item,
  .contact-bar-item--mid,
  .contact-bar-item--last {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 20px 0;
  }

  .contact-bar-item:last-child,
  .contact-bar-item--last {
    border-bottom: none;
  }

  /* Reviews */
  #reviews {
    padding: 60px 16px;
  }

  .reviews-title {
    font-size: 38px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
    padding: 40px 16px !important;
  }

  .footer-bottom-bar {
    padding: 18px 16px !important;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* Modal */
  .modal-card {
    padding: 32px 20px;
  }

  .modal-title {
    font-size: 36px;
  }

  .pass-gym-name {
    font-size: 22px;
  }

  .pass-name {
    font-size: 20px;
  }
}

/* Very small phones */
@media (max-width: 380px) {
  .hero-title {
    font-size: 40px;
  }

  .form-title {
    font-size: 26px;
  }

  .submit-btn {
    font-size: 12px;
    letter-spacing: 2px;
  }
}

/* ── TESTIMONIALS PANEL ── */
.testimonials-panel {
  background: var(--black-2);
  padding: 80px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonials-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 10%, rgba(255, 85, 0, 0.06) 0%, transparent 60%), radial-gradient(ellipse at 20% 90%, rgba(255, 85, 0, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.tpanel-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
  display: block;
}

.tpanel-title {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 6px;
}

.tpanel-title span {
  color: var(--orange);
}

.tpanel-sub {
  font-size: 13px;
  color: var(--white-muted);
  margin-bottom: 36px;
  line-height: 1.6;
}

/* Individual review card */
.tcard {
  background: var(--black-3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 22px 22px 18px;
  margin-bottom: 14px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  animation: tcardIn 0.6s ease both;
}

.tcard:nth-child(1) {
  animation-delay: 0.1s;
}

.tcard:nth-child(2) {
  animation-delay: 0.2s;
}

.tcard:nth-child(3) {
  animation-delay: 0.3s;
}

.tcard:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes tcardIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.tcard:hover {
  border-color: rgba(255, 85, 0, 0.35);
  transform: translateX(-4px);
}

/* Orange quote mark */
.tcard-quote {
  font-family: Georgia, serif;
  font-size: 52px;
  line-height: 0.6;
  color: rgba(255, 85, 0, 0.25);
  float: left;
  margin-right: 8px;
  margin-top: 6px;
}

.tcard-text {
  font-size: 13.5px;
  color: var(--white-dim);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 14px;
  overflow: hidden;
}

.tcard-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tcard-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tcard-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--black);
  flex-shrink: 0;
}

.tcard-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}

.tcard-meta {
  font-size: 11px;
  color: var(--white-muted);
  letter-spacing: 0.5px;
  margin-top: 1px;
}

.tcard-stars {
  font-size: 13px;
  color: var(--orange);
  letter-spacing: 1px;
}

/* Google badge */
.tpanel-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.g-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--white-muted);
  text-transform: uppercase;
}

.g-rating {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--orange);
}

.g-label {
  font-size: 12px;
  color: var(--white-muted);
}

/*REVIEWS SECTION*/
@keyframes rtFwd {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes rtRev {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.rt1:hover,
.rt2:hover {
  animation-play-state: paused;
}

.rcard {
  flex: 0 0 360px;
  background: #1A1A1A;
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 26px 26px 20px;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: border-color 0.3s;
  position: relative;
}

.rcard:hover {
  border-color: rgba(255, 85, 0, 0.4);
}

.rc-g {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  padding: 3px 8px;
  text-transform: uppercase;
}

.rc-s {
  color: #FF5500;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.rc-p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 18px;
}

.rc-a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rc-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #FF5500;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 17px;
  color: #000;
}

.rc-n {
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}

.rc-m {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 2px;
}