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

    :root {
      --primary: #1a56db;
      --primary-dark: #1344b4;
      --primary-light: #e8f0fe;
      --accent: #f59e0b;
      --text-main: #1e293b;
      --text-muted: #64748b;
      --text-light: #94a3b8;
      --bg: #f8fafc;
      --bg-white: #ffffff;
      --bg-section: #f1f5f9;
      --border: #e2e8f0;
      --success: #10b981;
      --warning: #f59e0b;
      --radius: 12px;
      --radius-lg: 20px;
      --shadow: 0 1px 3px rgba(0, 0, 0, .08), 0 4px 16px rgba(0, 0, 0, .06);
      --shadow-md: 0 4px 24px rgba(0, 0, 0, .10);
      --max-w: 1200px;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      background: var(--bg);
      color: var(--text-main);
      line-height: 1.65;
      font-size: 16px;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 20px;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 12px;
      font-weight: 600;
      padding: 3px 10px;
      border-radius: 20px;
      letter-spacing: .3px;
    }

    .badge-blue {
      background: var(--primary-light);
      color: var(--primary);
    }

    .badge-green {
      background: #dcfce7;
      color: #16a34a;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 11px 22px;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      border: none;
      transition: all .18s ease;
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--primary);
      color: #fff;
    }

    .btn-primary:hover {
      background: var(--primary-dark);
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(26, 86, 219, .3);
    }

    .btn-outline {
      background: transparent;
      color: var(--primary);
      border: 1.5px solid var(--primary);
    }

    .btn-outline:hover {
      background: var(--primary-light);
    }

    .btn-sm {
      padding: 8px 16px;
      font-size: 13px;
    }

    .btn-lg {
      padding: 14px 28px;
      font-size: 15px;
    }

    .header {
      background: var(--bg-white);
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 1px 8px rgba(0, 0, 0, .06);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
      gap: 20px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      font-size: 18px;
      color: var(--primary);
      flex-shrink: 0;
    }

    .logo-icon {
      width: 36px;
      height: 36px;
      background: var(--primary);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 16px;
    }

    .logo span {
      color: var(--text-main);
    }

    .logo em {
      color: var(--primary);
      font-style: normal;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .nav a {
      padding: 6px 14px;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 500;
      color: var(--text-muted);
      transition: all .15s;
    }

    .nav a:hover {
      color: var(--primary);
      background: var(--primary-light);
    }

    .header-legal {
      font-size: 11px;
      color: var(--text-light);
      text-align: right;
      line-height: 1.3;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 6px;
      border-radius: 6px;
      border: none;
      background: none;
    }

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

    .mobile-nav {
      display: none;
      flex-direction: column;
      gap: 4px;
      padding: 12px 16px 16px;
      background: var(--bg-white);
      border-top: 1px solid var(--border);
    }

    .mobile-nav.open {
      display: flex;
    }

    .mobile-nav a {
      padding: 10px 14px;
      border-radius: 8px;
      font-weight: 500;
      color: var(--text-muted);
      font-size: 15px;
    }

    .mobile-nav a:hover {
      background: var(--primary-light);
      color: var(--primary);
    }

    .notice-bar {
      background: var(--primary-light);
      border-bottom: 1px solid #c7d9f9;
      padding: 8px 0;
      text-align: center;
      font-size: 12.5px;
      color: var(--primary-dark);
    }

    .notice-bar strong {
      font-weight: 600;
    }

    .hero {
      background: linear-gradient(135deg, #1344b4 0%, #1a56db 50%, #2563eb 100%);
      color: #fff;
      padding: 72px 0 60px;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

    .hero-inner {
      position: relative;
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 48px;
      align-items: center;
    }

    .hero-label {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255, 255, 255, .15);
      border: 1px solid rgba(255, 255, 255, .25);
      border-radius: 20px;
      padding: 4px 12px;
      font-size: 12px;
      font-weight: 600;
      margin-bottom: 18px;
      letter-spacing: .4px;
    }

    .hero h1 {
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 18px;
    }

    .hero h1 em {
      font-style: normal;
      color: #fbbf24;
    }

    .hero-desc {
      font-size: 16px;
      color: rgba(255, 255, 255, .85);
      max-width: 520px;
      margin-bottom: 28px;
      line-height: 1.7;
    }

    .hero-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 32px;
    }

    .hero-pill {
      display: flex;
      align-items: center;
      gap: 6px;
      background: rgba(255, 255, 255, .12);
      border: 1px solid rgba(255, 255, 255, .2);
      border-radius: 20px;
      padding: 5px 13px;
      font-size: 13px;
      font-weight: 500;
    }

    .hero-pill .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #4ade80;
      flex-shrink: 0;
    }

    .hero-card {
      background: rgba(255, 255, 255, .1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, .2);
      border-radius: var(--radius-lg);
      padding: 28px;
    }

    .hero-card-title {
      font-weight: 700;
      font-size: 15px;
      margin-bottom: 16px;
      opacity: .9;
    }

    .hero-stat-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .hero-stat {
      background: rgba(255, 255, 255, .1);
      border-radius: 10px;
      padding: 14px;
      text-align: center;
    }

    .hero-stat-num {
      font-size: 24px;
      font-weight: 700;
      line-height: 1;
      margin-bottom: 4px;
      color: #fbbf24;
    }

    .hero-stat-lbl {
      font-size: 11px;
      opacity: .75;
    }

    section {
      padding: 64px 0;
    }

    .section-alt {
      background: var(--bg-white);
    }

    .section-dark {
      background: var(--text-main);
      color: #fff;
    }

    .section-header {
      text-align: center;
      margin-bottom: 44px;
    }

    .section-header .pre-title {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--primary);
      margin-bottom: 8px;
    }

    .section-header h2 {
      font-size: clamp(22px, 3vw, 32px);
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 12px;
      line-height: 1.25;
    }

    .section-dark .section-header h2 {
      color: #fff;
    }

    .section-header p {
      color: var(--text-muted);
      max-width: 560px;
      margin: 0 auto;
      font-size: 15px;
    }

    .section-dark .section-header p {
      color: rgba(255, 255, 255, .7);
    }

    .platforms-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .platforms-grid .platform-card {
      flex: 1 1 320px;
      max-width: 380px;
    }

    .platform-card {
      background: var(--bg-white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: box-shadow .2s, transform .2s;
      display: flex;
      flex-direction: column;
    }

    .platform-card:hover {
      box-shadow: var(--shadow-md);
      transform: translateY(-3px);
    }

    .pc-header {
      padding: 20px 20px 16px;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
      border-bottom: 1px solid var(--border);
    }

    .pc-logo-wrap {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .pc-logo {
      width: 52px;
      height: 52px;
      border-radius: 10px;
      object-fit: contain;
      background: var(--bg-section);
      flex-shrink: 0;
    }

    .pc-name {
      font-weight: 700;
      font-size: 16px;
    }

    .pc-since {
      font-size: 12px;
      color: var(--text-light);
      margin-top: 2px;
    }

    .pc-body {
      padding: 18px 20px;
      flex: 1;
    }

    .pc-desc {
      font-size: 13.5px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 16px;
    }

    .pc-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 16px;
    }

    .pc-tag {
      font-size: 11.5px;
      padding: 3px 9px;
      border-radius: 5px;
      background: var(--bg-section);
      color: var(--text-muted);
      font-weight: 500;
    }

    .pc-campaign-box {
      background: var(--primary-light);
      border: 1px solid #c7d9f9;
      border-radius: 8px;
      padding: 10px 13px;
      margin-bottom: 16px;
    }

    .pc-campaign-label {
      font-size: 10.5px;
      color: var(--primary-dark);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .5px;
      margin-bottom: 3px;
    }

    .pc-campaign-val {
      font-size: 14px;
      font-weight: 600;
      color: var(--text-main);
    }

    .pc-campaign-terms {
      font-size: 11px;
      color: var(--text-muted);
      margin-top: 3px;
    }

    .pc-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 18px;
    }

    .pc-features li {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--text-muted);
    }

    .pc-features li .check {
      color: var(--success);
      font-size: 13px;
    }

    .pc-footer {
      padding: 14px 20px;
      border-top: 1px solid var(--border);
      display: flex;
      gap: 8px;
      align-items: center;
    }

    .pc-footer .btn {
      flex: 1;
      justify-content: center;
    }

    .pc-footer .btn-details {
      display: inline-flex;
      align-items: center;
      flex: 0 0 auto;
      padding: 8px 14px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 600;
      color: var(--text-muted);
      border: 1.5px solid var(--border);
      background: none;
      cursor: pointer;
      text-decoration: none;
      transition: all .15s;
    }

    .pc-footer .btn-details:hover {
      border-color: var(--primary);
      color: var(--primary);
    }

    .top-table-wrap {
      overflow-x: auto;
    }

    .top-table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
      background: var(--bg-white);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border);
      overflow: hidden;
    }

    .top-table th {
      background: var(--bg-section);
      padding: 13px 16px;
      text-align: left;
      font-size: 12px;
      font-weight: 700;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: .5px;
      border-bottom: 1px solid var(--border);
    }

    .top-table td {
      padding: 14px 16px;
      font-size: 14px;
      border-bottom: 1px solid var(--border);
      vertical-align: middle;
    }

    .top-table tr:last-child td {
      border-bottom: none;
    }

    .top-table tr:hover td {
      background: var(--bg);
    }

    .tt-pos {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 14px;
    }

    .tt-pos-1 {
      background: var(--primary-light);
      color: var(--primary-dark);
    }

    .tt-pos-2 {
      background: #f1f5f9;
      color: #475569;
    }

    .tt-pos-3 {
      background: #fce7f3;
      color: #be185d;
    }

    .tt-pos-n {
      background: var(--bg-section);
      color: var(--text-muted);
    }

    .tt-name {
      font-weight: 600;
    }

    .tt-score {
      font-weight: 700;
      color: var(--primary);
    }

    .tt-bar-wrap {
      width: 100px;
      height: 6px;
      background: var(--border);
      border-radius: 3px;
      overflow: hidden;
      display: inline-block;
    }

    .tt-bar {
      height: 100%;
      border-radius: 3px;
      background: var(--primary);
    }

    .info-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
    }

    .info-card {
      background: var(--bg-white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 24px;
      transition: box-shadow .2s;
    }

    .info-card:hover {
      box-shadow: var(--shadow);
    }

    .info-icon {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      margin-bottom: 14px;
    }

    .info-card h3 {
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .info-card p {
      font-size: 13.5px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 24px;
    }

    .step-card {
      text-align: center;
      padding: 28px 20px;
      position: relative;
    }

    .step-num {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: var(--primary);
      color: #fff;
      font-weight: 800;
      font-size: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
    }

    .step-card h3 {
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .step-card p {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .criteria-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

    .criteria-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      background: rgba(255, 255, 255, .07);
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: var(--radius);
      padding: 18px;
    }

    .criteria-item-icon {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: rgba(255, 255, 255, .12);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      flex-shrink: 0;
    }

    .criteria-item h4 {
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 4px;
    }

    .criteria-item p {
      font-size: 12.5px;
      color: rgba(255, 255, 255, .65);
      line-height: 1.5;
    }

    .faq-list {
      max-width: 760px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .faq-item {
      background: var(--bg-white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
    }

    .faq-q {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 20px;
      cursor: pointer;
      font-weight: 600;
      font-size: 15px;
      gap: 12px;
      user-select: none;
    }

    .faq-q:hover {
      color: var(--primary);
    }

    .faq-icon {
      font-size: 18px;
      flex-shrink: 0;
      transition: transform .2s;
    }

    .faq-item.open .faq-icon {
      transform: rotate(45deg);
    }

    .faq-a {
      display: none;
      padding: 0 20px 18px;
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    .faq-item.open .faq-a {
      display: block;
    }

    .disclaimer-block {
      background: #fffbeb;
      border: 1px solid #fde68a;
      border-radius: var(--radius);
      padding: 20px 24px;
      display: flex;
      gap: 14px;
      align-items: flex-start;
      margin: 32px 0;
    }

    .disclaimer-icon {
      font-size: 22px;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .disclaimer-block h4 {
      font-size: 13.5px;
      font-weight: 700;
      margin-bottom: 5px;
      color: #92400e;
    }

    .disclaimer-block p {
      font-size: 13px;
      color: #a16207;
      line-height: 1.6;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }

    .about-text h2 {
      font-size: clamp(22px, 3vw, 30px);
      font-weight: 700;
      margin-bottom: 16px;
    }

    .about-text p {
      color: var(--text-muted);
      font-size: 15px;
      line-height: 1.7;
      margin-bottom: 14px;
    }

    .about-highlights {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 20px;
    }

    .about-hl {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      background: var(--bg-section);
      border-radius: 10px;
      padding: 14px;
    }

    .about-hl-icon {
      font-size: 18px;
      margin-top: 1px;
    }

    .about-hl h4 {
      font-size: 13.5px;
      font-weight: 700;
      margin-bottom: 3px;
    }

    .about-hl p {
      font-size: 12.5px;
      color: var(--text-muted);
    }

    .about-visual {
      background: linear-gradient(135deg, var(--primary-light), #dbeafe);
      border-radius: var(--radius-lg);
      padding: 36px;
      text-align: center;
    }

    .about-stats-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .about-stat {
      background: var(--bg-white);
      border-radius: var(--radius);
      padding: 20px;
      text-align: center;
      box-shadow: var(--shadow);
    }

    .about-stat-num {
      font-size: 28px;
      font-weight: 800;
      color: var(--primary);
      line-height: 1;
    }

    .about-stat-lbl {
      font-size: 12px;
      color: var(--text-muted);
      margin-top: 5px;
    }

    .glossary-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }

    .glossary-item {
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 16px;
      background: var(--bg-white);
    }

    .glossary-term {
      font-weight: 700;
      font-size: 14px;
      margin-bottom: 5px;
      color: var(--primary);
    }

    .glossary-def {
      font-size: 12.5px;
      color: var(--text-muted);
      line-height: 1.55;
    }

    .psg-reg-strip {
      background: #1e293b;
      border-top: 1px solid rgba(255, 255, 255, .08);
      padding: 36px 0;
    }

    .psg-reg-strip__grid {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 16px 20px;
    }

    .psg-reg-strip__anchor {
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(15, 23, 42, .65);
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: 10px;
      padding: 12px 18px;
      min-height: 68px;
      transition: background .2s ease, border-color .2s ease, transform .2s ease;
    }

    .psg-reg-strip__anchor:hover {
      background: #0f172a;
      border-color: rgba(255, 255, 255, .22);
      transform: translateY(-2px);
    }

    .psg-reg-strip__anchor img {
      width: auto;
      height: 44px;
      max-width: min(184px, 42vw);
      object-fit: contain;
    }

    .psg-compliance-fr {
      background: #f1f5f9;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 28px 0;
    }

    .psg-compliance-fr__label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .8px;
      text-transform: uppercase;
      color: var(--text-light);
      margin-bottom: 8px;
    }

    .psg-compliance-fr__title {
      font-size: 13px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 8px;
    }

    .psg-compliance-fr__text,
    .psg-compliance-fr__help {
      font-size: 12.5px;
      line-height: 1.65;
      color: var(--text-muted);
      max-width: 820px;
    }

    .psg-compliance-fr__help {
      margin-top: 10px;
    }

    .psg-compliance-fr a {
      color: var(--primary);
      font-weight: 500;
    }

    .affiliate-disclosure {
      text-align: center;
      font-size: 12px;
      color: var(--text-light);
      margin-top: 20px;
      line-height: 1.6;
    }

    .affiliate-disclosure a {
      color: var(--primary);
      font-weight: 500;
    }

    @media (max-width: 640px) {
      .psg-reg-strip {
        padding: 28px 0;
      }

      .psg-reg-strip__grid {
        gap: 12px 14px;
      }

      .psg-reg-strip__anchor {
        padding: 10px 14px;
        min-height: 58px;
      }

      .psg-reg-strip__anchor img {
        height: 36px;
      }
    }

    .footer {
      background: #0f172a;
      color: rgba(255, 255, 255, .8);
      padding: 52px 0 0;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.8fr 1fr 1fr;
      gap: 40px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .footer-brand .logo {
      color: #fff;
      margin-bottom: 14px;
    }

    .footer-brand .logo em {
      color: #93c5fd;
    }

    .footer-brand p {
      font-size: 13px;
      color: rgba(255, 255, 255, .55);
      line-height: 1.65;
    }

    .footer-brand .legal-name {
      margin-top: 14px;
      font-size: 11.5px;
      color: rgba(255, 255, 255, .35);
      background: rgba(255, 255, 255, .05);
      border-radius: 6px;
      padding: 6px 10px;
      display: inline-block;
    }

    .footer-col h4 {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .8px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .4);
      margin-bottom: 14px;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .footer-col ul li a {
      font-size: 13.5px;
      color: rgba(255, 255, 255, .65);
      transition: color .15s;
    }

    .footer-col ul li a:hover {
      color: #fff;
    }

    .footer-bottom {
      padding: 20px 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-responsible {
      background: rgba(255, 59, 48, .08);
      border: 1px solid rgba(255, 59, 48, .2);
      border-radius: 8px;
      padding: 14px 18px;
      font-size: 12.5px;
      color: rgba(255, 255, 255, .65);
      line-height: 1.6;
      display: flex;
      gap: 10px;
      align-items: flex-start;
    }

    .footer-responsible a {
      color: #93c5fd;
      text-decoration: underline;
    }

    .footer-rg__body {
      flex: 1;
      min-width: 0;
    }

    .footer-rg__lead {
      margin: 0 0 10px;
      line-height: 1.65;
    }

    .footer-rg__links {
      margin: 0 0 10px;
      padding-left: 18px;
      list-style: disc;
    }

    .footer-rg__links li {
      margin-bottom: 4px;
    }

    .footer-rg__agg {
      margin: 0;
      font-size: 11.5px;
      color: rgba(255, 255, 255, .5);
      line-height: 1.55;
    }

    .srij-catalog-note {
      text-align: center;
      font-size: 12.5px;
      color: var(--text-muted);
      line-height: 1.65;
      margin: 0 0 28px;
      max-width: 720px;
      margin-left: auto;
      margin-right: auto;
    }

    .srij-catalog-note a {
      color: var(--primary);
      font-weight: 500;
    }

    .license-table-wrap {
      overflow-x: auto;
      margin: 16px 0 24px;
    }

    .license-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 13.5px;
    }

    .license-table th,
    .license-table td {
      padding: 10px 12px;
      border: 1px solid var(--border);
      text-align: left;
    }

    .license-table th {
      background: var(--bg-alt);
      font-weight: 600;
    }

    .footer-legal-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .footer-copyright {
      font-size: 12px;
      color: rgba(255, 255, 255, .3);
    }

    .footer-links-row {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .footer-links-row a {
      font-size: 12px;
      color: rgba(255, 255, 255, .4);
    }

    .footer-links-row a:hover {
      color: rgba(255, 255, 255, .7);
    }

    .age-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      border: 2px solid rgba(255, 255, 255, .2);
      font-size: 10px;
      font-weight: 800;
      color: rgba(255, 255, 255, .5);
      flex-shrink: 0;
    }

    @media (max-width: 900px) {
      .hero-inner {
        grid-template-columns: 1fr;
      }

      .hero-card {
        display: none;
      }

      .about-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .criteria-grid,
      .info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .glossary-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 640px) {
      section {
        padding: 44px 0;
      }

      .hero {
        padding: 48px 0 40px;
      }

      .nav {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .header-legal {
        display: none;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .footer-legal-row {
        flex-direction: column;
        align-items: flex-start;
      }

      .about-stats-grid {
        grid-template-columns: 1fr 1fr;
      }

      .criteria-grid,
      .info-grid,
      .glossary-grid {
        grid-template-columns: 1fr;
      }

      .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 520px;
        margin: 0 auto;
      }
    }

    @media (max-width: 400px) {
      .steps-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
      }

      .hero-pills {
        flex-direction: column;
      }
    }

    .fade-in {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity .5s ease, transform .5s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: none;
    }
