@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ============================================================
   PIXELFORGE STUDIO v2 — Bright / Light / High-End
   Playfair Display + DM Sans · Pink→Yellow gradient accents
   ============================================================ */

:root {
  --g1: #ff66c4;
  --g2: #ffde59;
  --grad: linear-gradient(90deg, #ff66c4, #ffde59);
  --grad-45: linear-gradient(45deg, #ff66c4, #ffde59);
  --grad-r: linear-gradient(90deg, #ffde59, #ff66c4);

  --bg:      #ffffff;
  --bg2:     #fafafa;
  --bg3:     #f4f4f4;
  --bg4:     #efefef;
  --dark:    #0e0e0e;
  --text:    #111111;
  --text2:   #444444;
  --text3:   #888888;
  --border:  rgba(0,0,0,0.08);
  --border2: rgba(0,0,0,0.13);
  --shadow:  0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.05);
  --shadow-lg: 0 4px 24px rgba(0,0,0,0.09), 0 1px 4px rgba(0,0,0,0.05);
  --radius:  10px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; line-height: 1.6; }

/* ── GRAD UTILITIES ─────────────────────────────── */
.gt { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.gt-r { background: var(--grad-r); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.grad-bar { height: 3px; background: var(--grad); border: none; }
.grad-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--grad); flex-shrink: 0; }

/* ── TYPOGRAPHY ─────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.06; letter-spacing: -0.01em; color: var(--text); }
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 900; }
h3 { font-size: 1.5rem; font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; font-family: 'DM Sans', sans-serif; }
p { line-height: 1.8; color: var(--text2); }
strong { color: var(--text); font-weight: 600; }
em { font-style: italic; }

/* ── LOGO ───────────────────────────────────────── */
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 900;
  text-decoration: none;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 30px; height: 30px;
  background: var(--grad);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem; font-weight: 700; color: #fff;
  flex-shrink: 0;
  letter-spacing: 0;
}
.logo-dot { color: var(--g1); }

/* ── NAV ────────────────────────────────────────── */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 3.5rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a { color: var(--text3); text-decoration: none; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.02em; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }

/* ── BUTTONS ────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 0.72rem 1.65rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer; border: none;
  border-radius: 50px;
  transition: transform 0.15s, box-shadow 0.2s, opacity 0.15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-grad { background: var(--grad); color: #fff; box-shadow: 0 4px 20px rgba(255,102,196,0.25); }
.btn-grad:hover { box-shadow: 0 6px 28px rgba(255,102,196,0.38); }
.btn-dark { background: var(--dark); color: #fff; box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
.btn-dark:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.22); }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--border2); }
.btn-outline:hover { border-color: var(--g1); color: var(--g1); }
.btn-white { background: #fff; color: var(--text); box-shadow: var(--shadow); }

/* ── TICKER ─────────────────────────────────────── */
.ticker { background: var(--grad); padding: 0.6rem 0; overflow: hidden; white-space: nowrap; }
.ticker-inner { display: inline-block; animation: tickerAnim 30s linear infinite; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #fff; font-family: 'DM Sans', sans-serif; }
@keyframes tickerAnim { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTION HELPERS ────────────────────────────── */
.section { padding: 7rem 3.5rem; }
.section-sm { padding: 5rem 3.5rem; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--g1);
  margin-bottom: 1.25rem;
}
.section-label::before { content: ''; display: inline-block; width: 18px; height: 2px; background: var(--grad); border-radius: 2px; }
.divider { border: none; height: 1px; background: var(--border); margin: 0; }

/* ── CARDS ──────────────────────────────────────── */
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(255,102,196,0.3); }

/* ── TAGS ───────────────────────────────────────── */
.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.05em; padding: 4px 12px; border: 1.5px solid rgba(255,102,196,0.25); color: var(--g1); border-radius: 20px; background: rgba(255,102,196,0.05); font-family: 'DM Sans', sans-serif; }

/* ── STAT ───────────────────────────────────────── */
.stat-num { font-family: 'Playfair Display', serif; font-size: 3.25rem; font-weight: 900; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; letter-spacing: -0.02em; }
.stat-label { font-size: 0.82rem; color: var(--text3); margin-top: 6px; line-height: 1.5; font-weight: 500; }

/* ── TESTIMONIALS ───────────────────────────────── */
.testi { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem 2.25rem; box-shadow: var(--shadow); transition: transform 0.25s, box-shadow 0.25s; }
.testi:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.testi-quote { font-family: 'Playfair Display', serif; font-size: 1rem; font-style: italic; color: var(--text); line-height: 1.75; margin-bottom: 1.5rem; }
.testi-quote::before { content: '\201C'; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-size: 2.8rem; font-weight: 900; line-height: 0; vertical-align: -0.55rem; margin-right: 3px; }
.testi-author { display: flex; align-items: center; gap: 0.85rem; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--grad); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; color: #fff; flex-shrink: 0; }
.testi-name { font-size: 0.875rem; font-weight: 600; color: var(--text); }
.testi-role { font-size: 0.75rem; color: var(--text3); }
.stars { font-size: 0.78rem; letter-spacing: 2px; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 1rem; }

/* ── BLOG CARDS ─────────────────────────────────── */
.blog-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; text-decoration: none; display: block; color: var(--text); box-shadow: var(--shadow); transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(255,102,196,0.3); }
.blog-thumb { height: 190px; background: var(--bg3); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; border-bottom: 1px solid var(--border); }
.blog-thumb-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,102,196,0.07) 1px,transparent 1px),linear-gradient(90deg,rgba(255,102,196,0.07) 1px,transparent 1px); background-size: 28px 28px; }
.blog-thumb-num { font-family: 'Playfair Display', serif; font-size: 4rem; font-weight: 900; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; position: relative; z-index: 1; opacity: 0.5; }
.blog-content { padding: 1.5rem 1.75rem 2rem; }
.blog-cat { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 0.6rem; }
.blog-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 0.6rem; line-height: 1.35; }
.blog-excerpt { font-size: 0.83rem; color: var(--text3); line-height: 1.7; margin-bottom: 1rem; }
.blog-meta { font-size: 0.72rem; color: var(--text3); display: flex; gap: 1rem; }

/* ── GRID ───────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }

/* ── CTA BAND ───────────────────────────────────── */
.cta-band { background: var(--grad); padding: 6rem 3.5rem; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 3rem; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; right: -80px; top: -80px; width: 350px; height: 350px; border-radius: 50%; background: rgba(255,255,255,0.12); pointer-events: none; }
.cta-band::after { content: ''; position: absolute; left: 40%; bottom: -60px; width: 200px; height: 200px; border-radius: 50%; background: rgba(255,255,255,0.08); pointer-events: none; }
.cta-band h2 { color: #fff; position: relative; }
.cta-band p { color: rgba(255,255,255,0.85); margin-top: 0.75rem; position: relative; }
.cta-actions { display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-end; position: relative; }
.cta-email { font-size: 0.78rem; color: rgba(255,255,255,0.7); }

/* ── FOOTER ─────────────────────────────────────── */
footer { background: var(--dark); color: rgba(255,255,255,0.8); padding: 5rem 3.5rem 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr; gap: 4rem; margin-bottom: 3.5rem; padding-bottom: 3.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .logo { color: #fff; }
.footer-brand .logo-dot { color: var(--g1); }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.5); margin-top: 1rem; max-width: 280px; line-height: 1.75; }
.footer-col h4 { font-family: 'DM Sans', sans-serif; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul a { font-size: 0.875rem; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--g1); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.25); }
.footer-tagline { font-size: 0.72rem; color: rgba(255,255,255,0.25); font-style: italic; }

/* ── PROCESS STEPS ──────────────────────────────── */
.ps { display: flex; gap: 2.5rem; padding: 2.75rem 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.ps:last-child { border-bottom: none; }
.ps-num { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 900; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; min-width: 70px; opacity: 0.25; }
.ps-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--text); margin-bottom: 0.65rem; }
.ps-desc { font-size: 0.9rem; color: var(--text2); line-height: 1.8; }
.ps-delivs { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: 6px; }

/* ── PRICING CARDS ──────────────────────────────── */
.pricing-card { background: var(--bg); border: 1.5px solid var(--border); border-radius: 14px; padding: 2.5rem 2.25rem 3rem; box-shadow: var(--shadow); display: flex; flex-direction: column; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; position: relative; overflow: hidden; }
.pricing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pricing-card.featured { border-color: var(--g1); box-shadow: 0 8px 40px rgba(255,102,196,0.18); }
.pricing-card.featured:hover { box-shadow: 0 12px 50px rgba(255,102,196,0.28); }
.pricing-badge { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: var(--grad); color: #fff; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 18px; border-radius: 0 0 10px 10px; font-family: 'DM Sans', sans-serif; }
.pricing-tier { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 0.75rem; }
.pricing-name { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 900; color: var(--text); margin-bottom: 0.5rem; }
.pricing-price { font-family: 'Playfair Display', serif; font-size: 3.25rem; font-weight: 900; color: var(--text); line-height: 1; letter-spacing: -0.02em; }
.pricing-price span { font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 400; color: var(--text3); }
.pricing-timeline { display: inline-flex; align-items: center; gap: 6px; font-size: 0.8rem; color: var(--text3); margin: 1rem 0 1.5rem; background: var(--bg3); padding: 5px 14px; border-radius: 20px; font-weight: 500; }
.pricing-desc { font-size: 0.875rem; color: var(--text2); line-height: 1.7; margin-bottom: 1.75rem; }
.pricing-divider { border: none; height: 1px; background: var(--border); margin: 1.5rem 0; }
.pricing-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; margin-bottom: 2rem; }
.pricing-list li { font-size: 0.875rem; color: var(--text2); display: flex; gap: 0.75rem; align-items: flex-start; }
.pricing-list li::before { content: '✓'; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 700; font-size: 0.9rem; flex-shrink: 0; margin-top: 1px; }

/* ── ARTICLE ────────────────────────────────────── */
.article-wrap { display: grid; grid-template-columns: 1fr 300px; gap: 4rem; padding: 5rem 3.5rem; align-items: start; }
.sidebar { position: sticky; top: 90px; }
.sidebar-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; margin-bottom: 1.25rem; box-shadow: var(--shadow); }
.sidebar-card h4 { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text3); margin-bottom: 1rem; font-family: 'DM Sans', sans-serif; }
.sidebar-toc { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.sidebar-toc a { font-size: 0.83rem; color: var(--text2); text-decoration: none; transition: color 0.2s; }
.sidebar-toc a:hover { color: var(--g1); }
.sidebar-cta { background: var(--grad); border-radius: var(--radius); padding: 1.75rem; border: none; }
.sidebar-cta p { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 1rem; line-height: 1.5; font-style: italic; }
.sidebar-cta .btn { background: #fff; color: var(--text); width: 100%; justify-content: center; }
.article-header { margin-bottom: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--border); }
.article-cat { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 0.75rem; }
.article-title { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 900; color: var(--text); line-height: 1.1; margin-bottom: 1.25rem; }
.article-meta { font-size: 0.78rem; color: var(--text3); display: flex; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.article-intro { font-size: 1.05rem; color: var(--text2); line-height: 1.82; border-left: 3px solid transparent; border-image: var(--grad) 1; padding-left: 1.25rem; }
.article-body h2 { font-size: 1.65rem; margin: 3rem 0 1rem; }
.article-body h3 { font-size: 1.2rem; margin: 2rem 0 0.75rem; }
.article-body p { margin-bottom: 1.25rem; }
.article-body ul, .article-body ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.article-body li { font-size: 1rem; color: var(--text2); line-height: 1.75; margin-bottom: 0.5rem; }
.article-body blockquote { border-left: 3px solid var(--g1); padding: 1.25rem 1.5rem; background: rgba(255,102,196,0.05); margin: 2rem 0; border-radius: 0 8px 8px 0; }
.article-body blockquote p { color: var(--text); margin: 0; font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.05rem; }
.article-body .callout { background: var(--bg3); border: 1.5px solid rgba(255,102,196,0.2); border-radius: 10px; padding: 1.5rem 2rem; margin: 2rem 0; }
.article-body .callout p { color: var(--text); margin: 0; font-weight: 500; }
.article-related { padding: 5rem 3.5rem; border-top: 1px solid var(--border); background: var(--bg2); }

/* ── PAGE HERO ───────────────────────────────────── */
.page-hero { padding: 6rem 3.5rem 5rem; border-bottom: 1px solid var(--border); background: var(--bg); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; right: -100px; top: -100px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(255,102,196,0.07), transparent 70%); pointer-events: none; }
.page-hero-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 1.25rem; display: flex; align-items: center; gap: 8px; }
.page-hero-label::before { content: ''; display: inline-block; width: 18px; height: 2px; background: var(--grad); border-radius: 2px; }
.page-hero h1 { margin-bottom: 1.25rem; }
.page-hero p { font-size: 1.05rem; color: var(--text2); max-width: 560px; line-height: 1.8; }

/* ── FORM ───────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group label { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text3); margin-bottom: 0.5rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.8rem 1.1rem; border: 1.5px solid var(--border2); border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: var(--text); background: var(--bg); outline: none; transition: border-color 0.2s, box-shadow 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--g1); box-shadow: 0 0 0 3px rgba(255,102,196,0.1); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { width: 100%; padding: 1rem; background: var(--grad); color: #fff; border: none; border-radius: 50px; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 700; letter-spacing: 0.04em; cursor: pointer; transition: opacity 0.2s, transform 0.15s; box-shadow: 0 4px 20px rgba(255,102,196,0.25); }
.form-submit:hover { opacity: 0.92; transform: translateY(-2px); }

/* ── SCROLL REVEAL ──────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay: 0.1s; } .rd2 { transition-delay: 0.2s; } .rd3 { transition-delay: 0.3s; } .rd4 { transition-delay: 0.4s; }

/* ── HIGHLIGHT BOX ──────────────────────────────── */
.highlight-box { background: var(--bg3); border-radius: 14px; padding: 2.5rem; border: 1px solid var(--border); }
.highlight-box-grad { background: linear-gradient(135deg, rgba(255,102,196,0.06), rgba(255,222,89,0.06)); border: 1.5px solid rgba(255,102,196,0.15); border-radius: 14px; padding: 2.5rem; }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 960px) {
  nav { padding: 1.25rem 1.5rem; }
  .nav-links { display: none; }
  .section, .section-sm, .page-hero { padding: 4rem 1.5rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; padding: 4rem 1.5rem; }
  .cta-actions { align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  footer { padding: 3.5rem 1.5rem 2rem; }
  .article-wrap { grid-template-columns: 1fr; padding: 3.5rem 1.5rem; }
  .sidebar { position: static; }
  .article-related { padding: 3.5rem 1.5rem; }
  .pricing-grid { grid-template-columns: 1fr !important; }
}
