/*
Theme Name: Digital By Anuj
Theme URI: https://digitalbyanuj.com
Author: Anuj
Author URI: https://digitalbyanuj.com
Description: Professional digital marketing agency theme for darkblue-badger-833289.hostingersite.com — built for performance, lead generation, and brand authority.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: digitalbyanuj
Tags: marketing, agency, landing-page, business, custom-colors
*/

/* ===================================================
   GLOBAL RESET & BASE
=================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink:     #0a0a0f;
  --paper:   #f5f3ee;
  --accent:  #e8450a;
  --accent2: #1a3cff;
  --muted:   #7a7870;
  --border:  rgba(10,10,15,0.12);
  --card:    #ffffff;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===================================================
   TYPOGRAPHY
=================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

h1 { font-size: clamp(38px, 6vw, 72px); }
h2 { font-size: clamp(28px, 4vw, 48px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); }
h4 { font-size: 20px; }

p { font-weight: 300; line-height: 1.7; }

/* ===================================================
   UTILITY CLASSES
=================================================== */
.container      { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section-pad    { padding: 96px 0; }
.text-accent    { color: var(--accent); }
.text-muted     { color: var(--muted); }
.text-center    { text-align: center; }
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--accent);
}

/* ===================================================
   BUTTONS
=================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  border-radius: 2px;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232,69,10,0.35);
}
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover { background: var(--accent); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--ink); }
.btn-white {
  background: #fff;
  color: var(--accent2);
}
.btn-white:hover { opacity: 0.9; }

/* ===================================================
   SITE HEADER / NAV
=================================================== */
#site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--paper);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.site-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.site-logo span { color: var(--accent); }
#primary-nav ul {
  display: flex;
  gap: 36px;
}
#primary-nav a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
  font-weight: 400;
}
#primary-nav a:hover,
#primary-nav a.active { color: var(--ink); }
.nav-cta {
  background: var(--ink);
  color: var(--paper);
  border: none;
  padding: 10px 22px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--accent); }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: all 0.3s;
}

/* ===================================================
   SITE FOOTER
=================================================== */
#site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.5);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 72px 0 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .site-logo { color: #fff; }
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  margin-top: 16px;
  line-height: 1.7;
  max-width: 300px;
}
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a {
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-bottom a:hover { color: #fff; }
.social-links { display: flex; gap: 16px; }

/* ===================================================
   HERO — HOME
=================================================== */
.hero-home {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 92vh;
  border-bottom: 1px solid var(--border);
}
.hero-left {
  padding: 80px 64px 80px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--border);
  max-width: 680px;
}
.hero-left .hero-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 440px;
  margin: 20px 0 40px;
}
.cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.trust-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
}
.avatar-stack { display: flex; }
.avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #fff;
  font-weight: 700;
  margin-left: -10px;
}
.avatar:first-child { margin-left: 0; }
.avatar.av1 { background: var(--ink); }
.avatar.av2 { background: var(--accent2); }
.avatar.av3 { background: var(--accent); }
.avatar.av4 { background: #2d8a4e; }
.trust-text { font-size: 13px; color: var(--muted); margin-left: 6px; }
.trust-text strong { color: var(--ink); }

.hero-right {
  background: var(--ink);
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 28px 32px;
  border-radius: 4px;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.stat-num em { font-style: normal; color: var(--accent); }
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
}

/* ===================================================
   AUDIT STRIP
=================================================== */
.audit-strip {
  background: var(--accent2);
  padding: 22px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.audit-strip p { color: #fff; font-size: 16px; }
.audit-strip p strong { font-family: var(--font-head); font-weight: 700; }

/* ===================================================
   SERVICES GRID
=================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 56px;
}
.service-card {
  background: var(--card);
  padding: 40px 36px;
  transition: background 0.25s;
}
.service-card:hover { background: var(--ink); }
.service-card:hover .s-num,
.service-card:hover .s-title,
.service-card:hover .s-desc { color: #fff; }
.service-card:hover .s-desc { color: rgba(255,255,255,0.5); }
.s-num {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 24px;
  transition: color 0.25s;
}
.s-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  transition: color 0.25s;
}
.s-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  transition: color 0.25s;
}

/* ===================================================
   RESULTS / CASE STUDIES
=================================================== */
.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.result-card {
  border: 1px solid var(--border);
  padding: 44px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
}
.result-card:hover { transform: translateY(-4px); }
.result-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent);
}
.company-tag {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 20px;
}
.result-big {
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}
.result-desc {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 14px;
}
.result-detail {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ===================================================
   QUIZ SECTION
=================================================== */
.quiz-section {
  background: var(--ink);
  padding: 96px 0;
}
.quiz-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.quiz-inner h2 { color: #fff; margin-bottom: 16px; }
.quiz-inner .quiz-sub { color: rgba(255,255,255,0.4); font-size: 17px; margin-bottom: 48px; }
.quiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
  text-align: left;
}
.quiz-opt {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 18px 22px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
}
.quiz-opt:hover,
.quiz-opt.selected {
  background: rgba(232,69,10,0.15);
  border-color: var(--accent);
  color: #fff;
}
.quiz-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  flex-shrink: 0;
  transition: all 0.2s;
}
.quiz-opt.selected .quiz-dot {
  background: var(--accent);
  border-color: var(--accent);
}

/* ===================================================
   RESOURCE / EBOOK
=================================================== */
.resource-section { background: #f0ede6; }
.resource-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.resource-book {
  aspect-ratio: 3/4;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  max-width: 280px;
  box-shadow: 16px 20px 0 rgba(10,10,15,0.16);
}
.book-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}
.book-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}
.resource-form { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.resource-form input {
  flex: 1;
  min-width: 200px;
  padding: 14px 18px;
  border: 1px solid var(--border);
  background: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  border-radius: 2px;
  color: var(--ink);
  outline: none;
}
.resource-form input:focus { border-color: var(--ink); }

/* ===================================================
   TESTIMONIALS
=================================================== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.testi-card {
  border: 1px solid var(--border);
  padding: 36px;
  border-radius: 4px;
  transition: border-color 0.2s;
}
.testi-card:hover { border-color: var(--accent); }
.stars { color: var(--accent); font-size: 14px; margin-bottom: 18px; letter-spacing: 3px; }
.testi-quote {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 28px;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #fff;
  font-weight: 700;
  flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 500; }
.testi-role { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ===================================================
   WEBINAR / EVENT
=================================================== */
.webinar-section { background: var(--ink); }
.webinar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,69,10,0.2);
  color: var(--accent);
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}
.webinar-form { display: flex; flex-direction: column; gap: 12px; }
.webinar-form input {
  padding: 15px 18px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  border-radius: 2px;
  outline: none;
}
.webinar-form input::placeholder { color: rgba(255,255,255,0.3); }
.webinar-form input:focus { border-color: var(--accent); }
.seats-note {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-top: 4px;
}

/* ===================================================
   PRICING
=================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.pricing-card {
  border: 1px solid var(--border);
  padding: 40px 36px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
}
.pricing-card.featured {
  background: var(--ink);
  border-color: var(--ink);
}
.plan-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
  font-weight: 500;
}
.featured .plan-label { color: rgba(255,255,255,0.35); }
.price {
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}
.featured .price { color: #fff; }
.price sub { font-size: 18px; font-weight: 400; vertical-align: top; margin-top: 8px; display: inline-block; }
.price .per { font-size: 16px; font-weight: 400; }
.plan-desc { font-size: 13px; color: var(--muted); margin-bottom: 28px; line-height: 1.6; }
.featured .plan-desc { color: rgba(255,255,255,0.4); }
.feature-list { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.feature-item {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.feature-item::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--paper);
  flex-shrink: 0;
}
.featured .feature-item { color: #fff; }
.featured .feature-item::before {
  background: rgba(232,69,10,0.2);
  border-color: var(--accent);
}

/* ===================================================
   CONTACT FORM
=================================================== */
.contact-section { background: var(--paper); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 20px; }
.contact-info p { color: var(--muted); font-size: 16px; line-height: 1.75; margin-bottom: 36px; }
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-item span:first-child {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.contact-item a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.2s;
}
.contact-item a:hover { color: var(--accent); }
.wpcf7-form,
.contact-form-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form-inner input,
.contact-form-inner select,
.contact-form-inner textarea,
.wpcf7-form input,
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid var(--border);
  background: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  border-radius: 2px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}
.contact-form-inner input:focus,
.contact-form-inner select:focus,
.contact-form-inner textarea:focus,
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus { border-color: var(--ink); }
.contact-form-inner textarea,
.wpcf7-form textarea { resize: vertical; min-height: 120px; }

/* ===================================================
   PAGE HERO (inner pages)
=================================================== */
.page-hero {
  background: var(--ink);
  padding: 96px 0 80px;
  text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: 20px; }
.page-hero p { color: rgba(255,255,255,0.45); font-size: 18px; max-width: 560px; margin: 0 auto; }

/* ===================================================
   ABOUT PAGE
=================================================== */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-block {
  position: relative;
}
.about-img-wrap {
  aspect-ratio: 4/5;
  background: var(--ink);
  border-radius: 4px;
  overflow: hidden;
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-accent-box {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--accent);
  padding: 28px 32px;
  border-radius: 4px;
}
.about-accent-box .big-num {
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.about-accent-box p { font-size: 13px; color: rgba(255,255,255,0.75); margin-top: 6px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.value-card {
  border: 1px solid var(--border);
  padding: 36px;
  border-radius: 4px;
}
.value-card h4 { font-family: var(--font-head); font-size: 18px; margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ===================================================
   BLOG / POSTS
=================================================== */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.post-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.2s;
}
.post-card:hover { transform: translateY(-4px); }
.post-thumb {
  aspect-ratio: 16/9;
  background: var(--ink);
  overflow: hidden;
}
.post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.post-card:hover .post-thumb img { transform: scale(1.04); }
.post-body { padding: 28px; }
.post-cat {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
}
.post-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--ink);
  transition: color 0.2s;
}
.post-card:hover .post-title { color: var(--accent); }
.post-excerpt { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 20px; }
.post-meta { font-size: 12px; color: var(--muted); }

/* ===================================================
   SECTION HEADINGS
=================================================== */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 20px;
}
.section-head .sub {
  font-size: 15px;
  color: var(--muted);
  max-width: 320px;
  line-height: 1.65;
  text-align: right;
}

/* ===================================================
   FINAL CTA SECTION
=================================================== */
.final-cta-section { text-align: center; }
.final-cta-section h2 { font-size: clamp(32px, 5vw, 60px); margin-bottom: 18px; }
.final-cta-section p { color: var(--muted); max-width: 500px; margin: 0 auto 48px; font-size: 17px; }

/* ===================================================
   RESPONSIVE
=================================================== */
@media (max-width: 1024px) {
  .hero-home,
  .about-intro,
  .webinar-inner,
  .resource-inner,
  .contact-grid { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .services-grid,
  .testi-grid,
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  .section-pad { padding: 64px 0; }
  #primary-nav,
  .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .services-grid,
  .results-grid,
  .testi-grid,
  .pricing-grid,
  .values-grid,
  .posts-grid,
  .quiz-options { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .section-head { flex-direction: column; }
  .section-head .sub { text-align: left; }
  .audit-strip { flex-direction: column; text-align: center; }
  .hero-left { padding: 60px 24px; }
}
