/* === BASE STYLES === */:root {
      --accent: #c8a84b;
      --accentLight: #f0d080;
      --accentGlow: rgba(200, 168, 75, 0.35);
      --primary: #1a0a00;
      --surface: #120800;
      --surfaceCard: #1e1005;
      --surfaceElevated: #261508;
      --border: #3a2010;
      --borderSubtle: #2a1508;
      --textPrimary: #f5ede0;
      --textSecondary: #c8b090;
      --textMuted: #8a7060;
      --crimson: #9b1a2a;
      --crimsonBright: #c82035;
      --crimsonGlow: rgba(155, 26, 42, 0.4);
      --gradientHero: linear-gradient(135deg, #0d0500 0%, #1a0a00 40%, #2a0d08 70%, #1a0500 100%);
      --gradientAccent: linear-gradient(135deg, #c8a84b 0%, #f0d080 50%, #c8a84b 100%);
      --gradientCard: linear-gradient(145deg, #1e1005 0%, #261508 100%);
      --shadow: 0 8px 32px rgba(0,0,0,0.6);
      --shadowAccent: 0 4px 24px rgba(200, 168, 75, 0.25);
      --shadowCrimson: 0 4px 24px rgba(155, 26, 42, 0.35);
      --radius: 12px;
      --radiusLg: 20px;
      --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

    html, body {
      overflow-x: hidden;
      max-width: 100vw;
      scroll-behavior: smooth;
    }

    body {
      background-color: var(--primary);
      color: var(--textPrimary);
      font-family: 'Georgia', 'Times New Roman', serif;
      font-size: 16px;
      line-height: 1.7;
    }

    h1, h2, h3, h4 {
      font-family: 'Georgia', serif;
      font-weight: 700;
      line-height: 1.2;
      color: var(--textPrimary);
    }

    h2 {
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      margin-bottom: 1.5rem;
      position: relative;
      padding-bottom: 0.75rem;
    }

    h2::after {
      content: '';
      display: block;
      position: absolute;
      bottom: 0;
      left: 0;
      width: 60px;
      height: 3px;
      background: var(--gradientAccent);
      border-radius: 2px;
    }

    h3 {
      font-size: clamp(1.1rem, 2vw, 1.4rem);
      margin-bottom: 0.75rem;
      color: var(--accentLight);
    }

    p {
      color: var(--textSecondary);
      margin-bottom: 1rem;
    }

    a {
      color: var(--accent);
      text-decoration: none;
      transition: color var(--transition);
    }

    a:hover { color: var(--accentLight); }

    ul, ol { padding-left: 1.5rem; color: var(--textSecondary); }
    li { margin-bottom: 0.4rem; }

    strong { color: var(--textPrimary); }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 32px;
      border-radius: 8px;
      font-size: 1rem;
      font-weight: 700;
      font-family: 'Georgia', serif;
      letter-spacing: 0.5px;
      cursor: pointer;
      border: none;
      transition: all var(--transition);
      text-decoration: none;
      white-space: nowrap;
    }

    .btnPrimary {
      background: var(--gradientAccent);
      color: #0d0500;
      box-shadow: var(--shadowAccent), 0 2px 0 rgba(0,0,0,0.3);
    }

    .btnPrimary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(200, 168, 75, 0.45), 0 2px 0 rgba(0,0,0,0.3);
      color: #0d0500;
    }

    .btnPrimary:active { transform: translateY(0); }

    .btnSecondary {
      background: transparent;
      color: var(--accent);
      border: 2px solid var(--accent);
    }

    .btnSecondary:hover {
      background: var(--accent);
      color: #0d0500;
      transform: translateY(-2px);
    }

    .card {
      background: var(--gradientCard);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.75rem;
      transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    }

    .card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow), var(--shadowAccent);
      border-color: var(--accent);
    }

    figure.content-image {
      margin: 1.5rem 0;
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--border);
    }

    figure.content-image img {
      display: block;
      width: 100%;
      height: auto;
      max-width: 100%;
      object-fit: cover;
    }

    .table-responsive {
      overflow-x: auto;
      border-radius: var(--radius);
      border: 1px solid var(--border);
    }

    table.comparison-table {
      width: 100%;
      border-collapse: collapse;
      background: var(--surfaceCard);
    }

    table.comparison-table thead {
      background: linear-gradient(90deg, var(--crimson), #7a1020);
    }

    table.comparison-table thead th {
      padding: 1rem 1.25rem;
      color: var(--textPrimary);
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      font-weight: 700;
      border: none;
    }

    table.comparison-table tbody tr {
      border-bottom: 1px solid var(--borderSubtle);
      transition: background var(--transition);
    }

    table.comparison-table tbody tr:hover { background: var(--surfaceElevated); }

    table.comparison-table tbody td {
      padding: 0.875rem 1.25rem;
      color: var(--textSecondary);
      font-size: 0.95rem;
    }

    table.comparison-table tbody td:first-child {
      color: var(--accent);
      font-weight: 600;
    }

    .highlightBox {
      background: linear-gradient(135deg, #1a0a00, #261508);
      border: 1px solid var(--accent);
      border-left: 4px solid var(--accent);
      border-radius: var(--radius);
      padding: 1.75rem;
      margin: 1.5rem 0;
    }

    .highlightBox h3 { margin-bottom: 1rem; }

    .infoCard {
      background: linear-gradient(135deg, #1e0d05, #2a1008);
      border: 1px solid var(--crimson);
      border-left: 4px solid var(--crimsonBright);
      border-radius: var(--radius);
      padding: 1.25rem 1.5rem;
      margin: 1.5rem 0;
      color: var(--textSecondary);
    }

    .infoCard strong { color: var(--accentLight); }

    .featureList { list-style: none; padding-left: 0; }
    .featureList li {
      padding: 0.4rem 0 0.4rem 1.5rem;
      position: relative;
      color: var(--textSecondary);
    }
    .featureList li::before {
      content: '▸';
      position: absolute;
      left: 0;
      color: var(--accent);
    }

    .numberedList { padding-left: 1.5rem; }
    .numberedList li { color: var(--textSecondary); margin-bottom: 0.75rem; }

    .checkList { list-style: none; padding-left: 0; }
    .checkList li {
      padding: 0.4rem 0 0.4rem 1.75rem;
      position: relative;
      color: var(--textSecondary);
    }
    .checkList li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--accent);
      font-weight: 700;
    }

    .highlightList { list-style: none; padding-left: 0; }
    .highlightList li {
      padding: 0.5rem 0 0.5rem 1.5rem;
      position: relative;
      color: var(--textSecondary);
      border-bottom: 1px solid var(--borderSubtle);
    }
    .highlightList li:last-child { border-bottom: none; }
    .highlightList li::before {
      content: '◆';
      position: absolute;
      left: 0;
      color: var(--accent);
      font-size: 0.7rem;
      top: 0.75rem;
    }

    /* === LAYOUT STYLES === */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(13, 5, 0, 0.97);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      box-shadow: 0 4px 24px rgba(0,0,0,0.5);
    }

    .headerInner {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 0 20px;
      height: 70px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .logo { flex-shrink: 0; }

    .logoText {
      font-size: 1.5rem;
      font-weight: 700;
      font-family: 'Georgia', serif;
      background: var(--gradientAccent);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: 1px;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 44px;
      height: 44px;
      background: transparent;
      border: 1px solid var(--border);
      border-radius: 8px;
      cursor: pointer;
      gap: 5px;
      margin-left: auto;
      flex-shrink: 0;
    }

    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--accent);
      border-radius: 2px;
      transition: all var(--transition);
    }

    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .main-nav { margin-left: auto; }

    .main-nav .navList {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .main-nav .navList a {
      display: block;
      padding: 8px 16px;
      color: var(--textSecondary);
      font-size: 0.9rem;
      border-radius: 6px;
      transition: all var(--transition);
    }

    .main-nav .navList a:hover {
      color: var(--accent);
      background: rgba(200, 168, 75, 0.1);
    }

    .ctaButton {
      flex-shrink: 0;
      padding: 10px 24px;
      font-size: 0.9rem;
    }

    .site-footer {
      background: #080300;
      border-top: 1px solid var(--border);
      padding: 3rem 0 2rem;
      margin-top: 5rem;
    }

    .footerInner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
      text-align: center;
    }

    .footerNav .footerNavList {
      display: flex;
      gap: 1.5rem;
      list-style: none;
      margin: 0;
      padding: 0;
      flex-wrap: wrap;
      justify-content: center;
    }

    .footerNav .footerNavList a {
      color: var(--textMuted);
      font-size: 0.85rem;
      transition: color var(--transition);
    }

    .footerNav .footerNavList a:hover { color: var(--accent); }

    .footerDisclaimer {
      color: var(--textMuted);
      font-size: 0.8rem;
      max-width: 600px;
      line-height: 1.6;
      margin: 0;
    }

    @media (max-width: 767px) {
      .headerInner {
        flex-wrap: wrap;
        height: auto;
        padding: 12px 20px;
        gap: 0;
      }

      .logo { flex: 1; }

      .hamburger { display: flex; margin-left: auto; }

      .main-nav {
        display: none;
        width: 100%;
        margin-left: 0;
        order: 3;
      }

      .main-nav.open { display: block; }

      .main-nav .navList {
        flex-direction: column;
        align-items: stretch;
        padding: 0.75rem 0;
        gap: 0;
        border-top: 1px solid var(--border);
        margin-top: 0.5rem;
      }

      .main-nav .navList a {
        padding: 12px 16px;
        font-size: 1rem;
      }

      .ctaButton {
        display: block;
        width: 100%;
        max-width: 200px;
        text-align: center;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 0.75rem auto 0;
        order: 4;
      }
    }

    @media (min-width: 768px) {
      .ctaButton { margin-left: 1rem; }
    }

@media (max-width: 767px) {
      .headerInner {
        flex-wrap: wrap;
        height: auto;
        padding: 12px 20px;
        gap: 0;
      }

      .logo { flex: 1; }

      .hamburger { display: flex; margin-left: auto; }

      .main-nav {
        display: none;
        width: 100%;
        margin-left: 0;
        order: 3;
      }

      .main-nav.open { display: block; }

      .main-nav .navList {
        flex-direction: column;
        align-items: stretch;
        padding: 0.75rem 0;
        gap: 0;
        border-top: 1px solid var(--border);
        margin-top: 0.5rem;
      }

      .main-nav .navList a {
        padding: 12px 16px;
        font-size: 1rem;
      }

      .ctaButton {
        display: block;
        width: 100%;
        max-width: 200px;
        text-align: center;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 0.75rem auto 0;
        order: 4;
      }
    }