
    /* ===== RESET & BASE ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    :root {
      --coral:       #E07A5F;
      --coral-hover: #c9694f;
      --coral-pale:  #FEF3F0;
      --teal:        #5BA4A4;
      --teal-dark:   #4a8f8f;
      --teal-light:  #EEF6F6;
      --green:       #81B29A;
      --text-dark:   #1A1A2E;
      --text-mid:    #4A5568;
      --text-light:  #718096;
      --bg:          #F9FAFB;
      --white:       #FFFFFF;
      --border:      #E2E8F0;
      --shadow-sm:   0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
      --shadow-md:   0 4px 16px rgba(0,0,0,0.08);
      --shadow-lg:   0 12px 40px rgba(0,0,0,0.10);
      --radius:      12px;
      --radius-lg:   20px;
      --font:        'Inter', sans-serif;
    }

    body {
      font-family: var(--font);
      color: var(--text-dark);
      background: var(--white);
      font-size: 16px;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }

    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }

    .container {
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ===== HEADER ===== */
    .site-header {
      background: var(--white);
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: var(--shadow-sm);
    }

    .header-inner {
      display: flex;
      align-items: center;
      height: 64px;
      gap: 0;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
      margin-right: auto;
    }

    .logo-mark {
      width: 34px;
      height: 34px;
      background: var(--coral-pale);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .logo-mark svg { width: 17px; height: 17px; }

    .logo-text strong {
      display: block;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.03em;
      color: var(--text-dark);
      line-height: 1.2;
    }

    .logo-text span {
      font-size: 9px;
      color: var(--text-light);
    }

    .header-nav {
      display: flex;
      gap: 2px;
      margin: 0 16px;
    }

    .header-nav a {
      font-size: 13px;
      font-weight: 500;
      color: var(--text-mid);
      padding: 6px 10px;
      border-radius: 6px;
      white-space: nowrap;
      transition: color 0.2s, background 0.2s;
    }

    .header-nav a:hover,
    .header-nav a.active { color: var(--coral); background: var(--coral-pale); }

    .header-right {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-shrink: 0;
    }

    .header-phone {
      text-align: right;
      line-height: 1.2;
    }

    .header-phone strong {
      display: block;
      font-size: 14px;
      font-weight: 700;
    }

    .header-phone span {
      font-size: 11px;
      color: var(--text-light);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 10px 20px;
      border-radius: 50px;
      font-family: var(--font);
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      border: none;
      transition: all 0.2s;
      white-space: nowrap;
    }

    .btn-coral {
      background: var(--coral);
      color: #fff;
    }

    .btn-coral:hover {
      background: var(--coral-hover);
      transform: translateY(-1px);
      box-shadow: 0 4px 14px rgba(224,122,95,0.35);
    }

    .btn-outline {
      background: transparent;
      color: var(--text-dark);
      border: 1.5px solid var(--border);
    }

    .btn-outline:hover {
      border-color: var(--coral);
      color: var(--coral);
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 6px;
      margin-left: 12px;
    }

    .hamburger span {
      width: 22px;
      height: 2px;
      background: var(--text-dark);
      border-radius: 2px;
      transition: all 0.3s;
    }

    /* ===== MOBILE NAV ===== */
    .mobile-nav {
      display: none;
      position: fixed;
      top: 64px;
      left: 0; right: 0; bottom: 0;
      background: var(--white);
      z-index: 99;
      padding: 16px 24px 32px;
      flex-direction: column;
      gap: 2px;
      overflow-y: auto;
    }

    .mobile-nav.open { display: flex; }

    .mobile-nav a {
      display: block;
      padding: 13px 16px;
      font-size: 15px;
      font-weight: 600;
      border-radius: var(--radius);
      border-bottom: 1px solid var(--border);
      color: var(--text-dark);
      transition: color 0.2s, background 0.2s;
    }

    .mobile-nav a:hover { color: var(--coral); background: var(--coral-pale); }

    .mobile-nav-phone {
      margin-top: 20px;
      padding: 20px;
      background: var(--bg);
      border-radius: var(--radius);
      text-align: center;
    }

    .mobile-nav-phone strong { font-size: 20px; font-weight: 800; display: block; margin-bottom: 4px; }
    .mobile-nav-phone span { font-size: 12px; color: var(--text-light); }

    /* ===== BREADCRUMB ===== */
    .breadcrumb {
      padding: 14px 0;
      border-bottom: 1px solid var(--border);
      background: var(--white);
    }

    .breadcrumb-list {
      display: flex;
      align-items: center;
      gap: 6px;
      list-style: none;
      flex-wrap: wrap;
    }

    .breadcrumb-list li {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      color: var(--text-light);
    }

    .breadcrumb-list a {
      color: var(--text-light);
      transition: color 0.2s;
    }

    .breadcrumb-list a:hover { color: var(--coral); }

    .breadcrumb-list li:last-child { color: var(--text-dark); font-weight: 500; }

    .breadcrumb-sep { font-size: 11px; }

    /* ===== REVIEW HERO ===== */
    .review-hero {
      background: linear-gradient(135deg, #FEF3F0 0%, #EEF6F6 100%);
      padding: 56px 0 48px;
    }

    .review-hero-inner {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 48px;
      align-items: center;
    }

    .review-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--coral-pale);
      border: 1px solid rgba(224,122,95,0.25);
      color: var(--coral);
      font-size: 12px;
      font-weight: 600;
      padding: 5px 12px;
      border-radius: 50px;
      margin-bottom: 16px;
    }

    .review-tag svg { width: 12px; height: 12px; }

    .review-hero h1 {
      font-size: 34px;
      font-weight: 800;
      line-height: 1.2;
      color: var(--text-dark);
      margin-bottom: 12px;
    }

    .review-hero-meta {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
      margin-bottom: 20px;
    }

    .review-author {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .review-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, #fde8de, #d4eef1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      flex-shrink: 0;
      overflow: hidden;
    }

    .review-avatar img { width: 100%; height: 100%; object-fit: cover; }

    .review-author-info strong {
      display: block;
      font-size: 15px;
      font-weight: 700;
    }

    .review-author-info span {
      font-size: 13px;
      color: var(--text-mid);
    }

    .review-date {
      font-size: 13px;
      color: var(--text-light);
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .review-meta-tags {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .meta-tag {
      background: var(--white);
      border: 1px solid var(--border);
      color: var(--text-mid);
      font-size: 12px;
      font-weight: 500;
      padding: 4px 10px;
      border-radius: 50px;
    }

    .review-hero-img {
      width: 300px;
      height: 220px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      flex-shrink: 0;
      background: linear-gradient(135deg, #fde8de 0%, #d4eef1 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 56px;
    }

    .review-hero-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* ===== MAIN LAYOUT ===== */
    .review-main {
      padding: 56px 0 80px;
      background: var(--white);
    }

    .review-layout {
      display: grid;
      grid-template-columns: 1fr 340px;
      gap: 48px;
      align-items: start;
    }

    /* ===== VIDEO ===== */
    .review-video-wrap {
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: #000;
      aspect-ratio: 16/9;
      box-shadow: var(--shadow-md);
      margin-bottom: 40px;
    }

    .review-video-wrap iframe {
      width: 100%;
      height: 100%;
      border: none;
      display: block;
    }

    /* ===== QUOTE ===== */
    .review-quote {
      position: relative;
      background: var(--coral-pale);
      border-left: 4px solid var(--coral);
      border-radius: 0 var(--radius) var(--radius) 0;
      padding: 24px 28px;
      margin-bottom: 36px;
    }

    .review-quote::before {
      content: '\201C';
      position: absolute;
      top: -8px;
      left: 20px;
      font-size: 72px;
      color: var(--coral);
      opacity: 0.25;
      line-height: 1;
      font-family: Georgia, serif;
    }

    .review-quote p {
      font-size: 17px;
      font-weight: 500;
      font-style: italic;
      color: var(--text-dark);
      line-height: 1.7;
      position: relative;
      z-index: 1;
    }

    .review-quote-author {
      margin-top: 12px;
      font-size: 13px;
      font-weight: 600;
      color: var(--coral);
    }

    /* ===== BODY TEXT ===== */
    .review-body {
      font-size: 16px;
      color: var(--text-mid);
      line-height: 1.8;
      margin-bottom: 36px;
    }

    .review-body p + p { margin-top: 16px; }

    .review-body strong { color: var(--text-dark); font-weight: 600; }

    /* ===== RESULTS ===== */
    .review-results {
      background: var(--teal-light);
      border-radius: var(--radius-lg);
      padding: 28px 32px;
      margin-bottom: 40px;
    }

    .review-results h3 {
      font-size: 16px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 18px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .review-results h3 svg { width: 18px; height: 18px; flex-shrink: 0; }

    .review-result-items {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .review-result-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14px;
      color: var(--text-dark);
      font-weight: 500;
    }

    .result-check {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: var(--teal);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .result-check svg { width: 10px; height: 10px; }

    /* ===== SIDEBAR ===== */
    .review-sidebar {
      position: sticky;
      top: 80px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    /* CTA Card */
    .sidebar-cta {
      background: var(--white);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      overflow: hidden;
      border: 1px solid var(--border);
    }

    .sidebar-cta-header {
      background: linear-gradient(135deg, var(--coral) 0%, #d46b50 100%);
      padding: 24px 24px 20px;
      color: #fff;
    }

    .sidebar-cta-header h3 {
      font-size: 18px;
      font-weight: 800;
      line-height: 1.3;
      margin-bottom: 6px;
    }

    .sidebar-cta-header p {
      font-size: 13px;
      opacity: 0.85;
      line-height: 1.5;
    }

    .sidebar-cta-body { padding: 20px 24px 24px; }

    .form-label {
      display: block;
      font-size: 11px;
      font-weight: 700;
      color: var(--text-light);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 6px;
    }

    .form-input {
      width: 100%;
      padding: 11px 14px;
      border: 1.5px solid var(--border);
      border-radius: 8px;
      font-family: var(--font);
      font-size: 14px;
      color: var(--text-dark);
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
      margin-bottom: 10px;
      background: var(--white);
    }

    .form-input:focus {
      border-color: var(--coral);
      box-shadow: 0 0 0 3px rgba(224,122,95,0.12);
    }

    .form-input::placeholder { color: var(--text-light); }

    .sidebar-cta-body .btn {
      width: 100%;
      padding: 13px;
      font-size: 14px;
      border-radius: 8px;
      font-weight: 700;
    }

    .form-disclaimer {
      font-size: 11px;
      color: var(--text-light);
      text-align: center;
      margin-top: 10px;
      line-height: 1.5;
    }

    /* Specialist Card */
    .sidebar-specialist {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 20px;
      box-shadow: var(--shadow-sm);
    }

    .sidebar-specialist-label {
      font-size: 11px;
      font-weight: 700;
      color: var(--text-light);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 14px;
    }

    .sidebar-spec-info {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .sidebar-spec-photo {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      overflow: hidden;
      flex-shrink: 0;
      background: linear-gradient(135deg, #fde8de, #d4eef1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
    }

    .sidebar-spec-photo img { width: 100%; height: 100%; object-fit: cover; }

    .sidebar-spec-name strong { font-size: 14px; font-weight: 700; display: block; }
    .sidebar-spec-name span { font-size: 12px; color: var(--text-mid); }
    .sidebar-spec-exp { font-size: 12px; color: var(--text-light); margin-top: 2px; }

    /* Methods used */
    .sidebar-methods {
      background: var(--bg);
      border-radius: var(--radius);
      padding: 18px 20px;
      border: 1px solid var(--border);
    }

    .sidebar-methods-label {
      font-size: 11px;
      font-weight: 700;
      color: var(--text-light);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 12px;
    }

    .method-pill-list {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .method-pill {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 500;
      color: var(--text-dark);
    }

    .method-pill-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--coral);
      flex-shrink: 0;
    }

    /* ===== BACK LINK / OTHER REVIEWS ===== */
    .review-nav-section {
      background: var(--bg);
      padding: 48px 0;
      border-top: 1px solid var(--border);
    }

    .review-nav-section h2 {
      font-size: 22px;
      font-weight: 800;
      margin-bottom: 28px;
      color: var(--text-dark);
    }

    .other-reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .other-review-card {
      background: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
      transition: transform 0.2s, box-shadow 0.2s;
      display: block;
    }

    .other-review-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
    }

    .other-review-thumb {
      aspect-ratio: 16/9;
      background: linear-gradient(135deg, #fde8de 0%, #d4eef1 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 32px;
      position: relative;
    }

    .other-review-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .play-icon {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(0,0,0,0.25);
    }

    .play-icon svg { width: 40px; height: 40px; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4)); }

    .other-review-body { padding: 16px; }

    .other-review-body strong {
      display: block;
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .other-review-body span {
      font-size: 13px;
      color: var(--text-light);
    }

    .review-nav-back {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      font-weight: 600;
      color: var(--text-mid);
      margin-bottom: 32px;
      transition: color 0.2s;
    }

    .review-nav-back:hover { color: var(--coral); }
    .review-nav-back svg { width: 16px; height: 16px; }

    /* ===== FOOTER ===== */
    .site-footer {
      background: var(--teal);
      color: #fff;
      padding: 20px 0;
    }

    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    .footer-cta-text {
      font-size: 15px;
      font-weight: 700;
    }

    .footer-right {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .footer-phone strong { display: block; font-size: 16px; font-weight: 800; }
    .footer-phone span { font-size: 11px; opacity: 0.75; }

    .footer-socials { display: flex; gap: 8px; }

    .social-btn {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: rgba(255,255,255,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s;
      font-size: 13px;
      font-weight: 700;
      color: #fff;
    }

    .social-btn:hover { background: rgba(255,255,255,0.35); }

    .footer-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--coral);
      color: #fff;
      border: none;
      padding: 10px 20px;
      border-radius: 50px;
      font-family: var(--font);
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s;
      text-decoration: none;
    }

    .footer-btn:hover { background: var(--coral-hover); }

    /* ===== STICKY MOBILE CTA ===== */
    .sticky-mobile-cta {
      display: none;
      position: fixed;
      bottom: 0; left: 0; right: 0;
      background: var(--white);
      padding: 12px 16px;
      box-shadow: 0 -4px 20px rgba(0,0,0,0.10);
      z-index: 90;
    }

    .sticky-mobile-cta .btn { width: 100%; padding: 14px; font-size: 15px; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
      .header-nav { display: none; }
      .hamburger { display: flex; }
      .header-phone { display: none; }
      .header-right .btn-coral { display: none; }

      .review-layout {
        grid-template-columns: 1fr;
      }

      .review-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
      }

      .sidebar-cta { grid-column: 1 / -1; }

      .other-reviews-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 768px) {
      .review-hero { padding: 36px 0 32px; }

      .review-hero-inner {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .review-hero h1 { font-size: 26px; }

      .review-hero-img {
        display:none;
        width: 100%;
        height: 200px;
      }

      .review-sidebar {
        grid-template-columns: 1fr;
      }

      .other-reviews-grid { grid-template-columns: 1fr; }

      .footer-inner { flex-direction: column; text-align: center; }
      .footer-right { flex-direction: column; gap: 12px; }

      .sticky-mobile-cta { display: block; }
      body { padding-bottom: 72px; }
    }

    @media (max-width: 480px) {
      .review-hero-meta { display:none;flex-direction: column; align-items: flex-start; gap: 12px; }
      .review-quote p { font-size: 15px; }
    }
  
    .review-btn-stack{

      margin-bottom: 15px;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    width:100%;

    gap:16px;

}


.review-btn-item{

    width:100%;

    max-width:320px;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    padding:16px 24px;

}

@media (max-width:768px){

.review-btn-stack{

    align-items:center;

}

.review-btn-item{

    width:100%;

    max-width:320px;

}

}

.btn-social-icon{

width:18px;

height:18px;

flex-shrink:0;

display:block;

}

.btn-max-icon{

width:18px;

height:18px;

min-width:18px;

object-fit:cover;

border-radius:5px;

overflow:hidden;

display:block;

flex-shrink:0;

}