/* ============================================================
   ED-WATCH — STYLE.CSS
   Theme: #043C4C | Fonts: Syne + DM Sans
   ============================================================ */

/* ── CSS Variables ── */
:root {
  --brand: #043C4C;
  --brand-mid: #065568;
  --brand-light: #0a7a96;
  --accent: #22d3c8;
  --accent-soft: rgba(34,211,200,.15);
  --white: #ffffff;
  --off-white: #f5f7f8;
  --grey-100: #f0f2f3;
  --grey-200: #d8dfe3;
  --grey-400: #8a9ba3;
  --grey-700: #3a4a52;
  --grey-900: #0f1d22;
  --text: #1a2e36;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 12px rgba(4,60,76,.08);
  --shadow-md: 0 8px 32px rgba(4,60,76,.12);
  --shadow-lg: 0 20px 60px rgba(4,60,76,.18);
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --header-h: 72px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================================================
   STICKY HEADER
============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(4,60,76,.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(34,211,200,.12);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(4,60,76,.98);
  box-shadow: 0 4px 24px rgba(4,60,76,.25);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--black);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.logo:hover {
  transform: scale(1.05);
}
.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 40px;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.nav-link {
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,.08);
}
.btn-nav-cta {
  flex-shrink: 0;
  background: var(--accent);
  color: var(--brand);
  font-weight: 700;
  font-size: .85rem;
  padding: 9px 20px;
  border-radius: 8px;
  transition: transform var(--transition), box-shadow var(--transition);
  letter-spacing: .02em;
}
.btn-nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(34,211,200,.4);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ============================================================
   HERO SECTION
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--brand);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--header-h) + 60px) 32px 80px;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(10,122,150,.25) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(34,211,200,.08) 0%, transparent 50%);
  pointer-events: none;
}
/* Grid dot overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 64px;
}
/* ── Hero Left ── */
.hero-left {
  flex: 1;
  max-width: 560px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34,211,200,.12);
  border: 1px solid rgba(34,211,200,.3);
  color: var(--accent);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
  animation: fadeSlideDown .8s ease both;
}
.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 22px;
  animation: fadeSlideUp .8s ease .1s both;
}
.hero-highlight {
  background: linear-gradient(90deg, var(--accent), #7efffa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  color: rgba(255,255,255,.65);
  font-size: 1.1rem;
  line-height: 1.65;
  margin-bottom: 36px;
  animation: fadeSlideUp .8s ease .2s both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
  animation: fadeSlideUp .8s ease .3s both;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--brand);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 32px;
  border-radius: 10px;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(255,255,255,.2);
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(255,255,255,.3);
}
.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,.8);
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 28px;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,.25);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.btn-hero-ghost:hover {
  border-color: rgba(255,255,255,.6);
  color: var(--white);
  background: rgba(255,255,255,.05);
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeSlideUp .8s ease .4s both;
}
.stat { display: flex; flex-direction: column; }
.stat strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}
.stat span { font-size: .78rem; color: rgba(255,255,255,.5); margin-top: 2px; }
.stat-divider {
  width: 1px; height: 36px;
  background: rgba(255,255,255,.15);
}
/* ── Hero Right / Card ── */
.hero-right {
  flex: 0 0 380px;
  animation: fadeSlideUp .8s ease .3s both;
}
.hero-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #28c840; }
.card-title {
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  margin-left: auto;
  letter-spacing: .05em;
}
.hero-card-body { padding: 24px; display: flex; flex-direction: column; gap: 16px; }
.metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.metric {
  display: flex;
  align-items: center;
  gap: 12px;
}
.metric i {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(34,211,200,.12);
  border-radius: 8px;
  color: var(--accent);
  font-size: .85rem;
}
.metric-info { display: flex; flex-direction: column; }
.metric-info span { font-size: .72rem; color: rgba(255,255,255,.45); }
.metric-info strong { font-size: .95rem; color: var(--white); font-weight: 600; }
.metric-badge {
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
}
.green-badge { background: rgba(40,200,100,.15); color: #4ade80; }
.yellow-badge { background: rgba(251,191,36,.15); color: #fbbf24; }
.red-badge { background: rgba(239,68,68,.15); color: #f87171; }
.progress-block { display: flex; flex-direction: column; gap: 8px; }
.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: .78rem;
  color: rgba(255,255,255,.55);
}
.progress-bar {
  height: 6px;
  background: rgba(255,255,255,.1);
  border-radius: 50px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #7efffa);
  border-radius: 50px;
  animation: growBar 1.5s ease 1s both;
}
@keyframes growBar {
  from { width: 0 !important; }
}
.ai-insight {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(34,211,200,.08);
  border: 1px solid rgba(34,211,200,.2);
  border-radius: 10px;
  padding: 12px 14px;
}
.ai-insight i { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.ai-insight p { font-size: .78rem; color: rgba(255,255,255,.65); line-height: 1.5; }

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.35);
  font-size: .75rem;
  animation: bounce 2s ease infinite;
  z-index: 1;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   SECTION SHARED STYLES
============================================================ */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
  padding: 0 16px;
}
.section-label {
  display: inline-block;
  color: var(--brand-light);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-label.light { color: var(--accent); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-desc {
  color: var(--grey-400);
  font-size: 1rem;
  line-height: 1.65;
}

/* ============================================================
   FEATURES SECTION
============================================================ */
.features-section {
  padding: 120px 32px;
  max-width: 1280px;
  margin: 0 auto;
}
.feature-block {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 96px;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s ease, transform .6s ease;
}
.feature-block.visible {
  opacity: 1;
  transform: translateY(0);
}
.feature-block:last-child { margin-bottom: 0; }
.feature-block-reverse { flex-direction: row-reverse; }
.feature-visual {
  flex: 0 0 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon-wrap {
  width: 140px; height: 140px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(4,60,76,.08) 0%, rgba(10,122,150,.12) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  color: var(--brand);
  border: 1.5px solid rgba(4,60,76,.1);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-icon-wrap:hover {
  transform: scale(1.06) rotate(-2deg);
  box-shadow: var(--shadow-md);
}
.feature-icon-wrap.teal { color: #0d9488; background: linear-gradient(135deg, rgba(13,148,136,.08), rgba(20,184,166,.14)); border-color: rgba(13,148,136,.15); }
.feature-icon-wrap.gold { color: #b45309; background: linear-gradient(135deg, rgba(180,83,9,.08), rgba(251,191,36,.12)); border-color: rgba(180,83,9,.12); }
.feature-icon-wrap.blue { color: #1e40af; background: linear-gradient(135deg, rgba(30,64,175,.08), rgba(59,130,246,.12)); border-color: rgba(30,64,175,.12); }
.feature-icon-wrap.purple { color: #6d28d9; background: linear-gradient(135deg, rgba(109,40,217,.08), rgba(167,139,250,.12)); border-color: rgba(109,40,217,.12); }
.feature-icon-wrap.coral { color: #be123c; background: linear-gradient(135deg, rgba(190,18,60,.08), rgba(251,113,133,.12)); border-color: rgba(190,18,60,.12); }
.feature-content { flex: 1; }
.feature-number {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--brand-light);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.feature-content h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.25;
}
.feature-content p {
  color: var(--grey-400);
  line-height: 1.75;
  font-size: .97rem;
  margin-bottom: 20px;
}
.feature-list { display: flex; flex-direction: column; gap: 8px; }
.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: var(--grey-700);
  font-weight: 500;
}
.feature-list i {
  color: var(--brand-light);
  font-size: .8rem;
  flex-shrink: 0;
}

/* ============================================================
   WHY ED-WATCH SECTION
============================================================ */
.why-section {
  background: var(--off-white);
  padding: 120px 32px;
}
.why-section .section-title { color: var(--text); }
.why-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-tile {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1.5px solid var(--grey-100);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease, box-shadow .3s ease, border-color .3s ease;
}
.why-tile.visible { opacity: 1; transform: translateY(0); }
.why-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(4,60,76,.15);
}
.why-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(4,60,76,.06), rgba(10,122,150,.1));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--brand);
  margin-bottom: 20px;
  border: 1.5px solid rgba(4,60,76,.08);
}
.why-tile h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}
.why-tile p {
  color: var(--grey-400);
  font-size: .88rem;
  line-height: 1.65;
}

/* ============================================================
   DEMO FORM SECTION
============================================================ */
.form-section {
  padding: 120px 32px;
  background: var(--brand);
  position: relative;
  overflow: hidden;
}
.form-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 80% 50%, rgba(34,211,200,.07) 0%, transparent 60%);
  pointer-events: none;
}
.form-container {
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  backdrop-filter: blur(8px);
  box-shadow: 0 24px 80px rgba(0,0,0,.3);
  position: relative;
  z-index: 1;
}
.form-left {
  flex: 0 0 360px;
  padding: 56px 48px;
  background: rgba(34,211,200,.05);
  border-right: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
}
.form-left h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}
.form-intro {
  color: rgba(255,255,255,.55);
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 32px;
}
.form-benefits { display: flex; flex-direction: column; gap: 14px; }
.form-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.7);
  font-size: .88rem;
}
.form-benefits i { color: var(--accent); font-size: .9rem; flex-shrink: 0; }
.form-right {
  flex: 1;
  padding: 48px 48px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 28px;
  margin-bottom: 28px;
}
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group-full { grid-column: 1 / -1; }
.form-group label {
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  letter-spacing: .03em;
  text-transform: uppercase;
}
.req { color: var(--accent); }
.form-group input,
.form-group select {
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: .92rem;
  color: var(--white);
  font-family: var(--font-body);
  outline: none;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}
.form-group select option { background: var(--brand-mid); color: var(--white); }
.form-group input::placeholder { color: rgba(255,255,255,.3); }
.form-group input:focus,
.form-group select:focus {
  border-color: var(--accent);
  background: rgba(34,211,200,.06);
  box-shadow: 0 0 0 3px rgba(34,211,200,.12);
}
.form-group input.error,
.form-group select.error {
  border-color: #f87171;
}
.field-error {
  font-size: .75rem;
  color: #f87171;
  min-height: 16px;
}
.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent);
  color: var(--brand);
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 28px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font-body);
  letter-spacing: .02em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  box-shadow: 0 4px 20px rgba(34,211,200,.3);
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(34,211,200,.45);
  background: #1cc9be;
}
.btn-submit:active { transform: translateY(0); }
.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(34,211,200,.1);
  border: 1px solid rgba(34,211,200,.3);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-top: 16px;
  color: var(--white);
  font-size: .9rem;
}
.form-success i { color: var(--accent); font-size: 1.2rem; }

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--grey-900);
  padding: 32px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}
.footer-copy {
  color: rgba(255,255,255,.35);
  font-size: .82rem;
  margin-left: auto;
}
.footer-copy a {
  color: var(--accent);
  transition: opacity .2s;
}
.footer-copy a:hover { opacity: .7; }
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  color: rgba(255,255,255,.4);
  font-size: .82rem;
  transition: color .2s;
}
.footer-links a:hover { color: var(--accent); }

/* ============================================================
   ANIMATIONS
============================================================ */
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
============================================================ */
@media (max-width: 1024px) {
  .hero-inner { flex-direction: column; align-items: flex-start; gap: 48px; }
  .hero-right { align-self: stretch; flex: unset; width: 100%; max-width: 420px; }
  .feature-block,
  .feature-block-reverse { flex-direction: column; gap: 36px; }
  .feature-visual { flex: unset; }
  .feature-icon-wrap { width: 110px; height: 110px; font-size: 2.4rem; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .form-container { flex-direction: column; }
  .form-left { flex: unset; border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); padding: 40px 36px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 640px)
============================================================ */
@media (max-width: 640px) {
  :root { --header-h: 64px; }
  .nav-links, .btn-nav-cta { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-h); left: 0; right: 0;
    background: var(--brand);
    padding: 16px 24px 24px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    gap: 4px;
  }
  .hamburger { display: flex; }
  .hero { padding: calc(var(--header-h) + 40px) 20px 72px; }
  .hero-heading { font-size: 2.2rem; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .hero-right { max-width: 100%; }
  .features-section { padding: 80px 20px; }
  .why-section { padding: 80px 20px; }
  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .form-section { padding: 80px 20px; }
  .form-left { padding: 32px 24px; }
  .form-right { padding: 32px 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-copy { margin-left: 0; }
  .section-header { margin-bottom: 48px; }
}
