/* ============================================================
   Skaterbase — Polski Portal Informacyjny
   Unikalny styl — magazynowy, ciepły, nowoczesny
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --brand:        #1c2b4a;
  --brand-light:  #2a3d63;
  --accent:       #e07a1f;
  --accent-dark:  #c4670f;
  --gold:         #f4c842;
  --text:         #1a1a2e;
  --muted:        #6b7280;
  --border:       #e8ecf0;
  --bg:           #f4f6f9;
  --white:        #ffffff;
  --card-shadow:  0 1px 4px rgba(0,0,0,.07), 0 6px 16px rgba(0,0,0,.06);
  --radius:       8px;
  --font-serif:   'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Category colours */
  --cat-rozrywka:   #7c3aed;
  --cat-technologia:#0891b2;
  --cat-finanse:    #059669;
  --cat-zdrowie:    #dc2626;
  --cat-styl:       #d97706;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
}
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

/* ── TOP BAR ─────────────────────────────────────────────── */
.top-bar {
  background: var(--brand);
  color: rgba(255,255,255,.75);
  font-size: .75rem;
  letter-spacing: .2px;
  padding: 0;
}
.top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 7px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar a { color: rgba(255,255,255,.75); transition: color .15s; }
.top-bar a:hover { color: var(--gold); text-decoration: none; }
.top-bar-date { display: flex; align-items: center; gap: 6px; }
.top-bar-date::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ── HEADER ─────────────────────────────────────────────── */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,.1);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}
.logo {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--brand);
  white-space: nowrap;
  letter-spacing: -1px;
}
.logo span { color: var(--accent); }

.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a {
  padding: 7px 13px;
  border-radius: 6px;
  font-size: .83rem;
  font-weight: 600;
  color: var(--brand);
  transition: background .15s, color .15s;
  letter-spacing: .1px;
}
.main-nav a:hover { background: var(--bg); color: var(--accent); text-decoration: none; }
.main-nav a.active { color: var(--accent); }

.header-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 8px 18px !important;
  border-radius: 20px !important;
  font-weight: 700 !important;
  transition: background .15s !important;
}
.header-cta:hover { background: var(--accent-dark) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--brand);
  border-radius: 2px;
  transition: .3s;
}

/* ── READING PROGRESS ────────────────────────────────────── */
.reading-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  width: 0;
  z-index: 9999;
  transition: width .1s;
}

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

/* ── TICKER / BREAKING NEWS ──────────────────────────────── */
.ticker-bar {
  background: var(--accent);
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  padding: 8px 0;
  overflow: hidden;
}
.ticker-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.ticker-label {
  background: var(--white);
  color: var(--accent);
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .8px;
  padding: 3px 10px;
  border-radius: 3px;
  white-space: nowrap;
}
.ticker-track {
  display: flex;
  gap: 40px;
  animation: tickerScroll 35s linear infinite;
  white-space: nowrap;
}
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-track span { opacity: .9; }
.ticker-track span::before { content: '· '; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero-section {
  background: var(--bg);
  padding: 32px 0 28px;
  border-bottom: 1px solid var(--border);
}
.hero-grid {
  display: grid;
  grid-template-columns: 5fr 3fr;
  gap: 24px;
  align-items: start;
}
.hero-main {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  background: var(--white);
}
.hero-main img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}
.hero-main-content { padding: 22px 26px 26px; }
.hero-main h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  line-height: 1.25;
  margin-bottom: 12px;
  color: var(--text);
}
.hero-main h2 a:hover { color: var(--accent); text-decoration: none; }
.hero-main p { color: var(--muted); font-size: .92rem; margin-bottom: 14px; }

.hero-side { display: flex; flex-direction: column; gap: 16px; }
.side-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  display: grid;
  grid-template-columns: 110px 1fr;
  transition: transform .2s;
}
.side-card:hover { transform: translateY(-2px); }
.side-card img { width: 110px; height: 95px; object-fit: cover; }
.side-card-content { padding: 12px 14px; }
.side-card h3 {
  font-family: var(--font-serif);
  font-size: .95rem;
  line-height: 1.3;
  color: var(--text);
}
.side-card h3 a:hover { color: var(--accent); text-decoration: none; }

/* ── CATEGORY TAG ────────────────────────────────────────── */
.category-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .7px;
  padding: 3px 9px;
  border-radius: 4px;
  margin-bottom: 8px;
  color: var(--white);
  background: var(--accent);
}
.category-tag.rozrywka { background: var(--cat-rozrywka); }
.category-tag.technologia { background: var(--cat-technologia); }
.category-tag.finanse { background: var(--cat-finanse); }
.category-tag.zdrowie { background: var(--cat-zdrowie); }
.category-tag.styl-zycia { background: var(--cat-styl); }

/* ── SECTION TITLE ───────────────────────────────────────── */
.section-title {
  font-size: .85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--brand);
  border-bottom: 3px solid var(--accent);
  padding-bottom: 10px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-title a {
  font-size: .75rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: .3px;
}
.section-title a:hover { text-decoration: underline; }

/* ── ARTICLES LAYOUT ─────────────────────────────────────── */
.articles-section { padding: 40px 0; }
.articles-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 36px;
}
.articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.article-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform .2s, box-shadow .2s;
  border: 1px solid var(--border);
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.13);
}
.article-card img { width: 100%; height: 185px; object-fit: cover; }
.article-card-body { padding: 16px 18px; }
.article-card h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 8px;
}
.article-card h3 a:hover { color: var(--accent); text-decoration: none; }
.article-card p { color: var(--muted); font-size: .87rem; line-height: 1.55; }
.article-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .75rem;
  color: var(--muted);
  margin-top: 10px;
}

/* ── SIDEBAR ─────────────────────────────────────────────── */
.sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  overflow: hidden;
}
.widget-title {
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  background: var(--brand);
  padding: 12px 18px;
}
.widget-body { padding: 16px 18px; }
.subscribe-widget { border-top: 3px solid var(--accent); }
.subscribe-widget .widget-title { background: var(--accent); }
.subscribe-widget p { font-size: .9rem; color: var(--muted); margin-bottom: 14px; line-height: 1.55; }

.inline-sub-form { display: flex; flex-direction: column; gap: 8px; }
.sub-input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: .87rem;
  outline: none;
  transition: border-color .15s;
}
.sub-input:focus { border-color: var(--accent); }
.sub-btn {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: .87rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s;
}
.sub-btn:hover { background: var(--accent-dark); }

.popular-list { list-style: none; }
.popular-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: .87rem;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.popular-list li:last-child { border-bottom: none; }
.popular-num {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  min-width: 20px;
}
.popular-list a { color: var(--text); font-weight: 500; line-height: 1.4; }
.popular-list a:hover { color: var(--accent); text-decoration: none; }

/* ── SECTION HERO ─────────────────────────────────────────── */
.section-hero {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  color: var(--white);
  padding: 40px 0;
}
.section-hero h1 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  margin-bottom: 10px;
}
.section-hero p { color: rgba(255,255,255,.8); font-size: 1rem; max-width: 600px; }

/* ── SECTION GRID ─────────────────────────────────────────── */
.section-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 40px 0;
}

/* ── ARTICLE PAGE ─────────────────────────────────────────── */
.article-page { padding: 36px 0; }
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}
.breadcrumb {
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { text-decoration: underline; }

.article-header { margin-bottom: 28px; }
.article-header h1 {
  font-family: var(--font-serif);
  font-size: 2rem;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 14px;
}
.standfirst {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #374151;
  border-left: 4px solid var(--accent);
  padding-left: 16px;
  margin-bottom: 18px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .85rem;
  color: var(--muted);
}
.author-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: .8rem;
}

.article-featured-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 10px;
}
.image-caption {
  font-size: .8rem;
  color: var(--muted);
  text-align: center;
  margin-bottom: 28px;
  font-style: italic;
}

.article-content { line-height: 1.75; }
.article-content p { margin-bottom: 18px; }
.article-content h2 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--text);
  margin: 32px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}
.article-content h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--text);
  margin: 24px 0 10px;
}
/* ── INLINE ARTICLE FIGURE ────────────────────────────────── */
.article-figure {
  margin: 28px 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}
.article-figure img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
.article-figure figcaption {
  background: var(--bg);
  color: var(--muted);
  font-size: .8rem;
  font-style: italic;
  padding: 10px 14px;
  border-top: 1px solid var(--border);
  text-align: center;
}
@media (max-width: 700px) {
  .article-figure img { height: 200px; }
}

.article-content ul, .article-content ol {
  padding-left: 22px;
  margin-bottom: 18px;
}
.article-content li { margin-bottom: 7px; }

/* ── COMPARISON TABLE ────────────────────────────────────── */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 26px 0;
  font-size: .9rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}
.comparison-table th {
  background: var(--brand);
  color: var(--white);
  padding: 13px 16px;
  text-align: left;
  font-weight: 700;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.comparison-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: top;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: var(--bg); }
.comparison-table tr:hover td { background: #fef3e2; }

/* ── INFO BOX ────────────────────────────────────────────── */
.info-box {
  background: linear-gradient(135deg, #fef9ec, #fff8e1);
  border: 1px solid #f4c842;
  border-left: 5px solid var(--accent);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin: 26px 0;
}
.info-box h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--brand);
}
.info-box ul { padding-left: 18px; }
.info-box li { margin-bottom: 6px; font-size: .9rem; }

.tip-box {
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-left: 5px solid #22c55e;
  border-radius: var(--radius);
  padding: 20px 22px;
  margin: 26px 0;
}
.tip-box h3 { color: #15803d; font-family: var(--font-serif); font-size: 1rem; margin-bottom: 10px; }
.tip-box li { font-size: .9rem; margin-bottom: 6px; }

/* ── PAYWALL ─────────────────────────────────────────────── */
.paywall-overlay { margin: 28px 0 24px; }
.paywall-blur {
  max-height: 120px;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
  pointer-events: none;
}
.paywall-box {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--card-shadow);
  margin-top: -10px;
}
.lock-icon { font-size: 2.2rem; margin-bottom: 12px; }
.paywall-box h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--text);
}
.paywall-box > p { color: var(--muted); font-size: .9rem; margin-bottom: 24px; }

.plans-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.plan-card {
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 16px 20px;
  min-width: 120px;
  cursor: pointer;
  transition: border-color .2s, transform .2s;
  text-align: center;
}
.plan-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.plan-card.popular {
  border-color: var(--accent);
  background: linear-gradient(135deg, #fef9ec, #fff);
  position: relative;
}
.plan-card.popular::before {
  content: 'Popularny';
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: .65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .7px;
  padding: 3px 10px;
  border-radius: 20px;
}
.plan-name { font-size: .8rem; font-weight: 700; color: var(--muted); text-transform: uppercase; margin-bottom: 6px; }
.plan-price { font-family: var(--font-serif); font-size: 1.7rem; font-weight: 700; color: var(--text); }
.plan-period { font-size: .75rem; color: var(--muted); }

.btn-subscribe {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s;
}
.btn-subscribe:hover { background: var(--accent-dark); }

/* ── SHARE BAR ───────────────────────────────────────────── */
.share-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  margin-top: 28px;
  flex-wrap: wrap;
}
.share-label { font-size: .85rem; font-weight: 600; color: var(--muted); }
.share-btn {
  border: none;
  padding: 7px 16px;
  border-radius: 6px;
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity .15s;
}
.share-btn:hover { opacity: .85; }
.share-btn.fb { background: #1877f2; color: #fff; }
.share-btn.tw { background: #000; color: #fff; }
.share-btn.wa { background: #25d366; color: #fff; }
.share-btn.copy { background: var(--bg); color: var(--text); border: 1px solid var(--border); }

/* ── COOKIE BANNER ───────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: -120px;
  left: 0; right: 0;
  background: var(--brand);
  color: var(--white);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 5000;
  transition: bottom .4s ease;
  font-size: .87rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
}
.cookie-banner.visible { bottom: 0; }
.cookie-banner a { color: var(--gold); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-accept {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
}
.btn-accept:hover { background: var(--accent-dark); }
.btn-decline {
  background: transparent;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.3);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: .85rem;
  cursor: pointer;
}
.btn-decline:hover { border-color: rgba(255,255,255,.6); color: var(--white); }

/* ── SUBSCRIBE MODAL ─────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,20,50,.65);
  backdrop-filter: blur(4px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--white);
  border-radius: 14px;
  padding: 36px 32px;
  max-width: 520px;
  width: 94%;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
  transform: translateY(20px);
  transition: transform .25s;
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 14px; right: 16px;
  background: none;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--muted);
  padding: 4px 8px;
}
.modal h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: var(--text);
}
.modal-sub { color: var(--muted); font-size: .9rem; margin-bottom: 22px; }
.modal-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: .95rem;
  margin-bottom: 14px;
  outline: none;
  transition: border-color .15s;
}
.modal-input:focus { border-color: var(--accent); }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--brand);
  color: rgba(255,255,255,.8);
  padding: 50px 0 0;
  margin-top: 50px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand .logo { color: var(--white); margin-bottom: 14px; font-size: 1.4rem; }
.footer-brand .logo span { color: var(--gold); }
.footer-brand p { font-size: .87rem; line-height: 1.65; color: rgba(255,255,255,.65); }
.footer-col h4 {
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,.7); font-size: .87rem; transition: color .15s; }
.footer-col a:hover { color: var(--white); text-decoration: none; }
.footer-bottom {
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,.5); }
.footer-bottom-links a:hover { color: var(--white); text-decoration: none; }

/* ── STATIC PAGES ─────────────────────────────────────────── */
.static-page { padding: 50px 0; max-width: 820px; }
.static-page h1 { font-family: var(--font-serif); font-size: 2.2rem; margin-bottom: 26px; }
.static-page h2 { font-family: var(--font-serif); font-size: 1.4rem; margin: 30px 0 12px; }
.static-page p { margin-bottom: 16px; color: #374151; line-height: 1.75; }
.static-page ul { padding-left: 22px; margin-bottom: 16px; }
.static-page li { margin-bottom: 8px; color: #374151; }

/* ── CONTACT FORM ─────────────────────────────────────────── */
.contact-form { display: flex; flex-direction: column; gap: 16px; max-width: 580px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .88rem; font-weight: 600; color: var(--text); }
.form-group input, .form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  font-size: .92rem;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color .15s;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { min-height: 120px; resize: vertical; }

/* ── SUBSCRIBE PAGE ───────────────────────────────────────── */
.subscribe-page { padding: 60px 0; max-width: 800px; margin: 0 auto; text-align: center; }
.subscribe-page h1 { font-family: var(--font-serif); font-size: 2.4rem; margin-bottom: 12px; }
.subscribe-page .lead { font-size: 1.1rem; color: var(--muted); margin-bottom: 40px; max-width: 520px; margin-left: auto; margin-right: auto; }
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.plan-full {
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 28px 22px;
  text-align: center;
  transition: border-color .2s, box-shadow .2s;
}
.plan-full:hover { border-color: var(--accent); box-shadow: var(--card-shadow); }
.plan-full.popular {
  border-color: var(--accent);
  background: linear-gradient(135deg, #fef9ec, #fff);
  position: relative;
}
.plan-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .8px;
  padding: 4px 12px;
  border-radius: 20px;
}
.plan-full .plan-name { font-size: .85rem; font-weight: 700; color: var(--muted); text-transform: uppercase; margin-bottom: 8px; }
.plan-full .plan-price { font-family: var(--font-serif); font-size: 2.4rem; font-weight: 700; color: var(--text); }
.plan-full .plan-period { font-size: .8rem; color: var(--muted); margin-bottom: 20px; }
.plan-features { list-style: none; text-align: left; margin-bottom: 22px; }
.plan-features li {
  padding: 7px 0;
  font-size: .87rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.plan-features li::before { content: '✓'; color: var(--accent); font-weight: 700; }
.plan-features li:last-child { border-bottom: none; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-side { display: none; }
  .articles-layout { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .plans-grid { grid-template-columns: 1fr; max-width: 340px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 700px) {
  .articles-grid { grid-template-columns: 1fr; }
  .section-grid { grid-template-columns: 1fr; }
  .header-inner { height: 60px; }
  .logo { font-size: 1.4rem; }
  .main-nav { display: none; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 63px; left: 0; right: 0;
    background: var(--white);
    padding: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
    z-index: 999;
    border-top: 1px solid var(--border);
  }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-main img { height: 240px; }
  .article-header h1 { font-size: 1.55rem; }
  .article-featured-image { height: 240px; }
  .comparison-table { font-size: .8rem; }
  .comparison-table th, .comparison-table td { padding: 9px 12px; }
}
