/* =============================================
   SKATTEMELDINGEN.NO — Global Styles
   ============================================= */

:root {
  --primary: #003366;
  --primary-light: #0055a5;
  --primary-dark: #001f3f;
  --accent: #d4960a;
  --accent-light: #f0b429;
  --success: #1a7f4b;
  --danger: #c0392b;
  --text: #1a1a2e;
  --text-muted: #5a6070;
  --bg: #f7f8fa;
  --bg-white: #ffffff;
  --border: #e0e4ec;
  --shadow: 0 2px 16px rgba(0,51,102,0.08);
  --shadow-lg: 0 8px 40px rgba(0,51,102,0.14);
  --radius: 12px;
  --radius-sm: 8px;
  --font: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --transition: 0.2s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary-dark);
}

h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
h4 { font-size: 1rem; }

p { margin-bottom: 1rem; color: var(--text-muted); }
p:last-child { margin-bottom: 0; }

a {
  color: var(--primary-light);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--accent); }

ul, ol {
  padding-left: 1.5rem;
  color: var(--text-muted);
}
li { margin-bottom: 0.4rem; }

/* ---- Layout ---- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 72px 0;
}

.section--dark {
  background: var(--primary-dark);
  color: white;
}
.section--dark h2, .section--dark h3 { color: white; }
.section--dark p { color: rgba(255,255,255,0.75); }

.section--light {
  background: var(--bg-white);
}

.section--accent {
  background: linear-gradient(135deg, #fff8e8 0%, #fffdf5 100%);
  border-top: 3px solid var(--accent-light);
  border-bottom: 3px solid var(--accent-light);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header p {
  max-width: 640px;
  margin: 0.75rem auto 0;
  font-size: 1.05rem;
}

/* ---- Navigation ---- */
.nav {
  background: var(--primary-dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav__logo-icon {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.nav__logo-text {
  font-weight: 700;
  color: white;
  font-size: 1.05rem;
  letter-spacing: -0.3px;
}

.nav__logo-text span {
  color: var(--accent-light);
}

.nav__links {
  display: flex;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav__links a {
  color: rgba(255,255,255,0.82);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
}

.nav__links a:hover,
.nav__links a.active {
  color: white;
  background: rgba(255,255,255,0.12);
}

.nav__cta {
  background: var(--accent) !important;
  color: white !important;
  font-weight: 600 !important;
}
.nav__cta:hover {
  background: var(--accent-light) !important;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav__hamburger span {
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---- Hero ---- */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  color: white;
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212,150,10,0.25);
  border: 1px solid rgba(240,180,41,0.4);
  color: var(--accent-light);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero h1 {
  color: white;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent-light);
}

.hero__lead {
  color: rgba(255,255,255,0.82) !important;
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---- Countdown ---- */
.countdown-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
}

.countdown-card__title {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}

.countdown-card__deadline {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-light);
  margin-bottom: 20px;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

.countdown-unit {
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 12px 6px;
}

.countdown-unit__value {
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  display: block;
}

.countdown-unit__label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-top: 4px;
}

.countdown-card__warning {
  background: rgba(212,150,10,0.2);
  border: 1px solid rgba(240,180,41,0.3);
  border-radius: var(--radius-sm);
  padding: 10px;
  font-size: 0.82rem;
  color: var(--accent-light);
  font-weight: 500;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
}

.btn--primary {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}
.btn--primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: white;
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.4);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  color: white;
}

.btn--blue {
  background: var(--primary-light);
  color: white;
  border-color: var(--primary-light);
}
.btn--blue:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-1px);
}

.btn--sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

/* ---- Cards ---- */
.card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.card__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.card__tag--private {
  background: #e8f4fd;
  color: var(--primary-light);
}

.card__tag--business {
  background: #e8f8ef;
  color: var(--success);
}

/* ---- Grid layouts ---- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ---- Audience Cards (main landing) ---- */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.audience-card {
  background: var(--bg-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border);
  transition: all 0.3s;
  text-decoration: none;
  display: block;
}

.audience-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 56px rgba(0,51,102,0.18);
}

.audience-card__header {
  padding: 40px 36px 32px;
}

.audience-card--private .audience-card__header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.audience-card--business .audience-card__header {
  background: linear-gradient(135deg, #1a5c3a 0%, #27ae60 100%);
}

.audience-card__emoji {
  font-size: 3rem;
  display: block;
  margin-bottom: 16px;
}

.audience-card__title {
  color: white;
  font-size: 1.7rem;
  margin-bottom: 8px;
}

.audience-card__subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  margin: 0;
}

.audience-card__body {
  padding: 28px 36px 36px;
}

.audience-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.audience-card__features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.audience-card__features li::before {
  content: '✓';
  font-weight: 700;
  color: var(--success);
  flex-shrink: 0;
}

.audience-card--private .audience-card__cta {
  background: var(--primary-light);
  color: white;
}

.audience-card--business .audience-card__cta {
  background: var(--success);
  color: white;
}

.audience-card__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
}

.audience-card:hover .audience-card__cta {
  gap: 12px;
}

/* ---- FAQ Accordion ---- */
.accordion {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-white);
}

.accordion__item {
  border-bottom: 1px solid var(--border);
}
.accordion__item:last-child { border-bottom: none; }

.accordion__trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  transition: background var(--transition);
}

.accordion__trigger:hover {
  background: var(--bg);
}

.accordion__trigger.active {
  color: var(--primary-light);
  background: #f0f6ff;
}

.accordion__chevron {
  font-size: 1.1rem;
  transition: transform 0.3s;
  flex-shrink: 0;
  color: var(--text-muted);
}

.accordion__trigger.active .accordion__chevron {
  transform: rotate(180deg);
  color: var(--primary-light);
}

.accordion__body {
  display: none;
  padding: 4px 24px 24px;
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.7;
}

.accordion__body.open {
  display: block;
  animation: slideDown 0.25s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- Process Steps ---- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary-light), var(--accent));
  z-index: 0;
}

.step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.step__number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 3px solid var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-light);
  margin: 0 auto 20px;
  box-shadow: 0 0 0 6px var(--bg);
}

.step:nth-child(4) .step__number {
  border-color: var(--accent);
  color: var(--accent);
}

.step h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.85rem;
}

/* ---- News Section ---- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}

.news-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.news-card__image {
  height: 180px;
  background: linear-gradient(135deg, #e8eef7, #d0dced);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  overflow: hidden;
}

.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card__source {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary-light);
  margin-bottom: 6px;
}

.news-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.4;
  flex: 1;
}

.news-card__date {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 12px;
}

.news-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-top: 12px;
  transition: gap var(--transition);
}

.news-card__link:hover { gap: 8px; }

.news-loading {
  text-align: center;
  padding: 48px;
  color: var(--text-muted);
  grid-column: 1/-1;
}

.news-loading .spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--border);
  border-top-color: var(--primary-light);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 16px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---- Stats bar ---- */
.stats-bar {
  background: var(--primary);
  padding: 36px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat {
  color: white;
}

.stat__value {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1;
  display: block;
}

.stat__label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* ---- Alert/Info boxes ---- */
.alert {
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.9rem;
}

.alert--warning {
  background: #fff8e1;
  border: 1px solid #ffe082;
  color: #7a5400;
}

.alert--info {
  background: #e8f4fd;
  border: 1px solid #bbdefb;
  color: #1565c0;
}

.alert--success {
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #1b5e20;
}

.alert__icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---- Deadline bar ---- */
.deadline-bar {
  background: linear-gradient(135deg, var(--danger), #e74c3c);
  color: white;
  padding: 12px 0;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
}

.deadline-bar a {
  color: #ffd6d6;
  text-decoration: underline;
}

/* ---- Table ---- */
.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-white);
}

thead {
  background: var(--primary);
  color: white;
}

th {
  padding: 14px 18px;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text);
}

tr:last-child td { border-bottom: none; }
tr:nth-child(even) td { background: var(--bg); }

/* ---- Footer ---- */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  text-decoration: none;
}

.footer__logo-icon {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.footer__logo-text {
  font-weight: 700;
  color: white;
  font-size: 0.95rem;
}

.footer__desc {
  font-size: 0.87rem;
  line-height: 1.6;
}

.footer__heading {
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links li {
  margin-bottom: 8px;
}

.footer__links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.87rem;
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--accent-light); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.footer__disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
}

/* ---- Breadcrumb ---- */
.breadcrumb {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.breadcrumb__inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumb__inner a {
  color: var(--primary-light);
}

.breadcrumb__sep { color: var(--border); }

/* ---- Page Hero (subpages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: white;
  padding: 60px 0;
}

.page-hero--business {
  background: linear-gradient(135deg, #1a3a2a 0%, #1a7f4b 100%);
}

.page-hero h1 { color: white; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; }

/* ---- Sticky sidebar layout ---- */
.content-sidebar {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: 80px;
}

.sidebar__card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 20px;
}

.sidebar__card h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary);
  margin-bottom: 14px;
}

.sidebar__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar__links li {
  margin-bottom: 2px;
}

.sidebar__links a {
  display: block;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--text);
  transition: all var(--transition);
}

.sidebar__links a:hover, .sidebar__links a.active {
  background: #f0f6ff;
  color: var(--primary-light);
}

/* ---- Deduction card ---- */
.deduction-amount {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--success);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .countdown-card { max-width: 400px; }
  .content-sidebar { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 48px 0; }
  .hero { padding: 56px 0 48px; }
  .audience-grid { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .news-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }

  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    padding: 16px;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    z-index: 999;
  }
  .nav { position: relative; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.7rem; }
  .audience-card__header { padding: 28px 24px 24px; }
  .audience-card__body { padding: 20px 24px 28px; }
  .steps { grid-template-columns: 1fr; }
  .countdown-grid { grid-template-columns: repeat(2, 1fr); }
}
