/* =============================================
   GUESTPOINTS-HOME-EXCHANGE.COM — Global CSS
   Fonts: Cormorant Garamond + Jost
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Jost:wght@300;400;500;600&display=swap');

/* ---- Variables ---- */
:root {
  --primary:       #E05B3A;
  --primary-dark:  #BF4828;
  --primary-light: #FFF4F1;
  --teal:          #2B8C85;
  --teal-light:    #EAF6F5;
  --amber:         #F5A623;
  --black:         #0e0e0e;
  --white:         #fafaf8;
  --card-bg:       #ffffff;
  --surface:       #F7F5F2;
  --border:        rgba(0,0,0,0.08);
  --text:          #1a1a18;
  --muted:         #6b6b67;
  --radius:        16px;
  --shadow:        0 4px 24px rgba(0,0,0,0.07);
  --shadow-lg:     0 12px 48px rgba(0,0,0,0.12);
  --ff-display:    'Cormorant Garamond', Georgia, serif;
  --ff-body:       'Jost', system-ui, sans-serif;
  --transition:    0.22s cubic-bezier(0.4,0,0.2,1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--ff-body);
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }

/* ---- Typography ---- */
h1,h2,h3,h4 { font-family: var(--ff-display); line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 700; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
p  { font-size: 1rem; line-height: 1.75; color: var(--muted); }

/* ---- Layout ---- */
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 48px 0; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  backdrop-filter: blur(14px) saturate(1.6);
  -webkit-backdrop-filter: blur(14px) saturate(1.6);
  background: rgba(250,250,248,0.88);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; max-width: 1080px; margin: 0 auto; padding: 0 24px;
}
.logo {
  font-family: var(--ff-display); font-weight: 700; font-size: 1.2rem;
  color: var(--text); letter-spacing: -0.02em; display: flex; align-items: center; gap: 8px;
}
.logo-dot { width: 8px; height: 8px; background: var(--primary); border-radius: 50%; display: inline-block; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  font-size: 0.875rem; font-weight: 500; color: var(--muted);
  transition: color var(--transition); white-space: nowrap;
}
.nav a:hover { color: var(--text); }
.lang-toggle {
  display: flex; align-items: center; gap: 4px;
  font-size: 0.8rem; font-weight: 600; background: var(--surface);
  border-radius: 20px; padding: 4px 12px; color: var(--muted);
}
.lang-toggle a { color: var(--muted); font-weight: 600; }
.lang-toggle a.active { color: var(--primary); }
.lang-toggle span { color: var(--border); }
.header-cta {
  background: var(--primary); color: var(--white) !important;
  border-radius: 30px; padding: 8px 20px; font-weight: 600;
  font-size: 0.875rem; transition: background var(--transition), transform var(--transition);
}
.header-cta:hover { background: var(--primary-dark) !important; transform: translateY(-1px); }

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(155deg, var(--primary-light) 0%, var(--white) 55%, var(--teal-light) 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -120px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(224,91,58,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute; bottom: -60px; left: -40px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(43,140,133,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 30px; padding: 6px 16px;
  font-size: 0.8rem; font-weight: 600; color: var(--primary);
  margin-bottom: 28px; box-shadow: var(--shadow);
}
.badge-dot {
  width: 7px; height: 7px; background: var(--primary);
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.3); }
}
.hero h1 { max-width: 720px; margin-bottom: 20px; }
.hero h1 .amount {
  color: var(--primary); position: relative;
  display: inline-block;
}
.hero-sub {
  font-size: 1.1rem; max-width: 560px; margin-bottom: 40px;
  color: var(--muted); line-height: 1.7;
}
.hero-sub strong { color: var(--text); }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: var(--white); font-family: var(--ff-body);
  font-weight: 600; font-size: 1rem; padding: 14px 28px; border-radius: 40px;
  border: none; cursor: pointer; transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(224,91,58,0.35);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(224,91,58,0.4); color: var(--white); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text); font-family: var(--ff-body);
  font-weight: 500; font-size: 1rem; padding: 13px 24px; border-radius: 40px;
  border: 1.5px solid var(--border); cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.hero-note { font-size: 0.8rem; color: var(--muted); margin-top: 16px; }

/* ============================================
   CODE BOX
   ============================================ */
.code-section { padding: 60px 0; }
.code-box {
  background: #1a1a18; border-radius: 24px;
  padding: 48px; max-width: 680px; margin: 0 auto;
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.code-box::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(224,91,58,0.18) 0%, transparent 70%);
  border-radius: 50%;
}
.code-label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4); text-transform: uppercase; margin-bottom: 16px;
}
.code-display {
  font-family: 'Courier New', monospace; font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700; color: var(--primary); letter-spacing: 0.08em;
  margin-bottom: 28px; word-break: break-all;
}
.code-sub { color: rgba(255,255,255,0.5); font-size: 0.875rem; margin-bottom: 28px; }
.code-sub strong { color: rgba(255,255,255,0.85); }
.btn-copy {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: var(--white); border: none;
  padding: 14px 32px; border-radius: 40px; font-family: var(--ff-body);
  font-weight: 600; font-size: 1rem; cursor: pointer; width: 100%;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
}
.btn-copy:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-copy.copied { background: var(--teal); }
.code-then {
  text-align: center; margin-top: 20px;
  font-size: 0.875rem; color: rgba(255,255,255,0.35);
}
.code-then a { color: rgba(255,255,255,0.6); text-decoration: underline; }

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--surface); padding: 40px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; text-align: center;
}
.trust-item {}
.trust-number {
  font-family: var(--ff-display); font-size: 2.2rem; font-weight: 700;
  color: var(--text); line-height: 1;
}
.trust-unit { color: var(--primary); }
.trust-label { font-size: 0.8rem; color: var(--muted); margin-top: 4px; font-weight: 500; }

/* ============================================
   REBATE SECTION
   ============================================ */
.rebate-section {
  background: linear-gradient(135deg, #1a1a18 0%, #2a2520 100%);
  padding: 80px 0; position: relative; overflow: hidden;
}
.rebate-section::before {
  content: '';
  position: absolute; top: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(224,91,58,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.rebate-inner { position: relative; z-index: 1; }
.rebate-tag {
  display: inline-block; background: var(--primary); color: var(--white);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 20px; margin-bottom: 20px;
}
.rebate-section h2 { color: var(--white); margin-bottom: 16px; }
.rebate-section p  { color: rgba(255,255,255,0.6); max-width: 580px; margin-bottom: 40px; }
.rebate-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.rebate-perks { display: flex; flex-direction: column; gap: 20px; }
.perk {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(255,255,255,0.04); border-radius: 12px;
  padding: 18px; border: 1px solid rgba(255,255,255,0.07);
}
.perk-icon { font-size: 1.5rem; flex-shrink: 0; }
.perk-title { font-weight: 600; color: var(--white); font-size: 0.95rem; margin-bottom: 4px; }
.perk-desc  { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.5; }
.rebate-form-wrap {
  background: var(--white); border-radius: var(--radius);
  padding: 36px; box-shadow: var(--shadow-lg);
}
.form-title { font-family: var(--ff-display); font-size: 1.4rem; font-weight: 600; margin-bottom: 6px; }
.form-sub   { font-size: 0.875rem; color: var(--muted); margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.form-group input {
  width: 100%; padding: 11px 16px; border: 1.5px solid var(--border);
  border-radius: 10px; font-family: var(--ff-body); font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white); color: var(--text);
}
.form-group input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(224,91,58,0.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.btn-submit {
  width: 100%; padding: 14px; background: var(--primary); color: var(--white);
  border: none; border-radius: 40px; font-family: var(--ff-body); font-weight: 600;
  font-size: 1rem; cursor: pointer; margin-top: 8px;
  transition: background var(--transition), transform var(--transition);
}
.btn-submit:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-note { font-size: 0.75rem; color: var(--muted); margin-top: 12px; text-align: center; }
#formSuccess {
  display: none; text-align: center; padding: 24px 0;
}
#formSuccess.visible { display: block; }
.success-icon { font-size: 2.5rem; margin-bottom: 12px; }
.success-title { font-family: var(--ff-display); font-size: 1.4rem; font-weight: 600; color: var(--teal); margin-bottom: 8px; }

/* ============================================
   OFFERS GRID
   ============================================ */
.offers-section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { margin-bottom: 12px; }
.offers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.offer-card {
  background: var(--card-bg); border-radius: var(--radius);
  padding: 28px; border: 1px solid var(--border);
  box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.offer-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.offer-card.featured { border-color: var(--primary); }
.offer-badge {
  position: absolute; top: -12px; left: 24px;
  background: var(--primary); color: var(--white);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 3px 12px; border-radius: 20px;
}
.offer-icon { font-size: 2rem; margin-bottom: 16px; }
.offer-title { font-family: var(--ff-display); font-size: 1.3rem; font-weight: 600; margin-bottom: 8px; }
.offer-amount { font-size: 1.8rem; font-weight: 700; color: var(--primary); font-family: var(--ff-display); margin-bottom: 8px; }
.offer-amount span { font-size: 1rem; font-weight: 400; color: var(--muted); }
.offer-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }
.offer-condition { font-size: 0.78rem; color: var(--muted); margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border); }

/* ============================================
   STEPS
   ============================================ */
.steps-section { background: var(--surface); padding: 80px 0; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step {
  background: var(--card-bg); border-radius: var(--radius);
  padding: 28px 24px; text-align: center;
  box-shadow: var(--shadow); position: relative;
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary-light); color: var(--primary);
  font-family: var(--ff-display); font-size: 1.3rem; font-weight: 700;
  margin-bottom: 16px;
}
.step h4 { margin-bottom: 8px; }
.step p  { font-size: 0.875rem; }

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-section { padding: 80px 0; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: var(--card-bg); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.faq-btn {
  width: 100%; text-align: left; padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center;
  background: none; border: none; cursor: pointer;
  font-family: var(--ff-body); font-size: 1rem; font-weight: 500; color: var(--text);
  transition: color var(--transition);
}
.faq-btn:hover { color: var(--primary); }
.faq-chevron {
  width: 20px; height: 20px; flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--muted);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--primary); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1);
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 24px 20px; color: var(--muted); font-size: 0.95rem; line-height: 1.75;
  border-top: 1px solid var(--border);
}
.faq-answer-inner a { color: var(--primary); }

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  background: var(--primary); padding: 80px 0; text-align: center;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.final-cta h2 { color: var(--white); margin-bottom: 16px; position: relative; }
.final-cta p  { color: rgba(255,255,255,0.75); max-width: 480px; margin: 0 auto 36px; }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--primary);
  font-family: var(--ff-body); font-weight: 700; font-size: 1.05rem;
  padding: 16px 36px; border-radius: 40px; border: none; cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  position: relative;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.2); color: var(--primary); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: #1a1a18; padding: 48px 0 32px; }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px;
}
.footer-brand .logo { color: var(--white); margin-bottom: 12px; }
.footer-brand p { font-size: 0.825rem; color: rgba(255,255,255,0.4); line-height: 1.65; }
.footer-col h5 {
  font-family: var(--ff-body); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 14px;
}
.footer-col a {
  display: block; font-size: 0.875rem; color: rgba(255,255,255,0.55);
  margin-bottom: 8px; transition: color var(--transition);
}
.footer-col a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px; display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.25); max-width: 560px; line-height: 1.6; }

/* ============================================
   REVIEW PAGE SPECIFICS
   ============================================ */
.review-hero { padding: 120px 0 60px; background: var(--surface); }
.stars { display: flex; gap: 4px; margin-bottom: 12px; }
.star { color: var(--amber); font-size: 1.4rem; }
.star.half { opacity: 0.5; }
.score-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 40px 0; }
.score-card {
  background: var(--card-bg); border-radius: 12px; padding: 20px;
  border: 1px solid var(--border); text-align: center;
}
.score-val { font-family: var(--ff-display); font-size: 2rem; font-weight: 700; color: var(--primary); }
.score-lbl { font-size: 0.8rem; color: var(--muted); margin-top: 4px; }
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 40px 0; }
.pros, .cons { background: var(--card-bg); border-radius: var(--radius); padding: 28px; border: 1px solid var(--border); }
.pros h4 { color: var(--teal); margin-bottom: 16px; }
.cons h4 { color: var(--primary); margin-bottom: 16px; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--text); }
.check-list li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.cons .check-list li::before { content: '×'; color: var(--primary); }

/* ============================================
   VS COMPARISON PAGE
   ============================================ */
.vs-table-wrap { overflow-x: auto; }
.vs-table {
  width: 100%; border-collapse: collapse;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
}
.vs-table thead { background: var(--text); }
.vs-table thead th { color: var(--white); padding: 16px 20px; font-weight: 600; text-align: left; font-size: 0.9rem; }
.vs-table thead th:first-child { width: 40%; }
.vs-table tbody tr { border-bottom: 1px solid var(--border); transition: background var(--transition); }
.vs-table tbody tr:last-child { border-bottom: none; }
.vs-table tbody tr:hover { background: var(--surface); }
.vs-table td { padding: 14px 20px; font-size: 0.9rem; }
.vs-table .winner { color: var(--teal); font-weight: 600; }
.vs-table .loser  { color: var(--muted); }
.vs-winner-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--teal-light); color: var(--teal);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 20px;
}

/* ============================================
   GUIDE PAGE
   ============================================ */
.guide-toc {
  background: var(--surface); border-radius: var(--radius);
  padding: 28px; margin-bottom: 40px; border: 1px solid var(--border);
}
.guide-toc h4 { margin-bottom: 14px; }
.guide-toc ol { padding-left: 20px; display: flex; flex-direction: column; gap: 8px; }
.guide-toc li { font-size: 0.9rem; }
.guide-toc a { color: var(--primary); }
.guide-section { margin-bottom: 56px; }
.guide-section h3 { margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--primary-light); }
.guide-section p  { margin-bottom: 14px; }
.tip-box {
  background: var(--teal-light); border-left: 3px solid var(--teal);
  border-radius: 8px; padding: 16px 20px; margin: 20px 0;
}
.tip-box p { color: var(--teal); font-size: 0.9rem; margin: 0; }
.warn-box {
  background: var(--primary-light); border-left: 3px solid var(--primary);
  border-radius: 8px; padding: 16px 20px; margin: 20px 0;
}
.warn-box p { color: var(--primary-dark); font-size: 0.9rem; margin: 0; }
.formula-box {
  background: #1a1a18; border-radius: 12px; padding: 20px 24px;
  font-family: 'Courier New', monospace; font-size: 1.05rem; color: var(--primary);
  text-align: center; margin: 20px 0;
}

/* ============================================
   GENERIC INNER PAGE HERO
   ============================================ */
.inner-hero { padding: 120px 0 60px; background: var(--surface); border-bottom: 1px solid var(--border); }
.breadcrumb { font-size: 0.8rem; color: var(--muted); margin-bottom: 16px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb span { margin: 0 6px; }
.page-tag {
  display: inline-block; background: var(--primary-light); color: var(--primary);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 16px;
}
.inner-hero h1 { max-width: 700px; margin-bottom: 16px; }
.inner-hero .lead { font-size: 1.1rem; color: var(--muted); max-width: 580px; }

/* ============================================
   ARTICLE CONTENT
   ============================================ */
.article-content { padding: 60px 0 80px; }
.article-grid { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.article-body h2 { margin: 48px 0 16px; }
.article-body h3 { margin: 32px 0 12px; }
.article-body p  { margin-bottom: 16px; }
.article-body ul, .article-body ol { padding-left: 20px; margin-bottom: 16px; display: flex; flex-direction: column; gap: 8px; }
.article-body li { font-size: 0.95rem; color: var(--muted); }
.article-sidebar { position: sticky; top: 88px; }
.sidebar-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; margin-bottom: 20px;
  box-shadow: var(--shadow);
}
.sidebar-card h4 { margin-bottom: 16px; }

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .nav { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .offers-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .rebate-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .score-grid { grid-template-columns: 1fr 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
  .section { padding: 56px 0; }
  .hero { padding: 110px 0 56px; }
  .code-box { padding: 28px 20px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { text-align: center; justify-content: center; }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-teal    { color: var(--teal); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.hidden { display: none; }
