    :root {
      --bg: var(--mv-bg);
      --surface: rgba(12, 20, 40, 0.75);
      --surface-hover: rgba(16, 26, 50, 0.85);
      --border: var(--mv-border);
      --border-hover: rgba(110, 193, 255, 0.25);
      --primary: var(--mv-accent);
      --accent: var(--mv-accent);
      --text: var(--mv-text-soft);
      --muted: var(--mv-text-3);
      --green: var(--mv-success);
      --red: var(--mv-danger);
      --amber: var(--mv-warning);
      --radius: 14px;
      --radius-sm: 10px;}

    /* Pe paginile de profil ale specialistilor continutul sta INAUNTRUL lui <main>.
       Global, `.page` face main un grid container (style.css) si layout-fix.css ii pune
       max-width/padding — asa `.page-wrap` devine element de grila si se ingusteaza,
       iar cardurile ies mici. Neutralizam complet main-ul: wrapper transparent, block,
       latime plina — ca sa arate identic cu pagina de psiholog (unde main e ascuns). */
    main.container.page, main.page, main {
      display: block !important;
      max-width: none !important;
      width: 100% !important;
      padding: 0 !important;
      margin: 0 !important;
      gap: 0 !important;}

    /* === Space background === */
    .space-bg { position: fixed; inset: 0; z-index: 0; pointer-events: none; background: linear-gradient(180deg, var(--mv-bg) 0%, var(--mv-bg) 40%, var(--mv-bg) 100%); overflow: hidden;}
    .space-bg .star { position: absolute; border-radius: 50%; background: var(--mv-text);}
    .space-bg .star--sm { width: 1px; height: 1px; opacity: 0.3; animation: tw 3s ease-in-out infinite;}
    .space-bg .star--md { width: 1.5px; height: 1.5px; opacity: 0.5; animation: tw 4s ease-in-out infinite;}
    .space-bg .star--lg { width: 2px; height: 2px; opacity: 0.7; animation: tw 5s ease-in-out infinite; box-shadow: 0 0 4px rgba(150,220,255,0.5);}
    @keyframes tw { 0%,100% { opacity: 0.15;} 50% { opacity: 1;} }
    .space-bg .nebula { position: absolute; border-radius: 50%; filter: blur(60px); animation: neb 22s ease-in-out infinite;}
    @keyframes neb { 0%,100% { transform: scale(1); opacity: 0.7;} 50% { transform: scale(1.12); opacity: 1;} }

    /* === Layout === */
    /* Latime garantata: daca vreun parinte (main) ramane grid, ne intindem pe toate
       coloanele si pe toata latimea, ca sa nu fim inghesuiti intr-o singura coloana. */
    .page-wrap { position: relative; z-index: 1; width: 100%; max-width: 1300px; margin: 0 auto; padding: 24px 30px 60px;
      grid-column: 1 / -1; justify-self: stretch; align-self: start;}

    /* === Profile Banner (coach-style) === */
    .cp-banner {
      position: relative; width: 100%; padding-top: 60px; height: 280px;
      overflow: hidden; background: var(--mv-bg);}
    .cp-banner-inner {
      position: relative; z-index: 2; max-width: 1200px; margin: 0 auto;
      padding: 0 40px; display: flex; align-items: flex-end; height: 100%;}
    .cp-photo {
      flex-shrink: 0; width: 155px; height: auto; overflow: hidden;
      margin-right: 36px; margin-bottom: -1px; border-radius: 8px 8px 0 0;}
    .cp-photo img { width: 100%; height: auto; display: block;}
    .cp-info { flex: 1; min-width: 0; padding-bottom: 28px;}
    .cp-name {
      font-size: clamp(2.2rem, 4.5vw, 3.2rem); font-weight: 800; color: var(--mv-text);
      margin: 0 0 6px; line-height: 1.05;
      animation: cp-enter 0.7s cubic-bezier(0.16,1,0.3,1) both;}
    .cp-subtitle {
      font-size: 0.9rem; color: var(--mv-text); margin: 0 0 18px;
      font-weight: 400; font-style: italic;
      animation: cp-enter 0.7s cubic-bezier(0.16,1,0.3,1) 0.06s both;}
    .cp-meta {
      display: flex; align-items: center; gap: 10px;
      font-size: 0.82rem; color: var(--mv-text); font-weight: 500; margin: 0;
      animation: cp-enter 0.7s cubic-bezier(0.16,1,0.3,1) 0.12s both;}
    .cp-meta-dot { color: var(--mv-text-2); font-size: 0.5rem;}
    .cp-cta {
      flex-shrink: 0; display: flex; flex-direction: column; align-items: flex-end;
      gap: 8px; padding-bottom: 32px;
      animation: cp-enter 0.7s cubic-bezier(0.16,1,0.3,1) 0.18s both;}
    .cp-cta-btn {
      display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; background: var(--mv-accent);
      color: var(--mv-text-inverse); border: none; border-radius: 10px;
      font-weight: 700; font-size: 0.84rem; cursor: pointer; text-decoration: none;
      transition: transform 0.25s cubic-bezier(0.16,1,0.3,1), box-shadow 0.25s ease;}
    .cp-cta-btn:hover {}
    .cp-price { font-size: 0.78rem; color: var(--mv-accent); font-weight: 500;}
    @keyframes cp-enter {
      from { opacity: 0; transform: translateY(16px);}
      to { opacity: 1; transform: translateY(0);}
    }

    @media (max-width: 900px) {
      .cp-banner { height: auto; padding-top: 72px; padding-bottom: 22px;}
      .cp-banner-inner { padding: 0 24px; align-items: center; height: auto;}
      .cp-photo { width: 140px; height: auto; margin-right: 24px;}
      .cp-cta { display: none;}
    }
    @media (max-width: 600px) {
      .cp-banner { height: auto; padding-top: 64px; padding-bottom: 16px;}
      .cp-banner-inner { padding: 0 16px; align-items: center; height: auto; gap: 14px;}
      .cp-photo { width: 88px; height: auto; margin-right: 4px; border-radius: 12px;}
      .cp-name { font-size: 1.3rem; line-height: 1.15;}
      .cp-subtitle { font-size: 0.78rem; margin-bottom: 12px;}
      .cp-meta { gap: 6px 10px; font-size: 0.68rem; flex-wrap: wrap;} .cp-info { padding-bottom: 0;}
    }

    /* === Section card === */
    .s-card {
      background: var(--surface); border: 1px solid var(--border);
      border-radius: var(--radius); padding: 22px; margin-bottom: 16px;}

    .s-head {
      display: flex; align-items: center; gap: 10px; margin-bottom: 14px;}
    .s-icon {
      width: 32px; height: 32px; border-radius: 8px;
      background: rgba(110,193,255,0.1); display: flex; align-items: center; justify-content: center;
      color: var(--primary); font-size: 0.85rem; flex-shrink: 0;}
    .s-title { font-size: 1rem; font-weight: 700;}

    .s-text { color: var(--muted); font-size: 0.88rem; line-height: 1.7;}

    /* === Main layout: left col (video + bio) / right col (calendar) === */
    .main-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; align-items: start;}
    .main-layout > .s-card { margin-bottom: 0;}
    .left-col { display: flex; flex-direction: column; gap: 16px;}
    .left-col > .s-card { margin-bottom: 0; flex: 0 0 auto;}
    .right-col > .s-card { margin-bottom: 0;}

    @media (max-width: 768px) {
      .main-layout { grid-template-columns: 1fr;}
    }

    /* === Specialties === */
    .spec-list { display: flex; flex-wrap: wrap; gap: 8px;}
    .spec-tag {
      display: inline-flex; align-items: center; gap: 5px;
      padding: 6px 14px; background: rgba(77,207,207,0.08);
      border: 1px solid rgba(77,207,207,0.2); border-radius: 20px;
      font-size: 0.78rem; font-weight: 600; color: var(--accent);
      transition: background 0.2s;}
    .spec-tag:hover { background: rgba(77,207,207,0.15);}
    .spec-tag i { font-size: 0.65rem; color: var(--green);}
    .spec-divider { height: 1px; background: var(--border); margin-bottom: 14px;}

    /* === Video === */
    .video-wrap {
      position: relative; border-radius: var(--radius-sm); overflow: hidden;
      aspect-ratio: 16/9; background: var(--mv-elev-1);}
    .video-wrap iframe, .video-wrap video { width: 100%; height: 100%; border: none; display: block;}
    .video-placeholder {
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      height: 100%; color: var(--muted); gap: 8px;}
    .video-placeholder i { font-size: 2rem;}
    .video-placeholder span { font-size: 0.82rem;}
    body.modal-open { overflow: hidden;}
    body.modal-open header.nav,
    body.modal-open .cp-banner,
    body.modal-open .space-bg,
    body.modal-open .page-wrap { visibility: hidden;}
    .booking-footer { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: center;}

    .total-box {
      text-align: center; padding: 16px;
      background: rgba(77,207,207,0.06); border: 1px solid rgba(77,207,207,0.15);
      border-radius: var(--radius-sm);}
    .total-label { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; margin-bottom: 4px;}

    /* === Reviews === */
    .reviews-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px;}
    .reviews-summary { display: flex; align-items: center; gap: 8px; padding: 6px 12px; background: var(--mv-elev-1); border-radius: 8px;}
    .reviews-avg { font-size: 1.1rem; font-weight: 800; color: var(--accent);}
    .reviews-stars { display: flex; gap: 1px; color: var(--mv-warning); font-size: 0.7rem;}
    .reviews-count { font-size: 0.72rem; color: var(--muted);}

    .review-card { padding: 14px 0; border-bottom: 1px solid var(--mv-border-soft);}
    .review-card:last-child { border-bottom: none; padding-bottom: 0;}
    .review-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px;}
    .review-author { display: flex; align-items: center; gap: 8px;}
    .review-avatar {
      width: 30px; height: 30px; border-radius: 50%;
      background: linear-gradient(135deg, var(--accent), var(--primary));
      display: flex; align-items: center; justify-content: center;
      font-weight: 700; font-size: 0.7rem; color: var(--mv-text-inverse); flex-shrink: 0;}
    .review-name { font-weight: 600; font-size: 0.85rem;}
    .review-date { font-size: 0.7rem; color: var(--muted);}
    .review-rating { display: flex; gap: 1px; color: var(--mv-warning); font-size: 0.7rem;}
    .review-text { font-size: 0.85rem; line-height: 1.5; color: var(--muted); margin-top: 4px;}

    .review-form { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--border);}
    .review-form-title { font-size: 0.9rem; font-weight: 600; margin-bottom: 10px;}
    .star-input { display: flex; gap: 4px; margin-bottom: 10px;}
    .star-input i { font-size: 1.1rem; cursor: pointer; color: var(--mv-text-2); transition: color 0.15s, transform 0.15s;}
    .star-input i:hover, .star-input i.active { color: var(--mv-warning);}

    .review-textarea {
      width: 100%; min-height: 70px; padding: 10px 12px;
      background: var(--mv-elev-1); border: 1px solid var(--border);
      border-radius: 10px; color: var(--text); font-family: inherit; font-size: 0.85rem;
      resize: vertical; transition: border-color 0.2s;}
    .review-textarea:focus { outline: none; border-color: var(--primary);}
    .review-textarea::placeholder { color: var(--muted);}

    .review-submit {
      margin-top: 8px; padding: 10px 22px; background: var(--mv-accent);
      border: none; border-radius: 8px; color: var(--mv-text-inverse); font-weight: 700;
      font-size: 0.82rem; cursor: pointer; transition: opacity 0.2s, transform 0.15s;}
    .review-submit:hover { opacity: 0.9;}
    .review-submit:disabled { opacity: 0.4; cursor: not-allowed; transform: none;}

    .review-empty { text-align: center; padding: 20px 0; color: var(--muted); font-size: 0.85rem;}
    .review-login-msg { text-align: center; padding: 14px; background: var(--mv-elev-1); border-radius: 10px; color: var(--muted); font-size: 0.82rem; margin-top: 14px;}
    .review-login-msg a { color: var(--primary); text-decoration: none; font-weight: 600;}
    .review-sent-msg { text-align: center; padding: 14px; background: rgba(16,185,129,0.06); border: 1px solid rgba(16,185,129,0.15); border-radius: 10px; color: var(--green); font-size: 0.82rem; margin-top: 14px;}

    /* === Responsive === */
    @media (max-width: 768px) {
      .page-wrap { padding: 16px 14px 40px;}
      .profile-header { flex-direction: column; text-align: center; padding: 20px 16px;}
      .ph-top { justify-content: center;}
      .ph-stats { justify-content: center;}
      .price-bar { flex-direction: column; gap: 12px; text-align: center; padding: 16px;}
      .two-col { grid-template-columns: 1fr;}
      .booking-footer { grid-template-columns: 1fr;}
      .reviews-header { flex-direction: column; gap: 8px; align-items: flex-start;}
    }

    @media (max-width: 400px) {
    }
