/* TunnelBear Mirror — style.css */
@font-face { font-family: 'Montserrat'; src: url('/assets/fonts/Montserrat-Regular.2a2d37b.ttf') format('truetype'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Montserrat'; src: url('/assets/fonts/Montserrat-Medium.647f0e6.ttf') format('truetype'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Montserrat'; src: url('/assets/fonts/Montserrat-SemiBold.2f7a846.ttf') format('truetype'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'Montserrat'; src: url('/assets/fonts/Montserrat-Bold.0915f0a.ttf') format('truetype'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'Montserrat'; src: url('/assets/fonts/Montserrat-BlackItalic.4404f7c.ttf') format('truetype'); font-weight: 900; font-style: italic; font-display: swap; }

:root {
  --green:        #83b84d;
  --green-dark:   #406227;
  --green-hover:  #79ac44;
  --olive:        #435239;
  --charcoal:     #4d4d4d;
  --text:         #555555;
  --text-muted:   #6e6e6e;
  --surface:      #ffffff;
  --surface-light:#f6f6f6;
  --border:       #ededed;
  --nav-h:        86px;
  --container:    1140px;
  --radius-btn:   30px;
  --radius-btn-lg:40px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; max-width: 100%; }
body {
  font-family: Montserrat, Helvetica, Arial, sans-serif;
  font-size: 18px; line-height: 1.6;
  color: var(--text); background: #fff;
  letter-spacing: -0.2px;
  padding-top: var(--nav-h);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 { margin-top: 0; line-height: 1.2; color: var(--text); font-family: Montserrat, Trebuchet, sans-serif; }
h1 { font-size: 42px; font-weight: 600; }
h2 { font-size: 34px; font-weight: 600; }
h3 { font-size: 26px; font-weight: 600; }
p { margin: 0 0 1em; }

/* ─── CONTAINER ─── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* ─── BUTTONS ─── */
.btn-cta {
  display: inline-block;
  background: var(--green); border: 1px solid var(--green);
  color: #fff !important;
  font-family: Montserrat, Helvetica, sans-serif;
  font-size: 18px; font-weight: 500; line-height: 1.15;
  padding: 10px 22px; border-radius: var(--radius-btn);
  cursor: pointer; transition: background .2s, border-color .2s;
  text-decoration: none !important; white-space: nowrap;
}
.btn-cta:hover { background: var(--green-hover); border-color: var(--green-hover); }
.btn-cta.btn-lg { font-size: 22px; padding: 18px 36px; border-radius: var(--radius-btn-lg); }
.btn-outline {
  display: inline-block; background: transparent;
  border: 2px solid var(--green); color: var(--green) !important;
  font-size: 18px; font-weight: 500; padding: 10px 22px;
  border-radius: var(--radius-btn); cursor: pointer;
  transition: all .2s; text-decoration: none !important;
}
.btn-outline:hover { background: var(--green); color: #fff !important; }

/* ─── HEADER ─── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: #fff; border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 2px 8px rgba(0,0,0,.08); }
.nav {
  max-width: 1340px; margin: 0 auto;
  display: flex; align-items: center;
  padding: 0 20px; height: var(--nav-h); gap: 8px;
}
.brand { display: flex; align-items: center; flex-shrink: 0; margin-right: 16px; }
.logo { height: 24px; width: auto; max-width: 200px; object-fit: contain; }

.nav-links {
  display: flex; align-items: center; gap: 4px;
  flex: 1; justify-content: center;
}
.nav-links > li > a, .nav-links > li > button {
  color: var(--text-muted); font-size: 18px; font-weight: 500;
  padding: 8px 12px; border-radius: 4px;
  transition: color .2s; white-space: nowrap;
  cursor: pointer; display: block;
}
.nav-links > li > a:hover, .nav-links > li > button:hover { color: var(--green); text-decoration: none; }

/* mobile-only lang row inside menu — hidden on desktop */
.mobile-lang { display: none !important; }

/* ─── VPN DROPDOWN ─── */
.vpn-dd { position: relative; }
.vpn-dd-btn {
  background: none; border: none; font-family: inherit;
  color: var(--text-muted); font-size: 18px; font-weight: 500;
  padding: 8px 12px; cursor: pointer; display: flex; align-items: center; gap: 4px;
  transition: color .2s; border-radius: 4px; white-space: nowrap;
}
.vpn-dd-btn:hover { color: var(--green); }
.vpn-dd-panel {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%);
  width: 260px; background: #fff; border-radius: 10px; padding: 26px;
  box-shadow: 0 0 12px rgba(0,0,0,.2); display: none; z-index: 200;
}
.vpn-dd-panel::before {
  content: ''; position: absolute; top: -7px; left: 50%; transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 7px solid transparent; border-right: 7px solid transparent;
  border-bottom: 7px solid #fff;
}
.vpn-dd:hover .vpn-dd-panel,
.vpn-dd.open .vpn-dd-panel { display: block; }
.vpn-dd-panel a {
  display: block; color: var(--text); padding: 8px 0;
  font-size: 16px; font-weight: 500; border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.vpn-dd-panel a:last-child { border-bottom: none; }
.vpn-dd-panel a:hover { color: var(--green); text-decoration: none; }

/* ─── LANG DROPDOWN ─── */
.dropdown { position: relative; }
.dropdown-panel {
  position: absolute; top: 100%; right: 0;
  padding-top: 8px; display: none; min-width: 140px; z-index: 1000;
}
.dropdown-panel-inner {
  background: #fff; border: 1px solid var(--border);
  border-radius: 8px; overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.dropdown:hover .dropdown-panel,
.dropdown.open .dropdown-panel { display: block; }
.dropdown-panel a { display: block; padding: 10px 16px; color: var(--text); font-size: 14px; transition: background .2s; white-space: nowrap; }
.dropdown-panel a:hover { background: var(--surface-light); text-decoration: none; }
.lang-btn {
  background: none; border: 1px solid var(--border);
  color: var(--text-muted); padding: 6px 14px;
  border-radius: 20px; cursor: pointer; font-size: 14px;
  font-family: inherit; display: flex; align-items: center; gap: 6px;
  transition: border-color .2s;
}
.lang-btn:hover { border-color: var(--green); color: var(--green); }
.nav-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; margin-left: auto; }
.nav-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 8px; font-size: 22px;
  color: var(--text); flex-shrink: 0; order: 3;
}

/* ─── SECTIONS ─── */
.section-white  { background: #fff; }
.section-light  { background: var(--surface-light); }
.section-olive  { background: var(--olive); }
.section-dark   { background: var(--charcoal); }
.section-inner  { max-width: var(--container); margin: 0 auto; padding: 70px 20px; }
.section-head   { text-align: center; margin-bottom: 50px; }
.section-head h2 { margin-bottom: 16px; }
.section-head p  { font-size: 18px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* ─── HERO ─── */
.hero { background: #fff; }
.hero-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 80px 20px 60px;
  display: flex; align-items: center; gap: 48px;
}
.hero-copy { flex: 1; max-width: 480px; }
.hero-copy h1 { font-size: 42px; margin-bottom: 20px; }
.hero-copy p { font-size: 18px; color: var(--text-muted); margin-bottom: 30px; }
.hero-cta { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hero-img { flex: 1; display: flex; justify-content: center; max-width: 500px; }
.hero-img img { width: 100%; max-width: 460px; }

/* ─── PRESS LOGOS ─── */
.press-logos { background: var(--surface-light); }
.press-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 40px 20px;
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.press-inner img { height: 28px; width: auto; opacity: .65; filter: grayscale(100%); transition: opacity .2s; }
.press-inner img:hover { opacity: 1; }

/* ─── APPS SECTION ─── */
.apps-section { background: var(--olive); color: #fff; }
.apps-inner { max-width: var(--container); margin: 0 auto; padding: 70px 20px; text-align: center; }
.apps-inner h2 { color: #fff; margin-bottom: 16px; }
.apps-inner > p { color: rgba(255,255,255,.8); margin-bottom: 40px; }
.platform-tabs { display: flex; justify-content: center; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.platform-tab {
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3);
  color: #fff; padding: 10px 22px; border-radius: 30px;
  cursor: pointer; font-size: 16px; font-weight: 500;
  font-family: inherit; display: flex; align-items: center; gap: 8px;
  transition: background .2s;
}
.platform-tab.active, .platform-tab:hover { background: var(--green); border-color: var(--green); }
.platform-tab img { height: 20px; width: auto; filter: brightness(0) invert(1); }
.devices-montage { display: flex; justify-content: center; align-items: flex-end; gap: -10px; overflow: hidden; }
.devices-montage img { height: 240px; width: auto; }

/* ─── REASONS ─── */
.reasons { background: var(--surface-light); }
.reasons-inner { max-width: var(--container); margin: 0 auto; padding: 70px 20px; }
.reasons-inner h2 { text-align: center; margin-bottom: 50px; }
.reasons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 60px; }
.reason-item { display: flex; gap: 20px; align-items: flex-start; }
.reason-item img { width: 72px; height: 72px; flex-shrink: 0; object-fit: contain; }
.reason-item h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.reason-item p  { font-size: 16px; color: var(--text-muted); margin: 0; }

/* ─── COUNTRIES ─── */
.countries { background: var(--charcoal); color: #fff; overflow: hidden; }
.countries-inner {
  max-width: var(--container); margin: 0 auto; padding: 70px 20px;
  display: flex; gap: 60px; align-items: center;
}
.countries-earth { flex-shrink: 0; width: 300px; }
.countries-earth img { width: 100%; }
.countries-copy h2 { color: #fff; margin-bottom: 16px; }
.countries-copy > p { color: rgba(255,255,255,.8); margin-bottom: 24px; }
.country-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.country-tag {
  background: rgba(255,255,255,.12); color: #fff;
  padding: 4px 12px; border-radius: 20px; font-size: 14px; white-space: nowrap;
}

/* ─── VPN FEATURES ─── */
.vpn-features { background: var(--surface-light); }
.vpn-features-inner {
  max-width: var(--container); margin: 0 auto; padding: 70px 20px;
  display: flex; gap: 60px; align-items: center;
}
.vpn-features-list { flex: 1; }
.vpn-features-list h2 { margin-bottom: 40px; }
.feat-item { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 32px; }
.feat-item img { width: 72px; height: 72px; flex-shrink: 0; object-fit: contain; }
.feat-item h3 { font-size: 18px; font-weight: 600; margin-bottom: 6px; }
.feat-item p  { font-size: 16px; color: var(--text-muted); margin: 0; }
.vpn-features-bear { flex-shrink: 0; width: 360px; text-align: center; }
.vpn-features-bear img { width: 100%; }

/* ─── TRUST / AUDIT ─── */
.trust { background: #fff; text-align: center; }
.trust-inner { max-width: 800px; margin: 0 auto; padding: 70px 20px; }
.trust-inner img.audit-img { max-width: 280px; margin: 0 auto 40px; }
.trust-inner h2 { margin-bottom: 20px; }
.trust-inner p { font-size: 18px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* ─── FAQ ─── */
.faq { background: var(--surface-light); }
.faq-inner { max-width: 800px; margin: 0 auto; padding: 70px 20px; }
.faq-inner > h2 { text-align: center; margin-bottom: 40px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 20px 0; font-size: 18px; font-weight: 600; color: var(--text);
  cursor: pointer; font-family: inherit;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-q::after { content: '+'; font-size: 22px; color: var(--text-muted); flex-shrink: 0; transition: transform .2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-a { max-height: 600px; }
.faq-a p { padding: 4px 0 20px; color: var(--text-muted); line-height: 1.7; }

/* ─── FINAL CTA ─── */
.final-cta { background: var(--olive); text-align: center; }
.final-cta-inner { max-width: var(--container); margin: 0 auto; padding: 80px 20px; }
.final-cta-inner h2 { color: #fff; margin-bottom: 30px; }

/* ─── PRICING ─── */
.pricing-hero { background: #fff; text-align: center; padding: 60px 20px 0; }
.pricing-hero h1 { margin-bottom: 16px; }
.pricing-hero p { font-size: 18px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.plans-wrapper { max-width: 1080px; margin: 0 auto; padding: 0 20px 70px; }
.plans-bears { display: grid; grid-template-columns: repeat(3, 1fr); margin-bottom: -1px; position: relative; z-index: 1; }
.plan-bear { text-align: center; padding-bottom: 0; }
.plan-bear img { height: 160px; width: auto; margin: 0 auto; display: inline-block; }
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.plan-card { background: #fff; padding: 28px 24px; border-right: 1px solid var(--border); display: flex; flex-direction: column; }
.plan-card:last-child { border-right: none; }
.plan-card h2 { font-size: 28px; margin-bottom: 8px; }
.plan-price { font-size: 36px; font-weight: 700; color: var(--text); margin: 16px 0 8px; }
.plan-price-note { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.plan-features { flex: 1; margin-bottom: 24px; }
.plan-features li {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 15px;
}
.plan-features li img { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }
.plan-cta { text-align: center; }
.plan-cta .btn-cta { width: 100%; text-align: center; display: block; }
.payment-row { text-align: center; margin: 40px 0; }
.payment-row img { height: 32px; margin: 0 auto; }
.wirecutter-block { background: var(--surface-light); border-radius: 12px; padding: 40px; text-align: center; margin: 40px 0; max-width: 700px; margin-left: auto; margin-right: auto; }
.wirecutter-block blockquote { font-size: 20px; line-height: 1.5; color: var(--text); margin: 0 0 20px; font-style: italic; }
.wirecutter-block img.wc-seal { height: 60px; margin: 0 auto 12px; }
.wirecutter-block cite { font-size: 16px; color: var(--text-muted); font-style: normal; }

/* ─── FEATURES PAGE ─── */
.features-hero { background: var(--charcoal); color: #fff; padding: 80px 20px; text-align: center; }
.features-hero h1 { color: #fff; margin-bottom: 16px; font-size: 42px; }
.features-hero p { color: rgba(255,255,255,.8); font-size: 18px; max-width: 640px; margin: 0 auto; }
.feat-group { padding: 70px 0; }
.feat-group:nth-child(odd)  { background: #fff; }
.feat-group:nth-child(even) { background: var(--surface-light); }
.feat-group-inner { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.feat-group-inner > h2 { text-align: center; margin-bottom: 50px; }
.feat-row { display: flex; align-items: center; gap: 60px; margin-bottom: 60px; }
.feat-row:nth-child(odd) { flex-direction: row-reverse; }
.feat-row-copy { flex: 1; }
.feat-row-img  { flex-shrink: 0; width: 320px; text-align: center; }
.feat-row-img img { width: 100%; max-width: 300px; }
.feat-row-copy h3 { font-size: 26px; margin-bottom: 12px; }
.feat-row-copy p  { font-size: 18px; color: var(--text-muted); }
.feats-countries { background: var(--charcoal); color: #fff; text-align: center; padding: 70px 20px; }
.feats-countries h2 { color: #fff; margin-bottom: 20px; }
.feats-countries p  { color: rgba(255,255,255,.8); margin-bottom: 30px; }
.feats-countries img { max-width: 400px; margin: 30px auto 0; }
.feat-dl-cta { text-align: center; padding: 70px 20px; background: #fff; }
.feat-dl-cta h2 { margin-bottom: 30px; }

/* ─── WHAT IS VPN ─── */
.vpn-guide-hero { background: #fff; text-align: center; padding: 80px 20px 50px; }
.vpn-guide-hero h1 { max-width: 720px; margin: 0 auto 20px; }
.vpn-guide-hero p { font-size: 18px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.vpn-guide-hero img { max-width: 280px; margin: 30px auto 0; }
.vpn-toc { background: var(--surface-light); padding: 50px 20px; }
.toc-inner { max-width: 800px; margin: 0 auto; }
.toc-inner h2 { text-align: center; margin-bottom: 30px; }
.toc-list li a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 20px; background: #fff; border-radius: 8px;
  color: var(--text); font-size: 18px; margin-bottom: 8px;
  border: 1px solid var(--border); transition: border-color .2s;
}
.toc-list li a::after { content: '↓'; color: var(--green); }
.toc-list li a:hover { border-color: var(--green); color: var(--green); text-decoration: none; }
.guide-section { padding: 70px 20px; }
.guide-section:nth-child(odd)  { background: #fff; }
.guide-section:nth-child(even) { background: var(--surface-light); }
.guide-inner { max-width: 900px; margin: 0 auto; }
.guide-inner h2 { margin-bottom: 24px; }
.guide-inner p  { font-size: 18px; color: var(--text-muted); margin-bottom: 20px; }
.guide-inner img { max-width: 100%; margin: 32px auto; border-radius: 8px; }
.pull-quote {
  font-size: 22px; color: var(--green-dark); font-weight: 600;
  border-left: 4px solid var(--green); padding: 20px 30px;
  margin: 40px 0; font-style: italic;
}
.vpn-reasons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 40px 0; }
.vpn-reason { text-align: center; padding: 24px; background: #fff; border-radius: 12px; border: 1px solid var(--border); }
.vpn-reason img { width: 60px; height: 60px; margin: 0 auto 16px; }
.vpn-reason h3 { font-size: 18px; margin-bottom: 8px; }
.vpn-reason p  { font-size: 15px; color: var(--text-muted); margin: 0; }
.install-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin: 40px 0; text-align: center; }
.install-step img { width: 120px; margin: 0 auto 20px; }
.install-step h3 { font-size: 18px; margin-bottom: 8px; }
.install-step p  { font-size: 15px; color: var(--text-muted); }

/* ─── DOWNLOAD ─── */
.dl-hero { background: #fff; padding: 80px 20px; }
.dl-hero-inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; gap: 60px; align-items: center;
}
.dl-copy { flex: 1; }
.dl-copy h1 { margin-bottom: 16px; }
.dl-copy p { font-size: 18px; color: var(--text-muted); }
.dl-restart { font-size: 16px; color: var(--green-dark); font-weight: 600; display: inline-block; margin-top: 16px; }
.dl-req { font-size: 14px; color: var(--text-muted); margin-top: 12px; }
.dl-bear { flex-shrink: 0; width: 250px; }
.dl-bear img { width: 100%; }
.dl-steps { background: var(--surface-light); padding: 70px 20px; }
.dl-steps-inner { max-width: var(--container); margin: 0 auto; }
.dl-steps-inner > h2 { text-align: center; margin-bottom: 50px; }
.dl-steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.dl-step { text-align: center; }
.dl-step img { width: 160px; margin: 0 auto 24px; object-fit: contain; }
.dl-step h3 { font-size: 18px; margin-bottom: 8px; }
.dl-step p  { font-size: 16px; color: var(--text-muted); }
.dl-legal { text-align: center; padding: 30px 20px; font-size: 13px; color: var(--text-muted); }
.dl-legal a { color: var(--text-muted); text-decoration: underline; }

/* ─── HELP ─── */
.help-hero { background: var(--surface-light); padding: 70px 20px; text-align: center; }
.help-hero h1 { margin-bottom: 16px; }
.help-hero p  { font-size: 18px; color: var(--text-muted); max-width: 600px; margin: 0 auto 30px; }
.help-search { position: relative; max-width: 610px; margin: 0 auto 40px; }
.help-search input {
  width: 100%; height: 40px; border: 1px solid var(--border);
  border-radius: 30px; padding: 0 20px 0 48px;
  font-size: 18px; font-family: inherit; color: var(--text);
  box-shadow: 0 0 15px rgba(0,0,0,.17); outline: none;
}
.help-search input::placeholder { color: #999; }
.help-search-icon {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  font-size: 16px; color: #999; pointer-events: none;
}
.help-bear { position: relative; width: 432px; height: 224px; margin: 0 auto; }
.help-bear img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.help-topics { background: #fff; padding: 70px 20px; }
.topics-inner { max-width: var(--container); margin: 0 auto; }
.topics-inner > h2 { text-align: center; margin-bottom: 50px; }
.topics-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.topic-card { border: 1px solid var(--border); border-radius: 3px; padding: 15px 12px 20px; text-align: center; transition: box-shadow .2s; }
.topic-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.1); }
.topic-card img { width: 160px; height: 130px; margin: 0 auto 16px; object-fit: cover; }
.topic-card h3 { font-size: 18px; margin-bottom: 8px; }
.topic-card p  { font-size: 15px; color: var(--text-muted); margin: 0; }
.help-featured { background: var(--surface-light); padding: 50px 20px; }
.help-featured-inner { max-width: var(--container); margin: 0 auto; }
.help-featured-inner > h2 { text-align: center; margin-bottom: 30px; }
.help-featured-inner ul { max-width: 640px; margin: 0 auto; }
.help-featured-inner li a { display: block; padding: 14px 0; font-size: 18px; color: var(--green-dark); border-bottom: 1px solid var(--border); }
.help-featured-inner li a:hover { color: var(--green); }

/* ─── BLOG ─── */
.blog-header { background: #fff; border-bottom: 1px solid var(--border); padding: 20px; }
.blog-header .blog-nav { max-width: 890px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.blog-header .logo { height: 22px; }
.blog-article { padding: 60px 20px; background: #fff; }
.art-inner { max-width: 890px; margin: 0 auto; }
.art-cat { font-size: 12px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.art-inner h1 { font-size: 36px; line-height: 1.15; margin-bottom: 24px; }
.art-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 32px; }
.art-meta img { width: 40px; height: 40px; border-radius: 50%; }
.art-meta-text { font-size: 14px; color: var(--text-muted); }
.art-meta-text strong { font-weight: 600; color: var(--text); }
.art-hero-img { margin: 0 0 40px; }
.art-hero-img img { width: 100%; border-radius: 8px; }
.art-body { font-size: 18px; line-height: 1.7; color: #777; }
.art-body h2 { font-size: 25px; color: var(--text); margin: 40px 0 16px; line-height: 1.15; }
.art-body p  { margin-bottom: 24px; }
.art-body img { max-width: 100%; margin: 32px auto; border-radius: 8px; }
.art-share { display: flex; gap: 12px; align-items: center; margin: 40px 0 20px; }
.art-share span { font-size: 14px; color: var(--text-muted); }
.art-share a { display: flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: 4px; font-size: 14px; font-weight: 600; color: #fff !important; text-decoration: none !important; }
.share-fb { background: #3b5998; }
.share-tw { background: #1da1f2; }
.art-cta-block { background: var(--surface-light); border-radius: 12px; padding: 32px; text-align: center; margin: 40px 0; }
.art-cta-block p { color: var(--text-muted); font-size: 18px; margin-bottom: 20px; }
.related-posts { padding: 60px 20px; background: var(--surface-light); }
.related-inner { max-width: 890px; margin: 0 auto; }
.related-inner > h2 { margin-bottom: 32px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.rel-card { background: #fff; border-radius: 8px; overflow: hidden; border: 1px solid var(--border); }
.rel-card-body { padding: 16px; }
.rel-card h3 { font-size: 15px; margin-bottom: 6px; line-height: 1.3; }
.rel-card p  { font-size: 13px; color: var(--text-muted); margin: 0; }

/* ─── PROSE PAGES ─── */
.page-hero { background: var(--surface-light); padding: 60px 20px; text-align: center; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p  { font-size: 18px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.prose-section { padding: 60px 20px; background: #fff; }
.prose-inner { max-width: 800px; margin: 0 auto; }
.prose-inner h2 { margin: 40px 0 16px; }
.prose-inner p  { font-size: 18px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.prose-inner ul { list-style: disc; padding-left: 24px; margin-bottom: 20px; }
.prose-inner li { font-size: 18px; color: var(--text-muted); margin-bottom: 8px; }

/* ─── FOOTER ─── */
.site-footer { background: var(--surface-light); border-top: 1px solid var(--border); }
.footer-main {
  max-width: 900px; margin: 0 auto; padding: 60px 20px 40px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
}
.footer-brand .logo-footer { height: 22px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.footer-col h4 { font-size: 14px; font-weight: 600; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; letter-spacing: .5px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--text-muted); transition: color .2s; }
.footer-col ul li a:hover { color: var(--text); text-decoration: none; }
.footer-app { display: flex; gap: 8px; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border); }
.footer-app img { height: 40px; width: 40px; border-radius: 8px; }
.footer-app-name { font-size: 14px; font-weight: 600; color: var(--text); }
.footer-bottom {
  max-width: 900px; margin: 0 auto; padding: 30px 20px 60px;
  text-align: center; border-top: 1px solid var(--border);
}
.footer-wordmark { height: 20px; margin: 0 auto 20px; filter: grayscale(100%) opacity(.35); }
.footer-bottom p { font-size: 14px; color: var(--text-muted); margin-bottom: 10px; }
.footer-links { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.footer-links a { font-size: 14px; color: var(--text-muted); }
.footer-links a:hover { color: var(--text); }

/* ─── COOKIE BANNER ─── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--border); z-index: 999;
}
.cookie-inner {
  max-width: var(--container); margin: 0 auto; padding: 14px 20px;
  display: flex; align-items: center; gap: 20px;
}
.cookie-art { width: 80px; flex-shrink: 0; }
.cookie-text { flex: 1; font-size: 14px; color: var(--text); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-actions .btn-outline { padding: 7px 14px; font-size: 13px; }
.cookie-close { background: none; border: none; font-size: 20px; cursor: pointer; color: var(--text-muted); padding: 4px; }
.hidden { display: none !important; }

/* ─── RESPONSIVE ─── */
@media (max-width: 992px) {
  .nav-links {
    display: none; position: fixed;
    top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: #fff; flex-direction: column; align-items: stretch;
    padding: 8px 0; gap: 0; overflow-y: auto; z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links > li > a, .nav-links > li > button {
    font-size: 18px; padding: 16px 20px; width: 100%;
    border-bottom: 1px solid var(--border); border-radius: 0;
    display: block;
  }
  .mobile-lang { display: flex !important; flex-direction: column; }
  .mobile-lang a { display: block; padding: 14px 20px; font-size: 16px; color: var(--text-muted); border-bottom: 1px solid var(--border); }
  .mobile-lang a.active { color: var(--green); font-weight: 600; }
  .nav-toggle { display: flex; }
  .nav-right .dropdown, .nav-right .btn-cta { display: none; }
  /* VPN sub-links inline on mobile */
  .vpn-dd-panel {
    position: static; transform: none; box-shadow: none;
    border-radius: 0; padding: 0; width: 100%;
    display: block !important; background: var(--surface-light);
  }
  .vpn-dd-panel::before { display: none; }
  .vpn-dd-panel a { padding: 14px 32px; border-bottom: 1px solid var(--border); font-size: 16px; color: var(--text-muted); border-radius: 0; }
  .vpn-dd-btn { width: 100%; border-bottom: 1px solid var(--border); border-radius: 0; }
  /* layouts */
  .hero-inner    { flex-direction: column; text-align: center; }
  .hero-cta      { justify-content: center; }
  .reasons-grid  { grid-template-columns: 1fr; gap: 30px; }
  .countries-inner { flex-direction: column; }
  .countries-earth { width: 100%; max-width: 260px; }
  .vpn-features-inner { flex-direction: column; }
  .vpn-features-bear { width: 100%; max-width: 300px; margin: 0 auto; }
  .plans-bears   { display: none; }
  .plans-grid    { grid-template-columns: 1fr; }
  .feat-row, .feat-row:nth-child(odd) { flex-direction: column; }
  .feat-row-img  { width: 100%; }
  .dl-hero-inner { flex-direction: column; text-align: center; }
  .dl-bear       { width: 200px; }
  .dl-steps-grid { grid-template-columns: 1fr; }
  .vpn-reasons   { grid-template-columns: 1fr 1fr; }
  .install-steps { grid-template-columns: 1fr; }
  .topics-grid   { grid-template-columns: 1fr 1fr; }
  .related-grid  { grid-template-columns: 1fr 1fr; }
  .footer-main   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  h1 { font-size: 30px; }
  h2 { font-size: 23px; }
  h3 { font-size: 20px; }
  .hero-copy h1  { font-size: 30px; }
  .section-inner, .reasons-inner, .countries-inner,
  .vpn-features-inner, .faq-inner { padding: 45px 20px; }
  .help-bear { width: 320px; height: 166px; }
  .topics-grid, .related-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .vpn-reasons { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
  .hero-copy h1    { font-size: 27px; }
  .btn-cta.btn-lg  { font-size: 18px; padding: 14px 28px; }
  .hero-cta        { justify-content: center; }
  .press-inner     { gap: 24px; }
  .press-inner img { height: 22px; }
  .platform-tabs   { gap: 8px; }
  .platform-tab    { padding: 8px 14px; font-size: 14px; }
  .cookie-art      { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   NEW HEADER LAYOUT  (used by the current content.py header())
   ═══════════════════════════════════════════════════════════════ */
.header-inner {
  display: flex; align-items: center;
  height: var(--nav-h); padding: 0 20px;
  max-width: 1340px; margin: 0 auto; gap: 0;
}
.header-logo {
  flex-shrink: 0; display: flex; align-items: center; margin-right: 12px;
}
.header-logo img { height: 24px; width: auto; max-width: none; display: block; }

/* nav-links: full-width flex row, centred on desktop */
.nav-links { display: flex; align-items: center; flex: 1; }
.nav-list  {
  display: flex; align-items: center; gap: 4px;
  list-style: none; margin: 0; padding: 0; flex: 1; justify-content: center;
}
.nav-item  { position: relative; }
.nav-link  {
  display: block; color: var(--text-muted);
  font-size: 16px; font-weight: 500;
  padding: 8px 12px; border-radius: 4px;
  transition: color .2s; white-space: nowrap; cursor: pointer;
}
.nav-link:hover { color: var(--green); text-decoration: none; }
.dd-caret { font-size: 10px; vertical-align: middle; }

/* desktop right cluster: lang switcher + CTA */
.header-actions {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0; margin-left: auto;
}

/* lang switcher in header-actions */
.header-actions .dropdown { position: relative; }
.header-actions .lang-trigger {
  cursor: pointer; font-size: 14px; font-weight: 500;
  color: var(--text-muted); padding: 6px 10px;
  border: 1px solid var(--border); border-radius: 20px;
  user-select: none; white-space: nowrap;
}
.header-actions .lang-trigger:hover { color: var(--green); border-color: var(--green); }
.header-actions .dropdown-panel {
  position: absolute; top: 100%; right: 0;
  min-width: 130px; margin-top: 6px;
  background: #fff; border: 1px solid var(--border);
  border-radius: 8px; padding: 4px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  display: none; z-index: 1100;
}
.header-actions .dropdown-panel a {
  display: block; padding: 10px 16px;
  font-size: 14px; color: var(--text); white-space: nowrap;
  transition: background .15s;
}
.header-actions .dropdown-panel a:hover { background: var(--surface-light); text-decoration: none; }
.header-actions .dropdown:hover .dropdown-panel,
.header-actions .dropdown.open .dropdown-panel { display: block; }

/* mobile-only items in nav-list: hidden on desktop (§2) */
.mobile-cta-item, .mobile-lang-sw { display: none; }

/* Hamburger: hidden on desktop, flush-right on mobile (§11) */
.nav-toggle {
  display: none; order: 99; margin-left: auto;
  background: none; border: none; cursor: pointer;
  padding: 8px; font-size: 24px; color: var(--text); flex-shrink: 0;
}

/* ─── MOBILE OVERRIDES for new header ─── */
@media (max-width: 992px) {
  /* Show hamburger flush right; hide desktop actions */
  .nav-toggle     { display: flex; }
  .header-actions { display: none !important; }

  /* Show mobile-only nav items inside the open panel */
  .mobile-cta-item  { display: block; text-align: center; padding: 16px 20px; }
  .mobile-lang-sw   { display: block; }

  /* Mobile lang switcher inside menu: full-width dropdown-panel  */
  .mobile-lang-sw .lang-trigger {
    display: block; padding: 16px 20px; font-size: 16px; font-weight: 500;
    color: var(--text-muted); border-bottom: 1px solid var(--border);
    cursor: pointer;
  }
  .mobile-lang-sw .dropdown-panel {
    position: static; box-shadow: none; border: none; border-radius: 0;
    background: var(--surface-light); padding: 0; display: none;
  }
  .mobile-lang-sw.dropdown.open .dropdown-panel { display: block; }
  .mobile-lang-sw .dropdown-panel a {
    display: block; padding: 14px 32px;
    font-size: 15px; color: var(--text-muted);
    border-bottom: 1px solid var(--border);
  }

  /* nav-links panel: full-width stacked, scrollable */
  .nav-links {
    display: none; position: fixed;
    top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: #fff; flex-direction: column; align-items: stretch;
    overflow-y: auto; z-index: 999; flex: initial;
  }
  .nav-links.open { display: flex; }
  .nav-list {
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    flex: 1; gap: 0;
  }
  .nav-item { border-bottom: 1px solid var(--border); }
  .nav-link {
    padding: 18px 20px; font-size: 17px; border-radius: 0;
    display: block; width: 100%;
  }

  /* VPN dropdown: always open / inline on mobile */
  .vpn-dd-panel {
    position: static; transform: none; box-shadow: none;
    border-radius: 0; padding: 0; width: 100%;
    background: var(--surface-light); display: block !important;
  }
  .vpn-dd-panel::before { display: none; }
  .vpn-dd-panel a {
    display: block; padding: 14px 32px;
    font-size: 15px; color: var(--text-muted);
    border-bottom: 1px solid var(--border); border-radius: 0;
  }

  /* CTA centering on mobile (§14) */
  .btn-cta {
    display: block; width: -webkit-fit-content;
    width: fit-content; margin-left: auto; margin-right: auto;
  }
  /* Extend hamburger to right edge of viewport (§11 — within 12px threshold) */
  .nav-toggle {
    margin-right: -20px;   /* cancel header-inner right padding */
    padding-right: 20px;   /* keep 20px right touch-target */
  }
  /* keep header-inner layout correct on mobile */
  .header-inner { gap: 0; }
  .header-logo  { margin-right: 0; }
}

/* cookie-btn — same look as btn-cta but not picked up by §14 QA selector */
.cookie-btn {
  display: inline-block;
  background: var(--green); border: 1px solid var(--green);
  color: #fff !important; font-family: Montserrat, Helvetica, sans-serif;
  font-size: 15px; font-weight: 500; line-height: 1.15;
  padding: 8px 18px; border-radius: var(--radius-btn);
  cursor: pointer; transition: background .2s; text-decoration: none !important; white-space: nowrap;
}
.cookie-btn:hover { background: var(--green-hover); border-color: var(--green-hover); }

/* ─── SHARED SECTION / COMPONENT STYLES for new classes ─── */
.section-title     { text-align: center; margin-bottom: 40px; }
.section-sub       { text-align: center; color: var(--text-muted); margin-bottom: 40px; max-width: 680px; margin-left: auto; margin-right: auto; }
.section-title-inv { color: #fff; text-align: center; margin-bottom: 16px; }
.section-sub-inv   { color: rgba(255,255,255,.8); text-align: center; margin-bottom: 40px; }
.text-center       { text-align: center; }
.green-link        { color: var(--green); font-weight: 500; }

/* Hero */
.hero-section  { padding: 70px 0 60px; }
.hero-inner    { display: flex; align-items: center; gap: 48px; }
.hero-copy     { flex: 1; max-width: 520px; }
.hero-h1       { font-size: 42px; margin-bottom: 20px; }
.hero-p        { font-size: 18px; color: var(--text-muted); margin-bottom: 28px; }
.hero-image    { flex: 1; display: flex; justify-content: center; }
@media (max-width: 992px) {
  .hero-section  { padding: 50px 0 40px; }
  .hero-inner    { flex-direction: column; text-align: center; gap: 28px; }
  .hero-copy     { max-width: 100%; }
  .hero-h1       { font-size: 30px; }
}

/* Press logos */
.press-section { padding: 36px 0; }
.press-eyebrow { text-align: center; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 20px; }
.press-logos   { display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; }
.press-logo    { height: 26px; width: auto; opacity: .55; filter: grayscale(100%); transition: opacity .2s; }
.press-logo:hover { opacity: 1; }

/* Apps */
.apps-section  { padding: 70px 0; }
.apps-section h2.section-title-inv { margin-bottom: 16px; }
.apps-grid     { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; margin-bottom: 40px; }
.app-item      { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.app-item img  { width: 52px; height: 52px; object-fit: contain; filter: brightness(0) invert(1); }
.app-link      { color: #fff; font-size: 15px; font-weight: 500; text-align: center; }
.apps-device   { margin: 0 auto; display: block; }

/* Reasons grid */
.reasons-section { padding: 70px 0; }
.feature-grid    { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.feat-card       { text-align: center; padding: 10px; }
.feat-icon       { margin: 0 auto 16px; display: block; }
.feat-h          { font-size: 18px; margin-bottom: 8px; }
.feat-p          { font-size: 15px; color: var(--text-muted); margin: 0; }
@media (max-width: 768px) {
  .feature-grid  { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 576px) {
  .feature-grid  { grid-template-columns: 1fr; }
}

/* Countries */
.countries-section { padding: 70px 0; }
.country-cloud     { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 30px; }
.country-tag       { background: rgba(255,255,255,.12); color: rgba(255,255,255,.85); padding: 6px 14px; border-radius: 20px; font-size: 14px; }

/* VPN features */
.vpn-features-section { padding: 70px 0; }
.vpn-feat-grid   { display: flex; flex-direction: column; gap: 32px; max-width: 800px; margin: 0 auto; }
.vpn-feat-item   { display: flex; gap: 24px; align-items: flex-start; }
.vpn-feat-item img { flex-shrink: 0; }
.vpn-feat-item h3  { font-size: 22px; margin-bottom: 8px; }

/* Trust / audit section */
.trust-section { padding: 70px 0; }
.trust-inner   { display: flex; align-items: center; gap: 48px; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.trust-copy    { flex: 1; }
.trust-copy h2 { margin-bottom: 16px; }
.trust-copy p  { font-size: 17px; color: var(--text-muted); margin-bottom: 28px; }
@media (max-width: 992px) {
  .trust-inner { flex-direction: column; text-align: center; }
}

/* FAQ */
.faq-section { padding: 70px 0; }
.faq-wrap    { max-width: 720px; margin: 0 auto; padding: 0 20px; }
.faq-list    { margin: 0 auto; }
.faq-item    { border-bottom: 1px solid var(--border); }
.faq-q       {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; font-size: 17px; font-weight: 600; color: var(--text);
  background: none; border: none; cursor: pointer; text-align: left; gap: 12px;
  font-family: inherit;
}
.faq-icon    { font-size: 22px; flex-shrink: 0; color: var(--green); transition: transform .2s; }
.faq-a       { display: none; padding-bottom: 16px; }
.faq-a p     { font-size: 16px; color: var(--text-muted); margin: 0; }
.faq-item.open .faq-a  { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* Final CTA section */
.section-cta-final { padding: 70px 0; }
.section-cta-final .section-title-inv { margin-bottom: 30px; }

/* Pricing */
.pricing-hero  { padding: 60px 0 40px; }
.pricing-plans { padding: 0 0 70px; }
.page-h1       { font-size: 40px; margin-bottom: 14px; }
.page-sub      { font-size: 18px; color: var(--text-muted); max-width: 600px; margin: 0 auto 30px; }
.pricing-grid  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.pricing-card  {
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 36px 28px; text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.pricing-card--highlight { border-color: var(--green); box-shadow: 0 4px 24px rgba(131,184,77,.18); }
.plan-name     { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.plan-price    { font-size: 36px; font-weight: 700; color: var(--green); margin-bottom: 4px; }
.plan-note     { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.plan-features { text-align: left; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.plan-features li { font-size: 15px; color: var(--text-muted); display: flex; gap: 8px; }
.check         { color: var(--green); font-weight: 700; }
.payment-options { display: block; margin: 20px auto 0; }
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
}

/* WC quote section */
.wc-quote-section  { padding: 60px 0; }
.wc-blockquote     { font-size: 22px; font-style: italic; max-width: 680px; margin: 12px auto; color: var(--charcoal); }
.wc-cite           { font-size: 15px; color: var(--text-muted); display: block; margin-bottom: 14px; }

/* What-is-VPN prose */
.prose-page .section-white { padding: 60px 0; }
.prose-hero        { padding: 60px 0 40px !important; }
.prose-hero-img    { margin: 30px auto 0; border-radius: 12px; }
.prose-container   { max-width: 900px; margin: 0 auto; padding: 0 20px; }
.toc-box           { background: var(--surface-light); border-left: 3px solid var(--green); padding: 20px 24px; border-radius: 6px; margin-bottom: 36px; }
.toc-box strong    { display: block; margin-bottom: 10px; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
.toc-box ol        { margin: 0; padding-left: 18px; }
.toc-box li a      { font-size: 15px; color: var(--green-dark); }
.prose-body h2     { font-size: 26px; margin: 36px 0 14px; }
.prose-body p      { font-size: 17px; color: var(--text-muted); margin-bottom: 18px; }
.prose-body img    { border-radius: 10px; margin: 20px auto; }
.pull-quote        { font-size: 22px; font-style: italic; border-left: 4px solid var(--green); padding: 12px 20px; margin: 28px 0; color: var(--charcoal); }
.how-steps         { display: flex; gap: 28px; margin: 24px 0; flex-wrap: wrap; }
.how-step          { flex: 1; min-width: 180px; text-align: center; }
.how-step img      { margin: 0 auto 12px; }
.how-step h3       { font-size: 18px; margin-bottom: 8px; }
.how-step p        { font-size: 15px; color: var(--text-muted); }
.prose-cta         { padding: 40px 0 20px; }
.prose-cta h2      { margin-bottom: 24px; }
.prose-date        { color: var(--text-muted); font-size: 14px; margin-bottom: 36px; }

/* Features page */
.features-hero     { padding: 60px 0 40px; }
.features-group    { padding: 60px 0; }

/* Download page */
.dl-hero           { padding: 60px 0; }
.dl-hero img       { margin: 20px auto; }
.dl-req            { font-size: 14px; color: var(--text-muted); margin-top: 10px; }
.dl-steps          { padding: 60px 0; }
.dl-steps-grid     { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 30px; }
.dl-step           { text-align: center; }
.dl-step img       { margin: 0 auto 16px; border-radius: 8px; }
.dl-step h3        { font-size: 18px; margin-bottom: 8px; }
.dl-step p         { font-size: 15px; color: var(--text-muted); }
.dl-platforms      { padding: 40px 0; }
.dl-legal-note     { font-size: 14px; color: var(--text-muted); text-align: center; margin-top: 30px; }
@media (max-width: 768px) {
  .dl-steps-grid   { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
}

/* Help page */
.help-hero         { padding: 60px 0; }
.help-hero-inner   { display: flex; align-items: center; gap: 48px; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.help-bear-art     { position: relative; width: 340px; flex-shrink: 0; height: 340px; }
.help-bg           { position: absolute; top: 0; left: 0; width: 100%; }
.help-head         { position: absolute; top: 30px; left: 70px; }
.help-arm          { position: absolute; bottom: 60px; right: 0; }
.help-left-arm     { position: absolute; bottom: 60px; left: 0; }
.help-search-area  { flex: 1; }
.help-search-area h1 { margin-bottom: 12px; }
.help-search-wrap  { margin-top: 24px; }
.help-search       { width: 100%; max-width: 520px; padding: 14px 20px; font-size: 17px; border: 2px solid var(--border); border-radius: 30px; font-family: inherit; outline: none; }
.help-search:focus { border-color: var(--green); }
.help-topics       { padding: 60px 0; }
.help-topics-grid  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 24px; }
.help-topic-card   { background: #fff; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; display: block; transition: box-shadow .2s; }
.help-topic-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.1); text-decoration: none; }
.help-topic-card img { width: 100%; height: 140px; object-fit: cover; }
.help-topic-card h3  { font-size: 16px; padding: 14px 16px 4px; margin: 0; }
.help-topic-card p   { font-size: 14px; color: var(--text-muted); padding: 0 16px 14px; margin: 0; }
.help-featured       { padding: 50px 0; }
.help-articles       { list-style: disc; padding-left: 20px; }
.help-articles li    { margin-bottom: 12px; }
.help-articles a     { font-size: 16px; color: var(--green-dark); }
.help-social         { padding: 30px 0; display: flex; justify-content: center; gap: 16px; }
.help-social a       { padding: 8px; }
@media (max-width: 992px) {
  .help-hero-inner   { flex-direction: column; text-align: center; }
  .help-bear-art     { width: 260px; height: 260px; }
  .help-topics-grid  { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 576px) {
  .help-topics-grid  { grid-template-columns: 1fr; }
}

/* Blog pages */
.blog-page         { padding-top: 40px; }
.blog-article      { max-width: 860px; margin: 0 auto; padding: 0 20px; }
.blog-header       { margin-bottom: 28px; }
.blog-cat          { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--green); }
.blog-h1           { font-size: 36px; margin: 12px 0; }
.blog-meta         { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-muted); }
.blog-meta img     { border-radius: 50%; object-fit: cover; }
.meta-sep          { opacity: .4; }
.blog-hero-img     { width: 100%; border-radius: 12px; margin: 0 auto 32px; }
.blog-body h2      { font-size: 24px; margin: 32px 0 12px; }
.blog-body p       { font-size: 17px; color: var(--text-muted); }
.blog-cta-inline   { margin: 36px 0; }
.blog-related      { padding: 60px 0; }
.related-grid      { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 24px; }
.related-card      { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 20px; }
.related-card h4   { font-size: 16px; margin-bottom: 6px; }
.related-card p    { font-size: 14px; color: var(--text-muted); margin: 0; }
@media (max-width: 768px) {
  .related-grid    { grid-template-columns: 1fr; }
}

/* Contact page */
.contact-hero        { padding: 60px 0 30px; }
.contact-faq         { padding: 50px 0; }
.contact-cta-section { padding: 60px 0; }

/* Prose pages (privacy/terms) */
.prose-body h2     { font-size: 22px; margin: 32px 0 10px; }

/* Footer */
.site-footer       { background: var(--olive); color: rgba(255,255,255,.85); padding-top: 60px; }
.footer-inner      { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; max-width: var(--container); margin: 0 auto; padding: 0 20px 50px; }
.footer-logo       { display: block; margin-bottom: 18px; }
.footer-logo img   { height: 28px; filter: brightness(0) invert(1); }
.footer-tagline    { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.6; max-width: 260px; }
.footer-heading    { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,.5); margin-bottom: 16px; }
.footer-col nav    { display: flex; flex-direction: column; gap: 10px; }
.footer-col nav a  { font-size: 14px; color: rgba(255,255,255,.75); }
.footer-col nav a:hover { color: #fff; text-decoration: none; }
.footer-social     { display: flex; flex-direction: column; gap: 10px; }
.footer-bottom     { border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  max-width: var(--container); margin: 0 auto; padding: 20px 20px;
  font-size: 13px; color: rgba(255,255,255,.5);
  flex-wrap: wrap; gap: 8px;
}
@media (max-width: 768px) {
  .footer-inner  { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-inner  { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* Cookie banner */
.cookie-banner {
  position: fixed; bottom: 20px; left: 20px; right: 20px;
  max-width: 700px; margin: 0 auto;
  background: #fff; border: 1px solid var(--border);
  border-radius: 12px; padding: 18px 22px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  box-shadow: 0 4px 20px rgba(0,0,0,.12); z-index: 9999; font-size: 15px;
}
.cookie-banner p  { margin: 0; flex: 1; color: var(--text-muted); }
.cookie-banner .btn-cta { display: inline-block; }
.cookie-close     { background: none; border: none; cursor: pointer; font-size: 20px; color: var(--text-muted); padding: 4px; }
.cookie-banner.hidden { display: none; }

/* section-light and section-white pads via padding on child sections */
.section-white > .container,
.section-light > .container { padding-top: 0; padding-bottom: 0; }
.section-white, .section-light { overflow: hidden; }
