/* ============================================================
   Showcase Teste IPTV 2026 — Ranking Magazine Theme
   Clean, editorial, Playfair Display + DM Sans
   ============================================================ */

/* === VARIABLES === */
:root {
  --bg: #FFFFFF;
  --bg-alt: #F7F7F7;
  --txt: #111111;
  --txt2: #555555;
  --num-ghost: #EBEBEB;
  --accent: #0A6640;
  --accent-light: rgba(10, 102, 64, 0.08);
  --accent-edge: rgba(10, 102, 64, 0.2);
  --badge-gray-bg: #E0E0E0;
  --badge-gray-txt: #333333;
  --border: #E8E8E8;
  --btn-off-bg: #CCCCCC;
  --btn-off-txt: #555555;
  --footer-bg: #111111;
  --footer-txt: #AAAAAA;
  --wrap: 1100px;
  --r-sm: 4px;
  --r-md: 6px;
  --r-lg: 12px;
  --ff-head: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --ff-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--txt);
  line-height: 1.7;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4, h5, h6 { line-height: 1.3; font-weight: 700; color: var(--txt); }
ul, ol { list-style: none; }

/* === LAYOUT === */
.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}
.header-wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.logo {
  font-family: var(--ff-body);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.logo:hover { text-decoration: none; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  color: var(--txt2);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--txt); text-decoration: none; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: var(--r-md);
  font-size: 0.82rem;
  font-weight: 600;
  transition: background 0.2s;
}
.nav-cta:hover { background: #085532; text-decoration: none; }

/* Mobile menu */
.toggle-nav {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.toggle-nav span {
  width: 24px;
  height: 2px;
  background: var(--txt);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 12px 24px 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--txt2);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 12px 0;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: none; }

@media (max-width: 768px) {
  .main-nav { display: none; }
  .toggle-nav { display: flex; }
}

/* === HERO === */
.hero {
  background: var(--bg-alt);
  padding: 100px 24px 60px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.hero-wrap {
  max-width: 780px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 0.78rem;
  color: var(--txt2);
  font-weight: 500;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.hero h1 {
  font-family: var(--ff-head);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 20px;
  color: var(--txt);
}
.hero-subtitle {
  font-size: 1.05rem;
  color: var(--txt2);
  line-height: 1.75;
  max-width: 660px;
  margin-bottom: 36px;
}
.hero-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: box-shadow 0.2s;
}
.hero-badge:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.hero-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
/* Modern CSS icons */
.hero-badge-icon.icon-platforms::before {
  content: '';
  width: 16px;
  height: 16px;
  border: 2.5px solid #fff;
  border-radius: 3px;
  box-shadow: -5px -5px 0 0 #fff, 5px 5px 0 0 rgba(255,255,255,0.4);
}
.hero-badge-icon.icon-tested::before {
  content: '';
  width: 8px;
  height: 14px;
  border-right: 2.5px solid #fff;
  border-bottom: 2.5px solid #fff;
  transform: rotate(40deg);
  margin-top: -3px;
}
.hero-badge-icon.icon-updated::before {
  content: '';
  width: 14px;
  height: 14px;
  border: 2.5px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
}
.hero-badge-icon.icon-updated::after {
  content: '';
  position: absolute;
  top: 9px;
  right: 10px;
  border: 4px solid transparent;
  border-bottom: 5px solid #fff;
  transform: rotate(-30deg);
}
.hero-badge-icon.icon-free::before {
  content: '';
  width: 12px;
  height: 16px;
  border: 2.5px solid #fff;
  border-radius: 2px 2px 0 0;
  position: relative;
}
.hero-badge-icon.icon-free::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 2.5px;
  background: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 -4px 0 0 #fff, 0 4px 0 0 #fff;
}
.hero-badge-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.hero-badge-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--txt);
  line-height: 1.2;
}
.hero-badge-sub {
  font-size: 0.72rem;
  color: var(--txt2);
  font-weight: 400;
  line-height: 1.3;
}
.hero-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 16px 40px;
  border-radius: var(--r-md);
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}
.hero-cta:hover { background: #085532; text-decoration: none; transform: translateY(-1px); }
.hero-disclaimer {
  font-size: 0.72rem;
  color: var(--txt2);
  margin-top: 24px;
  max-width: 560px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hero { padding: 90px 20px 48px; }
  .hero h1 { font-size: 1.9rem; }
  .hero-badges { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hero-cta { display: block; width: 100%; text-align: center; box-sizing: border-box; }
}

/* === QUICK NAV INDEX === */
.quick-nav {
  padding: 48px 24px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.quick-nav .wrap { text-align: center; }
.quick-nav h2 {
  font-family: var(--ff-head);
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.quick-nav-sub {
  font-size: 0.88rem;
  color: var(--txt2);
  margin-bottom: 28px;
}
.quick-nav-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.quick-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-size: 0.88rem;
  color: var(--txt2);
  text-decoration: none;
  transition: all 0.2s;
  font-weight: 500;
}
.quick-nav-item:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }
.quick-nav-item.active { border-color: var(--accent); color: var(--accent); background: var(--accent-light); }
.quick-nav-num {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

@media (max-width: 600px) {
  .quick-nav-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .quick-nav-item { justify-content: center; padding: 10px 10px; font-size: 0.8rem; }
}

/* === RANKING BLOCKS === */
.ranking-block {
  padding: 64px 24px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.ranking-block:nth-child(even) { background: var(--bg-alt); }
.ranking-block:nth-child(odd) { background: var(--bg); }
.ranking-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  position: relative;
}
.ranking-num {
  font-family: var(--ff-head);
  font-size: 160px;
  font-weight: 800;
  color: var(--num-ghost);
  position: absolute;
  top: -30px;
  left: -10px;
  line-height: 1;
  z-index: 0;
  user-select: none;
  pointer-events: none;
}
.ranking-content {
  position: relative;
  z-index: 1;
  padding-left: 80px;
}
.ranking-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.ranking-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.ranking-header-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ranking-badge-pos {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--r-sm);
  text-transform: uppercase;
  width: fit-content;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.ranking-content h2 {
  font-family: var(--ff-head);
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.ranking-url {
  font-size: 0.82rem;
  color: var(--accent);
  margin-bottom: 14px;
  display: inline-block;
}
.ranking-url-off {
  color: var(--txt2);
  pointer-events: none;
}
.ranking-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.badge-green {
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--r-sm);
}
.badge-gray {
  background: var(--badge-gray-bg);
  color: var(--badge-gray-txt);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--r-sm);
}
.ranking-desc {
  font-size: 0.95rem;
  color: var(--txt2);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 720px;
}

/* Criteria bars */
.criteria-table {
  margin-bottom: 24px;
}
.criteria-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.criteria-row:last-child { border-bottom: none; }
.criteria-label {
  width: 200px;
  flex-shrink: 0;
  font-size: 0.85rem;
  color: var(--txt2);
  font-weight: 500;
}
.criteria-bar {
  flex: 1;
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.criteria-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 4px;
  transition: width 0.6s ease;
}
.criteria-val {
  width: 44px;
  text-align: right;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--txt);
}

/* Plans */
.ranking-plans {
  font-size: 0.85rem;
  color: var(--txt2);
  margin-bottom: 16px;
}
.ranking-plans strong { color: var(--txt); font-weight: 600; }
.ranking-diff {
  font-size: 0.88rem;
  color: var(--txt);
  background: var(--accent-light);
  border-left: 3px solid var(--accent);
  padding: 12px 18px;
  margin-bottom: 28px;
  border-radius: 0 var(--r-md) var(--r-md) 0;
}

/* Buttons */
.ranking-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-active {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  padding: 12px 28px;
  border-radius: var(--r-md);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-active:hover { background: #085532; text-decoration: none; }
.btn-inactive {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--btn-off-bg);
  color: var(--btn-off-txt);
  padding: 12px 28px;
  border-radius: var(--r-md);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: not-allowed;
}
.btn-inactive:hover { text-decoration: none; }

@media (max-width: 768px) {
  .ranking-num { font-size: 100px; top: -20px; left: -5px; }
  .ranking-content { padding-left: 20px; }
  .ranking-content h2 { font-size: 1.5rem; }
  .criteria-label { width: 140px; font-size: 0.78rem; }
  .ranking-btns { flex-direction: column; }
  .btn-active, .btn-inactive { width: 100%; justify-content: center; }
}

/* === COMPARISON TABLE === */
.comparison {
  padding: 64px 24px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.comparison .wrap { max-width: var(--wrap); margin: 0 auto; }
.comparison h2 {
  font-family: var(--ff-head);
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 6px;
}
.comparison-sub {
  font-size: 0.9rem;
  color: var(--txt2);
  text-align: center;
  margin-bottom: 36px;
}
.table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.comp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.comp-table th {
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  padding: 12px 14px;
  text-align: left;
  white-space: nowrap;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.comp-table th:first-child { border-radius: var(--r-md) 0 0 0; }
.comp-table th:last-child { border-radius: 0 var(--r-md) 0 0; }
.comp-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--txt2);
}
.comp-table tbody tr:hover { background: rgba(10, 102, 64, 0.03); }
.comp-table .pos-cell {
  font-family: var(--ff-head);
  font-weight: 700;
  color: var(--accent);
  font-size: 1rem;
}
.comp-table .name-cell { font-weight: 600; color: var(--txt); }

/* === SECTION — EXPLANATION CARDS === */
.explain-section {
  padding: 64px 24px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.explain-section .wrap { max-width: var(--wrap); margin: 0 auto; }
.explain-section h2 {
  font-family: var(--ff-head);
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 6px;
}
.explain-sub {
  font-size: 0.9rem;
  color: var(--txt2);
  text-align: center;
  margin-bottom: 36px;
}
.explain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.explain-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
}
.explain-card h3 {
  font-family: var(--ff-head);
  font-size: 1.15rem;
  margin-bottom: 12px;
}
.explain-card p {
  font-size: 0.9rem;
  color: var(--txt2);
  line-height: 1.75;
}

@media (max-width: 600px) {
  .explain-grid { grid-template-columns: 1fr; }
}

/* === HOW TO CHOOSE === */
.choose-section {
  padding: 64px 24px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.choose-section .wrap { max-width: var(--wrap); margin: 0 auto; }
.choose-section h2 {
  font-family: var(--ff-head);
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 6px;
}
.choose-sub {
  font-size: 0.9rem;
  color: var(--txt2);
  text-align: center;
  margin-bottom: 36px;
}
.choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.choose-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
}
.choose-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--accent);
}
.choose-card p {
  font-size: 0.88rem;
  color: var(--txt2);
  line-height: 1.75;
}

@media (max-width: 600px) {
  .choose-grid { grid-template-columns: 1fr; }
}

/* === REVIEW CARDS (Tabbed) === */
.reviews-section {
  padding: 64px 24px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.reviews-section .wrap { max-width: var(--wrap); margin: 0 auto; }
.reviews-section h2 {
  font-family: var(--ff-head);
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 6px;
}
.reviews-sub {
  font-size: 0.9rem;
  color: var(--txt2);
  text-align: center;
  margin-bottom: 24px;
}
.review-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.review-tab {
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--txt2);
  background: var(--bg);
  cursor: pointer;
  transition: all 0.2s;
}
.review-tab:hover { border-color: var(--accent); color: var(--accent); }
.review-tab.active { background: var(--accent); color: #fff; border-color: var(--accent); }
.review-group { display: none; }
.review-group.visible { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.review-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
}
.review-stars {
  color: #F4B400;
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.review-text {
  font-size: 0.85rem;
  color: var(--txt2);
  line-height: 1.7;
  margin-bottom: 10px;
  font-style: italic;
}
.review-author {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--txt);
}
.show-all-reviews {
  display: block;
  margin: 24px auto 0;
  padding: 10px 24px;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: var(--r-md);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.show-all-reviews:hover { background: var(--accent); color: #fff; }

@media (max-width: 768px) {
  .review-group.visible { grid-template-columns: 1fr; }
}

/* === FAQ === */
.faq-section {
  padding: 64px 24px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.faq-section .wrap { max-width: var(--wrap); margin: 0 auto; }
.faq-section h2 {
  font-family: var(--ff-head);
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 6px;
}
.faq-sub {
  font-size: 0.9rem;
  color: var(--txt2);
  text-align: center;
  margin-bottom: 24px;
}
.faq-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.faq-tab {
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--txt2);
  background: var(--bg);
  cursor: pointer;
  transition: all 0.2s;
}
.faq-tab:hover { border-color: var(--accent); color: var(--accent); }
.faq-tab.active { background: var(--accent); color: #fff; border-color: var(--accent); }
.faq-block { display: none; }
.faq-block.visible { display: block; }
.show-all-faq {
  display: block;
  margin: 24px auto 0;
  padding: 10px 24px;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: var(--r-md);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.show-all-faq:hover { background: var(--accent); color: #fff; }
.qa {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: 8px;
  overflow: hidden;
}
.qa h3 {
  font-size: 0.92rem;
  font-weight: 600;
  padding: 16px 48px 16px 20px;
  cursor: pointer;
  position: relative;
  color: var(--txt);
  transition: background 0.2s;
  user-select: none;
}
.qa h3:hover { background: var(--bg-alt); }
.qa h3::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--txt2);
  transition: transform 0.3s;
}
.qa.open h3::after {
  content: '\2212';
}
.qa-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.qa.open .qa-answer {
  max-height: 600px;
}
.qa-answer p {
  padding: 0 20px 18px;
  font-size: 0.88rem;
  color: var(--txt2);
  line-height: 1.8;
}
.qa-answer a.faq-link {
  color: inherit;
  text-decoration: none;
  cursor: text;
}
.qa-answer a.faq-link:hover {
  color: inherit;
  text-decoration: none;
}

/* === CTA FINAL === */
.cta-final {
  background: var(--accent);
  padding: 64px 24px;
  text-align: center;
  color: #fff;
}
.cta-final .wrap { max-width: 640px; margin: 0 auto; }
.cta-eyebrow {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
}
.cta-final h2 {
  font-family: var(--ff-head);
  font-size: 2rem;
  color: #fff;
  margin-bottom: 14px;
}
.cta-final-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.75;
  margin-bottom: 28px;
}
.cta-final-btn {
  display: inline-block;
  background: #fff;
  color: var(--accent);
  padding: 14px 36px;
  border-radius: var(--r-md);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cta-final-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}
.cta-footer-note {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 20px;
}

/* === FOOTER === */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-txt);
  padding: 48px 24px 32px;
}
.footer-wrap {
  max-width: var(--wrap);
  margin: 0 auto;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.footer-brand {
  max-width: 340px;
}
.footer-logo {
  font-family: var(--ff-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--footer-txt);
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  color: var(--footer-txt);
  font-size: 0.82rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid #2a2a2a;
  padding-top: 24px;
}
.footer-legal {
  font-size: 0.72rem;
  line-height: 1.7;
  color: #999;
  margin-bottom: 12px;
}
.footer-copy {
  font-size: 0.72rem;
  color: #999;
}

@media (max-width: 768px) {
  .footer-top { flex-direction: column; gap: 24px; }
  .footer-links { flex-direction: column; gap: 10px; }
}

/* === LEGAL PAGES === */
.legal-hero {
  background: var(--bg-alt);
  padding: 90px 24px 40px;
  border-bottom: 1px solid var(--border);
}
.legal-hero .wrap { max-width: var(--wrap); margin: 0 auto; }
.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin-bottom: 14px;
  font-size: 0.8rem;
}
.crumbs a { color: var(--txt2); text-decoration: none; }
.crumbs span { color: var(--txt2); }
.legal-hero h1 {
  font-family: var(--ff-head);
  font-size: 1.8rem;
  font-weight: 800;
}
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 24px 64px;
}
.legal-content h2 {
  font-size: 1.2rem;
  margin-top: 32px;
  margin-bottom: 12px;
}
.legal-content p {
  font-size: 0.92rem;
  color: var(--txt2);
  line-height: 1.8;
  margin-bottom: 16px;
}
.legal-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}
.legal-content ul li {
  list-style: disc;
  font-size: 0.92rem;
  color: var(--txt2);
  line-height: 1.8;
  margin-bottom: 4px;
}
.legal-date {
  font-size: 0.82rem;
  color: var(--txt2);
  margin-bottom: 20px;
}

/* === CONTACT PAGE === */
.contact-content {
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 24px 64px;
}
.contact-content p {
  font-size: 0.92rem;
  color: var(--txt2);
  line-height: 1.8;
  margin-bottom: 20px;
}
.contact-info {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
}
.contact-info h3 {
  font-size: 1rem;
  margin-bottom: 12px;
}
.contact-info p {
  margin-bottom: 8px;
}
.contact-note {
  margin-top: 24px;
}
