*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --black: #0d0d0d;
    --dark: #141414;
    --card: #1c1c1c;
    --border: #2a2a2a;
    --yellow: #f5c518;
    --yellow-dim: rgba(245,197,24,0.12);
    --yellow-mid: rgba(245,197,24,0.3);
    --white: #f0ece4;
    --muted: #7a7a7a;
    --error: #e05252;
    --success: #4caf78;
  }
  html { scroll-behavior: smooth; }
  body {
    background: var(--black);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    min-height: 100vh;
    overflow-x: hidden;
  }
  body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    background-repeat: repeat; background-size: 180px;
    pointer-events: none; z-index: 999; opacity: 0.5;
  }

  /* NAV */
  nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    position: sticky; top: 0; z-index: 100;
    background: rgba(13,13,13,0.94);
    backdrop-filter: blur(12px);
  }
  .logo { font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: 1px; }
  .logo span { color: var(--yellow); }

  /* TAB BAR */
  .tab-bar {
    display: flex;
    border-bottom: 1px solid var(--border);
    background: var(--dark);
    position: sticky; top: 65px; z-index: 90;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .tab-bar::-webkit-scrollbar { display: none; }
  .tab-btn {
    flex: 1; min-width: 100px;
    padding: 14px 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px; font-weight: 500;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--muted);
    background: none; border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex; flex-direction: column; align-items: center; gap: 4px;
  }
  .tab-btn .tab-icon { font-size: 18px; }
  .tab-btn:hover { color: var(--white); }
  .tab-btn.active { color: var(--yellow); border-bottom-color: var(--yellow); }

  /* PAGE SECTIONS */
  .page { display: none; animation: fadeUp 0.4s ease both; }
  .page.active { display: block; }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes popIn {
    from { opacity: 0; transform: scale(0.6); }
    to   { opacity: 1; transform: scale(1); }
  }
  @keyframes pulse-ring {
    0%   { box-shadow: 0 0 0 0 rgba(245,197,24,0.45); }
    70%  { box-shadow: 0 0 0 14px rgba(245,197,24,0); }
    100% { box-shadow: 0 0 0 0 rgba(245,197,24,0); }
  }

  /* ======== HERO ======== */
  .hero {
    padding: 56px 28px 40px;
    position: relative; overflow: hidden;
  }
  .hero::after {
    content: '';
    position: absolute; top: -60px; right: -80px;
    width: 300px; height: 300px; border-radius: 50%;
    background: radial-gradient(circle, rgba(245,197,24,0.09) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-label {
    font-size: 11px; font-weight: 500; letter-spacing: 3px;
    text-transform: uppercase; color: var(--yellow); margin-bottom: 14px;
  }
  .hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 13vw, 82px);
    line-height: 0.92; color: var(--white); margin-bottom: 6px;
  }
  .hero h1 .accent { color: var(--yellow); }
  .hero-sub {
    font-size: 14px; color: var(--muted); line-height: 1.65;
    margin-top: 18px; max-width: 400px;
  }

  /* ======== SHARED FORM STYLES ======== */
  .steps {
    display: flex; padding: 0 28px; margin-bottom: 32px;
  }
  .step {
    display: flex; flex-direction: column; align-items: center;
    gap: 5px; flex: 1; position: relative;
  }
  .step:not(:last-child)::after {
    content: ''; position: absolute; top: 14px; left: 50%;
    width: 100%; height: 1px; background: var(--border); z-index: 0;
  }
  .step.active:not(:last-child)::after,
  .step.done:not(:last-child)::after { background: var(--yellow); }
  .step-dot {
    width: 28px; height: 28px; border-radius: 50%;
    border: 1.5px solid var(--border); background: var(--dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 500; color: var(--muted);
    position: relative; z-index: 1; transition: all 0.3s ease;
  }
  .step.active .step-dot {
    border-color: var(--yellow); background: var(--yellow);
    color: var(--black); box-shadow: 0 0 18px rgba(245,197,24,0.4);
  }
  .step.done .step-dot { border-color: var(--yellow); background: var(--yellow); color: var(--black); }
  .step-label { font-size: 10px; letter-spacing: 0.5px; color: var(--muted); text-transform: uppercase; }
  .step.active .step-label { color: var(--yellow); }

  .form-container { padding: 0 20px 72px; }
  .form-card {
    background: var(--card); border: 1px solid var(--border);
    border-radius: 20px; overflow: hidden;
  }
  .form-section { display: none; padding: 28px 24px; }
  .form-section.active { display: block; }
  .section-title {
    font-family: 'Bebas Neue', sans-serif; font-size: 22px;
    letter-spacing: 1px; margin-bottom: 5px;
  }
  .section-desc { font-size: 13px; color: var(--muted); margin-bottom: 24px; line-height: 1.6; }

  .field { margin-bottom: 20px; }
  label {
    display: block; font-size: 11px; font-weight: 500;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--muted); margin-bottom: 8px;
  }
  label .req { color: var(--yellow); margin-left: 2px; }
  input, select, textarea {
    width: 100%; background: var(--dark); border: 1.5px solid var(--border);
    border-radius: 12px; color: var(--white);
    font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 300;
    padding: 13px 15px; outline: none;
    transition: border-color 0.25s, box-shadow 0.25s; -webkit-appearance: none;
  }
  input::placeholder, textarea::placeholder { color: #444; }
  input:focus, select:focus, textarea:focus {
    border-color: var(--yellow); box-shadow: 0 0 0 3px var(--yellow-dim);
  }
  select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a7a7a' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 16px center;
    padding-right: 44px; cursor: pointer;
  }
  select option { background: var(--dark); }
  textarea { resize: vertical; min-height: 110px; line-height: 1.6; }

  .service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
  .service-card {
    border: 1.5px solid var(--border); border-radius: 14px;
    padding: 14px 12px; cursor: pointer;
    transition: all 0.2s ease; background: var(--dark);
    display: flex; flex-direction: column; gap: 6px; position: relative;
  }
  .service-card input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
  .service-card:has(input:checked) { border-color: var(--yellow); background: var(--yellow-dim); }
  .service-icon { font-size: 22px; }
  .service-name { font-size: 12px; font-weight: 500; color: var(--white); }

  .rating-row { display: flex; gap: 8px; margin-bottom: 20px; }
  .rating-btn {
    flex: 1; border: 1.5px solid var(--border); border-radius: 12px;
    background: var(--dark); color: var(--muted); font-size: 18px;
    padding: 12px 6px; cursor: pointer; transition: all 0.2s ease;
    display: flex; flex-direction: column; align-items: center; gap: 3px;
  }
  .rating-btn span { font-size: 9px; letter-spacing: 0.5px; text-transform: uppercase; }
  .rating-btn.selected { border-color: var(--yellow); background: var(--yellow-dim); color: var(--white); }

  .priority-row { display: flex; gap: 10px; margin-bottom: 20px; }
  .priority-btn {
    flex: 1; border: 1.5px solid var(--border); border-radius: 12px;
    background: var(--dark); color: var(--muted);
    font-size: 11px; font-weight: 500; letter-spacing: 1px;
    text-transform: uppercase; padding: 12px 6px; cursor: pointer;
    transition: all 0.2s ease; text-align: center;
  }
  .priority-btn[data-level="low"].selected  { border-color: #4caf78; background: rgba(76,175,120,0.12); color: #4caf78; }
  .priority-btn[data-level="medium"].selected { border-color: var(--yellow); background: var(--yellow-dim); color: var(--yellow); }
  .priority-btn[data-level="high"].selected { border-color: #e05252; background: rgba(224,82,82,0.12); color: #e05252; }

  .upload-zone {
    border: 1.5px dashed var(--border); border-radius: 14px;
    padding: 24px 18px; text-align: center; cursor: pointer;
    transition: all 0.2s ease; margin-bottom: 20px; background: var(--dark);
  }
  .upload-zone:hover { border-color: var(--yellow-mid); }
  .upload-zone input { display: none; }
  .upload-icon { font-size: 24px; margin-bottom: 8px; }
  .upload-text { font-size: 13px; color: var(--muted); line-height: 1.6; }
  .upload-text strong { color: var(--yellow); font-weight: 500; }

  .divider { height: 1px; background: var(--border); margin: 4px 0 24px; }
  .btn-row { display: flex; gap: 10px; margin-top: 6px; }
  .btn {
    flex: 1; padding: 15px; border-radius: 14px;
    font-family: 'DM Sans', sans-serif; font-size: 14px;
    font-weight: 500; letter-spacing: 0.5px; cursor: pointer; border: none; transition: all 0.2s ease;
  }
  .btn-secondary { background: transparent; border: 1.5px solid var(--border); color: var(--muted); }
  .btn-secondary:hover { border-color: var(--white); color: var(--white); }
  .btn-primary { background: var(--yellow); color: var(--black); font-weight: 700; }
  .btn-primary:hover { background: #ffd93d; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(245,197,24,0.25); }
  .btn-primary:active { transform: translateY(0); }
  .btn-primary:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

  .success-card { padding: 44px 24px; text-align: center; display: none; }
  .success-card.active { display: block; }
  .success-icon {
    width: 68px; height: 68px; background: rgba(76,175,120,0.15);
    border: 1.5px solid #4caf78; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 30px; margin: 0 auto 20px;
    animation: popIn 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
  }
  .success-card h2 { font-family: 'Bebas Neue', sans-serif; font-size: 30px; margin-bottom: 10px; }
  .success-card p { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 6px; }
  .ticket-badge {
    display: inline-block; background: var(--yellow-dim);
    border: 1px solid var(--yellow-mid); color: var(--yellow);
    font-size: 13px; font-weight: 500; letter-spacing: 1px;
    padding: 7px 16px; border-radius: 20px; margin: 14px 0 24px;
  }
  .btn-full {
    width: 100%; padding: 15px; border-radius: 14px;
    font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 700;
    cursor: pointer; border: 1.5px solid var(--border);
    background: transparent; color: var(--white); transition: all 0.2s ease;
  }
  .btn-full:hover { border-color: var(--yellow); color: var(--yellow); }

  .field-error { font-size: 11px; color: var(--error); margin-top: 5px; display: none; }
  .field-error.show { display: block; }
  input.invalid, select.invalid, textarea.invalid {
    border-color: var(--error); box-shadow: 0 0 0 3px rgba(224,82,82,0.12);
  }
  .char-counter { font-size: 11px; color: var(--muted); text-align: right; margin-top: 4px; }

  /* ======== IDENTITY VERIFICATION ======== */
  .verify-hero {
    padding: 56px 28px 32px;
    background: linear-gradient(160deg, rgba(245,197,24,0.06) 0%, transparent 55%);
    border-bottom: 1px solid var(--border);
  }
  .verify-hero .hero-label { font-size: 11px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--yellow); margin-bottom: 14px; }
  .verify-hero h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(44px, 11vw, 74px); line-height: 0.92; }
  .verify-hero h1 .accent { color: var(--yellow); }
  .verify-hero p { font-size: 14px; color: var(--muted); margin-top: 14px; line-height: 1.6; max-width: 420px; }

  .verify-steps-wrap { padding: 28px 20px 0; }

  /* OTP box */
  .otp-row { display: flex; gap: 10px; justify-content: center; margin-bottom: 20px; }
  .otp-box {
    width: 52px; height: 62px; border: 1.5px solid var(--border);
    border-radius: 14px; background: var(--dark);
    font-size: 26px; font-weight: 700; text-align: center;
    color: var(--white); font-family: 'Bebas Neue', sans-serif;
    caret-color: var(--yellow);
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .otp-box:focus { border-color: var(--yellow); box-shadow: 0 0 0 3px var(--yellow-dim); outline: none; }
  .otp-box.filled { border-color: var(--yellow-mid); }

  /* Status badge */
  .verify-status {
    display: flex; align-items: center; gap: 10px;
    padding: 14px 16px; border-radius: 14px;
    border: 1px solid var(--border); background: var(--dark);
    margin-bottom: 20px; font-size: 13px;
  }
  .verify-status .vs-icon { font-size: 22px; flex-shrink: 0; }
  .verify-status .vs-label { font-size: 10px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); }
  .verify-status .vs-val { font-size: 14px; font-weight: 500; color: var(--white); }
  .status-pending  { border-color: rgba(245,197,24,0.3); background: var(--yellow-dim); }
  .status-verified { border-color: rgba(76,175,120,0.35); background: rgba(76,175,120,0.08); }
  .status-failed   { border-color: rgba(224,82,82,0.35);  background: rgba(224,82,82,0.08); }

  .doc-type-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
  .doc-card {
    border: 1.5px solid var(--border); border-radius: 14px;
    padding: 16px 12px; cursor: pointer;
    transition: all 0.2s ease; background: var(--dark);
    display: flex; flex-direction: column; align-items: center;
    gap: 6px; text-align: center; position: relative;
  }
  .doc-card input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
  .doc-card:has(input:checked) { border-color: var(--yellow); background: var(--yellow-dim); }
  .doc-icon { font-size: 26px; }
  .doc-name { font-size: 11px; font-weight: 500; color: var(--white); letter-spacing: 0.3px; }

  .info-pill {
    display: flex; align-items: flex-start; gap: 10px;
    background: rgba(245,197,24,0.06); border: 1px solid var(--yellow-mid);
    border-radius: 12px; padding: 12px 14px;
    font-size: 12px; color: var(--muted); line-height: 1.6;
    margin-bottom: 20px;
  }
  .info-pill .ip-icon { flex-shrink: 0; font-size: 16px; margin-top: 1px; }

  /* Resend timer */
  .resend-row { text-align: center; margin-bottom: 20px; font-size: 12px; color: var(--muted); }
  .resend-btn { color: var(--yellow); background: none; border: none; cursor: pointer; font-size: 12px; font-family: 'DM Sans', sans-serif; font-weight: 500; text-decoration: underline; }
  .resend-btn:disabled { color: var(--muted); cursor: not-allowed; text-decoration: none; }

  /* ======== REVIEWS — ECSTATIC V2 ======== */
  .reviews-hero-v2 {
    position: relative;
    padding: 48px 24px 0;
    background: linear-gradient(160deg, rgba(245,197,24,0.10) 0%, rgba(245,197,24,0.02) 45%, transparent 70%);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    gap: 0;
    min-height: 280px;
  }
  .rhv2-content {
    flex: 1;
    padding-bottom: 28px;
    z-index: 2;
  }
  .rhv2-content h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(48px, 12vw, 80px); line-height: 0.90; margin-bottom: 10px; }
  .rhv2-content h1 .accent { color: var(--yellow); text-shadow: 0 0 40px rgba(245,197,24,0.4); }
  .rhv2-sub { font-size: 13px; color: var(--muted); line-height: 1.65; max-width: 260px; margin-bottom: 18px; }
  .rhv2-badges { display: flex; align-items: center; gap: 0; }
  .rhv2-badge { display: flex; flex-direction: column; align-items: center; padding: 0 14px 0 0; }
  .rhv2-badge:first-child { padding-left: 0; }
  .rhv2-badge-num { font-family: 'Bebas Neue', sans-serif; font-size: 26px; color: var(--yellow); line-height: 1; }
  .rhv2-badge-label { font-size: 9px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 1px; }
  .rhv2-badge-divider { width: 1px; height: 32px; background: var(--border); margin: 0 14px 0 0; }

  /* Lady image container */
  .rhv2-lady-wrap {
    position: relative;
    width: 155px;
    flex-shrink: 0;
    align-self: flex-end;
    z-index: 2;
  }
  .rhv2-lady {
    width: 155px;
    height: 220px;
    object-fit: cover;
    object-position: top center;
    display: block;
    border-radius: 18px 18px 0 0;
    filter: drop-shadow(0 -8px 24px rgba(245,197,24,0.25));
  }
  .rhv2-lady-glow {
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 120px; height: 120px;
    background: radial-gradient(circle, rgba(245,197,24,0.35) 0%, transparent 70%);
    pointer-events: none;
  }
  /* Floating badges */
  .rhv2-float-badge {
    position: absolute;
    background: var(--card);
    border: 1px solid var(--yellow-mid);
    color: var(--white);
    font-size: 10px; font-weight: 600;
    padding: 5px 10px; border-radius: 20px;
    white-space: nowrap; z-index: 3;
    animation: float-up 3s ease-in-out infinite;
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  }
  .rhv2-fb1 { top: 20px; right: 165px; animation-delay: 0s; }
  .rhv2-fb2 { top: 65px; right: 160px; animation-delay: 0.8s; color: var(--yellow); }
  .rhv2-fb3 { top: 110px; right: 160px; animation-delay: 1.6s; }
  @keyframes float-up { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }

  /* Confetti ticker */
  .confetti-strip {
    background: var(--yellow);
    color: var(--black);
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.5px;
    padding: 9px 0;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    gap: 0;
  }
  .confetti-strip span {
    display: inline-block;
    padding: 0 16px;
    animation: ticker-scroll 18s linear infinite;
  }
  @keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* Live indicator */
  .live-indicator {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 20px 0;
    font-size: 11px; color: var(--muted); letter-spacing: 0.5px;
  }
  .live-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 0 rgba(76,175,120,0.4);
    animation: pulse-live 2s infinite;
  }
  @keyframes pulse-live {
    0% { box-shadow: 0 0 0 0 rgba(76,175,120,0.4); }
    70% { box-shadow: 0 0 0 7px rgba(76,175,120,0); }
    100% { box-shadow: 0 0 0 0 rgba(76,175,120,0); }
  }

  /* Loading spinner */
  .rev-loading { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 40px 20px; color: var(--muted); font-size: 13px; }
  .rev-spinner { width: 28px; height: 28px; border: 2px solid var(--border); border-top-color: var(--yellow); border-radius: 50%; animation: spin 0.8s linear infinite; }
  @keyframes spin { to { transform: rotate(360deg); } }

  /* Success lady */
  .rev-success-lady { margin-top: 16px; display: flex; flex-direction: column; align-items: center; }

  /* Pop-in keyframe for review success */
  @keyframes pop-in { 0% { transform: scale(0.5); opacity: 0; } 80% { transform: scale(1.15); } 100% { transform: scale(1); opacity: 1; } }

  /* ======== OLD REVIEWS HERO (keep for reference, overridden) ======== */
  .reviews-hero { display: none; }

  /* Summary bar */
  .review-summary {
    margin: 0 20px 4px;
    background: var(--card); border: 1px solid var(--border);
    border-radius: 18px; padding: 22px 20px;
    display: flex; align-items: center; gap: 20px;
  }
  .rs-big { font-family: 'Bebas Neue', sans-serif; font-size: 64px; line-height: 1; color: var(--yellow); }
  .rs-right { flex: 1; }
  .rs-stars { font-size: 18px; letter-spacing: 3px; color: var(--yellow); margin-bottom: 4px; }
  .rs-label { font-size: 11px; color: var(--muted); letter-spacing: 0.5px; }
  .rs-bars { margin-top: 10px; display: flex; flex-direction: column; gap: 4px; }
  .rs-bar-row { display: flex; align-items: center; gap: 8px; }
  .rs-bar-label { font-size: 10px; color: var(--muted); width: 8px; text-align: right; }
  .rs-bar-track { flex: 1; height: 5px; background: var(--border); border-radius: 3px; overflow: hidden; }
  .rs-bar-fill { height: 100%; background: var(--yellow); border-radius: 3px; transition: width 0.8s ease; }
  .rs-bar-count { font-size: 10px; color: var(--muted); width: 20px; }

  /* Service filter */
  .review-filter {
    display: flex; gap: 8px; overflow-x: auto; padding: 20px 20px 4px;
    scrollbar-width: none;
  }
  .review-filter::-webkit-scrollbar { display: none; }
  .rev-pill {
    flex-shrink: 0; border: 1.5px solid var(--border); border-radius: 20px;
    background: var(--dark); color: var(--muted);
    font-size: 11px; font-weight: 500; letter-spacing: 1px;
    text-transform: uppercase; padding: 7px 16px;
    cursor: pointer; transition: all 0.2s ease;
  }
  .rev-pill:hover { border-color: var(--white); color: var(--white); }
  .rev-pill.active { border-color: var(--yellow); background: var(--yellow-dim); color: var(--yellow); }

  /* Review cards */
  .reviews-list { padding: 16px 20px 20px; display: flex; flex-direction: column; gap: 14px; }
  .review-card {
    background: var(--card); border: 1px solid var(--border);
    border-radius: 18px; padding: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .review-card:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,0.4); }
  .rev-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
  .rev-av {
    width: 42px; height: 42px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: 700; flex-shrink: 0;
  }
  .rev-meta { flex: 1; }
  .rev-name { font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: 0.5px; line-height: 1; }
  .rev-service {
    display: inline-block; font-size: 10px; font-weight: 500; letter-spacing: 1px;
    text-transform: uppercase; color: var(--muted);
    border: 1px solid var(--border); border-radius: 8px;
    padding: 2px 8px; margin-top: 3px;
  }
  .rev-stars { color: var(--yellow); font-size: 13px; letter-spacing: 2px; }
  .rev-date { font-size: 11px; color: var(--muted); }
  .rev-body { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 12px; }
  .rev-verified {
    display: inline-flex; align-items: center; gap: 5px;
    background: rgba(76,175,120,0.1); border: 1px solid rgba(76,175,120,0.3);
    color: #4caf78; font-size: 10px; font-weight: 500; letter-spacing: 1px;
    text-transform: uppercase; padding: 4px 10px; border-radius: 8px;
  }

  /* Write review form */
  .write-review-wrap { padding: 4px 20px 72px; }
  .write-review-toggle {
    width: 100%; padding: 15px; border-radius: 14px;
    font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 700;
    cursor: pointer; background: var(--yellow); color: var(--black);
    border: none; transition: all 0.2s ease; margin-bottom: 16px;
  }
  .write-review-toggle:hover { background: #ffd93d; transform: translateY(-1px); }

  .write-review-form {
    background: var(--card); border: 1px solid var(--border);
    border-radius: 20px; padding: 24px; display: none;
  }
  .write-review-form.open { display: block; }

  .star-picker { display: flex; gap: 10px; margin-bottom: 20px; }
  .star-pick {
    width: 44px; height: 44px; border: 1.5px solid var(--border);
    border-radius: 12px; background: var(--dark);
    font-size: 20px; cursor: pointer; transition: all 0.2s ease;
    display: flex; align-items: center; justify-content: center;
  }
  .star-pick.active { border-color: var(--yellow); background: var(--yellow-dim); }

  /* FOOTER */
  footer {
    padding: 28px 28px;
    border-top: 1px solid var(--border);
    text-align: center;
  }
  .footer-inner { font-size: 11px; color: var(--muted); letter-spacing: 0.5px; line-height: 1.8; }
  .footer-inner a { color: var(--yellow); text-decoration: none; }

  /* Toast */
  .toast-global {
    position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(80px);
    background: var(--card); border: 1px solid var(--border);
    border-radius: 40px; padding: 10px 22px;
    font-size: 13px; font-weight: 500; color: var(--white);
    z-index: 9999; transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0; white-space: nowrap; pointer-events: none;
  }
  .toast-global.show { transform: translateX(-50%) translateY(0); opacity: 1; }
  /* Lady placeholder (until image is added) */
  .rhv2-lady-placeholder {
    width: 155px; height: 220px;
    background: linear-gradient(160deg, rgba(245,197,24,0.15), rgba(245,197,24,0.05));
    border-radius: 18px 18px 0 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 8px;
    border: 2px dashed rgba(245,197,24,0.3);
  }
  .rhv2-lady-emoji { font-size: 52px; }
  .rhv2-lady-hint { font-size: 9px; color: var(--muted); text-align: center; line-height: 1.5; }
  .rhv2-lady-hint code { color: var(--yellow); font-size: 9px; }

  /* Review card animation */
  .rev-animate { animation: rev-slide-in 0.35s ease both; }
  @keyframes rev-slide-in { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

  /* Empty state */
  .rev-empty { text-align: center; padding: 40px 20px; color: var(--muted); font-size: 14px; }
