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

:root {
  --navy: #1A2B4A;
  --navy-light: #243659;
  --gold: #C9A84C;
  --gold-light: #E8D49A;
  --green: #2E7D5E;
  --red: #C0392B;
  --white: #FFFFFF;
  --off-white: #F8F9FA;
  --slate: #E8EDF4;
  --slate-mid: #C8D3E3;
  --text-main: #1A2B4A;
  --text-muted: #5A6A85;
  --text-light: #8A9AB8;
  --card-shadow: 0 4px 24px rgba(26, 43, 74, 0.08);
  --radius: 12px;
  --radius-sm: 8px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--off-white);
  color: var(--text-main);
  line-height: 1.6;
  font-size: 16px;
}
.flag-stripe {
  display: flex;
  height: 4px;
}

.flag-stripe span:nth-child(1) {
  background: #006600;
  flex: 2;
}

.flag-stripe span:nth-child(2) {
  background: #FF0000;
  flex: 3;
}

header {
  background: var(--white);
  border-bottom: 1px solid var(--slate);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(26, 43, 74, 0.06);
}

.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
}

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

.header-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green);
  background: #EAF6F0;
  border-radius: 20px;
  padding: 6px 14px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
}
.breadcrumb {
  max-width: 1140px;
  margin: 0 auto;
  padding: 16px 24px 0;
  font-size: 0.82rem;
  color: var(--text-light);
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--navy);
}

.breadcrumb span {
  margin: 0 8px;
  color: var(--slate-mid);
}
.platform-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1E3A5F 60%, #243659 100%);
  color: var(--white);
  padding: 48px 24px 56px;
  margin-top: 0;
}

.platform-hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.platform-hero-main {
  display: flex;
  align-items: center;
  gap: 28px;
}

.platform-hero-logo {
  width: 96px;
  height: 96px;
  background: var(--white);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.platform-hero-logo img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.platform-hero-info h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 10px;
}

.platform-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
}

.hero-badge.license {
  background: rgba(46, 125, 94, 0.25);
  color: #7DDFB0;
  border: 1px solid rgba(46, 125, 94, 0.4);
}

.hero-badge.license::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #7DDFB0;
  border-radius: 50%;
}

.hero-badge.updated {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

.platform-hero-tagline {
  margin-top: 14px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  line-height: 1.65;
}

.platform-hero-score {
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 28px 36px;
  min-width: 160px;
}

.score-big {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.score-big sub {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

.score-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.platform-layout {
  max-width: 1140px;
  margin: 0 auto;
  padding: 40px 24px 64px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}

.platform-main {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.content-block {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--slate);
  padding: 32px;
  box-shadow: var(--card-shadow);
}

.content-block h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--slate);
}

.content-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: 20px 0 10px;
}

.content-block p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.content-block p:last-child {
  margin-bottom: 0;
}

.content-block ul {
  list-style: none;
  margin: 12px 0;
}

.content-block ul li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 8px 0 8px 24px;
  position: relative;
  border-bottom: 1px solid var(--slate);
  line-height: 1.6;
}

.content-block ul li:last-child {
  border-bottom: none;
}

.content-block ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 0.85rem;
}
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 8px;
}

.pros-box,
.cons-box {
  border-radius: var(--radius-sm);
  padding: 20px;
}

.pros-box {
  background: #EAF6F0;
  border: 1px solid #B8E0CC;
}

.cons-box {
  background: #FDF0EE;
  border: 1px solid #F0C8C4;
}

.pros-box h3,
.cons-box h3 {
  margin-top: 0;
  font-size: 0.95rem;
}

.pros-box h3 {
  color: var(--green);
}

.cons-box h3 {
  color: var(--red);
}

.pros-box ul li::before {
  content: '+';
  color: var(--green);
}

.cons-box ul li::before {
  content: '−';
  color: var(--red);
}

.pros-box ul li,
.cons-box ul li {
  border-bottom-color: rgba(0, 0, 0, 0.06);
  padding-left: 20px;
  font-size: 0.85rem;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.feature-card {
  background: var(--off-white);
  border: 1px solid var(--slate);
  border-radius: var(--radius-sm);
  padding: 18px;
}

.feature-card-icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.feature-card h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 0.8rem;
  margin-bottom: 0;
  line-height: 1.55;
}
.payment-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  font-size: 0.88rem;
}

.payment-table th,
.payment-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--slate);
}

.payment-table th {
  background: var(--off-white);
  font-weight: 600;
  color: var(--navy);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.payment-table td {
  color: var(--text-muted);
}

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

.status-yes {
  color: var(--green);
  font-weight: 600;
}

.status-no {
  color: var(--text-light);
}
.score-breakdown {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}

.score-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.score-row-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
}

.score-row-header span:first-child {
  color: var(--text-muted);
}

.score-row-header strong {
  color: var(--navy);
}

.score-bar {
  height: 6px;
  background: var(--slate);
  border-radius: 3px;
  overflow: hidden;
}

.score-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--green), #4CAF7D);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--slate);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-question::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.2s;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 18px;
}

.faq-answer p {
  font-size: 0.88rem;
  margin-bottom: 0;
}
.rg-callout {
  background: #FFF8E6;
  border: 1px solid #F0D080;
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin-top: 8px;
}

.rg-callout p {
  font-size: 0.88rem;
  color: #7A5C10;
  margin-bottom: 8px;
}

.rg-callout strong {
  color: #5A4208;
}

.rg-callout a {
  color: #7A5C10;
  font-weight: 600;
}
.platform-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 88px;
}

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--slate);
  padding: 24px;
  box-shadow: var(--card-shadow);
}

.sidebar-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.sidebar-facts {
  list-style: none;
}

.sidebar-facts li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--slate);
  font-size: 0.82rem;
}

.sidebar-facts li:last-child {
  border-bottom: none;
}

.sidebar-facts .fact-label {
  color: var(--text-light);
  flex-shrink: 0;
}

.sidebar-facts .fact-value {
  color: var(--navy);
  font-weight: 600;
  text-align: right;
}

.sidebar-cta {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.15s;
  margin-top: 4px;
}

.sidebar-cta:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
}

.sidebar-back {
  display: block;
  width: 100%;
  text-align: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.82rem;
  padding: 10px;
  margin-top: 8px;
  transition: color 0.2s;
}

.sidebar-back:hover {
  color: var(--navy);
}

.sidebar-disclaimer {
  font-size: 0.72rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}
.platform-cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1E3A5F 100%);
  border-radius: var(--radius);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.platform-cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--white);
  border: none;
  padding: 0;
  margin: 0 0 8px;
}

.platform-cta-banner p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  margin: 0;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
}

.cta-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.pt-rg-strip {
  background: var(--white);
  border-top: 1px solid var(--slate);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.pt-rg-strip-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.pt-rg-strip-badges a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  min-height: 68px;
  background: #f0f3f8;
  border: 1px solid var(--slate-mid);
  border-radius: var(--radius-sm);
  line-height: 0;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.pt-rg-strip-badges a:hover {
  background: var(--slate);
  border-color: #b8c4d8;
  transform: translateY(-1px);
}

.pt-rg-strip-badges img {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
}

.pt-rg-badge-srij {
  max-height: 48px;
  max-width: 96px;
}

.pt-rg-badge-jcr {
  max-height: 40px;
  max-width: 148px;
}

.pt-rg-strip-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 760px;
  margin: 0;
}

.pt-rg-strip-note a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.pt-rg-strip-note a:hover {
  color: var(--gold);
}
footer {
  background: var(--navy);
  color: var(--white);
}

.footer-main {
  max-width: 1140px;
  margin: 0 auto;
  padding: 48px 24px 36px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand .logo-text {
  color: var(--white);
}

.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  margin-top: 12px;
}

.footer-col h5 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 20px 24px;
}

.footer-warning {
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  margin-bottom: 14px;
}

.footer-warning strong {
  color: rgba(255, 255, 255, 0.85);
}

.footer-copy {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
}

.footer-copy-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-copy-legal a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
}

.footer-copy-legal a:hover {
  color: rgba(255, 255, 255, 0.75);
}
#back-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--navy);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 50;
}

#back-top.visible {
  opacity: 1;
  pointer-events: auto;
}

#back-top:hover {
  transform: translateY(-3px);
}
@media (max-width: 900px) {
  .platform-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .platform-hero-main {
    flex-direction: column;
  }

  .platform-hero-meta {
    justify-content: center;
  }

  .platform-hero-tagline {
    margin-left: auto;
    margin-right: auto;
  }

  .platform-hero-score {
    margin: 0 auto;
  }

  .platform-layout {
    grid-template-columns: 1fr;
  }

  .platform-sidebar {
    position: static;
  }

  .pros-cons-grid {
    grid-template-columns: 1fr;
  }

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

  .header-badge {
    display: none;
  }
}

@media (max-width: 600px) {
  .content-block {
    padding: 22px 20px;
  }

  .platform-cta-banner {
    padding: 24px;
    flex-direction: column;
    text-align: center;
  }

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

  .payment-table {
    font-size: 0.78rem;
  }

  .payment-table th,
  .payment-table td {
    padding: 8px 10px;
  }
}
