/* ===========================================================
   SmokeSEO shared stylesheet
   Palette: white + #2563EB
   Fonts: Barlow Condensed (display) + Barlow (body)
   =========================================================== */

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

:root {
  --primary: #2563EB;
  --primary-dark: #1d4ed8;
  --primary-soft: rgba(37, 99, 235, 0.12);
  --primary-border: rgba(37, 99, 235, 0.35);
  --bg: #ffffff;
  --bg2: #f6f8fc;
  --text: #0f172a;
  --muted: #64748b;
  --line: #e6eaf2;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.5;
}

a { color: inherit; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 70px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
}

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

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--primary);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.3);
}

.logo-icon svg { width: 22px; height: 22px; fill: #fff; }

.logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: 0.5px;
  color: var(--text);
}

.logo-text span { color: var(--primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--primary); }

.btn-nav {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  background: var(--primary);
  border: none;
  padding: 11px 26px;
  border-radius: 7px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-nav:hover { background: var(--primary-dark); transform: translateY(-1px); }

@media (max-width: 720px) {
  .nav-links { display: none; }
}

/* ── BUTTONS ── */
.btn-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  background: var(--primary);
  border: none;
  padding: 18px 48px;
  border-radius: 9px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 10px 40px rgba(37, 99, 235, 0.3);
}

.btn-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.25) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 50px rgba(37, 99, 235, 0.45); }
.btn-cta:hover::after { transform: translateX(100%); }

.btn-ghost {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-soft);
  border: 1px solid var(--primary-border);
  padding: 16px 38px;
  border-radius: 9px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}

.btn-ghost:hover { background: rgba(37, 99, 235, 0.18); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 130px 5% 90px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 480px at 50% -10%, rgba(37, 99, 235, 0.10), transparent 70%),
    var(--bg);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-soft);
  border: 1px solid var(--primary-border);
  color: var(--primary);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
  animation: fadeUp 0.6s ease both;
}

.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 1.0;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  max-width: 900px;
  margin-bottom: 28px;
  animation: fadeUp 0.6s 0.1s ease both;
}

.hero-headline em { font-style: normal; color: var(--primary); }

.hero-lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 34px;
  animation: fadeUp 0.6s 0.15s ease both;
}

/* ── SUB GRID ── */
.sub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  max-width: 640px;
  width: 100%;
  margin-bottom: 28px;
  animation: fadeUp 0.6s 0.2s ease both;
}

.sub-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 15px 18px;
  text-align: left;
}

.sub-item svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--primary); }

.sub-item span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: 0.3px;
  color: #1e293b;
}

@media (max-width: 600px) {
  .sub-grid { grid-template-columns: 1fr; }
}

.guarantee {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 6px;
  animation: fadeUp 0.6s 0.25s ease both;
}

.guarantee mark {
  background: none;
  color: var(--primary);
  font-weight: 800;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 1px;
}

.guarantee-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  color: #94a3b8;
  letter-spacing: 0.3px;
  margin-bottom: 28px;
  animation: fadeUp 0.6s 0.28s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── GENERIC SECTION ── */
.section {
  padding: 90px 5%;
  max-width: 1040px;
  margin: 0 auto;
}

.section-alt { background: var(--bg2); max-width: none; }
.section-alt > .section-inner { max-width: 1040px; margin: 0 auto; }

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
  text-align: center;
}

.section-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 18px;
  text-align: center;
}

.section-heading em { font-style: normal; color: var(--primary); }

.section-intro {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 50px;
  text-align: center;
}

/* ── FEATURE CARDS ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 880px) { .card-grid, .card-grid.cols-2 { grid-template-columns: 1fr; } }

.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 30px 26px;
  box-shadow: 0 6px 28px rgba(15, 23, 42, 0.05);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(37, 99, 235, 0.12);
  border-color: var(--primary-border);
}

.feature-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feature-icon svg { width: 26px; height: 26px; color: var(--primary); }

.feature-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 10px;
  color: var(--text);
}

.feature-card p { color: var(--muted); font-size: 1rem; line-height: 1.7; }

/* ── STATS STRIP ── */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 8px;
}

@media (max-width: 760px) { .stats-strip { grid-template-columns: repeat(2, 1fr); } }

.stat {
  text-align: center;
  padding: 26px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.6rem;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

/* ── PROCESS ── */
.process-steps {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding-left: 8px;
}

.process-steps::before {
  content: '';
  position: absolute;
  left: 27px; top: 12px; bottom: 12px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--primary-border));
}

.process-step {
  position: relative;
  display: flex;
  gap: 24px;
  padding-bottom: 38px;
}

.process-step:last-child { padding-bottom: 0; }

.process-num {
  flex-shrink: 0;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.3);
}

.process-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--text);
}

.process-body p { color: var(--muted); line-height: 1.7; }

/* ── GUARANTEE BANNER ── */
.guarantee-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 20px;
  padding: 56px 44px;
  text-align: center;
  color: #fff;
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.35);
}

.guarantee-banner h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(1.9rem, 4vw, 3rem);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 16px;
}

.guarantee-banner p {
  font-size: 1.12rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.92);
}

.guarantee-banner .btn-cta {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.guarantee-banner .btn-cta:hover { box-shadow: 0 14px 40px rgba(0, 0, 0, 0.26); }

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
}

.faq-item.open { border-color: var(--primary-border); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
}

.faq-q svg {
  flex-shrink: 0;
  width: 22px; height: 22px;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-q svg { transform: rotate(180deg); }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.75;
}

/* ── FINAL CTA ── */
.final-cta {
  text-align: center;
  padding: 90px 5%;
  max-width: 760px;
  margin: 0 auto;
}

.final-cta h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 16px;
}

.final-cta h2 em { font-style: normal; color: var(--primary); }

.final-cta p { color: var(--muted); font-size: 1.1rem; line-height: 1.7; margin-bottom: 30px; }

/* ── FOOTER ── */
.site-footer {
  background: #0b1220;
  border-top: 1px solid #142036;
  padding: 64px 5% 0;
}

.footer-inner { max-width: 1040px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.footer-brand-name span { color: var(--primary); }

.footer-brand-desc {
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.4);
  max-width: 320px;
  margin-bottom: 18px;
}

.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 16px;
}

.footer-col a, .footer-col p {
  display: block;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  line-height: 1.5;
  margin-bottom: 12px;
  transition: color 0.2s;
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
  padding: 22px 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-copy, .footer-greeting {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.5px;
}

.footer-greeting { font-style: italic; color: rgba(255, 255, 255, 0.22); }

@media (max-width: 760px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ── MODAL ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open { display: flex; }

.modal {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 44px 40px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.22);
  animation: modalIn 0.3s cubic-bezier(.22, 1, .36, 1) both;
  max-height: 92vh;
  overflow-y: auto;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.93) translateY(16px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: 16px; right: 18px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.modal-close:hover { color: var(--text); }

.modal h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: 0.2px;
  margin-bottom: 6px;
  color: var(--text);
}

.modal > div > p, .modal-intro {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 26px;
}

/* ── FORM ── */
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.field label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
}

.field label .optional {
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: #aab4c5;
}

.field input,
.field textarea {
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-size: 0.97rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.field textarea { resize: vertical; min-height: 92px; }

.field input:focus,
.field textarea:focus {
  border-color: var(--primary);
  background: rgba(37, 99, 235, 0.04);
}

.field input::placeholder,
.field textarea::placeholder { color: #aab4c5; }

.iti, #enq-phone { width: 100%; }
.iti { display: block; }

.iti--separate-dial-code .iti__selected-flag {
  background: var(--bg2);
  border-right: 1px solid var(--line);
}

.iti__country-list {
  z-index: 1200 !important;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.16);
}

.btn-submit {
  width: 100%;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #fff;
  background: var(--primary);
  border: none;
  padding: 16px;
  border-radius: 9px;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s, transform 0.15s;
}

.btn-submit:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

.form-success {
  display: none;
  text-align: center;
  padding: 10px 0;
}

.form-success.visible { display: block; animation: fadeUp 0.4s ease both; }

.form-success .success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.form-success .success-icon svg { width: 32px; height: 32px; color: var(--primary); }

.form-success h2 { margin-bottom: 12px; }
.form-success p { color: var(--muted); line-height: 1.7; }

/* ── CONTACT PAGE LAYOUT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 36px; } }

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
}

.contact-info-item .feature-icon { margin-bottom: 0; flex-shrink: 0; width: 46px; height: 46px; }
.contact-info-item .feature-icon svg { width: 22px; height: 22px; }

.contact-info-item h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-info-item p, .contact-info-item a {
  color: var(--muted);
  text-decoration: none;
  line-height: 1.6;
}

.contact-info-item a:hover { color: var(--primary); }

.contact-form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 14px 44px rgba(15, 23, 42, 0.07);
}

.contact-form-card h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.7rem;
  text-transform: uppercase;
  margin-bottom: 6px;
}

/* ── PAGE HEADER (about / contact) ── */
.page-header {
  padding: 140px 5% 60px;
  text-align: center;
  background:
    radial-gradient(800px 380px at 50% -20%, rgba(37, 99, 235, 0.10), transparent 70%),
    var(--bg);
}

.page-header h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  text-transform: uppercase;
  line-height: 1.0;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.page-header h1 em { font-style: normal; color: var(--primary); }

.page-header p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
}

/* ── ABOUT VALUES / SPLIT ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 32px; } }

.split h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-transform: uppercase;
  line-height: 1.08;
  margin-bottom: 18px;
}

.split h2 em { font-style: normal; color: var(--primary); }

.split p { color: var(--muted); font-size: 1.05rem; line-height: 1.8; margin-bottom: 16px; }

.check-list { list-style: none; margin-top: 8px; }

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: #1e293b;
  font-size: 1.02rem;
  line-height: 1.6;
}

.check-list li svg { flex-shrink: 0; width: 22px; height: 22px; color: var(--primary); margin-top: 2px; }

.media-card {
  background: linear-gradient(135deg, var(--primary-soft), rgba(37, 99, 235, 0.02));
  border: 1px solid var(--primary-border);
  border-radius: 18px;
  padding: 40px 36px;
}

.media-card .stats-strip { grid-template-columns: 1fr 1fr; margin-top: 0; }
.media-card .stat { background: #fff; }
