/* ── PAGE-SPECIFIC STYLES ── */

    .page-hero {
      padding: 160px 5vw 100px;
      border-bottom: 1px solid var(--border);
      position: relative;
      overflow: hidden;
  background-image: url('/assets/images/Non-homepage-other-page-bg-photo3.png');
      background-size: cover;
      background-position: center center;
      background-attachment: fixed;
    }
    .page-hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(8,8,8,0.78);
      pointer-events: none;
    }
    .page-hero > * { position: relative; z-index: 1; }
    .page-hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'DM Mono', monospace;
      font-size: 0.72rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--amber);
      border: 1px solid rgba(232,160,32,0.3);
      padding: 6px 14px;
      margin-bottom: 28px;
    }
    .page-hero-tag::before {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--amber);
    }
    .page-h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.8rem, 7vw, 6.5rem);
      line-height: 0.93;
      letter-spacing: 0.02em;
      color: var(--white);
      max-width: 800px;
      margin-bottom: 28px;
    }
    .page-h1 .accent { color: var(--amber); }
    .page-sub {
      max-width: 560px;
      font-size: 1.05rem;
      font-weight: 300;
      color: var(--text);
      line-height: 1.75;
      margin-bottom: 44px;
    }
    .page-actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    /* ── COST COMPARISON BAND ── */
    .cost-band {
      border-bottom: 1px solid var(--border);
      background: var(--off);
    }
    .cost-compare-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      border: 1px solid var(--border);
    }
    @media (max-width: 760px) {
      .cost-compare-grid { grid-template-columns: 1fr; }
    }
    .cost-col {
      padding: 48px 36px;
      border-right: 1px solid var(--border);
      background: rgba(255,255,255,0.04);
      backdrop-filter: blur(20px);
    }
    .cost-col:last-child { border-right: none; }
    .cost-col.win { background: rgba(232,160,32,0.07); }
    @media (max-width: 720px) {
      .cost-col { border-right: none; border-bottom: 1px solid var(--border); }
      .cost-col:last-child { border-bottom: none; }
    }
    .cost-col-label {
      font-family: 'DM Mono', monospace;
      font-size: 0.62rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 20px;
    }
    .cost-col.win .cost-col-label { color: var(--amber); }
    .cost-col-price {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      color: var(--white);
      line-height: 1;
      margin-bottom: 6px;
    }
    .cost-col.win .cost-col-price { color: var(--amber); }
    .cost-col-sub {
      font-size: 0.78rem;
      color: var(--muted);
      font-weight: 300;
      line-height: 1.5;
      margin-bottom: 28px;
    }
    .cost-col-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .cost-col-list li {
      font-size: 0.82rem;
      color: var(--text);
      font-weight: 300;
      padding-left: 16px;
      position: relative;
      line-height: 1.5;
    }
    .cost-col-list li::before {
      content: '·';
      position: absolute;
      left: 0;
      color: var(--muted);
    }
    .cost-col-list li.negative { color: var(--muted); }
    .cost-col-list li.positive { color: var(--text); }

    /* ── CONTENT SECTIONS ── */
    .content-section {
      padding: 100px 5vw;
      border-bottom: 1px solid var(--border);
    }
    .content-section.dark { background: var(--off); }
    .content-section.bg-problem {
      background-image: url('/assets/images/bg-problem.png');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      position: relative;
    }
    .content-section.bg-problem::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(8,8,8,0.84);
      pointer-events: none;
    }
    .content-section.bg-problem > * { position: relative; z-index: 1; }

    /* ── STORY ── */
    .story-body {
      max-width: 680px;
      margin-top: 40px;
    }
    .story-body p {
      font-size: 1rem;
      font-weight: 300;
      color: var(--text);
      line-height: 1.85;
      margin-bottom: 24px;
    }
    .story-body p strong { color: var(--white); font-weight: 500; }
    .story-pull {
      border-left: 2px solid var(--amber);
      padding: 20px 28px;
      margin: 36px 0;
      background: rgba(232,160,32,0.05);
      font-size: 1.05rem;
      font-style: italic;
      color: var(--text);
      font-weight: 300;
      line-height: 1.75;
    }
    .story-close {
      font-size: 0.92rem;
      color: var(--muted);
      font-family: 'DM Mono', monospace;
      letter-spacing: 0.06em;
      margin-top: 36px;
    }

    /* ── COMPARISON TABLE ── */
    .compare-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 48px;
      border: 1px solid var(--border);
    }
    .compare-table th {
      padding: 20px 24px;
      text-align: left;
      font-family: 'DM Mono', monospace;
      font-size: 0.68rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
      border-bottom: 1px solid var(--border);
      background: rgba(255,255,255,0.03);
    }
    .compare-table th:not(:first-child) { border-left: 1px solid var(--border); }
    .compare-table th.elvyna { color: var(--amber); }
    .compare-table td {
      padding: 18px 24px;
      font-size: 0.85rem;
      color: var(--text);
      border-bottom: 1px solid var(--border);
      font-weight: 300;
      line-height: 1.5;
      vertical-align: top;
    }
    .compare-table td:not(:first-child) { border-left: 1px solid var(--border); }
    .compare-table tr:last-child td { border-bottom: none; }
    .compare-table td:first-child {
      color: var(--white);
      font-weight: 400;
      font-size: 0.82rem;
    }
    .compare-table td.win { color: var(--amber); font-weight: 500; }
    .compare-table td.lose { color: var(--muted); }

    /* ── PROBLEM CARDS ── */
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1px;
      margin-top: 56px;
      border: 1px solid var(--border);
    }
    .info-card {
      padding: 40px 32px;
      background: rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(32px) saturate(180%);
      -webkit-backdrop-filter: blur(32px) saturate(180%);
      border-right: 1px solid rgba(255,255,255,0.07);
      position: relative;
      overflow: hidden;
      transition: background 0.2s;
    }
    .info-card:last-child { border-right: none; }
    @media (max-width: 680px) {
      .info-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
      .info-card:last-child { border-bottom: none; }
    }
    .info-card:hover { background: rgba(255,255,255,0.09); }
    .info-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.10) 40%, rgba(232,160,32,0.18) 60%, transparent 100%);
      opacity: 0;
      transition: opacity 0.3s;
      pointer-events: none;
    }
    .info-card:hover::before { opacity: 1; }
    .info-card-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3rem;
      color: rgba(255,255,255,0.10);
      line-height: 1;
      margin-bottom: 16px;
    }
    .info-card-title {
      font-size: 1rem;
      font-weight: 500;
      color: var(--white);
      margin-bottom: 12px;
    }
    .info-card-body {
      font-size: 0.85rem;
      color: var(--muted);
      line-height: 1.7;
      font-weight: 300;
    }

    /* ── YEAR ONE MATH ── */
    .math-section {
      max-width: 680px;
    }
    .math-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      margin-top: 48px;
      border: 1px solid var(--border);
    }
    @media (max-width: 760px) {
      .math-grid { grid-template-columns: 1fr; }
    }
    .math-col {
      padding: 40px 32px;
      background: rgba(255,255,255,0.04);
      border-right: 1px solid var(--border);
    }
    .math-col:last-child { border-right: none; }
    @media (max-width: 600px) {
      .math-col { border-right: none; border-bottom: 1px solid var(--border); }
      .math-col:last-child { border-bottom: none; }
    }
    .math-col.elvyna-win { background: rgba(232,160,32,0.06); }
    .math-col-label {
      font-family: 'DM Mono', monospace;
      font-size: 0.62rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 16px;
    }
    .math-col.elvyna-win .math-col-label { color: var(--amber); }
    .math-total {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2rem, 4vw, 3rem);
      color: var(--white);
      line-height: 1;
      margin-bottom: 8px;
    }
    .math-col.elvyna-win .math-total { color: var(--amber); }
    .math-breakdown {
      font-size: 0.8rem;
      color: var(--muted);
      font-weight: 300;
      line-height: 1.6;
      margin-bottom: 24px;
    }
    .math-items {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .math-items li {
      font-size: 0.82rem;
      color: var(--text);
      font-weight: 300;
      padding-left: 16px;
      position: relative;
      line-height: 1.5;
    }
    .math-items li::before {
      content: '·';
      position: absolute;
      left: 0;
      color: var(--muted);
    }
    .math-savings-banner {
      margin-top: 32px;
      padding: 32px 36px;
      border: 1px solid rgba(232,160,32,0.3);
      background: rgba(232,160,32,0.06);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }
    .math-savings-label {
      font-family: 'DM Mono', monospace;
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 6px;
    }
    .math-savings-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2rem, 5vw, 3.5rem);
      color: var(--amber);
      line-height: 1;
    }
    .math-savings-sub {
      font-size: 0.82rem;
      color: var(--muted);
      font-weight: 300;
      margin-top: 4px;
    }

    /* ── SOCIAL PROOF ── */
    .proof-block {
      max-width: 680px;
      margin-top: 40px;
    }
    .proof-quote {
      border: 1px solid rgba(232,160,32,0.2);
      background: rgba(232,160,32,0.04);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      padding: 40px 44px;
      position: relative;
      margin-bottom: 24px;
    }
    .proof-quote-mark {
      font-family: Georgia, serif;
      font-size: 5rem;
      color: rgba(232,160,32,0.2);
      line-height: 0.6;
      position: absolute;
      top: 24px; left: 28px;
    }
    .proof-quote-text {
      font-size: 1.05rem;
      font-weight: 300;
      color: var(--white);
      line-height: 1.75;
      font-style: italic;
      padding-left: 20px;
    }
    .proof-attribution {
      font-family: 'DM Mono', monospace;
      font-size: 0.68rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
      margin-top: 20px;
    }
    .proof-attribution span { color: var(--amber); }
    .proof-note {
      font-size: 0.85rem;
      color: var(--muted);
      font-weight: 300;
      line-height: 1.7;
      margin-top: 8px;
    }

    /* ── FAQ ── */
    .faq-list {
      margin-top: 56px;
      border: 1px solid var(--border);
    }
    .faq-item { border-bottom: 1px solid var(--border); }
    .faq-item:last-child { border-bottom: none; }
    .faq-item summary {
      list-style: none;
      padding: 24px 28px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.92rem;
      font-weight: 500;
      color: var(--white);
      transition: color 0.2s, background 0.2s;
      gap: 16px;
    }
    .faq-item summary:hover { color: var(--amber); background: rgba(232,160,32,0.04); }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::after {
      content: '+';
      font-family: 'DM Mono', monospace;
      font-size: 1.1rem;
      color: var(--amber);
      flex-shrink: 0;
      transition: transform 0.2s;
    }
    .faq-item[open] summary::after { transform: rotate(45deg); }
    .faq-item[open] summary { color: var(--amber); }
    .faq-answer {
      padding: 0 28px 24px;
      font-size: 0.88rem;
      color: var(--text);
      line-height: 1.75;
      font-weight: 300;
      max-width: 680px;
    }
    .faq-answer a { color: var(--amber); }

    /* ── CTA BAND ── */
    .cta-band {
      padding: 100px 5vw;
      border-top: 1px solid var(--border);
      background: var(--off);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-band-actions {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 40px;
    }
    .cta-email-note {
      margin-top: 20px;
      font-size: 0.82rem;
      color: var(--muted);
    }
    .cta-email-note a { color: var(--amber); }

    /* ── PARALLAX BAND ── */
    .parallax-band {
      padding: 100px 5vw;
      background-image: url('/assets/images/Non-homepage-other-page-bg-photo2.png');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      position: relative;
      text-align: center;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .parallax-band::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(8,8,8,0.72);
      pointer-events: none;
    }
    .parallax-band > * { position: relative; z-index: 1; }
    .parallax-band__stat {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(4rem, 12vw, 9rem);
      color: var(--amber);
      line-height: 1;
      margin-bottom: 16px;
    }
    .parallax-band__label {
      font-size: 1.05rem;
      font-weight: 300;
      color: var(--text);
      max-width: 480px;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* ── BREADCRUMB ── */
    .breadcrumb {
      font-family: 'DM Mono', monospace;
      font-size: 0.68rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 32px;
    }
    .breadcrumb a { color: var(--muted); text-decoration: none; }
    .breadcrumb a:hover { color: var(--amber); }
    .breadcrumb span { color: var(--border); margin: 0 8px; }

    footer { border-top: 1px solid var(--border); }
/* ── PARALLAX BAND ── */
.parallax-band {
  padding: 120px 5vw;
  position: relative;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
.parallax-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.75);
  pointer-events: none;
}
.bg-parallax-hiring {
  background-image: url('/assets/images/Non-homepage-other-page-bg-photo2.png');
}
.parallax-band-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}
.parallax-band-stat {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 8vw, 6rem);
  color: var(--amber);
  line-height: 1;
  margin-bottom: 16px;
}
.parallax-band-label {
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 400;
  line-height: 1.6;
}

@media (max-width: 760px) {
      .page-hero {
        background-image: url('/assets/images/Non-homepage-other-page-bg-photo3-phone.jpeg');
        background-size: cover;
        background-position: center top;
        background-attachment: scroll !important;
      }

      .content-section.bg-problem {
        background-image: url('/assets/images/bg-problem-phone.jpeg');
        background-size: cover;
        background-position: center top;
        background-attachment: scroll !important;
      }

      .parallax-band {
        background-image: url('/assets/images/Non-homepage-other-page-bg-photo2-phone.jpeg');
        background-size: cover;
        background-position: center center;
        background-attachment: scroll !important;
      }

      .bg-parallax-hiring {
        background-image: url('/assets/images/Non-homepage-other-page-bg-photo2-phone.jpeg');
      }
    }
