/* ========================================
   RC777 Gamez – Premium Pakistani Guide
   Kadence-inspired clean theme
   ======================================== */

:root {
  --green-dark: #052e22;
  --green-deep: #064e3b;
  --green-mid: #0a4d3a;
  --green-emerald: #059669;
  --green-bright: #10b981;
  --green-soft: #34d399;
  --green-mint: #a7f3d0;
  --green-pale: #d1fae5;
  --gold: #d4a017;
  --gold-light: #f0c14b;
  --gold-pale: #f5d78e;
  --gold-dark: #b8860b;
  --white: #ffffff;
  --off-white: #f8faf9;
  --text: #1a2e28;
  --text-muted: #4a635a;
  --text-light: #6b7f76;
  --border: #d4e5dc;
  --card-bg: #ffffff;
  --section-dark: #0a3d2e;
  --shadow-sm: 0 2px 8px rgba(5, 46, 34, 0.06);
  --shadow-md: 0 8px 24px rgba(5, 46, 34, 0.1);
  --shadow-lg: 0 16px 48px rgba(5, 46, 34, 0.14);
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --header-h: 72px;
  --max-w: 1140px;
  --font: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-display: Georgia, "Times New Roman", "Palatino Linotype", serif;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--off-white);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-emerald); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-dark); }
ul, ol { padding-left: 1.25rem; }
li { margin-bottom: 0.4rem; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--green-dark);
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 2px 16px rgba(0,0,0,0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
}

.logo-link:hover { color: var(--gold-light); }

.logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold-light);
}

.logo-text span {
  display: block;
  font-family: var(--font);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--green-mint);
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 2px solid var(--gold);
  border-radius: 8px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold-light);
  transition: var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav { display: flex; align-items: center; gap: 0.25rem; }

.main-nav a {
  color: var(--green-mint);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold-light);
  background: rgba(212, 160, 23, 0.12);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--green-dark) !important;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.55rem 1.1rem !important;
  border-radius: 50px;
  margin-left: 0.5rem;
}

.header-cta:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--green-dark) !important;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  line-height: 1.3;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: var(--green-dark);
  box-shadow: 0 4px 16px rgba(212, 160, 23, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212, 160, 23, 0.45);
  color: var(--green-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--gold);
}

.btn-secondary:hover {
  background: rgba(212, 160, 23, 0.15);
  color: var(--gold-light);
}

.btn-outline {
  background: transparent;
  color: var(--green-deep);
  border-color: var(--green-emerald);
}

.btn-outline:hover {
  background: var(--green-deep);
  color: var(--white);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

/* ========== HERO ========== */
.hero {
  background: linear-gradient(160deg, var(--green-dark) 0%, var(--green-mid) 50%, var(--green-deep) 100%);
  color: var(--white);
  padding: 3.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(212, 160, 23, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.35rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 1rem;
}

.hero h1 .gold { color: var(--gold-light); }

.hero-lead {
  font-size: 1.05rem;
  color: var(--green-mint);
  line-height: 1.7;
  margin-bottom: 0.5rem;
  max-width: 540px;
}

.hero-banner {
  display: flex;
  justify-content: center;
}

.hero-banner img {
  width: 100%;
  max-width: 340px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(212, 160, 23, 0.4);
}

.hero-compact {
  padding: 2.5rem 0 3rem;
}

.hero-compact .hero-grid {
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
}

.hero-compact h1 {
  font-size: clamp(1.45rem, 3vw, 2rem);
}

/* ========== SECTIONS ========== */
.section {
  padding: 3.5rem 0;
}

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

.section-dark {
  background: var(--section-dark);
  color: var(--white);
}

.section-dark h2,
.section-dark h3 { color: var(--gold-light); }

.section-dark p,
.section-dark li { color: var(--green-mint); }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.35;
  margin-bottom: 1rem;
}

h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-deep);
  margin: 1.5rem 0 0.75rem;
}

.prose {
  max-width: 780px;
}

.prose p {
  margin-bottom: 1.15rem;
  color: var(--text);
  font-size: 1.02rem;
}

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

.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.content-with-aside {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

/* ========== CARDS ========== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green-deep), var(--green-emerald));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.35rem;
  color: var(--gold-light);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
  color: var(--green-dark);
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.65;
}

.feature-card {
  border-top: 3px solid var(--gold);
}

.category-card {
  text-align: center;
  padding: 1.5rem 1.25rem;
}

.category-card .card-icon {
  margin-left: auto;
  margin-right: auto;
}

/* ========== INFO BOX ========== */
.info-box {
  background: linear-gradient(135deg, #ecfdf5, #f0fdf4);
  border: 1px solid var(--green-soft);
  border-left: 4px solid var(--green-emerald);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
}

.info-box.gold {
  background: linear-gradient(135deg, #fffbeb, #fef9e7);
  border-color: var(--gold-pale);
  border-left-color: var(--gold);
}

.info-box.warning {
  background: linear-gradient(135deg, #fef3c7, #fffbeb);
  border-color: #fbbf24;
  border-left-color: #d97706;
}

.info-box h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
  color: var(--green-dark);
}

.info-box p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.info-box a { font-weight: 600; }

/* ========== TABLES ========== */
.table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.95rem;
}

thead {
  background: var(--green-dark);
  color: var(--gold-light);
}

th {
  padding: 0.9rem 1.1rem;
  text-align: left;
  font-weight: 700;
  font-size: 0.9rem;
}

td {
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

tbody tr:last-child td { border-bottom: none; }
tbody tr:nth-child(even) { background: #f0fdf4; }
tbody tr:hover { background: #d1fae5; }

/* ========== PROS CONS ========== */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.pros-box, .cons-box {
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border);
}

.pros-box {
  background: #ecfdf5;
  border-color: var(--green-soft);
}

.cons-box {
  background: #fff7ed;
  border-color: #fdba74;
}

.pros-box h3 { color: var(--green-deep); margin-top: 0; }
.cons-box h3 { color: #c2410c; margin-top: 0; }

.pros-box ul, .cons-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pros-box li, .cons-box li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--text);
}

.pros-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-emerald);
  font-weight: 700;
}

.cons-box li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: #ea580c;
  font-weight: 700;
}

/* ========== STEPS ========== */
.steps {
  list-style: none;
  padding: 0;
  counter-reset: step;
  margin: 1.5rem 0;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding: 1.15rem 1.15rem 1.15rem 4rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.85rem;
  box-shadow: var(--shadow-sm);
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--green-deep), var(--green-emerald));
  color: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.steps li strong {
  display: block;
  color: var(--green-dark);
  margin-bottom: 0.25rem;
}

/* ========== FAQ ========== */
.faq-list { margin: 1.5rem 0; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: transparent;
  border: none;
  padding: 1.1rem 1.25rem;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 650;
  color: var(--green-dark);
  text-align: left;
  cursor: pointer;
  transition: background var(--transition);
}

.faq-question:hover { background: #f0fdf4; }

.faq-question::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-deep);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  transition: transform var(--transition);
}

.faq-item.active .faq-question::after {
  content: "−";
  background: var(--gold);
  color: var(--green-dark);
}

.faq-answer {
  display: none;
  padding: 0 1.25rem 1.15rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer { display: block; }

/* ========== CTA BOX ========== */
.cta-box {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-lg);
  margin: 2rem 0;
}

.cta-box h2,
.cta-box h3 {
  color: var(--gold-light);
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.cta-box p {
  color: var(--green-mint);
  max-width: 560px;
  margin: 0 auto 1.5rem;
}

.cta-box .btn-group {
  justify-content: center;
}

/* ========== REVIEW BOX ========== */
.review-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  position: relative;
}

.review-box::before {
  content: """;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  line-height: 1;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.review-stars { color: var(--gold); letter-spacing: 2px; font-size: 1.1rem; }

.review-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ========== FORM ========== */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 650;
  color: var(--green-dark);
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 1rem;
  color: var(--text);
  background: var(--off-white);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-emerald);
  background: var(--white);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.form-note {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 1rem;
}

/* ========== LEGAL ========== */
.legal-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  max-width: 860px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.35rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.legal-content h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.legal-updated {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--green-dark);
  color: var(--green-mint);
  padding: 3.5rem 0 0;
  border-top: 3px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer-brand .logo-link { margin-bottom: 1rem; }

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--green-mint);
  opacity: 0.85;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-display);
  color: var(--gold-light);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li { margin-bottom: 0.5rem; }

.footer-col a {
  color: var(--green-mint);
  font-size: 0.9rem;
  opacity: 0.85;
}

.footer-col a:hover {
  color: var(--gold-light);
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(52, 211, 153, 0.2);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--green-mint);
  opacity: 0.7;
}

.footer-disclaimer {
  font-size: 0.8rem;
  opacity: 0.65;
  margin-top: 0.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.age-badge {
  display: inline-block;
  background: rgba(212, 160, 23, 0.2);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  margin-top: 0.75rem;
}

/* ========== BACK TO TOP ========== */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: var(--green-deep);
  color: var(--gold-light);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 900;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  text-decoration: none;
}

.back-to-top.visible { display: flex; }
.back-to-top:hover {
  background: var(--gold);
  color: var(--green-dark);
}

/* ========== UTILITIES ========== */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--green-mint);
  margin-bottom: 1rem;
  opacity: 0.8;
}

.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { margin: 0 0.4rem; opacity: 0.5; }

.inline-link {
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 960px) {
  .hero-grid,
  .hero-compact .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-lead { margin-left: auto; margin-right: auto; }
  .btn-group { justify-content: center; }
  .hero-banner img { max-width: 280px; margin: 0 auto; }

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

  .two-col { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .nav-toggle { display: flex; }

  .main-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--green-dark);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 2px solid var(--gold);
    box-shadow: var(--shadow-lg);
    gap: 0.25rem;
  }

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

  .main-nav a {
    width: 100%;
    padding: 0.85rem 1rem;
    text-align: left;
  }

  .header-cta {
    margin-left: 0;
    margin-top: 0.5rem;
    justify-content: center;
  }

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

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

  .section { padding: 2.5rem 0; }

  .legal-content { padding: 1.75rem 1.25rem; }

  .cta-box { padding: 2rem 1.25rem; }
}

@media (max-width: 480px) {
  .hero { padding: 2.5rem 0 3rem; }
  .btn { padding: 0.75rem 1.35rem; font-size: 0.9rem; }
  .cards { grid-template-columns: 1fr; }
  .logo-text { font-size: 1.15rem; }
}

/* Print */
@media print {
  .site-header, .back-to-top, .nav-toggle { display: none; }
  body { background: white; color: black; }
}
