    :root {
      /* Editorial Classic palette — Burgundy + Antique Gold + Moss + Paper */
      --navy: #6B1F2A;            /* burgundy (primary) */
      --navy-dark: #4A1419;       /* deep burgundy */
      --navy-light: #8B2F3D;      /* lighter burgundy */
      --coral: #C8A24A;           /* antique gold (accent) */
      --coral-light: #D4B568;
      --coral-pale: #F7EFD9;
      --moss: #4A5D3A;            /* deep moss green (success/done) */
      --moss-pale: #E8EDE2;
      --paper: #F5F1EA;           /* warm cream background */
      --white: #ffffff;            /* still pure white for cards */
      --gray-50: #FAF7F1;          /* warmer than cool gray */
      --gray-100: #EFEAE0;
      --gray-200: #D6CDBE;
      --gray-400: #9A8E7A;
      --gray-600: #5A4F3F;
      --gray-800: #2A1F1A;         /* deep warm brown */
      --text: #2A1F1A;
      --border: #D6CDBE;
      --radius: 12px;
      --radius-sm: 8px;
      --shadow: 0 2px 16px rgba(107,31,42,0.08);
      --shadow-md: 0 4px 24px rgba(107,31,42,0.12);
      --shadow-lg: 0 8px 40px rgba(107,31,42,0.16);
    }

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

    body {
      font-family: 'Heebo', sans-serif;
      color: var(--text);
      background: var(--paper);
      direction: rtl;
      line-height: 1.7;
      font-size: 16px;
    }

    /* ─── UTILITIES ─── */
    .container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
    .section { padding: 72px 0; }
    .section-alt { background: var(--gray-50); }
    .section-title {
      font-size: 2rem;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 8px;
    }
    .section-sub {
      font-size: 1.05rem;
      color: var(--gray-600);
      margin-bottom: 40px;
    }
    .section-divider {
      width: 48px; height: 4px;
      background: var(--coral);
      border-radius: 2px;
      margin-bottom: 40px;
    }
    .badge {
      display: inline-block;
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.02em;
    }
    .badge-coral { background: var(--coral-pale); color: var(--coral); }
    .badge-navy { background: #e8eef5; color: var(--navy); }
    .badge-gray { background: var(--gray-100); color: var(--gray-600); }
    .tag { display: inline-block; padding: 3px 10px; background: var(--gray-100); color: var(--gray-600); border-radius: 6px; font-size: 0.8rem; margin: 3px 2px; }

    /* ─── HERO ─── */
    .hero {
      background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
      color: var(--white);
      padding: 80px 0 64px;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: -60px; left: -60px;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(232,54,79,0.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero::after {
      content: '';
      position: absolute;
      bottom: -80px; right: -80px;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-inner { position: relative; z-index: 1; }
    .hero-logo { margin-bottom: 32px; }
    .hero-logo img { height: 64px; filter: brightness(0) invert(1); }
    .hero-eyebrow {
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--coral);
      margin-bottom: 16px;
    }
    .hero h1 {
      font-size: clamp(2rem, 5vw, 3.2rem);
      font-weight: 900;
      line-height: 1.2;
      margin-bottom: 16px;
    }
    .hero-subtitle {
      font-size: 1.25rem;
      font-weight: 300;
      color: rgba(255,255,255,0.75);
      margin-bottom: 32px;
    }
    .hero-meta {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      align-items: center;
    }
    .hero-meta-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.9rem;
      color: rgba(255,255,255,0.65);
    }
    .hero-meta-item span.dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--coral);
      display: inline-block;
    }
    .hero-stats {
      margin-top: 48px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 16px;
    }
    .hero-stat {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius);
      padding: 20px 16px;
      text-align: center;
    }
    .hero-stat-num {
      font-size: 2rem;
      font-weight: 900;
      color: var(--white);
      line-height: 1;
    }
    .hero-stat-num.coral { color: var(--coral); }
    .hero-stat-label {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.6);
      margin-top: 4px;
    }

    /* ─── TL;DR ─── */
    .tldr-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }
    .tldr-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 24px;
      display: flex;
      gap: 16px;
      align-items: flex-start;
      box-shadow: var(--shadow);
      transition: box-shadow 0.2s;
    }
    .tldr-card:hover { box-shadow: var(--shadow-md); }
    .tldr-icon {
      font-size: 1.6rem;
      flex-shrink: 0;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--gray-50);
      border-radius: 10px;
    }
    .tldr-label {
      font-size: 0.78rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--coral);
      margin-bottom: 4px;
    }
    .tldr-text {
      font-size: 0.95rem;
      color: var(--gray-800);
      font-weight: 500;
    }

    /* ─── SITE STRUCTURE ─── */
    .structure-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      margin-bottom: 40px;
    }
    @media (max-width: 768px) {
      .structure-grid { grid-template-columns: 1fr; }
    }
    .struct-box {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    .struct-box-header {
      background: var(--navy);
      color: var(--white);
      padding: 14px 20px;
      font-size: 0.9rem;
      font-weight: 700;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .struct-box-header .count {
      background: var(--coral);
      color: white;
      border-radius: 20px;
      padding: 2px 10px;
      font-size: 0.8rem;
    }
    .struct-box-body { padding: 16px; }
    .nav-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 9px 12px;
      border-radius: var(--radius-sm);
      transition: background 0.15s;
      font-size: 0.9rem;
    }
    .nav-item:hover { background: var(--gray-50); }
    .nav-item-name { font-weight: 500; }
    .nav-item-path { font-family: monospace; font-size: 0.75rem; color: var(--gray-400); direction: ltr; }
    .struct-note {
      background: var(--gray-100);
      border-radius: var(--radius-sm);
      padding: 12px 16px;
      font-size: 0.85rem;
      color: var(--gray-600);
      margin-top: 12px;
      border-right: 3px solid var(--gray-400);
    }
    .struct-note strong { color: var(--navy); }

    /* ─── BAR CHART ─── */
    .chart-wrap {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px 24px;
      box-shadow: var(--shadow);
    }
    .chart-title {
      font-size: 1rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 24px;
    }
    .bar-row {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 10px;
    }
    .bar-label {
      width: 220px;
      font-size: 0.85rem;
      color: var(--gray-800);
      text-align: right;
      flex-shrink: 0;
    }
    .bar-track {
      flex: 1;
      background: var(--gray-100);
      border-radius: 4px;
      height: 22px;
      overflow: hidden;
    }
    .bar-fill {
      height: 100%;
      border-radius: 4px;
      background: var(--navy);
      display: flex;
      align-items: center;
      padding-right: 6px;
      transition: width 0.5s ease;
      min-width: 4px;
    }
    .bar-fill.coral { background: var(--coral); }
    .bar-fill.light { background: #4a7baa; }
    .bar-count {
      font-size: 0.82rem;
      font-weight: 700;
      color: var(--gray-600);
      width: 28px;
      text-align: left;
      flex-shrink: 0;
    }

    /* ─── PRACTICE AREAS ─── */
    .pa-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 24px;
    }
    .pa-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .pa-card:hover {
      box-shadow: var(--shadow-md);
      transform: translateY(-2px);
    }
    .pa-card-header {
      padding: 20px 24px;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
      color: var(--white);
    }
    .pa-card-icon { font-size: 1.8rem; margin-bottom: 8px; }
    .pa-card-title { font-size: 1.1rem; font-weight: 800; margin-bottom: 4px; }
    .pa-card-sub { font-size: 0.82rem; color: rgba(255,255,255,0.7); }
    .pa-card-body { padding: 20px 24px; }
    .pa-desc { font-size: 0.9rem; color: var(--gray-600); margin-bottom: 16px; line-height: 1.6; }
    .pa-services { list-style: none; }
    .pa-services li {
      font-size: 0.88rem;
      padding: 5px 0;
      border-bottom: 1px solid var(--gray-100);
      display: flex;
      align-items: flex-start;
      gap: 8px;
    }
    .pa-services li:last-child { border-bottom: none; }
    .pa-services li::before {
      content: '←';
      color: var(--coral);
      flex-shrink: 0;
      font-size: 0.75rem;
      margin-top: 2px;
    }
    .pa-url {
      display: block;
      margin-top: 12px;
      font-family: monospace;
      font-size: 0.72rem;
      color: var(--gray-400);
      direction: ltr;
      text-align: left;
    }

    /* ─── WARNING BOX ─── */
    .warning-box {
      background: #fffbeb;
      border: 2px solid #f59e0b;
      border-radius: var(--radius);
      padding: 20px 24px;
      margin-top: 28px;
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }
    .warning-icon { font-size: 1.6rem; flex-shrink: 0; }
    .warning-title { font-weight: 700; color: #92400e; margin-bottom: 6px; font-size: 0.95rem; }
    .warning-text { font-size: 0.88rem; color: #78350f; line-height: 1.7; }
    .warning-code {
      display: inline-block;
      background: #fef3c7;
      border: 1px solid #fbbf24;
      border-radius: 4px;
      padding: 1px 6px;
      font-family: monospace;
      font-size: 0.82rem;
      direction: ltr;
    }

    .danger-box {
      background: #fff1f2;
      border: 2px solid var(--coral);
      border-radius: var(--radius);
      padding: 20px 24px;
      margin-bottom: 28px;
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }
    .danger-title { font-weight: 700; color: #9f1239; margin-bottom: 6px; font-size: 0.95rem; }
    .danger-text { font-size: 0.88rem; color: #881337; line-height: 1.7; }

    /* ─── TEAM ─── */
    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
      gap: 32px;
    }
    .team-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      display: flex;
      flex-direction: column;
    }
    .team-card-top {
      background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
      padding: 32px 28px;
      color: var(--white);
      display: flex;
      gap: 20px;
      align-items: flex-start;
    }
    .team-avatar {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      border: 3px solid rgba(255,255,255,0.2);
      object-fit: cover;
      flex-shrink: 0;
      background: rgba(255,255,255,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      font-weight: 900;
      color: rgba(255,255,255,0.4);
    }
    .team-name { font-size: 1.2rem; font-weight: 800; margin-bottom: 4px; }
    .team-role { font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-bottom: 12px; }
    .team-lang-badge {
      display: inline-block;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 20px;
      padding: 3px 10px;
      font-size: 0.75rem;
      color: rgba(255,255,255,0.8);
      margin-left: 6px;
    }
    .team-card-body { padding: 24px 28px; flex: 1; }
    .team-fact {
      display: flex;
      gap: 8px;
      align-items: flex-start;
      padding: 7px 0;
      border-bottom: 1px solid var(--gray-100);
      font-size: 0.88rem;
    }
    .team-fact:last-child { border-bottom: none; }
    .team-fact-label {
      font-weight: 700;
      color: var(--navy);
      flex-shrink: 0;
      min-width: 100px;
    }
    .team-fact-val { color: var(--gray-600); }

    /* ─── STATS STRIP ─── */
    .stats-strip {
      background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
      padding: 60px 0;
    }
    .stats-strip-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 24px;
    }
    .stat-item {
      text-align: center;
      color: var(--white);
      padding: 24px 16px;
      border-radius: var(--radius);
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
    }
    .stat-num {
      font-size: 2.8rem;
      font-weight: 900;
      line-height: 1;
      color: var(--white);
    }
    .stat-num span { color: var(--coral); }
    .stat-label {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.6);
      margin-top: 6px;
    }

    /* ─── TECH LIST ─── */
    .tech-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 16px;
    }
    .tech-item {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      padding: 16px 18px;
      display: flex;
      gap: 12px;
      align-items: center;
      font-size: 0.9rem;
      box-shadow: var(--shadow);
    }
    .tech-item-icon {
      font-size: 1.4rem;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--gray-50);
      border-radius: 8px;
      flex-shrink: 0;
    }
    .tech-item-name { font-weight: 700; color: var(--navy); }
    .tech-item-detail { font-size: 0.8rem; color: var(--gray-400); }

    /* ─── DECISION TREE ─── */
    .dtree {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 32px;
      box-shadow: var(--shadow);
    }
    .dtree-start {
      background: var(--navy);
      color: white;
      border-radius: var(--radius-sm);
      padding: 14px 24px;
      text-align: center;
      font-weight: 700;
      font-size: 0.95rem;
      display: block;
      max-width: 400px;
      margin: 0 auto;
    }
    .dtree-connector {
      text-align: center;
      padding: 8px 0;
      color: var(--gray-400);
      font-size: 1.2rem;
    }
    .dtree-question {
      background: var(--gray-50);
      border: 2px solid var(--navy);
      border-radius: var(--radius-sm);
      padding: 14px 24px;
      text-align: center;
      font-weight: 700;
      font-size: 0.9rem;
      color: var(--navy);
      max-width: 450px;
      margin: 0 auto;
    }
    .dtree-branches {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 16px;
    }
    @media (max-width: 600px) { .dtree-branches { grid-template-columns: 1fr; } }
    .dtree-branch { text-align: center; }
    .dtree-cond {
      font-size: 0.8rem;
      font-weight: 700;
      margin-bottom: 8px;
      padding: 4px 12px;
      border-radius: 20px;
    }
    .dtree-cond.yes { background: #dcfce7; color: #166534; }
    .dtree-cond.no { background: #fef3c7; color: #92400e; }
    .dtree-result {
      border-radius: var(--radius-sm);
      padding: 16px;
      font-size: 0.88rem;
    }
    .dtree-result.green {
      background: #f0fdf4;
      border: 1px solid #86efac;
      color: #14532d;
    }
    .dtree-result.amber {
      background: #fffbeb;
      border: 1px solid #fcd34d;
      color: #78350f;
    }
    .dtree-result-title {
      font-weight: 800;
      font-size: 0.95rem;
      margin-bottom: 6px;
    }
    .dtree-always {
      margin-top: 20px;
      background: var(--coral-pale);
      border: 1px solid var(--coral);
      border-radius: var(--radius-sm);
      padding: 14px 20px;
      font-size: 0.88rem;
      color: #7f1d1d;
    }
    .dtree-always strong { color: var(--coral); }

    /* ─── SCOPE TABLE ─── */
    .scope-table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      font-size: 0.9rem;
    }
    .scope-table thead tr {
      background: var(--navy);
      color: var(--white);
    }
    .scope-table th {
      padding: 14px 18px;
      font-weight: 700;
      text-align: right;
    }
    .scope-table td {
      padding: 12px 18px;
      border-bottom: 1px solid var(--gray-100);
      vertical-align: top;
    }
    .scope-table tr:last-child td { border-bottom: none; }
    .scope-table tr:nth-child(even) td { background: var(--gray-50); }
    .scope-table .complexity-badge {
      display: inline-block;
      padding: 2px 10px;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 700;
    }
    .complexity-high { background: #fee2e2; color: #991b1b; }
    .complexity-med { background: #fef3c7; color: #92400e; }
    .complexity-low { background: #dcfce7; color: #166534; }

    /* ─── CHECKLIST ─── */
    .checklist-phases {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
    }
    .checklist-phase {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    .checklist-phase-header {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
      color: white;
      padding: 18px 20px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .phase-num {
      width: 32px; height: 32px;
      background: var(--coral);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      font-size: 0.9rem;
      flex-shrink: 0;
    }
    .phase-title { font-weight: 700; font-size: 0.95rem; }
    .checklist-phase-body { padding: 16px 20px; }
    .check-item {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      padding: 8px 0;
      border-bottom: 1px solid var(--gray-100);
      font-size: 0.88rem;
    }
    .check-item:last-child { border-bottom: none; }
    .check-box {
      width: 18px; height: 18px;
      border: 2px solid var(--gray-200);
      border-radius: 4px;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .check-code {
      font-family: monospace;
      font-size: 0.78rem;
      background: var(--gray-100);
      padding: 1px 5px;
      border-radius: 3px;
      direction: ltr;
      display: inline-block;
    }

    /* ─── SERIES LIST ─── */
    .series-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
    .series-chip {
      background: var(--gray-50);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 6px 14px;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--navy);
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .series-chip::before {
      content: '';
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--coral);
      display: inline-block;
    }

    /* ─── FOOTER ─── */
    .footer {
      background: var(--navy-dark);
      color: rgba(255,255,255,0.55);
      padding: 32px 0;
      text-align: center;
      font-size: 0.82rem;
    }
    .footer a { color: var(--coral); text-decoration: none; }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 768px) {
      .section { padding: 48px 0; }
      .section-title { font-size: 1.6rem; }
      .hero h1 { font-size: 1.8rem; }
      .bar-label { width: 140px; font-size: 0.78rem; }
      .team-grid { grid-template-columns: 1fr; }
      .scope-table { font-size: 0.82rem; }
      .scope-table th, .scope-table td { padding: 10px 12px; }
      .three-col { grid-template-columns: 1fr !important; }
    }

    /* ─── NAV BAR (sticky TOC) ─── */
    .topnav {
      position: sticky;
      top: 0;
      background: rgba(27,58,92,0.97);
      backdrop-filter: blur(8px);
      z-index: 100;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .topnav-inner {
      display: flex;
      gap: 4px;
      overflow-x: auto;
      padding: 0 24px;
      scrollbar-width: none;
    }
    .topnav-inner::-webkit-scrollbar { display: none; }
    .topnav-link {
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      font-size: 0.82rem;
      font-weight: 600;
      padding: 14px 12px;
      white-space: nowrap;
      border-bottom: 2px solid transparent;
      transition: color 0.2s, border-color 0.2s;
    }
    .topnav-link:hover { color: white; border-bottom-color: var(--coral); }

    .two-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
    @media (max-width: 640px) { .two-col { grid-template-columns: 1fr; } }

    /* ─── THREE COL ─── */
    .three-col {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 24px;
    }

    /* ─── SEO TOOL CARDS ─── */
    .seo-tool-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    .seo-tool-header {
      background: var(--navy);
      color: white;
      padding: 16px 20px;
      font-size: 1rem;
      font-weight: 800;
    }
    .seo-tool-sub {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.6);
      font-weight: 400;
      margin-top: 2px;
    }
    .seo-tool-body { padding: 20px; }
    .seo-tool-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 8px 0;
      border-bottom: 1px solid var(--gray-100);
      font-size: 0.9rem;
    }
    .seo-tool-row:last-child { border-bottom: none; }
    .seo-tool-key { color: var(--gray-600); }
    .seo-tool-val { font-weight: 700; color: var(--navy); }
    .seo-tool-val.red { color: var(--coral); }
    .seo-tool-val.amber { color: #d97706; }

    /* ─── RED WARNING BOX ─── */
    .red-warning {
      background: #fff1f2;
      border: 2px solid var(--coral);
      border-radius: var(--radius);
      padding: 20px 24px;
      margin-top: 28px;
      font-size: 0.9rem;
      color: #881337;
      line-height: 1.8;
    }
    .red-warning strong { color: var(--coral); }

    /* ─── DATA TABLE ─── */
    .data-table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      font-size: 0.88rem;
    }
    .data-table thead tr { background: var(--navy); color: white; }
    .data-table th { padding: 12px 16px; font-weight: 700; text-align: right; }
    .data-table td { padding: 10px 16px; border-bottom: 1px solid var(--gray-100); vertical-align: top; direction: rtl; }
    .data-table tr:last-child td { border-bottom: none; }
    .data-table tr:nth-child(even) td { background: var(--gray-50); }
    .data-table .url-cell { font-family: monospace; font-size: 0.75rem; direction: ltr; text-align: left; color: var(--gray-600); }
    .data-table .highlight-row td { background: #fdeaec !important; font-weight: 600; }
    .pos-badge {
      display: inline-block;
      padding: 2px 8px;
      border-radius: 12px;
      font-size: 0.78rem;
      font-weight: 700;
    }
    .pos-1 { background: #dcfce7; color: #166534; }
    .pos-top5 { background: #fef3c7; color: #92400e; }
    .pos-other { background: var(--gray-100); color: var(--gray-600); }

    /* ─── PERF CARDS ─── */
    .perf-card {
      background: var(--white);
      border: 2px solid var(--coral);
      border-radius: var(--radius);
      padding: 28px 24px;
      text-align: center;
      box-shadow: var(--shadow-md);
    }
    .perf-metric { font-size: 0.85rem; font-weight: 700; color: var(--gray-600); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.06em; }
    .perf-val { font-size: 3.5rem; font-weight: 900; color: var(--coral); line-height: 1; margin-bottom: 8px; }
    .perf-label { font-size: 0.78rem; font-weight: 700; color: var(--coral); background: var(--coral-pale); display: inline-block; padding: 3px 10px; border-radius: 12px; margin-bottom: 12px; }
    .perf-target { font-size: 0.82rem; color: var(--gray-600); }
    .perf-target strong { color: var(--navy); }

    /* ─── BUILD STACK ─── */
    .build-section { margin-bottom: 32px; }
    .build-section-title {
      font-size: 1rem;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 16px;
      padding-bottom: 8px;
      border-bottom: 2px solid var(--coral);
      display: inline-block;
    }
    .build-chips { display: flex; flex-wrap: wrap; gap: 10px; }
    .build-chip {
      background: var(--gray-50);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      padding: 8px 14px;
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--navy);
    }
    .build-chip.featured {
      background: var(--navy);
      color: white;
      border-color: var(--navy);
    }

    /* ─── PRICING HERO CARD ─── */
    .pricing-hero-card {
      background: var(--white);
      border: 2px solid var(--coral);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      max-width: 800px;
      margin: 0 auto;
    }
    .pricing-hero-header {
      background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
      color: white;
      padding: 36px 40px;
      text-align: center;
    }
    .pricing-hero-badge {
      display: inline-block;
      background: var(--coral);
      color: white;
      border-radius: 20px;
      padding: 5px 18px;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .pricing-hero-amount {
      font-size: 4rem;
      font-weight: 900;
      color: var(--white);
      line-height: 1;
      margin-bottom: 8px;
    }
    .pricing-hero-sub {
      font-size: 1rem;
      color: rgba(255,255,255,0.65);
    }
    .pricing-hero-body {
      padding: 32px 40px;
    }
    .pricing-hero-list {
      list-style: none;
      padding: 0;
      margin: 0 0 24px;
    }
    .pricing-hero-list li {
      padding: 10px 0;
      border-bottom: 1px solid var(--gray-100);
      font-size: 0.92rem;
      display: flex;
      gap: 10px;
      align-items: flex-start;
    }
    .pricing-hero-list li:last-child { border-bottom: none; }
    .pricing-hero-list li::before {
      content: '✓';
      color: var(--coral);
      font-weight: 900;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .pricing-templates-callout {
      background: #f0f8ff;
      border: 1px dashed var(--navy);
      border-radius: var(--radius-sm);
      padding: 14px 18px;
      font-size: 0.88rem;
      color: var(--navy);
      margin-bottom: 24px;
      line-height: 1.6;
    }
    .pricing-templates-callout strong { color: var(--coral); }
    .addons-flat-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 8px;
    }
    @media (max-width: 700px) { .addons-flat-grid { grid-template-columns: 1fr; } }
    .addon-flat {
      background: var(--gray-50);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      padding: 16px 18px;
      font-size: 0.88rem;
    }
    .addon-flat-title {
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 4px;
      font-size: 0.95rem;
    }
    .addon-flat-price {
      color: var(--coral);
      font-weight: 700;
      font-size: 1rem;
      margin-bottom: 8px;
    }
    .addon-flat-note {
      color: var(--gray-600);
      font-size: 0.82rem;
      font-style: italic;
    }
    .maintenance-options {
      margin-top: 24px;
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      overflow: hidden;
    }
    .maintenance-options-title {
      background: var(--navy);
      color: white;
      padding: 10px 18px;
      font-weight: 700;
      font-size: 0.9rem;
    }
    .maintenance-row {
      display: flex;
      gap: 12px;
      padding: 14px 18px;
      border-bottom: 1px solid var(--gray-100);
      font-size: 0.88rem;
      align-items: flex-start;
    }
    .maintenance-row:last-child { border-bottom: none; }
    .maintenance-label {
      font-weight: 700;
      color: var(--navy);
      flex-shrink: 0;
      min-width: 120px;
    }
    .pricing-fairness {
      margin-top: 24px;
      background: var(--navy-dark);
      color: rgba(255,255,255,0.85);
      border-radius: var(--radius-sm);
      padding: 18px 22px;
      font-size: 0.9rem;
      line-height: 1.7;
      font-style: italic;
    }
    /* Legacy stubs kept for fallback */
    .pricing-badge {
      display: inline-block;
      background: rgba(255,255,255,0.2);
      border: 1px solid rgba(255,255,255,0.3);
      border-radius: 20px;
      padding: 3px 12px;
      font-size: 0.75rem;
      font-weight: 700;
      margin-bottom: 12px;
    }
    .pricing-name { font-size: 1.1rem; font-weight: 800; margin-bottom: 4px; }
    .pricing-tagline { font-size: 0.82rem; color: rgba(255,255,255,0.7); margin-bottom: 16px; }
    .pricing-price { font-size: 2.4rem; font-weight: 900; line-height: 1; }
    .pricing-price span { font-size: 1rem; font-weight: 400; color: rgba(255,255,255,0.7); }
    .pricing-body { padding: 24px; }
    .pricing-item {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      padding: 7px 0;
      border-bottom: 1px solid var(--gray-100);
      font-size: 0.88rem;
    }
    .pricing-item:last-child { border-bottom: none; }
    .pricing-item::before {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--coral);
      flex-shrink: 0;
      margin-top: 7px;
    }
    .pricing-timeline {
      margin-top: 16px;
      background: var(--gray-50);
      border-radius: var(--radius-sm);
      padding: 10px 14px;
      font-size: 0.82rem;
      color: var(--gray-600);
    }
    .pricing-timeline strong { color: var(--navy); }
    .pricing-goal {
      margin-top: 12px;
      background: var(--coral-pale);
      border: 1px solid var(--coral);
      border-radius: var(--radius-sm);
      padding: 10px 14px;
      font-size: 0.82rem;
      color: #7f1d1d;
      font-weight: 600;
    }

    /* ─── NEXT STEPS (new) ─── */
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
    }
    .step-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    .step-header {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
      color: white;
      padding: 18px 20px;
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .step-num {
      width: 36px; height: 36px;
      background: var(--coral);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      font-size: 1rem;
      flex-shrink: 0;
    }
    .step-title { font-weight: 800; font-size: 1rem; }
    .step-sub { font-size: 0.78rem; color: rgba(255,255,255,0.65); margin-top: 2px; }
    .step-body { padding: 20px; font-size: 0.9rem; color: var(--gray-700); line-height: 1.7; }

    /* ─── ADD-ONS SECTION ─── */
    .addons-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
      margin-top: 8px;
    }
    .addon-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    .addon-header {
      background: linear-gradient(135deg, #1B3A5C 0%, #244d7a 100%);
      color: white;
      padding: 20px 24px;
    }
    .addon-tag {
      display: inline-block;
      background: rgba(255,255,255,0.18);
      border: 1px solid rgba(255,255,255,0.25);
      border-radius: 20px;
      padding: 3px 10px;
      font-size: 0.72rem;
      font-weight: 700;
      margin-bottom: 10px;
    }
    .addon-title { font-size: 1rem; font-weight: 800; margin-bottom: 4px; }
    .addon-price { font-size: 1.7rem; font-weight: 900; }
    .addon-body { padding: 20px 24px; }
    .addon-item {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      padding: 6px 0;
      border-bottom: 1px solid var(--gray-100);
      font-size: 0.86rem;
    }
    .addon-item:last-child { border-bottom: none; }
    .addon-item::before {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--navy);
      flex-shrink: 0;
      margin-top: 7px;
    }
    .addon-highlight {
      margin-top: 14px;
      background: #eef2f8;
      border-right: 3px solid var(--navy);
      border-radius: var(--radius-sm);
      padding: 10px 14px;
      font-size: 0.83rem;
      color: var(--navy);
      font-weight: 600;
    }

    /* ─── DIY WARNING SECTION ─── */
    .diy-box {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 32px;
      box-shadow: var(--shadow);
      max-width: 760px;
      margin: 0 auto;
    }
    .diy-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 24px;
    }
    @media (max-width: 640px) { .diy-grid { grid-template-columns: 1fr; } }
    .diy-col-bad {
      background: #fff5f5;
      border: 1px solid #fca5a5;
      border-radius: var(--radius-sm);
      padding: 20px;
    }
    .diy-col-good {
      background: #f0f8ff;
      border: 1px solid var(--navy);
      border-radius: var(--radius-sm);
      padding: 20px;
    }
    .diy-col-title {
      font-size: 0.82rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 12px;
    }
    .diy-col-bad .diy-col-title { color: #dc2626; }
    .diy-col-good .diy-col-title { color: var(--navy); }
    .diy-item {
      display: flex;
      gap: 8px;
      align-items: flex-start;
      font-size: 0.87rem;
      padding: 5px 0;
      border-bottom: 1px solid rgba(0,0,0,0.06);
    }
    .diy-item:last-child { border-bottom: none; }
    .diy-item::before {
      content: '✗';
      color: #dc2626;
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .diy-col-good .diy-item::before { content: '✓'; color: var(--navy); }
