/* =========================================================
   Big Betty's Junk Removal — Styles
   Palette pulled from the logo:
   - Navy      #0E1A3C
   - Royal     #2E6FC9
   - Sky        #62A6E4
   - Light sky #A8D0F2
   ========================================================= */

:root {
  --navy: #0E1A3C;
  --navy-700: #16264f;
  --navy-600: #1d3160;
  --royal: #2E6FC9;
  --royal-600: #2560b4;
  --royal-700: #1f4f94;
  --sky: #62A6E4;
  --sky-light: #A8D0F2;
  --ink: #172038;
  --muted: #5c6b86;
  --line: #e3e9f2;
  --bg: #ffffff;
  --bg-soft: #f4f8fd;
  --bg-softer: #eef4fb;
  --white: #ffffff;
  --success: #1f9d55;
  --danger: #d93b3b;

  --radius: 14px;
  --radius-lg: 22px;
  --radius-sm: 9px;
  --shadow-sm: 0 2px 8px rgba(14, 26, 60, 0.06);
  --shadow: 0 12px 30px rgba(14, 26, 60, 0.10);
  --shadow-lg: 0 24px 60px rgba(14, 26, 60, 0.18);

  --font-head: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --container: 1160px;
  --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 { margin: 0; line-height: 1.05; font-family: var(--font-head); font-weight: 800; letter-spacing: 0.01em; }
p { margin: 0 0 1rem; }
button { font-family: inherit; cursor: pointer; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.ico { width: 1.1em; height: 1.1em; fill: none; stroke: currentColor; stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round; flex: none; }

/* ---------- Buttons ---------- */
.btn {
  --btn-fs: 1rem;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  font-weight: 700; font-size: var(--btn-fs);
  padding: 0.85em 1.5em; border-radius: 999px; border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap; line-height: 1;
}
.btn:active { transform: translateY(1px); }
.btn .ico { width: 1.15em; height: 1.15em; }

.btn-primary { background: var(--royal); color: #fff; box-shadow: 0 8px 20px rgba(46,111,201,.35); }
.btn-primary:hover { background: var(--royal-600); box-shadow: 0 10px 26px rgba(46,111,201,.45); }

.btn-accent { background: var(--sky); color: var(--navy); box-shadow: 0 8px 20px rgba(98,166,228,.35); }
.btn-accent:hover { background: var(--sky-light); }

.btn-call { background: #16a34a; color: #fff; }
.btn-call:hover { background: #128a3f; }

.btn-outline { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.55); }
.btn-outline:hover { background: #fff; color: var(--navy); border-color: #fff; }

.btn-outline-dark { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: #fff; }

.btn-sm { --btn-fs: .9rem; padding: .6em 1em; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: var(--header-h); }
.brand { flex: none; }
.brand-logo { height: 54px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a { font-weight: 600; font-size: .95rem; color: var(--navy); position: relative; }
.main-nav a:not(.nav-cta):hover { color: var(--royal); }
.main-nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--royal); transition: width .2s ease;
}
.main-nav a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta { background: var(--royal); color: #fff !important; padding: .55em 1.1em; border-radius: 999px; }
.nav-cta:hover { background: var(--royal-600); }
.header-actions { display: flex; align-items: center; gap: 12px; flex: none; }

.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 10px; flex-direction: column; justify-content: space-between; }
.nav-toggle span { display: block; height: 3px; border-radius: 3px; background: var(--navy); transition: transform .25s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(98,166,228,.35), transparent 60%),
    radial-gradient(900px 600px at 0% 100%, rgba(46,111,201,.4), transparent 55%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-700) 55%, var(--royal-700) 130%);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 22px 22px; opacity: .5;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center;
  padding: 68px 20px 84px;
}
.eyebrow {
  display: inline-block; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  font-size: .72rem; color: var(--sky-light);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  padding: .5em .9em; border-radius: 999px; margin-bottom: 20px;
}
.hero-title { font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: .98; text-transform: uppercase; }
.hero-subtitle { font-size: clamp(1.25rem, 2.6vw, 1.7rem); color: var(--sky-light); margin: 18px 0 8px; font-weight: 700; }
.hero-lede { font-size: 1.08rem; color: rgba(255,255,255,.86); margin-bottom: 28px; max-width: 34ch; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px; font-size: .92rem; color: rgba(255,255,255,.85); }
.hero-trust li { display: flex; align-items: center; gap: .4em; }
.hero-trust .ico { color: var(--sky); }

.hero-card {
  background: rgba(255,255,255,.97); border-radius: var(--radius-lg); padding: 26px;
  box-shadow: var(--shadow-lg); text-align: center;
}
.hero-logo { width: 100%; max-width: 320px; margin: 0 auto 18px; }
.hero-steps-mini { display: grid; gap: 10px; }
.hero-steps-mini div { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--navy); background: var(--bg-soft); padding: 12px 16px; border-radius: 12px; }
.hero-steps-mini span { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--royal); color: #fff; font-family: var(--font-head); font-weight: 800; flex: none; }

/* ---------- Sections ---------- */
.section { padding: 76px 0; }
.section-head { margin-bottom: 40px; }
.section-head.center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.kicker { display: inline-block; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; font-size: .78rem; color: var(--royal); margin-bottom: 12px; }
.kicker.light { color: var(--sky-light); }
.section-head h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); text-transform: uppercase; color: var(--navy); }
.section-sub { color: var(--muted); font-size: 1.06rem; margin-top: 12px; }
.section-sub.light { color: rgba(255,255,255,.82); }

/* ---------- About ---------- */
.about { background: var(--bg-soft); }
.about-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.about-text { font-size: 1.22rem; color: var(--ink); line-height: 1.6; }
.about-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 34px; }
.about-badge { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 16px; box-shadow: var(--shadow-sm); }
.about-badge-num { display: block; font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--royal); text-transform: uppercase; }
.about-badge span:last-child { color: var(--muted); font-size: .92rem; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px 22px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step-num {
  display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(150deg, var(--royal), var(--sky)); color: #fff;
  font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; margin-bottom: 16px;
}
.step-body h3 { font-size: 1.3rem; color: var(--navy); text-transform: uppercase; margin-bottom: 8px; }
.step-body p { color: var(--muted); font-size: .97rem; margin: 0; }
.how-cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 40px; }

/* ---------- Services ---------- */
.services { background: var(--bg-soft); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.service-card {
  display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px 20px; font-weight: 600; color: var(--navy);
  box-shadow: var(--shadow-sm); transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.service-card:hover { transform: translateY(-3px); border-color: var(--sky); box-shadow: var(--shadow); }
.service-ico { width: 28px; height: 28px; color: var(--royal); flex: none; stroke-width: 1.9; }

/* ---------- Pricing ---------- */
.pricing-card {
  position: relative; overflow: hidden; color: #fff; border-radius: var(--radius-lg);
  padding: 56px 40px; text-align: center; box-shadow: var(--shadow-lg);
  background:
    radial-gradient(700px 400px at 90% -20%, rgba(98,166,228,.4), transparent 60%),
    linear-gradient(150deg, var(--navy), var(--royal-700));
}
.pricing-card h2 { color: #fff; }
.pricing-text { font-size: 1.18rem; color: rgba(255,255,255,.92); max-width: 640px; margin: 0 auto 24px; }
.pricing-points { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 28px; margin-bottom: 30px; }
.pricing-points li { display: flex; align-items: center; gap: .5em; font-weight: 600; }
.pricing-points .ico { color: var(--sky); }
.pricing-cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.gallery-item img { width: 100%; height: 240px; object-fit: cover; }
.gallery-item figcaption { padding: 14px 18px; font-weight: 600; color: var(--navy); }
.gallery-ph {
  height: 240px; display: grid; place-items: center; text-align: center;
  background: repeating-linear-gradient(135deg, var(--bg-softer), var(--bg-softer) 14px, #e6eef8 14px, #e6eef8 28px);
  color: var(--muted); font-weight: 600;
}
.gallery-ph span { background: #fff; padding: 8px 14px; border-radius: 999px; box-shadow: var(--shadow-sm); font-size: .9rem; }

/* ---------- Reviews ---------- */
.reviews { background: var(--bg-soft); }
.reviews-rating { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 14px; }
.stars { display: inline-flex; align-items: center; gap: 2px; color: #f5a623; }
.stars svg { width: 18px; height: 18px; fill: currentColor; stroke: currentColor; }
.reviews-rating-text { font-weight: 600; color: var(--navy); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow-sm); }
.review-card p { color: var(--ink); font-style: italic; margin: 12px 0; }
.review-card cite { color: var(--muted); font-style: normal; font-weight: 600; font-size: .92rem; }
.reviews-cta { text-align: center; margin-top: 34px; }

/* ---------- FAQ ---------- */
.faq-inner { max-width: 820px; }
.faq-list { display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 24px; font-weight: 700; color: var(--navy);
  font-size: 1.08rem; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-family: var(--font-head); font-size: 1.7rem; color: var(--royal); line-height: 1;
  transition: transform .2s ease; flex: none;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 24px 20px; color: var(--muted); }
.faq-answer p { margin: 0; }

/* ---------- Service area ---------- */
.service-area {
  color: #fff;
  background:
    radial-gradient(800px 400px at 15% -10%, rgba(98,166,228,.30), transparent 60%),
    linear-gradient(160deg, var(--navy), var(--navy-700));
}
.service-area h2 { color: #fff; }
.area-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; max-width: 900px; margin: 0 auto; }
.area-grid li {
  display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14); border-radius: 12px; padding: 14px 18px; font-weight: 600;
}
.area-ico { width: 18px; height: 18px; color: var(--sky-light); flex: none; }

/* ---------- Contact ---------- */
.contact-inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: 44px; align-items: start; }
.contact-info h2 { color: var(--navy); margin-bottom: 14px; }
.contact-info p { color: var(--muted); }
.contact-methods { display: grid; gap: 12px; margin-top: 24px; }
.contact-method {
  display: flex; align-items: center; gap: 14px; background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 16px 18px; color: var(--navy); transition: border-color .18s ease, transform .18s ease;
}
.contact-method:hover { border-color: var(--royal); transform: translateY(-2px); }
.contact-method strong { color: var(--navy); }
.contact-method-ico { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--royal); color: #fff; flex: none; }
.contact-method-ico .ico { width: 1.3em; height: 1.3em; }

.contact-form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px; box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 16px; display: flex; flex-direction: column; }
.form-field label { font-weight: 600; color: var(--navy); font-size: .92rem; margin-bottom: 7px; }
.req { color: var(--danger); }
.form-field input,
.form-field textarea {
  font-family: inherit; font-size: 1rem; color: var(--ink);
  border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: 12px 14px; background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease; width: 100%;
}
.form-field input:focus,
.form-field textarea:focus { outline: none; border-color: var(--royal); box-shadow: 0 0 0 3px rgba(46,111,201,.15); }
.form-field textarea { resize: vertical; }
.form-field input[type="file"] { padding: 10px 12px; background: var(--bg-soft); cursor: pointer; }
.field-hint { color: var(--muted); font-size: .82rem; margin-top: 6px; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

.form-status { margin: 14px 0 0; font-weight: 600; text-align: center; display: none; }
.form-status.show { display: block; }
.form-status.success { color: var(--success); }
.form-status.error { color: var(--danger); }

.btn-spinner {
  width: 18px; height: 18px; border-radius: 50%; border: 2.5px solid rgba(255,255,255,.5);
  border-top-color: #fff; display: none; animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.contact-form.is-sending .btn-spinner { display: inline-block; }
.contact-form.is-sending .btn-label { opacity: .8; }
.contact-form.is-sending #formSubmit { pointer-events: none; opacity: .9; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,.78); }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding: 56px 20px 40px; }
.footer-logo { width: 220px; background: #fff; border-radius: 14px; padding: 12px; margin-bottom: 16px; }
.footer-brand p { max-width: 34ch; }
.footer-contact { display: flex; flex-direction: column; gap: 6px; margin-top: 8px; }
.footer-contact a { color: var(--sky-light); font-weight: 600; }
.footer-contact a:hover { color: #fff; }
.footer-col h3 { font-size: 1.05rem; color: #fff; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 16px; }
.footer-col ul { display: grid; gap: 9px; }
.footer-col a:hover { color: #fff; }
.footer-areas { grid-template-columns: 1fr 1fr; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom-inner { display: flex; justify-content: space-between; gap: 12px; padding: 18px 20px; font-size: .85rem; }
.footer-bottom-inner p { margin: 0; }

/* ---------- Mobile sticky call/text bar ---------- */
.mobile-bar { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -6px 20px rgba(14,26,60,.12); }
.mobile-bar-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px; padding: 14px 6px; font-weight: 700; font-size: .9rem; }
.mobile-bar-btn.call { background: #16a34a; color: #fff; }
.mobile-bar-btn.text { background: var(--sky); color: var(--navy); }
.mobile-bar-btn.quote { background: var(--royal); color: #fff; }

/* =========================================================
   Responsive
   ========================================================= */
/* Collapse to the mobile menu as soon as the full nav no longer fits on one line */
@media (max-width: 1040px) {
  .main-nav {
    position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; align-items: stretch;
    gap: 0; background: #fff; border-bottom: 1px solid var(--line); padding: 8px 20px 20px;
    transform: translateY(-120%); transition: transform .28s ease; box-shadow: var(--shadow);
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: 14px 4px; border-bottom: 1px solid var(--line); }
  .main-nav a:last-child { border-bottom: 0; }
  .main-nav .nav-cta { text-align: center; margin-top: 12px; }
  .nav-toggle { display: flex; }
}

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 30px; padding-bottom: 60px; }
  .hero-card { max-width: 460px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .area-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-inner { grid-template-columns: 1fr; gap: 30px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .header-actions .btn-call { display: none; }

  .section { padding: 56px 0; }
  .about-badges { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid, .reviews-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .pricing-card { padding: 40px 24px; }

  .mobile-bar { display: flex; }
  body { padding-bottom: 60px; }
  .hero-buttons .btn { flex: 1 1 100%; }
}

@media (max-width: 400px) {
  .services-grid { grid-template-columns: 1fr; }
  .brand-logo { height: 46px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity .8s cubic-bezier(.22, 1, .36, 1),
    transform .8s cubic-bezier(.22, 1, .36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal.reveal-left { transform: translateX(-48px); }
.reveal.reveal-right { transform: translateX(48px); }
.reveal.reveal-zoom { transform: scale(.94); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Hero entrance (plays on load) ---------- */
.js .hero-content > * { opacity: 0; animation: heroReveal .85s cubic-bezier(.22, 1, .36, 1) both; }
.js .hero-content > *:nth-child(1) { animation-delay: .10s; }
.js .hero-content > *:nth-child(2) { animation-delay: .20s; }
.js .hero-content > *:nth-child(3) { animation-delay: .30s; }
.js .hero-content > *:nth-child(4) { animation-delay: .38s; }
.js .hero-content > *:nth-child(5) { animation-delay: .46s; }
.js .hero-content > *:nth-child(6) { animation-delay: .54s; }
.js .hero-card { opacity: 0; animation: heroReveal 1s cubic-bezier(.22, 1, .36, 1) .42s both; }

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}

