/* === BASE STYLES === */:root {
      --accent: #dc2626;
      --accent-bright: #ff3333;
      --accent-dark: #991b1b;
      --background: #080808;
      --background-alt: #0f0f0f;
      --background-card: #141414;
      --border-subtle: rgba(220, 38, 38, 0.2);
      --gradient-accent: linear-gradient(135deg, #dc2626 0%, #ff3333 100%);
      --gradient-card: linear-gradient(145deg, #141414 0%, #1a1a1a 100%);
      --gradient-hero: linear-gradient(135deg, #080808 0%, #1a0505 50%, #080808 100%);
      --shadow-card: 0 4px 24px rgba(220, 38, 38, 0.1);
      --shadow-glow: 0 0 30px rgba(220, 38, 38, 0.3);
      --surface: #1a1a1a;
      --surface-elevated: #202020;
      --text-muted: #888888;
      --text-primary: #ffffff;
      --text-secondary: #cccccc;
    }

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

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

    body {
      background-color: var(--background);
      color: var(--text-primary);
      font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
      font-size: 16px;
      line-height: 1.7;
    }

    .container {
      margin-inline: auto;
      max-width: 1200px;
      padding-inline: 20px;
      width: 100%;
    }

    h1, h2, h3, h4 {
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.2;
    }

    h2 {
      font-size: clamp(26px, 4vw, 42px);
      margin-bottom: 24px;
    }

    h3 {
      font-size: clamp(18px, 2.5vw, 24px);
      margin-bottom: 12px;
    }

    p {
      color: var(--text-secondary);
      margin-bottom: 16px;
    }

    p:last-child {
      margin-bottom: 0;
    }

    a {
      color: var(--accent-bright);
      text-decoration: none;
      transition: color 0.2s ease;
    }

    a:hover {
      color: #ff6666;
    }

    ul {
      color: var(--text-secondary);
    }

    strong {
      color: var(--text-primary);
    }

    .btn-primary {
      background: var(--gradient-accent);
      border: none;
      border-radius: 8px;
      box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
      color: #ffffff;
      cursor: pointer;
      display: inline-block;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 0.05em;
      overflow: hidden;
      padding: 13px 28px;
      position: relative;
      text-align: center;
      text-decoration: none;
      text-transform: uppercase;
      transition: box-shadow 0.3s ease, transform 0.2s ease;
      white-space: nowrap;
    }

    .btn-primary::after {
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
      content: '';
      height: 100%;
      left: -100%;
      position: absolute;
      top: 0;
      transition: left 0.4s ease;
      width: 100%;
    }

    .btn-primary:hover {
      box-shadow: 0 8px 30px rgba(220, 38, 38, 0.6);
      color: #ffffff;
      transform: translateY(-2px);
    }

    .btn-primary:hover::after {
      left: 100%;
    }

    .info-card {
      background: var(--gradient-card);
      border: 1px solid var(--border-subtle);
      border-radius: 16px;
      box-shadow: var(--shadow-card);
      padding: 28px;
      transition: box-shadow 0.3s ease, transform 0.3s ease;
    }

    .info-card:hover {
      box-shadow: 0 8px 40px rgba(220, 38, 38, 0.2);
      transform: translateY(-4px);
    }

    .info-card h3 {
      color: var(--text-primary);
      font-size: 18px;
      margin-bottom: 12px;
    }

    .info-card p,
    .info-card ul {
      color: var(--text-secondary);
      font-size: 15px;
    }

    .info-card ul {
      list-style: none;
      padding: 0;
    }

    .info-card ul li {
      border-bottom: 1px solid rgba(255,255,255,0.05);
      padding: 6px 0;
    }

    .info-card ul li:last-child {
      border-bottom: none;
    }

    .info-card ul li::before {
      color: var(--accent);
      content: '—';
      font-weight: 700;
      margin-right: 8px;
    }

    .cards-grid-3 {
      display: grid;
      gap: 24px;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      margin-block: 32px;
    }

    .cards-grid-2 {
      display: grid;
      gap: 24px;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      margin-block: 32px;
    }

    .content-image {
      border-radius: 16px;
      margin-block: 32px;
      overflow: hidden;
    }

    .content-image img {
      border-radius: 16px;
      display: block;
      height: auto;
      max-width: 100%;
      width: 100%;
    }

    .content-image.portrait img {
      max-width: 480px;
    }

    .table-responsive {
      -webkit-overflow-scrolling: touch;
      border-radius: 12px;
      margin-block: 28px;
      overflow-x: auto;
    }

    .comparison-table {
      border-collapse: collapse;
      min-width: 560px;
      width: 100%;
    }

    .comparison-table thead {
      background: var(--gradient-accent);
    }

    .comparison-table thead th {
      color: #ffffff;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.05em;
      padding: 16px 20px;
      text-align: left;
      text-transform: uppercase;
    }

    .comparison-table tbody tr {
      border-bottom: 1px solid var(--border-subtle);
      transition: background-color 0.2s ease;
    }

    .comparison-table tbody tr:hover {
      background-color: rgba(220, 38, 38, 0.05);
    }

    .comparison-table tbody td {
      color: var(--text-secondary);
      font-size: 15px;
      padding: 16px 20px;
    }

    .comparison-table tbody tr:last-child {
      border-bottom: none;
    }

    .section-divider {
      background: var(--border-subtle);
      border: none;
      height: 1px;
      margin-block: 0;
    }

    /* === LAYOUT STYLES === */
    .site-header {
      background: rgba(8, 8, 8, 0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-subtle);
      left: 0;
      position: sticky;
      right: 0;
      top: 0;
      z-index: 1000;
    }

    .site-header .container {
      padding-block: 0;
    }

    .header-inner {
      align-items: center;
      display: flex;
      gap: 24px;
      min-height: 68px;
      padding-block: 12px;
      position: relative;
    }

    .logo {
      align-items: center;
      display: flex;
      flex-shrink: 0;
    }

    .logo-text {
      background: var(--gradient-accent);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      font-size: 24px;
      font-weight: 900;
      letter-spacing: -0.03em;
    }

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

    .hamburger span {
      background: var(--text-primary);
      border-radius: 2px;
      display: block;
      height: 2px;
      transition: all 0.3s ease;
      width: 100%;
    }

    .hamburger.active span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

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

    .nav-list {
      align-items: center;
      display: flex;
      gap: 8px;
      list-style: none;
      padding: 0;
    }

    .nav-list a {
      border-radius: 8px;
      color: var(--text-secondary);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.03em;
      padding: 8px 16px;
      text-decoration: none;
      text-transform: uppercase;
      transition: background-color 0.2s ease, color 0.2s ease;
    }

    .nav-list a:hover {
      background-color: rgba(220, 38, 38, 0.1);
      color: var(--accent-bright);
    }

    .header-inner .cta-button {
      font-size: 13px;
      margin-left: auto;
      max-width: 160px;
      padding: 10px 20px;
    }

    .site-footer {
      background: #050505;
      border-top: 1px solid var(--border-subtle);
      padding-block: 48px 32px;
    }

    .footer-nav {
      margin-bottom: 24px;
    }

    .footer-nav-list {
      align-items: center;
      display: flex;
      flex-wrap: wrap;
      gap: 8px 24px;
      list-style: none;
      padding: 0;
    }

    .footer-nav-list a {
      color: var(--text-muted);
      font-size: 14px;
      font-weight: 500;
      transition: color 0.2s ease;
    }

    .footer-nav-list a:hover {
      color: var(--accent-bright);
    }

    .footer-disclaimer {
      color: var(--text-muted);
      font-size: 13px;
      line-height: 1.6;
      max-width: 700px;
    }

    @media (max-width: 767px) {
      .hamburger {
        display: flex;
      }

      .header-inner {
        flex-wrap: wrap;
        gap: 0;
        min-height: 60px;
        padding-block: 10px;
      }

      .logo {
        flex-grow: 1;
      }

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

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

      .nav-list {
        border-top: 1px solid var(--border-subtle);
        flex-direction: column;
        gap: 0;
        padding-block: 12px;
      }

      .nav-list li {
        width: 100%;
      }

      .nav-list a {
        display: block;
        padding: 12px 16px;
        width: 100%;
      }

      .header-inner .cta-button {
        display: block;
        margin-block: 12px;
        margin-left: 0;
        max-width: 100%;
        order: 4;
        text-align: center;
        width: 100%;
      }

      .footer-nav-list {
        flex-direction: column;
        gap: 12px;
      }
    }

    @media (min-width: 768px) {
      .hamburger {
        display: none;
      }

      .main-nav {
        display: block !important;
      }
    }

@media (max-width: 767px) {
      .hamburger {
        display: flex;
      }

      .header-inner {
        flex-wrap: wrap;
        gap: 0;
        min-height: 60px;
        padding-block: 10px;
      }

      .logo {
        flex-grow: 1;
      }

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

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

      .nav-list {
        border-top: 1px solid var(--border-subtle);
        flex-direction: column;
        gap: 0;
        padding-block: 12px;
      }

      .nav-list li {
        width: 100%;
      }

      .nav-list a {
        display: block;
        padding: 12px 16px;
        width: 100%;
      }

      .header-inner .cta-button {
        display: block;
        margin-block: 12px;
        margin-left: 0;
        max-width: 100%;
        order: 4;
        text-align: center;
        width: 100%;
      }

      .footer-nav-list {
        flex-direction: column;
        gap: 12px;
      }
    }

@media (min-width: 768px) {
      .hamburger {
        display: none;
      }

      .main-nav {
        display: block !important;
      }
    }

@media (max-width: 767px) {
      .hero-section {
        padding-block: 48px 40px;
      }

      .hero-stats {
        gap: 20px;
      }

      .hero-stat-value {
        font-size: 24px;
      }

      .hero-cta-row .btn-primary {
        font-size: 15px;
        padding: 14px 28px;
        width: 100%;
      }

      .section-block {
        padding-block: 48px;
      }

      .highlight-box {
        padding: 20px;
      }

      .providers-text {
        padding: 24px;
      }

      .cards-grid-3,
      .cards-grid-2 {
        grid-template-columns: 1fr;
      }

      .accordion-header {
        font-size: 15px;
      }
    }