/* BDS AI Theme — main stylesheet (ported from Next.js Tailwind design) */

:root {
  --bds-50: #f0f9ff;
  --bds-500: #0ea5e9;
  --bds-600: #0284c7;
  --bds-700: #0369a1;
  --ai-500: #f97316;
  --ai-600: #ea580c;
  --ai-700: #c2410c;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --light-50: #fafafa;
  --light-100: #f5f5f5;
  --light-200: #e5e5e5;
  --light-300: #d4d4d4;
  --dark-400: #94a3b8;
  --dark-500: #64748b;
  --dark-600: #475569;
  --dark-700: #334155;
  --dark-900: #0f172a;
  --container: 80rem;
  --nav-height: 4rem;
  --radius: 0.75rem;
  --shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--light-50);
  color: var(--dark-900);
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

.site-wrapper { min-height: 100vh; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* Utilities */
.section-bg {
  background: linear-gradient(to bottom right, var(--light-50), #fff, var(--light-100));
}

.gradient-text {
  background: linear-gradient(to right, var(--bds-600), var(--ai-500), var(--teal-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-bds { color: var(--bds-600); }
.text-ai { color: var(--ai-500); }

.button-primary,
.button-ai,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  font-size: 1rem;
  text-decoration: none;
}

.button-primary {
  background: linear-gradient(to right, var(--bds-500), var(--ai-500));
  color: #fff;
  box-shadow: var(--shadow);
}

.button-primary:hover { transform: scale(1.05); filter: brightness(1.05); }

.button-ai {
  background: linear-gradient(to right, var(--ai-500), var(--ai-600));
  color: #fff;
  box-shadow: var(--shadow);
}

.button-ai:hover { transform: scale(1.05); }

.button-secondary {
  background: transparent;
  border: 2px solid var(--bds-500);
  color: var(--bds-600);
}

.button-secondary:hover { background: var(--bds-500); color: #fff; }

.button-primary:disabled,
.button-ai:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* Navbar */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, box-shadow 0.3s;
}

.site-nav.is-scrolled {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(12px);
  border-color: var(--light-200);
  box-shadow: var(--shadow);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.brand { display: flex; align-items: center; gap: 0.5rem; }

.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: #fff;
  border-radius: 0.5rem;
  padding: 0.125rem;
}

.brand-text { font-size: 1.25rem; font-weight: 700; }
.brand-text .text-bds { color: var(--bds-600); }
.brand-text .text-ai { color: var(--ai-500); margin-left: 0.125rem; }

.nav-desktop { display: none; gap: 0.25rem; }

@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
}

.nav-link {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark-600);
  border-radius: 0.375rem;
  transition: color 0.2s;
}

.nav-link:hover { color: var(--bds-600); }

.nav-toggle {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark-600);
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle-close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle-open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle-close { display: inline; }

.nav-mobile {
  padding: 0.5rem 1rem 1rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--light-200);
}

.nav-mobile .nav-link { display: block; padding: 0.75rem; }

/* Sections */
.section { padding: 5rem 0; position: relative; }

.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; margin: 0 0 1.5rem; }
.section-header p { font-size: 1.25rem; color: var(--dark-600); max-width: 48rem; margin: 0 auto; }

.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
.grid-5 { grid-template-columns: 1fr; }

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid-5 { grid-template-columns: repeat(5, 1fr); }
}

.card {
  background: #fff;
  border: 1px solid var(--light-200);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.card-hover { transition: transform 0.3s, box-shadow 0.3s; }
.card-hover:hover {
  transform: scale(1.03);
  box-shadow: 0 25px 50px -12px rgb(14 165 233 / 0.2);
}

.card-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(to right, var(--bds-600), var(--ai-500), var(--teal-500));
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 1.5rem;
}

.card-icon svg { width: 2rem; height: 2rem; }

.card h3, .card h4 { margin: 0 0 1rem; color: var(--dark-900); }
.card p { color: var(--dark-600); margin: 0 0 1rem; }

.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--dark-500);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}
.feature-list li::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--bds-500);
  flex-shrink: 0;
}

.tag-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.tag {
  padding: 0.25rem 0.75rem;
  background: rgb(14 165 233 / 0.1);
  border: 1px solid rgb(14 165 233 / 0.2);
  border-radius: 9999px;
  font-size: 0.875rem;
  color: var(--bds-700);
  font-weight: 500;
}
.tag-ai {
  background: rgb(249 115 22 / 0.1);
  border-color: rgb(249 115 22 / 0.2);
  color: var(--ai-700);
  font-size: 0.75rem;
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
}

.cta-box {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem;
  background: #fff;
  border: 1px solid var(--light-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}
.cta-box h3 { font-size: 1.875rem; margin: 0 0 1rem; }
.cta-box p { font-size: 1.25rem; color: var(--dark-600); margin: 0 0 2rem; }

/* Process steps */
.process-steps { display: grid; gap: 1.5rem; margin-bottom: 4rem; }
@media (min-width: 768px) { .process-steps { grid-template-columns: repeat(5, 1fr); } }

.process-step { text-align: center; position: relative; }
.process-num {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  background: linear-gradient(to right, var(--bds-600), var(--ai-500), var(--teal-500));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
}
.process-step h4 { margin: 0 0 0.5rem; font-size: 1.125rem; }
.process-step p { margin: 0; font-size: 0.875rem; color: var(--dark-500); }

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
  text-align: center;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgb(240 249 255 / 0.3), var(--light-50), rgb(240 253 250 / 0.3));
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  animation: pulse-slow 4s ease-in-out infinite;
}
.hero-blob-1 { top: 5rem; left: 5rem; width: 18rem; height: 18rem; background: rgb(14 165 233 / 0.1); }
.hero-blob-2 { top: 10rem; right: 5rem; width: 24rem; height: 24rem; background: rgb(249 115 22 / 0.1); animation-delay: 2s; }
.hero-blob-3 { bottom: 5rem; left: 50%; width: 20rem; height: 20rem; background: rgb(20 184 166 / 0.1); animation-delay: 4s; }

@keyframes pulse-slow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.05); }
}

.hero-content { position: relative; z-index: 1; padding: 2rem 0; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgb(14 165 233 / 0.1);
  border: 1px solid rgb(14 165 233 / 0.2);
  border-radius: 9999px;
  color: var(--bds-600);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1rem;
}

.hero-tagline {
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(90deg, #3B82F6, #8B5CF6, #06B6D4, #3B82F6);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient-shift 3s ease-in-out infinite;
  margin: 0;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-tagline-line {
  height: 2px;
  background: linear-gradient(to right, var(--bds-500), var(--ai-500), var(--teal-500));
  border-radius: 9999px;
  max-width: 100%;
  margin: 0.25rem auto 1rem;
  animation: line-grow 1s ease 0.8s both;
}

@keyframes line-grow { from { width: 0; } to { width: 100%; } }

.hero-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--dark-600);
  max-width: 56rem;
  margin: 0 auto 2rem;
}

.hero-cta { margin-bottom: 3rem; }

.hero-trust { padding-top: 2rem; border-top: 1px solid var(--light-300); }
.hero-trust-label { color: var(--dark-500); margin-bottom: 1.5rem; }
.hero-platforms { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; opacity: 0.6; }
.hero-platform { font-size: 1.5rem; font-weight: 700; color: var(--dark-700); transition: opacity 0.2s, transform 0.2s; }
.hero-platform:hover { opacity: 1; transform: scale(1.1); }

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-mouse {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid var(--dark-400);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}
.scroll-dot {
  width: 4px;
  height: 12px;
  background: var(--bds-500);
  border-radius: 9999px;
  animation: scroll-bounce 2s infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(12px); }
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-form-card { padding: 2rem; }

.form-row { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .form-row-2 { grid-template-columns: 1fr 1fr; } }

.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark-700);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--light-300);
  border-radius: 0.5rem;
  font: inherit;
  color: var(--dark-900);
  background: #fff;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--bds-500);
}

.form-group input.is-error,
.form-group select.is-error,
.form-group textarea.is-error { border-color: #ef4444; }

.field-error { color: #dc2626; font-size: 0.875rem; margin-top: 0.25rem; }

.form-status {
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  display: none;
}
.form-status.is-visible { display: flex; align-items: center; gap: 0.75rem; }
.form-status.is-success { background: rgb(34 197 94 / 0.1); border: 1px solid rgb(34 197 94 / 0.2); color: #16a34a; }
.form-status.is-error { background: rgb(239 68 68 / 0.1); border: 1px solid rgb(239 68 68 / 0.2); color: #dc2626; }

.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.contact-icon svg { width: 1.5rem; height: 1.5rem; }
.contact-icon-gradient-1 { background: linear-gradient(to right, var(--bds-500), var(--ai-500)); }
.contact-icon-gradient-2 { background: linear-gradient(to right, var(--teal-500), var(--bds-500)); }
.contact-icon-gradient-3 { background: linear-gradient(to right, var(--bds-600), var(--ai-500), var(--teal-500)); }
.contact-icon-linkedin { background: linear-gradient(to right, #2563eb, #1d4ed8); transition: transform 0.2s; }
.contact-icon-linkedin:hover { transform: scale(1.1); }

.map-embed {
  width: 100%;
  height: 16rem;
  border: 0;
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
}

/* Footer */
.site-footer {
  background: #f3f4f6;
  border-top: 1px solid #e5e7eb;
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }

.footer-brand p { color: var(--dark-600); max-width: 28rem; margin: 1.5rem 0; }
.footer-meta { display: flex; flex-direction: column; gap: 1rem; color: var(--dark-600); font-size: 0.95rem; }
.footer-meta-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.footer-meta-item svg { width: 1rem; height: 1rem; color: var(--bds-500); flex-shrink: 0; margin-top: 0.25rem; }

.footer-col h3 { font-size: 1.125rem; margin: 0 0 1.5rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.75rem; }
.footer-col a { color: var(--dark-600); transition: color 0.2s; }
.footer-col a:hover { color: var(--bds-600); }

.newsletter-section {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
  text-align: center;
}
.newsletter-section h3 { font-size: 1.5rem; margin: 0 0 1rem; }
.newsletter-section p { color: var(--dark-600); max-width: 42rem; margin: 0 auto 1.5rem; }

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 28rem;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .newsletter-form { flex-direction: row; }
  .newsletter-form .form-group { flex: 1; margin: 0; }
}

.footer-bottom {
  margin-top: 4rem;
  padding: 2rem 0;
  border-top: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  font-size: 0.875rem;
  color: var(--dark-500);
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.footer-legal a:hover { color: var(--bds-600); }

/* Legal pages */
.legal-page { padding-top: var(--nav-height); min-height: 100vh; background: var(--light-50); }
.legal-header {
  background: #fff;
  border-bottom: 1px solid var(--light-200);
  padding: 2rem 0;
  text-align: center;
}
.legal-header h1 { font-size: clamp(1.875rem, 4vw, 2.5rem); margin: 0 0 0.5rem; }
.legal-updated { color: var(--dark-600); margin: 0; }
.legal-body { padding: 3rem 0; }
.legal-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  margin-bottom: 2rem;
}
.legal-card h2 { font-size: 1.5rem; margin: 0 0 1rem; display: flex; align-items: center; gap: 0.75rem; }
.legal-card h3 { font-size: 1.125rem; margin: 1rem 0 0.5rem; }
.legal-content { color: var(--dark-600); }
.legal-content ul { padding-left: 1.5rem; }
.legal-content a { color: var(--bds-600); }
.legal-content a:hover { color: var(--bds-700); }
.legal-content table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.legal-content th, .legal-content td { border: 1px solid var(--light-300); padding: 0.75rem 1rem; text-align: left; }
.legal-content th { background: var(--light-50); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.8s, transform 0.8s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Spinner */
.spinner {
  width: 1rem;
  height: 1rem;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--light-200); }
::-webkit-scrollbar-thumb { background: var(--bds-500); border-radius: 9999px; }
::-webkit-scrollbar-thumb:hover { background: var(--bds-600); }

/* Benefit circles */
.benefit-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  background: linear-gradient(to right, var(--bds-600), var(--ai-500), var(--teal-500));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.benefit-icon svg { width: 2rem; height: 2rem; }
.benefit-item { text-align: center; }

.engagement-num {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(to right, var(--bds-500), var(--teal-500));
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  flex-shrink: 0;
}

.engagement-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.engagement-best {
  background: var(--light-50);
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
}

.card-header-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.card-header-row .card-icon { width: 3rem; height: 3rem; margin: 0; }
.card-header-row .card-icon svg { width: 1.5rem; height: 1.5rem; }

.subsection-title { text-align: center; margin-bottom: 3rem; }
.subsection-title h3 { font-size: 1.875rem; margin: 0 0 1rem; }
.subsection-title p { font-size: 1.25rem; color: var(--dark-600); max-width: 48rem; margin: 0 auto; }

.w-full { width: 100%; }
.button-full { width: 100%; }

.contact-methods { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-method { display: flex; gap: 1rem; align-items: flex-start; }
.contact-method-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  background: linear-gradient(to right, var(--bds-500), var(--ai-500));
}
.contact-method-icon svg { width: 1.5rem; height: 1.5rem; }
.contact-method-icon-link { background: linear-gradient(to right, #2563eb, #1d4ed8); transition: transform 0.2s; }
.contact-method-icon-link:hover { transform: scale(1.1); }
.contact-method h4 { margin: 0 0 0.5rem; font-size: 1.125rem; }
.contact-method p { margin: 0; color: var(--dark-600); }
.contact-map { margin-top: 2rem; }
.contact-map h4 { margin: 0 0 1rem; font-size: 1.125rem; }
.map-caption { font-size: 0.875rem; color: var(--dark-500); text-align: center; margin-top: 0.5rem; }

.footer-contact p { display: flex; align-items: flex-start; gap: 0.75rem; color: var(--dark-600); margin: 0 0 0.75rem; }
.footer-contact svg { width: 1rem; height: 1rem; color: var(--bds-500); flex-shrink: 0; margin-top: 0.25rem; }
.footer-links h3 { font-size: 1.125rem; margin: 0 0 1.5rem; }
.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: var(--dark-600); transition: color 0.2s; }
.footer-links a:hover { color: var(--bds-600); }
.footer-newsletter { margin-top: 4rem; padding-top: 2rem; border-top: 1px solid #e5e7eb; text-align: center; }
.footer-newsletter h3 { font-size: 1.5rem; margin: 0 0 1rem; }
.footer-newsletter p { color: var(--dark-600); max-width: 42rem; margin: 0 auto 1.5rem; }
@media (min-width: 1024px) {
  .footer-col-span-2 { grid-column: span 2; }
}
