/* =============================================================
   TRUSSTED CASINO LIST – nordic-trust-frame.css
   ============================================================= */

/* === 1. VARIABLES === */
:root {
  --tcl-navy:         #1a2d4e;
  --tcl-navy-hover:   #243d66;
  --tcl-teal:         #2d7d7d;
  --tcl-teal-light:   #3a9999;
  --tcl-gold:         #c9a84c;
  --tcl-gold-light:   #dfc06a;
  --tcl-cream:        #f7f5f0;
  --tcl-gray-50:      #f9f9f7;
  --tcl-gray-100:     #efefeb;
  --tcl-gray-200:     #deded8;
  --tcl-gray-300:     #c8c8c0;
  --tcl-gray-500:     #7a7a72;
  --tcl-gray-700:     #3d3d38;
  --tcl-white:        #ffffff;
  --tcl-text:         #1c1c28;
  --tcl-text-muted:   #5c5c58;

  --tcl-max-w:        1260px;
  --tcl-px:           1.5rem;
  --tcl-section-py:   5rem;
  --tcl-radius:       8px;
  --tcl-radius-lg:    16px;
  --tcl-ease:         0.22s ease;
  --tcl-shadow:       0 2px 12px rgba(26,45,78,0.08);
  --tcl-shadow-md:    0 4px 24px rgba(26,45,78,0.12);
  --tcl-font:         'Inter', system-ui, -apple-system, sans-serif;
}

/* === 2. RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body {
  font-family: var(--tcl-font);
  color: var(--tcl-text);
  background: var(--tcl-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  font-size: 1rem;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 { line-height: 1.25; font-weight: 700; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* === 3. LAYOUT === */
.tcl-wrap {
  max-width: var(--tcl-max-w);
  margin: 0 auto;
  padding-left: var(--tcl-px);
  padding-right: var(--tcl-px);
  width: 100%;
}
.tcl-section {
  padding-top: var(--tcl-section-py);
  padding-bottom: var(--tcl-section-py);
}
.tcl-section--alt  { background: var(--tcl-cream); }
.tcl-section--gray { background: var(--tcl-gray-50); }
.tcl-section--dark { background: var(--tcl-navy); color: var(--tcl-white); }

.tcl-section__header { margin-bottom: 3rem; }

.tcl-section__eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--tcl-teal);
  margin-bottom: 0.75rem;
}
.tcl-section--dark .tcl-section__eyebrow { color: var(--tcl-gold); }

.tcl-section__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--tcl-navy);
  margin-bottom: 1rem;
}
.tcl-section--dark .tcl-section__title { color: var(--tcl-white); }

.tcl-section__subtitle {
  font-size: 1.05rem;
  color: var(--tcl-text-muted);
  max-width: 640px;
  line-height: 1.7;
}
.tcl-section--dark .tcl-section__subtitle { color: rgba(255,255,255,0.72); }

/* === 4. BUTTONS === */
.tcl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--tcl-radius);
  font-size: 0.9375rem;
  font-weight: 600;
  border: 2px solid transparent;
  transition: background var(--tcl-ease), color var(--tcl-ease),
              border-color var(--tcl-ease), box-shadow var(--tcl-ease);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.tcl-btn--primary {
  background: var(--tcl-teal);
  color: var(--tcl-white);
  border-color: var(--tcl-teal);
}
.tcl-btn--primary:hover {
  background: var(--tcl-teal-light);
  border-color: var(--tcl-teal-light);
  box-shadow: 0 4px 12px rgba(45,125,125,0.25);
}
.tcl-btn--secondary {
  background: var(--tcl-navy);
  color: var(--tcl-white);
  border-color: var(--tcl-navy);
}
.tcl-btn--secondary:hover {
  background: var(--tcl-navy-hover);
  border-color: var(--tcl-navy-hover);
}
.tcl-btn--outline {
  background: transparent;
  color: var(--tcl-navy);
  border-color: var(--tcl-navy);
}
.tcl-btn--outline:hover {
  background: var(--tcl-navy);
  color: var(--tcl-white);
}
.tcl-btn--outline-white {
  background: transparent;
  color: var(--tcl-white);
  border-color: rgba(255,255,255,0.55);
}
.tcl-btn--outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--tcl-white);
}
.tcl-btn--sm {
  padding: 0.55rem 1.2rem;
  font-size: 0.875rem;
}

/* === 5. HEADER === */
.tcl-header {
  background: var(--tcl-navy);
  color: var(--tcl-white);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow var(--tcl-ease);
}
.tcl-header.is-scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.2); }

.tcl-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
  gap: 1.5rem;
}
.tcl-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--tcl-white);
  flex-shrink: 0;
}
.tcl-logo__icon { width: 34px; height: 34px; flex-shrink: 0; }
.tcl-logo__text {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--tcl-white);
  line-height: 1.2;
}
.tcl-logo__sub {
  display: block;
  font-size: 0.6rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 1px;
}
.tcl-nav { display: flex; align-items: center; }
.tcl-nav__list {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  list-style: none;
}
.tcl-nav__link {
  display: block;
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  border-radius: 6px;
  transition: color var(--tcl-ease), background var(--tcl-ease);
  white-space: nowrap;
}
.tcl-nav__link:hover, .tcl-nav__link.is-active {
  color: var(--tcl-white);
  background: rgba(255,255,255,0.1);
}
.tcl-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  padding: 0.5rem;
  flex-shrink: 0;
  cursor: pointer;
}
.tcl-burger__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--tcl-white);
  border-radius: 2px;
  transition: transform var(--tcl-ease), opacity var(--tcl-ease);
}
.tcl-burger__bar + .tcl-burger__bar { margin-top: 5px; }
.tcl-burger[aria-expanded="true"] .tcl-burger__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.tcl-burger[aria-expanded="true"] .tcl-burger__bar:nth-child(2) { opacity: 0; }
.tcl-burger[aria-expanded="true"] .tcl-burger__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* === 6. HERO === */
.tcl-hero {
  background: linear-gradient(140deg, #0d1e36 0%, #1a2d4e 55%, #1f4a5c 100%);
  color: var(--tcl-white);
  padding: 5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}
.tcl-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/assets/images/nordic-guide-hero.webp') center / cover no-repeat;
  opacity: 0.07;
  pointer-events: none;
}
.tcl-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 4rem;
  align-items: center;
}
.tcl-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--tcl-gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.375rem 0.875rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.tcl-hero__title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--tcl-white);
  margin-bottom: 1.25rem;
}
.tcl-hero__title em {
  font-style: normal;
  color: var(--tcl-gold);
}
.tcl-hero__text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 520px;
}
.tcl-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.tcl-hero__note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-top: 1.5rem;
}
.tcl-hero__note-dot {
  width: 6px;
  height: 6px;
  background: var(--tcl-teal);
  border-radius: 50%;
  flex-shrink: 0;
}
.tcl-hero__visual {
  position: relative;
}
.tcl-hero__image {
  border-radius: var(--tcl-radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  width: 100%;
  background: rgba(255,255,255,0.05);
  min-height: 320px;
  object-fit: cover;
}
.tcl-hero__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.tcl-hero__stat-num {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--tcl-gold);
  line-height: 1;
}
.tcl-hero__stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.3rem;
  line-height: 1.4;
}

/* === 7. TRUST STRIP === */
.tcl-trust-strip {
  background: var(--tcl-gray-50);
  border-bottom: 1px solid var(--tcl-gray-200);
  padding: 1.75rem 0;
}
.tcl-trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.tcl-trust-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.tcl-trust-item__icon {
  width: 40px;
  height: 40px;
  background: var(--tcl-navy);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--tcl-gold);
}
.tcl-trust-item__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--tcl-navy);
  line-height: 1.3;
}
.tcl-trust-item__sub {
  font-size: 0.75rem;
  color: var(--tcl-gray-500);
}

/* === 8. PLATFORM CARDS === */
.tcl-platforms__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.tcl-platform-card {
  background: var(--tcl-white);
  border: 1px solid var(--tcl-gray-200);
  border-radius: var(--tcl-radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  box-shadow: var(--tcl-shadow);
  transition: box-shadow var(--tcl-ease), transform var(--tcl-ease), border-color var(--tcl-ease);
}
.tcl-platform-card:hover {
  box-shadow: var(--tcl-shadow-md);
  transform: translateY(-3px);
  border-color: rgba(45,125,125,0.25);
}
.tcl-platform-card__logo-wrap {
  height: 44px;
  display: flex;
  align-items: center;
}
.tcl-platform-card__logo {
  height: 44px;
  max-width: 160px;
  object-fit: contain;
  object-position: left center;
}
.tcl-platform-card__name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--tcl-navy);
}
.tcl-platform-card__desc {
  font-size: 0.9rem;
  color: var(--tcl-text-muted);
  line-height: 1.7;
  flex: 1;
}
.tcl-platform-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.tcl-platform-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.86rem;
  color: var(--tcl-gray-700);
  line-height: 1.45;
}
.tcl-platform-card__feature::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--tcl-teal);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.38rem;
}
.tcl-platform-card__cta { margin-top: 0.5rem; }
.tcl-platform-card__cta .tcl-btn { width: 100%; }

/* === 9. METHOD GRID === */
.tcl-method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.tcl-method-item {
  background: var(--tcl-white);
  border: 1px solid var(--tcl-gray-200);
  border-radius: var(--tcl-radius);
  padding: 1.625rem 1.5rem;
  transition: border-color var(--tcl-ease), box-shadow var(--tcl-ease);
}
.tcl-method-item:hover {
  border-color: var(--tcl-teal);
  box-shadow: 0 2px 16px rgba(45,125,125,0.08);
}
.tcl-method-item__num {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--tcl-teal);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.tcl-method-item__title {
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--tcl-navy);
  margin-bottom: 0.5rem;
}
.tcl-method-item__text {
  font-size: 0.86rem;
  color: var(--tcl-text-muted);
  line-height: 1.65;
}

/* === 10. TWO-COLUMN LAYOUT === */
.tcl-twocol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.tcl-twocol--flip .tcl-twocol__image { order: 2; }
.tcl-twocol--flip .tcl-twocol__content { order: 1; }
.tcl-twocol__image {
  border-radius: var(--tcl-radius-lg);
  box-shadow: var(--tcl-shadow-md);
  width: 100%;
  background: var(--tcl-gray-100);
  min-height: 280px;
  object-fit: cover;
}
.tcl-twocol__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.tcl-twocol__list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.925rem;
  color: var(--tcl-gray-700);
  line-height: 1.55;
}
.tcl-twocol__list-item::before {
  content: '';
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: var(--tcl-teal);
  margin-top: 0.05rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}
.tcl-resource-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 1.5rem;
}
.tcl-resource-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--tcl-navy);
  color: var(--tcl-white);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  transition: background var(--tcl-ease);
  text-decoration: none;
}
.tcl-resource-link:hover { background: var(--tcl-navy-hover); }
.tcl-resource-link::after { content: ' →'; }

/* === 11. INFO BOX === */
.tcl-info-box {
  background: var(--tcl-cream);
  border-left: 4px solid var(--tcl-teal);
  border-radius: 0 var(--tcl-radius) var(--tcl-radius) 0;
  padding: 1.25rem 1.5rem;
  font-size: 0.9rem;
  color: var(--tcl-gray-700);
  line-height: 1.7;
  margin: 1.5rem 0;
}
.tcl-info-box strong { color: var(--tcl-navy); }
.tcl-info-box--gold { border-left-color: var(--tcl-gold); }

/* === 12. REVIEWS === */
.tcl-review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.tcl-review-card {
  background: var(--tcl-white);
  border: 1px solid var(--tcl-gray-200);
  border-radius: var(--tcl-radius);
  padding: 1.625rem 1.5rem;
}
.tcl-review-card__quote {
  font-size: 0.9rem;
  color: var(--tcl-gray-700);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.25rem;
}
.tcl-review-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.tcl-review-card__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--tcl-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tcl-white);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.tcl-review-card__name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--tcl-navy);
}
.tcl-review-card__loc {
  font-size: 0.77rem;
  color: var(--tcl-gray-500);
}

/* === 13. FAQ === */
.tcl-faq__list {
  max-width: 820px;
  margin: 3rem auto 0;
}
.tcl-faq-item {
  border: 1px solid var(--tcl-gray-200);
  border-radius: var(--tcl-radius);
  margin-bottom: 0.625rem;
  overflow: hidden;
  transition: border-color var(--tcl-ease);
}
.tcl-faq-item.is-open { border-color: var(--tcl-teal); }
.tcl-faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 1.375rem;
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--tcl-navy);
  background: var(--tcl-white);
  user-select: none;
  transition: background var(--tcl-ease);
}
.tcl-faq-item__question:hover { background: var(--tcl-gray-50); }
.tcl-faq-item.is-open .tcl-faq-item__question {
  background: var(--tcl-gray-50);
  color: var(--tcl-teal);
}
.tcl-faq-item__icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border: 1.5px solid var(--tcl-gray-300);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--tcl-ease), border-color var(--tcl-ease), background var(--tcl-ease);
}
.tcl-faq-item.is-open .tcl-faq-item__icon {
  transform: rotate(180deg);
  border-color: var(--tcl-teal);
  background: var(--tcl-teal);
}
.tcl-faq-item__icon svg { display: block; }
.tcl-faq-item.is-open .tcl-faq-item__icon svg path { stroke: var(--tcl-white); }
.tcl-faq-item__answer {
  display: none;
  padding: 0 1.375rem 1.375rem;
  font-size: 0.9rem;
  color: var(--tcl-text-muted);
  line-height: 1.75;
  background: var(--tcl-gray-50);
}
.tcl-faq-item.is-open .tcl-faq-item__answer { display: block; }

/* === 14. FOOTER === */
.tcl-footer {
  background: var(--tcl-navy);
  color: var(--tcl-white);
  padding-top: 4rem;
}
.tcl-footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.tcl-footer__brand-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--tcl-white);
  margin-bottom: 0.625rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.tcl-footer__brand-name svg { opacity: 0.8; }
.tcl-footer__brand-desc {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 300px;
  margin-bottom: 1rem;
}
.tcl-footer__email a {
  color: var(--tcl-gold);
  font-size: 0.875rem;
  transition: opacity var(--tcl-ease);
}
.tcl-footer__email a:hover { opacity: 0.8; }
.tcl-footer__col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.tcl-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.tcl-footer__links a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--tcl-ease);
  text-decoration: none;
}
.tcl-footer__links a:hover { color: var(--tcl-white); }
.tcl-footer__bottom {
  padding: 1.75rem 0 2rem;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}
.tcl-footer__copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}
.tcl-footer__disclaimer {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.35);
  max-width: 680px;
  line-height: 1.65;
}
.tcl-footer__age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* === 15. COOKIE NOTICE === */
.tcl-cookie-note {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #162038;
  color: var(--tcl-white);
  padding: 1rem 0;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.tcl-cookie-note[hidden] { display: none; }
.tcl-cookie-note__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.tcl-cookie-note__text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  flex: 1;
  min-width: 200px;
  line-height: 1.6;
}
.tcl-cookie-note__text a {
  color: var(--tcl-gold);
  text-decoration: underline;
}

/* === 16. AGE GATE === */
.tcl-age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.tcl-age-gate[hidden] { display: none; }
.tcl-age-gate__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8,15,28,0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.tcl-age-gate__box {
  position: relative;
  background: var(--tcl-white);
  border-radius: var(--tcl-radius-lg);
  padding: 2.5rem 2.25rem 2rem;
  max-width: 460px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
}
.tcl-age-gate__emblem {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--tcl-navy);
  margin: 0 auto 1.5rem;
}
.tcl-age-gate__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--tcl-navy);
  margin-bottom: 0.875rem;
}
.tcl-age-gate__text {
  font-size: 0.9rem;
  color: var(--tcl-text-muted);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}
.tcl-age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.tcl-age-gate__actions .tcl-btn { width: 100%; }
.tcl-age-gate__decline {
  background: none;
  border: none;
  color: var(--tcl-gray-500);
  font-size: 0.84rem;
  cursor: pointer;
  padding: 0.25rem;
  font-family: inherit;
  transition: color var(--tcl-ease);
}
.tcl-age-gate__decline:hover { color: var(--tcl-text); }

/* === 17. INNER PAGE HERO === */
.tcl-page-hero {
  background: linear-gradient(140deg, #0d1e36 0%, var(--tcl-navy) 100%);
  color: var(--tcl-white);
  padding: 3.5rem 0 3rem;
}
.tcl-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1rem;
}
.tcl-breadcrumb a {
  color: rgba(255,255,255,0.6);
  transition: color var(--tcl-ease);
}
.tcl-breadcrumb a:hover { color: var(--tcl-white); }
.tcl-breadcrumb__sep { opacity: 0.35; }
.tcl-page-hero__title {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--tcl-white);
  margin-bottom: 0.75rem;
}
.tcl-page-hero__subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.68);
  max-width: 600px;
  line-height: 1.7;
}

/* === 18. PAGE CONTENT === */
.tcl-page-content {
  padding-top: 3.5rem;
  padding-bottom: 5rem;
}
.tcl-page-content--narrow { max-width: 820px; }
.tcl-page-content h2 {
  font-size: 1.45rem;
  color: var(--tcl-navy);
  margin-top: 2.5rem;
  margin-bottom: 0.875rem;
}
.tcl-page-content h3 {
  font-size: 1.1rem;
  color: var(--tcl-navy);
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}
.tcl-page-content p {
  font-size: 0.95rem;
  color: var(--tcl-text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.tcl-page-content ul, .tcl-page-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.tcl-page-content ul { list-style: disc; }
.tcl-page-content ol { list-style: decimal; }
.tcl-page-content li {
  font-size: 0.95rem;
  color: var(--tcl-text-muted);
  line-height: 1.75;
  margin-bottom: 0.4rem;
}
.tcl-page-content a {
  color: var(--tcl-teal);
  text-decoration: underline;
  transition: color var(--tcl-ease);
}
.tcl-page-content a:hover { color: var(--tcl-navy); }
.tcl-lead {
  font-size: 1.05rem !important;
  color: var(--tcl-text) !important;
  line-height: 1.8 !important;
}

/* === 19. COMPARISON TABLE === */
.tcl-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 2rem;
  border-radius: var(--tcl-radius);
  border: 1px solid var(--tcl-gray-200);
}
.tcl-comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}
.tcl-comparison-table th {
  background: var(--tcl-navy);
  color: var(--tcl-white);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.875rem 1.125rem;
  text-align: left;
  white-space: nowrap;
}
.tcl-comparison-table td {
  padding: 0.9rem 1.125rem;
  font-size: 0.875rem;
  color: var(--tcl-gray-700);
  border-bottom: 1px solid var(--tcl-gray-100);
  vertical-align: middle;
}
.tcl-comparison-table tr:last-child td { border-bottom: none; }
.tcl-comparison-table tr:nth-child(even) td { background: var(--tcl-gray-50); }
.tcl-comparison-table .tcl-check { color: var(--tcl-teal); font-weight: 600; }
.tcl-comparison-table .tcl-platform-logo-sm {
  height: 26px;
  object-fit: contain;
}

/* === 20. CONTACT === */
.tcl-contact-card {
  background: var(--tcl-cream);
  border-radius: var(--tcl-radius-lg);
  padding: 2.5rem;
  max-width: 600px;
  margin: 2rem 0;
}
.tcl-contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--tcl-navy);
  color: var(--tcl-white);
  padding: 0.875rem 1.5rem;
  border-radius: var(--tcl-radius);
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 1rem;
  transition: background var(--tcl-ease);
  text-decoration: none;
}
.tcl-contact-email:hover { background: var(--tcl-navy-hover); }

/* === 21. TAK PAGE === */
.tcl-tak {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem var(--tcl-px);
}
.tcl-tak__icon {
  width: 68px;
  height: 68px;
  background: var(--tcl-teal);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tcl-white);
}
.tcl-tak__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--tcl-navy);
  margin-bottom: 0.75rem;
}
.tcl-tak__text {
  color: var(--tcl-text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

/* === 22. UTILITIES === */
.tcl-text-center { text-align: center; }
.tcl-mb-0 { margin-bottom: 0 !important; }
.tcl-mt-2 { margin-top: 2rem; }
.tcl-mt-3 { margin-top: 3rem; }
.tcl-gap-row { margin-bottom: 1.5rem; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  :root { --tcl-section-py: 4rem; }
  .tcl-footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .tcl-platforms__grid { grid-template-columns: 1fr 1fr; }
  .tcl-review-grid { grid-template-columns: 1fr 1fr; }
  .tcl-method-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --tcl-section-py: 3rem; --tcl-px: 1rem; }
  .tcl-burger { display: flex; }
  .tcl-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--tcl-navy);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 0.75rem 0;
  }
  .tcl-nav.is-open { display: block; }
  .tcl-nav__list { flex-direction: column; align-items: stretch; gap: 0; padding: 0 0.75rem; }
  .tcl-nav__link { padding: 0.8rem 0.75rem; border-radius: 6px; }

  .tcl-hero { padding: 3.5rem 0 3rem; }
  .tcl-hero__inner { grid-template-columns: 1fr; gap: 0; }
  .tcl-hero__visual { display: none; }
  .tcl-hero__stats { gap: 1.5rem; }

  .tcl-platforms__grid { grid-template-columns: 1fr; }
  .tcl-method-grid { grid-template-columns: 1fr 1fr; }
  .tcl-twocol { grid-template-columns: 1fr; gap: 2rem; }
  .tcl-twocol--flip .tcl-twocol__image,
  .tcl-twocol--flip .tcl-twocol__content { order: unset; }
  .tcl-review-grid { grid-template-columns: 1fr; }
  .tcl-footer__top { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
  .tcl-footer__bottom { flex-direction: column; }
  .tcl-age-gate__box { padding: 2rem 1.25rem 1.75rem; }
  .tcl-contact-card { padding: 1.75rem 1.25rem; }
  .tcl-trust-strip__inner { justify-content: flex-start; }
}

@media (max-width: 480px) {
  .tcl-method-grid { grid-template-columns: 1fr; }
  .tcl-footer__top { grid-template-columns: 1fr; }
  .tcl-hero__cta { flex-direction: column; align-items: flex-start; }
  .tcl-hero__cta .tcl-btn { width: 100%; }
  .tcl-cookie-note__inner { flex-direction: column; align-items: flex-start; }
  .tcl-page-content--narrow { max-width: 100%; }
}

@media (max-width: 360px) {
  :root { --tcl-px: 0.875rem; }
  .tcl-platforms__grid { grid-template-columns: 1fr; }
}
