/* ===== ROOF REMAKE — Final Production Styles ===== */

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

:root {
  --navy: #1B365D;
  --navy-dark: #122544;
  --navy-light: #244170;
  --terracotta: #E8713A;
  --terracotta-hover: #D4622E;
  --terracotta-glow: rgba(232,113,58,0.15);
  --bg-warm: #F7F5F2;
  --bg-cream: #FBF9F7;
  --white: #FFFFFF;
  --text: #2D2D2D;
  --text-light: #6B7280;
  --text-muted: #9CA3AF;
  --teal: #4A90A4;
  --teal-light: rgba(74,144,164,0.08);
  --green: #2E7D5B;
  --border: #E5E7EB;
  --shadow-sm: 0 1px 3px rgba(27,54,93,0.06);
  --shadow: 0 4px 12px rgba(27,54,93,0.08);
  --shadow-lg: 0 8px 32px rgba(27,54,93,0.12);
  --shadow-xl: 0 16px 48px rgba(27,54,93,0.16);
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --max-width: 1120px;
  --header-h: 72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

/* --- Typography (DM Serif Display for headings) --- */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.15; }
h1, h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  color: var(--navy);
}
h3, h4 {
  font-family: 'Roboto', sans-serif;
  color: var(--navy);
}
h1 { font-size: 3rem; letter-spacing: -0.01em; font-weight: 400; }
h2 { font-size: 2.25rem; letter-spacing: -0.005em; margin-bottom: 16px; font-weight: 400; }
h3 { font-size: 1.125rem; margin-bottom: 8px; }
p { margin-bottom: 12px; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 100px;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  position: relative;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(232,113,58,0.3);
}
.btn-primary:hover {
  background: var(--terracotta-hover);
  box-shadow: 0 6px 24px rgba(232,113,58,0.4);
  transform: translateY(-1px);
}

.btn-header {
  padding: 10px 24px;
  font-size: 0.9375rem;
  border-radius: 100px;
}

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: var(--header-h);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 1px 12px rgba(27,54,93,0.08); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Serif Display', Georgia, serif;
}
.logo span { color: var(--terracotta); }
.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon svg { width: 18px; height: 18px; color: var(--terracotta); }

/* --- Hero with background image --- */
.hero {
  position: relative;
  padding: 80px 0 96px;
  background: var(--navy-dark);
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* Dark overlay for text readability */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(18,37,68,0.92) 0%,
    rgba(27,54,93,0.85) 40%,
    rgba(27,54,93,0.75) 100%
  );
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 50% 60%, 0 0);
  z-index: 2;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(60deg, rgba(255,255,255,0.03) 25%, transparent 25%),
    linear-gradient(-60deg, rgba(255,255,255,0.03) 25%, transparent 25%);
  background-size: 80px 140px;
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 3;
}

.hero-copy h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 3rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.hero-sub {
  font-size: 1.1875rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
  line-height: 1.6;
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  backdrop-filter: blur(4px);
}

.trust-pill svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--terracotta); }

/* Form Card */
.form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl), 0 0 60px rgba(0,0,0,0.1);
  padding: 36px;
  position: relative;
}

.form-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--terracotta), transparent 50%);
  border-radius: calc(var(--radius-xl) + 2px);
  z-index: -1;
  opacity: 0.5;
}

.form-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.form-card-badge {
  width: 40px;
  height: 40px;
  background: var(--terracotta-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.form-card-badge svg { width: 20px; height: 20px; color: var(--terracotta); }

.form-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
  font-family: 'DM Serif Display', Georgia, serif;
}

.form-card-sub {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.form-placeholder {
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  color: var(--text-muted);
  font-size: 0.875rem;
  background: var(--bg-cream);
}

/* --- Sections shared --- */
.section-label {
  text-align: center;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--terracotta);
  margin-bottom: 12px;
  font-family: 'Roboto', sans-serif;
}

.section-title {
  text-align: center;
  margin-bottom: 20px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.0625rem;
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.6;
}

/* --- How It Works --- */
.how-it-works {
  padding: 96px 0 88px;
  background: var(--white);
  position: relative;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 50px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--terracotta), var(--teal));
  opacity: 0.2;
  z-index: 0;
}

.step {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius-xl);
  position: relative;
  z-index: 1;
  background: var(--white);
  transition: transform 0.2s;
}
.step:hover { transform: translateY(-4px); }

.step-illustration {
  margin-bottom: 20px;
}
.step-illustration svg {
  width: 100px;
  height: 100px;
  margin: 0 auto;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(27,54,93,0.2);
}

.step h3 { color: var(--navy); font-size: 1.125rem; margin-bottom: 10px; }
.step p { color: var(--text-light); font-size: 0.9375rem; line-height: 1.6; margin-bottom: 0; }

/* --- Benefits --- */
.benefits {
  padding: 96px 0;
  background: var(--bg-warm);
  position: relative;
}

.benefits::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.25s;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.benefit-card:hover {
  box-shadow: var(--shadow);
  border-color: transparent;
  transform: translateY(-2px);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: transparent;
}

.benefit-icon svg { width: 48px; height: 48px; }

.benefit-text h3 { font-size: 1.0625rem; margin-bottom: 6px; }
.benefit-text p { color: var(--text-light); font-size: 0.9375rem; margin-bottom: 0; line-height: 1.6; }

/* --- Trust Bar --- */
.trust-bar {
  padding: 72px 0;
  background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1920&q=80&auto=format') center 30% / cover no-repeat;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

/* Dark overlay for readability */
.trust-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18,37,68,0.88) 0%, rgba(27,54,93,0.82) 100%);
  z-index: 0;
}

.trust-bar .container { position: relative; z-index: 1; }

.trust-bar::before {
  content: '';
  position: absolute;
  z-index: 1;
  top: -50%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232,113,58,0.1), transparent 70%);
  pointer-events: none;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.trust-stat {
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trust-stat-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
}
.trust-stat-icon svg { width: 100%; height: 100%; }

.trust-stat-number {
  font-size: 2.75rem;
  font-weight: 400;
  font-family: 'DM Serif Display', Georgia, serif;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--white), rgba(255,255,255,0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trust-stat-label {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
}

.trust-stat-divider {
  width: 40px;
  height: 3px;
  background: var(--terracotta);
  border-radius: 2px;
  margin: 12px auto 0;
  opacity: 0.6;
}

/* --- Testimonials --- */
.testimonials {
  padding: 96px 0;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-cream);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.testimonial-stars svg { width: 18px; height: 18px; }

.testimonial-text {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-card:nth-child(1) .testimonial-avatar { background: var(--navy); }
.testimonial-card:nth-child(2) .testimonial-avatar { background: var(--teal); }
.testimonial-card:nth-child(3) .testimonial-avatar { background: var(--green); }

.testimonial-name {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9375rem;
}

.testimonial-location {
  font-size: 0.8125rem;
  color: var(--text-light);
}

.testimonial-quote-mark {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 3.5rem;
  font-family: 'DM Serif Display', Georgia, serif;
  color: var(--terracotta);
  opacity: 0.15;
  line-height: 1;
}

/* --- FAQ --- */
.faq {
  padding: 96px 0;
  background: var(--bg-warm);
}

.faq-list {
  max-width: 680px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--white);
}

.faq-item:hover { border-color: rgba(27,54,93,0.15); }
.faq-item.open { border-color: var(--terracotta); box-shadow: 0 2px 12px var(--terracotta-glow); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  gap: 16px;
}

.faq-chevron {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s;
}
.faq-chevron svg { width: 16px; height: 16px; color: var(--text-light); transition: transform 0.25s; }
.faq-item.open .faq-chevron { background: var(--terracotta-glow); }
.faq-item.open .faq-chevron svg { transform: rotate(180deg); color: var(--terracotta); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 24px 24px;
}

.faq-answer p {
  color: var(--text-light);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* --- Secondary CTA with urgency --- */
.cta-section {
  padding: 88px 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,113,58,0.1), transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-illustration {
  margin-bottom: 28px;
}
.cta-illustration svg {
  width: 200px;
  height: 140px;
  margin: 0 auto;
}

.cta-section h2 {
  margin-bottom: 12px;
  font-size: 2.25rem;
  color: var(--white);
}

.cta-section p {
  color: rgba(255,255,255,0.7);
  font-size: 1.125rem;
  margin-bottom: 12px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-urgency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(232,113,58,0.15);
  border: 1px solid rgba(232,113,58,0.3);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--terracotta);
  margin-bottom: 28px;
}

.cta-urgency svg { width: 16px; height: 16px; flex-shrink: 0; }

/* --- Mobile Sticky CTA Bar --- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--white);
  padding: 12px 16px;
  box-shadow: 0 -4px 20px rgba(27,54,93,0.12);
  border-top: 1px solid var(--border);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
}

.sticky-cta-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}
.sticky-cta-text span {
  display: block;
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--text-light);
}

.sticky-cta .btn {
  padding: 12px 24px;
  font-size: 0.875rem;
  white-space: nowrap;
  flex-shrink: 0;
}

/* --- About Block --- */
.about-block {
  padding: 56px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.about-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.about-inner h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.about-inner p {
  color: var(--text-light);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.about-updated {
  font-size: 0.8125rem !important;
  color: var(--text-muted) !important;
  margin-top: 16px;
}

.faq-answer a {
  color: var(--teal);
  text-decoration: underline;
  text-decoration-color: rgba(74,144,164,0.3);
  text-underline-offset: 2px;
}
.faq-answer a:hover { text-decoration-color: var(--teal); }

/* --- Footer --- */
.site-footer {
  padding: 56px 0 36px;
  background: var(--navy-dark);
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.footer-logo {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
  font-family: 'DM Serif Display', Georgia, serif;
}
.footer-logo span { color: var(--terracotta); }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}
.footer-links a {
  transition: color 0.2s;
  font-weight: 400;
}
.footer-links a:hover { color: var(--white); }

.footer-disclaimer {
  max-width: 600px;
  text-align: center;
  font-size: 0.8125rem;
  line-height: 1.6;
  opacity: 0.5;
}

.footer-copy {
  font-size: 0.8125rem;
  opacity: 0.4;
}

/* --- Legal Pages --- */
.legal-page {
  padding: 48px 0 96px;
}

.legal-page h1 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.legal-page .last-updated {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.legal-content {
  max-width: 720px;
}

.legal-content h2 {
  font-size: 1.25rem;
  margin-top: 36px;
  margin-bottom: 12px;
}

.legal-content h3 {
  font-size: 1.0625rem;
  margin-top: 24px;
  margin-bottom: 8px;
}

.legal-content p,
.legal-content li {
  color: var(--text-light);
  font-size: 0.9375rem;
  line-height: 1.75;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 12px;
}

.legal-content a {
  color: var(--teal);
  text-decoration: underline;
  text-decoration-color: rgba(74,144,164,0.3);
  text-underline-offset: 2px;
  transition: text-decoration-color 0.2s;
}
.legal-content a:hover { text-decoration-color: var(--teal); }

/* ===== Responsive ===== */
@media (max-width: 1023px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-copy { text-align: center; }
  .trust-pills { justify-content: center; }
  h1 { font-size: 2.5rem; }
  .hero-copy h1 { font-size: 2.5rem; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid .testimonial-card:nth-child(3) { grid-column: 1 / -1; max-width: 480px; margin: 0 auto; }
}

@media (max-width: 767px) {
  :root { --header-h: 60px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.625rem; }
  .hero-copy h1 { font-size: 2rem; }

  .hero { padding: 48px 0 72px; }
  .hero::after { height: 40px; }
  .how-it-works, .benefits, .faq { padding: 64px 0; }
  .cta-section { padding: 64px 0; }
  .testimonials { padding: 64px 0; }

  .steps-grid { grid-template-columns: 1fr; gap: 12px; }
  .steps-grid::before { display: none; }
  .step { padding: 24px 20px; text-align: center; }
  .step:hover { transform: none; }
  .step-illustration svg { width: 80px; height: 80px; }
  .step-number { width: 32px; height: 32px; font-size: 0.8125rem; }

  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-card { padding: 24px; }

  .trust-stats { grid-template-columns: 1fr; gap: 16px; }
  .trust-stat { padding: 16px; }
  .trust-stat-number { font-size: 2rem; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid .testimonial-card:nth-child(3) { max-width: none; }
  .testimonial-card { padding: 24px; }

  .form-card { padding: 24px; }
  .form-card::before { display: none; }

  .faq-question { padding: 16px 20px; font-size: 0.9375rem; }
  .faq-answer-inner { padding: 0 20px 20px; }

  .footer-links { flex-direction: column; align-items: center; gap: 14px; }

  .cta-section h2 { font-size: 1.75rem; }

  /* Show sticky CTA on mobile */
  .sticky-cta { display: block; }
  /* Add bottom padding to body so footer isn't hidden behind sticky bar */
  body { padding-bottom: 72px; }
}
