/* CartChef – Clean, modern UI */
@font-face {
  font-family: 'Blustrue';
  src: url('../fonts/blustrue.regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --bg: #FAFAF7;
  --bg-subtle: #F5F5F0;
  --surface: #FFFFFF;
  --surface-soft: #FCFCFA;
  --text: #1C1C1C;
  --text-secondary: #5A5A5A;
  --primary: #097657;
  --primary-dark: #075A42;
  --accent: #E85A2A;
  --accent-soft: rgba(232, 90, 42, 0.08);
  --primary-soft: rgba(9, 118, 87, 0.08);
  --border: rgba(0, 0, 0, 0.08);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.08);
  --font-heading: 'Blustrue', 'Archivo', sans-serif;
  --font-body: 'Archivo', -apple-system, sans-serif;
  --transition: 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
}

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

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
}

/* ========== Header ========== */
.site-header {
  background: var(--surface);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity var(--transition);
}

.logo-link:hover { opacity: 0.8; }

.logo-link img {
  height: 80px;
  width: auto;
  display: block;
  transform: scale(2.5);
  transform-origin: left center;
}

.nav-menu-logo { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 52px;
  height: 52px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 110;
  border-radius: var(--radius);
  transition: background var(--transition);
}

.nav-toggle:hover { background: var(--primary-soft); }

.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
}

.site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(9px) rotate(45deg); background: var(--primary); }
.site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); background: var(--primary); }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color var(--transition);
}

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

/* Mobile nav – right-side drawer */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .logo-link img { transform: scale(2.8); }
  
  nav {
    position: fixed;
    inset: 0;
    z-index: 90;
    pointer-events: none;
  }
  nav .nav-backdrop,
  nav .nav-drawer { pointer-events: auto; }
  
  .nav-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .site-header.nav-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
  }
  
  .nav-drawer {
    position: absolute;
    inset: 0;
    background: var(--surface);
    padding: 24px 32px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 48px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .site-header.nav-open .nav-drawer {
    transform: translateX(0);
  }
  
  .nav-menu-logo {
    display: block;
    flex-shrink: 0;
  }
  .nav-menu-logo img {
    height: 240px;
    width: auto;
    max-width: min(90vw, 400px);
    transform: none;
    object-fit: contain;
  }
  
  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 1.75rem;
    font-weight: 600;
    font-family: var(--font-body);
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 360px;
  }
  .nav-links a {
    display: block;
    padding: 24px 28px;
    color: var(--text);
    text-decoration: none;
    background: var(--bg-subtle);
    border-radius: var(--radius);
    text-align: center;
    transition: color 0.2s, background 0.2s;
  }
  .nav-links a:hover,
  .nav-links a.active {
    color: var(--primary);
    background: var(--primary-soft);
  }
}

/* ========== Main ========== */
main {
  padding: 64px 0 80px;
  min-height: calc(100vh - 200px);
}

.page-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--text);
  letter-spacing: -0.02em;
  font-family: var(--font-heading);
}

.page-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin: 0 0 40px;
  line-height: 1.5;
}

@media (max-width: 600px) {
  main { padding: 40px 0 60px; }
  .page-title { font-size: 1.85rem; }
}

/* ========== Hero ========== */
.hero {
  text-align: center;
  padding: 100px 0 120px;
  background: linear-gradient(180deg, var(--surface-soft) 0%, var(--bg) 100%);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, var(--primary-soft) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container { position: relative; }

.hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  margin: 0 0 24px;
  letter-spacing: -0.03em;
  line-height: 1.15;
  font-family: var(--font-heading);
}

.hero-title .line1 { color: var(--primary); display: block; }
.hero-title .line2 { color: var(--text); display: block; }
.hero-title .line3 { color: var(--accent); display: block; }

.hero-title .line1, .hero-title .line2, .hero-title .line3 {
  animation: fadeUp 0.6s ease-out both;
}
.hero-title .line2 { animation-delay: 0.08s; }
.hero-title .line3 { animation-delay: 0.16s; }

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

@media (min-width: 640px) {
  .hero-title { font-size: 3.5rem; }
}

@media (max-width: 640px) {
  .hero { padding: 60px 0 80px; }
  .hero-title { font-size: 2rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.75rem; }
}

.hero .tagline {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin: 0 auto 24px;
  max-width: 480px;
  line-height: 1.6;
}

.hero-highlights {
  list-style: none;
  margin: 0 auto 28px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
}

.hero-highlights li::before {
  content: '✓ ';
  margin-right: 4px;
}

.hero-pricing {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0 auto 28px;
  padding: 12px 20px;
  background: var(--primary-soft);
  border-radius: var(--radius);
  display: inline-block;
}

/* CTA & Launch form */
.cta-coming-soon {
  font-size: 1rem;
  padding: 14px 28px;
  cursor: default;
  pointer-events: none;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: var(--primary);
  color: white !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-body);
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.cta-button:hover:not(:disabled) {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.cta-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.cta-button-secondary {
  background: transparent !important;
  color: var(--primary) !important;
  border: 2px solid var(--primary);
}

.cta-button-secondary:hover {
  background: var(--primary-soft) !important;
}

.form-success {
  color: var(--primary);
  font-weight: 600;
  margin-top: 24px;
}

.launch-signup {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

.launch-signup input[type="email"] {
  flex: 1;
  min-width: 180px;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  background: var(--surface);
}

.launch-signup input[type="email"]:focus {
  outline: none;
  border-color: var(--primary);
}

.launch-signup .cta-button { margin-top: 0; white-space: nowrap; }

.trust-line {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 16px 0 0;
}

@media (max-width: 480px) {
  .launch-signup { flex-direction: column; max-width: 100%; }
  .launch-signup input[type="email"] { min-width: 0; }
  .launch-signup .cta-button { width: 100%; }
}

/* ========== Features ========== */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.feature-card {
  background: var(--surface);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: fadeUp 0.5s ease-out both;
}

.feature-card:nth-child(1) { animation-delay: 0.05s; }
.feature-card:nth-child(2) { animation-delay: 0.15s; }
.feature-card:nth-child(3) { animation-delay: 0.25s; }

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

.feature-card .icon {
  font-size: 2.5rem;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary-soft);
}

.feature-card:nth-child(2) .icon { background: var(--accent-soft); }

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--text);
  font-family: var(--font-heading);
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .features { grid-template-columns: 1fr; margin-top: 0; gap: 20px; }
  .feature-card { padding: 32px 24px; }
}

/* ========== Pain points ========== */
.pain-points {
  margin-top: 56px;
  padding-top: 0;
}

.pain-points-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 12px;
  text-align: center;
  font-family: var(--font-heading);
}

.pain-points-intro {
  font-size: 1.05rem;
  color: var(--text-secondary);
  text-align: center;
  margin: 0 auto 32px;
  max-width: 480px;
  line-height: 1.6;
}

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

.pain-point {
  background: var(--surface);
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.pain-point:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

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

.pain-point h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 10px;
  font-family: var(--font-heading);
}

.pain-point p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.pain-points-cta {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
  text-align: center;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .pain-points-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .pain-points { margin-top: 40px; }
  .pain-points-title { font-size: 1.35rem; }
  .pain-points-intro { margin-bottom: 24px; }
  .pain-point { padding: 24px 20px; }
}

/* ========== How it works ========== */
.how-it-works {
  margin-top: 80px;
  padding-top: 64px;
  border-top: 1px solid var(--border);
}

.how-it-works-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 40px;
  text-align: center;
  font-family: var(--font-heading);
}

.how-it-works-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
}

.step {
  flex: 1 1 200px;
  max-width: 260px;
  text-align: center;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: white;
  font-size: 1.25rem;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 16px;
  font-family: var(--font-body);
}

.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px;
  font-family: var(--font-heading);
}

.step-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.step-arrow {
  display: none;
  color: var(--primary);
  font-size: 1.5rem;
  align-self: center;
}

@media (min-width: 640px) {
  .step-arrow { display: inline; }
}

@media (max-width: 639px) {
  .how-it-works-steps { flex-direction: column; align-items: center; }
}

/* ========== FAQ ========== */
.faq-section {
  margin-top: 80px;
  padding-top: 64px;
  border-top: 1px solid var(--border);
}

.faq-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 40px;
  text-align: center;
  font-family: var(--font-heading);
}

.faq-list {
  margin: 0 auto;
  padding: 0;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: var(--surface);
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.faq-item dt {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 12px;
  font-family: var(--font-body);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.faq-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: var(--radius);
  font-size: 1.1rem;
}

.faq-item dd {
  margin: 0 0 0 48px;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

@media (max-width: 480px) {
  .faq-item dd { margin-left: 0; }
}

.faq-item a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.faq-item a:hover { color: var(--primary-dark); }

/* ========== 404 Page ========== */
.error-page {
  text-align: center;
  padding: 80px 0 60px;
}

.error-code {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 16px;
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

.error-page .page-title { margin-bottom: 12px; }

.error-page .page-subtitle { margin-bottom: 32px; }

/* ========== About ========== */
.about-content {
  max-width: 600px;
}

.about-content .about-lead {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text);
  margin: 0 0 36px;
}

.about-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin: 36px 0 14px;
  font-family: var(--font-heading);
}

.about-content h2:first-of-type { margin-top: 0; }

.about-content ul {
  margin: 0 0 24px;
  padding-left: 1.4rem;
  line-height: 1.75;
}

.about-content p { margin: 0 0 14px; line-height: 1.7; }

.about-content a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.about-content a:hover { color: var(--primary-dark); }

/* ========== Content cards ========== */
.content-card {
  background: var(--surface);
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-bottom: 32px;
}

.content-card h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--text);
  font-family: var(--font-heading);
}

.content-card h2:not(:first-child) { margin-top: 32px; }

.content-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 24px 0 10px;
  color: var(--text);
}

.content-card p,
.content-card ul {
  margin: 0 0 14px;
  color: var(--text);
  line-height: 1.65;
}

.content-card a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.content-card a:hover { color: var(--primary-dark); }

.content-card ul { padding-left: 1.5rem; }

@media (max-width: 600px) {
  .content-card { padding: 32px 24px; }
}

/* ========== Forms ========== */
.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin: 24px 0 8px;
  color: var(--text);
}

.contact-form label:first-of-type { margin-top: 0; }

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  background: var(--surface-soft);
  transition: border-color var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form .cta-button { margin-top: 28px; }

/* ========== Support list ========== */
.support-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.support-list li { margin-bottom: 12px; }

.support-list a {
  display: block;
  padding: 16px 20px;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  transition: border-color var(--transition), background var(--transition);
}

.support-list a:hover {
  border-color: var(--primary);
  background: var(--primary-soft);
  color: var(--primary);
}

/* ========== Footer ========== */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 40px 0 32px;
  margin-top: 64px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 20px;
}

.footer-cta-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.footer-cta-link:hover { color: var(--primary-dark); }

.footer-email {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-email a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.footer-email a:hover { color: var(--primary-dark); }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 12px;
}

.site-footer a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.site-footer a:hover { color: var(--primary-dark); }

.back-to-top {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition);
}

.back-to-top:hover { color: var(--primary); }

@media (max-width: 600px) {
  .site-footer { padding: 32px 0 28px; margin-top: 48px; }
  .footer-cta { flex-direction: column; }
}

/* ========== Brand page ========== */
.brand-section h2 {
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 0 20px;
  color: var(--text);
}

.brand-section h3 { font-size: 1rem; margin: 24px 0 12px; }

.brand-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin: 24px 0 32px;
}

.brand-logo-item {
  text-align: center;
  padding: 32px 20px;
  background: var(--surface-soft);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.brand-logo-item.dark-bg { background: #121715; }
.brand-logo-item.tinted-bg { background: #1A2E28; }

.brand-logo-item img {
  max-width: 160px;
  height: auto;
  margin: 0 auto 12px;
  display: block;
}

.brand-logo-item span {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.brand-logo-item.dark-bg span,
.brand-logo-item.tinted-bg span { color: rgba(255,255,255,0.7); }

.brand-colors {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.brand-color-swatch {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.brand-color-swatch .swatch { height: 72px; }

.brand-color-swatch .label {
  padding: 10px 12px;
  background: var(--surface-soft);
  font-size: 0.8rem;
  font-weight: 600;
}

.brand-color-swatch .hex { font-size: 0.7rem; color: var(--text-secondary); font-weight: 400; }

.brand-dos-donts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 20px;
}

.brand-dos-donts .column h3 { font-size: 0.95rem; margin: 0 0 12px; }

.brand-dos-donts ul { margin: 0; padding-left: 1.2rem; font-size: 0.9rem; }

.brand-dos-donts .do ul,
.brand-dos-donts .dont ul { list-style: none; padding-left: 0; }

.brand-dos-donts .do li::before { content: '✓ '; color: var(--primary); font-weight: 700; }
.brand-dos-donts .dont li::before { content: '✗ '; color: var(--accent); font-weight: 700; }

@media (max-width: 600px) {
  .brand-dos-donts { grid-template-columns: 1fr; }
  .brand-logos { grid-template-columns: 1fr; }
}
