/* AMRO Solutions — shared stylesheet across all pages */
  :root {
    /* ── COMPLETE SOLAR-INSPIRED PALETTE ── */
    /* Primary navy — slightly darker than Complete Solar's ~#0d1f3c */
    --navy:       #09152a;
    --navy-mid:   #0f2040;
    --navy-light: #152d56;

    /* Orange accent — Complete Solar's warm CTA orange */
    --orange:     #f97316;
    --orange-dark:#d95f08;
    --orange-pale:#fff3ea;
    --orange-pale2:#ffe5cc;

    /* Neutrals */
    --ink:        #111827;
    --slate:      #4b5563;
    --muted:      #9ca3af;
    --border:     #e5e7eb;
    --surface:    #f8f7f4;
    --white:      #ffffff;
    --cream:      #fdfcfa;

    /* Legacy aliases so old class references still work */
    --brand:      var(--orange);
    --brand-mid:  var(--orange-dark);
    --brand-dark: var(--navy-light);
    --brand-pale: var(--orange-pale);
    --brand-pale2:var(--orange-pale2);
    --teal:       #fb923c;   /* warm amber-orange for secondary accents */
    --green:      #22c55e;
    --amber:      #f59e0b;
    --ink-mid:    #1f2f4a;
  }

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

  body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--surface);
    color: var(--ink);
    line-height: 1.6;
  }

  @media print {
    .no-print { display: none !important; }
    body { background: white; }
    .page { page-break-after: always; box-shadow: none !important; margin: 0 !important; border-radius: 0 !important; }
    .page:last-child { page-break-after: avoid; }
  }

  /* ── TOOLBAR ── */
  .toolbar {
    position: fixed; top: 0; left: 0; right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 32px; z-index: 100;
    border-bottom: 2px solid var(--orange);
    gap: 16px;
  }
  .toolbar-brand {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--navy);
    font-size: 17px; letter-spacing: -0.3px; font-weight: 800;
    flex-shrink: 0;
    display: flex; align-items: center; gap: 8px;
  }
  .toolbar-contact {
    display: flex; align-items: center; gap: 20px;
    font-size: 13px; color: var(--slate);
    flex-shrink: 0;
  }
  .toolbar-contact a {
    color: var(--slate); text-decoration: none;
    transition: color 0.2s;
  }
  .toolbar-contact a:hover { color: var(--orange); }
  .toolbar-contact .tc-divider {
    width: 1px; height: 14px;
    background: var(--border);
  }
  .toolbar-actions { display: flex; gap: 10px; flex-shrink: 0; }
  .btn {
    padding: 8px 20px; border-radius: 6px; font-size: 13px;
    font-family: 'Plus Jakarta Sans', sans-serif; cursor: pointer;
    border: none; font-weight: 600; letter-spacing: 0.2px;
    transition: all 0.2s;
  }
  .btn-outline {
    background: transparent; border: 1.5px solid var(--orange);
    color: var(--orange);
  }
  .btn-outline:hover { background: var(--orange-pale); }
  .btn-solid { background: var(--orange); color: #fff; }
  .btn-solid:hover { background: var(--orange-dark); }

  /* LAYOUT */
  .wrapper {
    max-width: 1100px; margin: 0 auto;
    padding: 80px 24px 60px;
    display: flex; flex-direction: column; gap: 0;
  }
  .page {
    background: white;
    overflow: hidden;
    position: relative;
    border-radius: 0;
  }

  /* ── COVER PAGE ── */
  .cover {
    background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 55%, var(--navy-light) 100%);
    min-height: 520px;
    display: flex; flex-direction: column;
    padding: 0;
    position: relative;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
  }
  .cover-bg {
    position: absolute; inset: 0;
    background: url('background_image.jpg') center center / cover no-repeat;
    opacity: 0.06;
  }
  .cover-lines {
    position: absolute; inset: 0; overflow: hidden; pointer-events: none;
  }
  .cover-lines::before {
    content: '';
    position: absolute;
    top: -180px; right: -120px;
    width: 560px; height: 560px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(249,115,22,0.18) 0%, transparent 70%);
  }
  .cover-lines::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(249,115,22,0.10) 0%, transparent 70%);
  }
  .cover-content {
    position: relative; z-index: 2;
    padding: 56px 64px 52px;
    flex: 1; display: flex; flex-direction: column; justify-content: space-between;
  }
  .cover-logo {
    font-family: 'Playfair Display', Georgia, serif;
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: flex; align-items: center; gap: 12px;
  }
  .cover-logo::before {
    content: '';
    display: inline-block;
    width: 24px; height: 2px;
    background: var(--orange);
    border-radius: 2px;
  }
  .cover-headline { margin-top: 36px; }
  .cover-eyebrow {
    font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--orange); margin-bottom: 14px; font-weight: 600;
  }
  .cover-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(38px, 5vw, 56px); line-height: 1.05;
    color: var(--white);
    font-weight: 900;
  }
  .cover-title span {
    background: linear-gradient(135deg, var(--orange) 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .cover-subtitle {
    margin-top: 18px;
    font-size: 15px; color: rgba(255,255,255,0.55);
    font-weight: 400; max-width: 420px; line-height: 1.7;
  }
  .cover-footer {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-top: 48px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .cover-client-label {
    font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
    color: rgba(255,255,255,0.35); margin-bottom: 6px;
  }
  .cover-client-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px; color: var(--white); font-weight: 700;
  }
  .cover-date {
    font-size: 12px; color: rgba(255,255,255,0.35);
    text-align: right;
  }
  .cover-tagline-badge {
    background: rgba(249,115,22,0.18);
    border: 1px solid rgba(249,115,22,0.4);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
    color: #fdba74;
    display: inline-block;
    margin-top: 20px;
  }

  /* ── SECTION PAGES ── */
  .section-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 32px 56px;
    display: flex; align-items: center; gap: 20px;
    position: relative; overflow: hidden;
  }
  .section-header::after {
    content: '';
    position: absolute; right: 0; top: 0; bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--orange), #fbbf24);
  }
  .section-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 52px; font-weight: 800;
    color: rgba(249,115,22,0.18);
    line-height: 1;
    min-width: 56px;
  }
  .section-label {
    font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--orange); margin-bottom: 4px; font-weight: 600;
  }
  .section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 24px; color: var(--white); font-weight: 700;
  }
  .section-body { padding: 48px 56px; }

  /* ── TYPOGRAPHY ── */
  .lead {
    font-size: 16px; line-height: 1.75;
    color: var(--slate); margin-bottom: 28px;
  }
  .lead strong { color: var(--ink); font-weight: 600; }
  h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px; color: var(--ink);
    margin-bottom: 10px; margin-top: 28px; font-weight: 700;
  }
  h3:first-child { margin-top: 0; }
  p { font-size: 14px; color: var(--slate); line-height: 1.75; margin-bottom: 14px; }
  p:last-child { margin-bottom: 0; }

  /* ── PAIN POINTS ── */
  .pain-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 14px; margin: 24px 0;
  }
  .pain-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 3px solid var(--orange);
    padding: 18px 20px;
    border-radius: 0 10px 10px 0;
    transition: border-color 0.2s, transform 0.2s;
  }
  .pain-card:hover { border-left-color: #fbbf24; transform: translateX(3px); }
  .pain-card-icon { font-size: 20px; margin-bottom: 8px; }
  .pain-card-title { font-weight: 600; font-size: 13px; color: var(--ink); margin-bottom: 4px; }
  .pain-card-desc { font-size: 13px; color: var(--muted); line-height: 1.55; }

  /* ── STEPS ── */
  .steps { display: flex; flex-direction: column; gap: 0; margin: 24px 0; }
  .step {
    display: flex; gap: 20px; align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
  }
  .step:last-child { border-bottom: none; }
  .step-num {
    min-width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--orange), #fbbf24);
    color: #fff;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 14px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
  }
  .step-content { flex: 1; }
  .step-title { font-weight: 600; font-size: 14px; color: var(--ink); margin-bottom: 4px; }
  .step-desc { font-size: 13px; color: var(--slate); line-height: 1.65; margin: 0; }
  .step-badge {
    font-size: 10px; background: var(--orange-pale);
    color: var(--orange); padding: 2px 8px; border-radius: 20px;
    display: inline-block; margin-left: 8px; vertical-align: middle;
    font-weight: 600; letter-spacing: 0.3px;
  }

  /* ── TIER TABLE ── */
  .tier-table { width: 100%; border-collapse: collapse; margin: 24px 0; }
  .tier-table th {
    background: var(--navy);
    color: white;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 14px; font-weight: 700;
    padding: 14px 18px;
    text-align: left;
    border: none;
  }
  .tier-table th:first-child { border-radius: 8px 0 0 0; }
  .tier-table th:last-child { border-radius: 0 8px 0 0; }
  .tier-table td {
    padding: 12px 18px;
    font-size: 13px; color: var(--slate);
    border-bottom: 1px solid var(--border);
    vertical-align: top;
  }
  .tier-table tr:last-child td { border-bottom: none; }
  .tier-table tr:nth-child(even) td { background: var(--surface); }
  .tier-table .check { color: var(--green); font-size: 15px; }
  .tier-table .dash { color: var(--border); }
  .price-tag {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 19px; font-weight: 800; color: var(--ink);
  }
  .price-sub { font-size: 11px; color: var(--muted); display: block; }

  /* tier highlight columns */
  .tier-table th:nth-child(3) { background: #1a3558; }
  .tier-table th:nth-child(4) { background: #0f2040; }

  /* SELECT PLAN BUTTON */
  .select-plan-row td { background: #fff !important; padding: 14px 18px; }
  .select-plan-btn {
    background: linear-gradient(135deg, var(--orange), #fbbf24);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 13px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: opacity 0.2s, transform 0.15s;
  }
  .select-plan-btn:hover { opacity: 0.88; transform: translateY(-1px); }

  /* ── ROI BLOCK ── */
  .roi-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 14px; margin: 24px 0;
  }
  .roi-card {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    border-radius: 12px; padding: 24px 20px;
    text-align: center;
    position: relative; overflow: hidden;
  }
  .roi-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), #fbbf24);
  }
  .roi-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 42px; font-weight: 900;
    font-style: italic;
    background: linear-gradient(135deg, var(--orange), #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 6px;
  }
  .roi-label { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.4; }

  /* ── TESTIMONIAL ── */
  .testimonial {
    background: var(--orange-pale);
    border: 1px solid var(--orange-pale2);
    border-radius: 12px; padding: 28px 32px;
    margin: 24px 0;
    position: relative;
  }
  .testimonial::before {
    content: '\201C';
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 72px; line-height: 0.8;
    color: var(--orange); opacity: 0.25;
    position: absolute; top: 20px; left: 24px;
  }
  .testimonial-text {
    font-size: 16px; font-style: italic;
    color: var(--ink-mid); line-height: 1.65;
    padding-left: 16px; margin-bottom: 14px; font-weight: 500;
  }
  .testimonial-attr { font-size: 13px; color: var(--muted); padding-left: 16px; }
  .testimonial-attr strong { color: var(--orange); font-weight: 600; }

  /* ── OBJECTIONS ── */
  .objection { margin-bottom: 18px; border-left: 3px solid var(--orange-pale2); padding-left: 16px; }
  .objection-q {
    font-weight: 600; font-size: 14px; color: var(--ink);
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 6px;
  }
  .objection-q::before {
    content: 'Q';
    background: linear-gradient(135deg, var(--orange), #fbbf24);
    color: #fff;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 10px; font-weight: 800;
    width: 20px; height: 20px;
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .objection-a {
    font-size: 13px; color: var(--slate);
    line-height: 1.65; padding-left: 30px;
    margin: 0;
  }

  /* ── CTA PAGE ── */
  .cta-page {
    background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 55%, var(--navy-light) 100%);
    padding: 68px 56px;
    text-align: center;
    position: relative; overflow: hidden;
    border-radius: 0 0 16px 16px;
  }
  .cta-page::before {
    content: '';
    position: absolute;
    bottom: -120px; left: 50%; transform: translateX(-50%);
    width: 700px; height: 350px;
    background: radial-gradient(ellipse, rgba(249,115,22,0.15) 0%, transparent 70%);
  }
  .cta-eyebrow {
    font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--orange); margin-bottom: 14px; font-weight: 600;
  }
  .cta-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 38px; color: var(--white);
    font-weight: 900; line-height: 1.15;
    margin-bottom: 18px;
  }
  .cta-title span {
    background: linear-gradient(135deg, var(--orange), #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .cta-sub {
    font-size: 15px; color: rgba(255,255,255,0.55);
    max-width: 460px; margin: 0 auto 36px;
    line-height: 1.65; font-weight: 400;
  }
  .cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }
  .cta-btn-primary {
    background: linear-gradient(135deg, var(--orange), #fbbf24);
    color: #fff;
    padding: 13px 32px; border-radius: 10px;
    font-size: 14px; font-weight: 700;
    cursor: pointer;
    border: none; font-family: 'Plus Jakarta Sans', sans-serif;
    transition: opacity 0.2s, transform 0.15s;
    text-decoration: none; display: inline-block;
  }
  .cta-btn-primary:hover { opacity: 0.88; transform: translateY(-2px); }
  .cta-btn-secondary {
    background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.85);
    border: 1.5px solid rgba(255,255,255,0.2);
    padding: 13px 32px; border-radius: 10px;
    font-size: 14px; font-weight: 600;
    cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif;
    display: inline-block; text-decoration: none;
    transition: background 0.2s;
  }
  .cta-btn-secondary:hover { background: rgba(255,255,255,0.14); }
  .cta-contact-grid {
    display: flex; gap: 40px; justify-content: center; flex-wrap: wrap;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .cta-contact-item { text-align: center; }
  .cta-contact-label {
    font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
    color: rgba(255,255,255,0.3); margin-bottom: 4px;
  }
  .cta-contact-val {
    font-size: 14px; color: rgba(255,255,255,0.85); font-weight: 500;
  }

  /* ── GOLD/ORANGE RULE ── */
  .gold-rule {
    height: 2px;
    background: linear-gradient(90deg, var(--orange) 0%, #fbbf24 50%, transparent 100%);
    margin: 0;
  }

  /* ── EDITABLE FIELDS ── */
  [contenteditable="true"] {
    outline: none;
    border-bottom: 1px dashed rgba(249,115,22,0.4);
    cursor: text;
    transition: border-color 0.2s;
  }
  [contenteditable="true"]:hover { border-bottom-color: var(--orange); }
  [contenteditable="true"]:focus { border-bottom-color: var(--orange); background: var(--orange-pale); }

  .edit-hint {
    position: fixed; bottom: 20px; right: 20px;
    background: var(--navy); color: var(--orange);
    font-size: 12px; padding: 8px 16px; border-radius: 8px;
    opacity: 0.9; z-index: 200;
    font-family: 'Plus Jakarta Sans', sans-serif;
  }

  /* ── MOBILE RESPONSIVE ── */
  @media (max-width: 768px) {
    .toolbar { padding: 10px 16px; flex-wrap: wrap; gap: 8px; }
    .toolbar-brand { font-size: 14px; }
    .toolbar-contact { display: none; }
    .btn { padding: 6px 12px; font-size: 12px; }
    .wrapper { padding: 70px 0 40px; }
    .cover-content { padding: 32px 24px 32px; }
    .cover-title { font-size: 32px; }
    .cover-subtitle { font-size: 14px; }
    .section-header { padding: 24px 24px; }
    .section-num { font-size: 32px; min-width: 38px; }
    .section-title { font-size: 20px; }
    .section-body { padding: 28px 24px; }
    .pain-grid { grid-template-columns: 1fr; gap: 10px; }
    .roi-grid { grid-template-columns: 1fr; gap: 10px; }
    .tier-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .step { gap: 14px; }
    .cta-page { padding: 44px 24px; }
    .cta-title { font-size: 28px; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-btn-primary, .cta-btn-secondary { width: 100%; max-width: 280px; }
    .cta-contact-grid { gap: 24px; }
    .cover-footer { flex-direction: column; gap: 14px; align-items: flex-start; }
    .cover-date { text-align: left; }
    .testimonial { padding: 20px 18px; }
  }
  @media (max-width: 480px) {
    .cover-title { font-size: 26px; }
    .section-title { font-size: 17px; }
    .cover-logo { font-size: 11px; }
    .lead { font-size: 14px; }
  }

  /* ── 8 PILLARS ── */
  .pillars-section {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .pillars-eyebrow {
    font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--orange); margin-bottom: 7px; font-weight: 600;
  }
  .pillars-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 17px; font-weight: 800;
    color: var(--white); margin-bottom: 4px;
  }
  .pillars-rule {
    width: 28px; height: 2px;
    background: linear-gradient(90deg, var(--orange), #fbbf24);
    border-radius: 2px;
    margin-bottom: 18px;
  }
  .pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 10px;
  }
  .pillar-card {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 14px 13px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    transition: background 0.2s;
  }
  .pillar-card:hover { background: rgba(255,255,255,0.09); }
  .pillar-card.gold { border: 1px solid rgba(249,115,22,0.3); }
  .pillar-card.blue { border: 1px solid rgba(251,191,36,0.25); }
  .pillar-icon {
    width: 30px; height: 30px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
  }
  .pillar-icon.gold {
    background: rgba(249,115,22,0.15);
    color: #fdba74;
  }
  .pillar-icon.blue {
    background: rgba(251,191,36,0.12);
    color: #fde68a;
  }
  .pillar-title {
    font-size: 12px; font-weight: 600;
    color: rgba(255,255,255,0.9); line-height: 1.3;
  }
  .pillar-desc {
    font-size: 10px;
    color: rgba(255,255,255,0.38);
    line-height: 1.5;
  }
  .pillars-tagline {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
  }
  @media (max-width: 640px) {
    .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  }

  /* ── DEMO CALL PLAYER ── */
  .cover-top-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 0;
  }
  .cover-top-left { flex: 1; min-width: 0; }
  .demo-call-widget {
    flex-shrink: 0;
    width: 256px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(249,115,22,0.28);
    border-radius: 14px;
    padding: 18px 18px 14px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
  }
  .demo-call-widget::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(249,115,22,0.07) 0%, transparent 60%);
    pointer-events: none;
  }
  .demo-call-label {
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 7px;
    font-weight: 600;
  }
  .demo-call-label::before {
    content: '';
    display: inline-block;
    width: 6px; height: 6px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(34,197,94,0.8);
    animation: demo-pulse 2s ease-in-out infinite;
  }
  @keyframes demo-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 6px rgba(34,197,94,0.8); }
    50% { opacity: 0.5; box-shadow: 0 0 2px rgba(34,197,94,0.3); }
  }
  .demo-call-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 13px; font-weight: 700;
    color: var(--white);
    margin-bottom: 4px; line-height: 1.3;
  }
  .demo-call-desc {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 14px; line-height: 1.5;
  }
  .demo-player-controls {
    display: flex; align-items: center; gap: 12px;
  }
  .demo-play-btn {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), #fbbf24);
    border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: opacity 0.2s, transform 0.15s;
    position: relative; z-index: 1;
  }
  .demo-play-btn:hover { opacity: 0.85; transform: scale(1.08); }
  .demo-play-btn:active { transform: scale(0.96); }
  .demo-play-icon {
    width: 0; height: 0;
    border-style: solid;
    border-width: 6px 0 6px 12px;
    border-color: transparent transparent transparent #fff;
    margin-left: 2px;
    transition: all 0.15s;
  }
  .demo-play-icon.paused {
    border: none;
    width: 12px; height: 13px;
    display: flex; gap: 3px;
    align-items: center;
    margin-left: 0;
  }
  .demo-play-icon.paused::before,
  .demo-play-icon.paused::after {
    content: '';
    display: block;
    width: 3px; height: 13px;
    background: #fff;
    border-radius: 2px;
  }
  .demo-progress-wrap {
    flex: 1; display: flex; flex-direction: column; gap: 5px;
  }
  .demo-progress-bar {
    width: 100%; height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px; cursor: pointer;
    position: relative; overflow: hidden;
  }
  .demo-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--orange), #fbbf24);
    border-radius: 2px; width: 0%;
    transition: width 0.1s linear;
    pointer-events: none;
  }
  .demo-time-row {
    display: flex; justify-content: space-between;
    font-size: 10px; color: rgba(255,255,255,0.3);
    font-variant-numeric: tabular-nums;
  }
  .demo-call-footer {
    margin-top: 12px; padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 10px; color: rgba(255,255,255,0.25);
    letter-spacing: 0.5px; text-align: center;
  }
  @media (max-width: 860px) {
    .cover-top-row { flex-direction: column; gap: 20px; }
    .demo-call-widget { width: 100%; max-width: 340px; }
  }

  /* Table category section headers — warm amber on parchment */
  .tier-table td[colspan="4"] {
    background: #fef3e8 !important;
    color: #92400e !important;
  }

/* ── PAGE NAV (added for multi-page site) ── */
.page-nav {
  display: flex;
  gap: 4px;
  padding: 0 32px;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  position: fixed;
  top: 53px;
  left: 0; right: 0;
  z-index: 99;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.page-nav a {
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--slate);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.page-nav a:hover { color: var(--orange); }
.page-nav a.active { color: var(--orange); border-bottom-color: var(--orange); }
.wrapper { padding-top: 128px; }
@media (max-width: 768px) {
  .page-nav { padding: 0 12px; overflow-x: auto; white-space: nowrap; top: 84px; }
  .page-nav a { padding: 10px 10px; font-size: 12px; }
  .wrapper { padding-top: 148px; }
}
