/* ============================================================
   SmartSam v2 — style.css
   Reference: oncactus.com aesthetic
   ============================================================ */

:root {
  --blue:       #126cd3;
  --blue-hover: #0e56a8;
  --blue-light: #e8f1fd;
  --midnight:   #0a142c;
  --dark:       #111827;
  --gunpowder:  #4b5563;
  --muted:      #6b7280;
  --border:     #e5e7eb;
  --surface:    #f9fafb;
  --white:      #ffffff;
  --green:      #16a34a;
  --green-bg:   #dcfce7;
  --red:        #dc2626;
  --red-bg:     #fee2e2;
  /* Audit form variables */
  --sky:        #e0f2fe;
  --pale-blue:  #eff6ff;
  --text-muted: #9ca3af;
  --mine-shaft: #374151;
  --dark-silver:#cbd5e1;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

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

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1;
  transition: all 0.18s ease;
  font-family: inherit;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover { background: var(--blue-hover); border-color: var(--blue-hover); }
.btn-sm { padding: 9px 18px; font-size: 14px; border-radius: 10px; }
.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: 14px; }
.btn-full { width: 100%; justify-content: center; }

/* ---- Nav ---- */
.nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-left { display: flex; align-items: center; gap: 40px; }
.logo { display: flex; align-items: center; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gunpowder);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--dark); }
.nav-right { display: flex; align-items: center; gap: 12px; }
/* ---- Language Dropdown ---- */
.lang-dropdown {
  position: relative;
}
.lang-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  font-size: 18px;
  background: var(--white);
  border: 1.5px solid #c5cdd8;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  color: var(--dark);
  transition: border-color 0.15s;
  line-height: 1;
}
.lang-dropdown-btn:hover { border-color: var(--blue); }
.lang-arrow { font-size: 11px; color: var(--muted); transition: transform 0.2s; }
.lang-dropdown.open .lang-arrow { transform: rotate(180deg); }
.lang-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  overflow: hidden;
  min-width: 140px;
  z-index: 300;
}
.lang-dropdown.open .lang-dropdown-menu { display: block; }
.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gunpowder);
  transition: background 0.12s;
}
.lang-option:hover { background: var(--surface); }
.lang-option.active { color: var(--blue); font-weight: 700; background: var(--blue-light); }

/* ---- Hero ---- */
.hero {
  padding: 80px 0 72px;
  text-align: center;
  background: var(--white);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 32px;
  margin-bottom: 24px;
  letter-spacing: 0.2px;
}
.hero-badge span { width: 6px; height: 6px; background: var(--blue); border-radius: 50%; display: inline-block; }
.hero-headline {
  font-size: 58px;
  font-weight: 800;
  line-height: 1.08;
  color: var(--dark);
  margin-bottom: 22px;
  letter-spacing: -1.5px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.hero-headline .accent { color: var(--blue); }
.hero-sub {
  font-size: 19px;
  color: var(--gunpowder);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto 36px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-proof-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}
.hero-proof-item svg { color: var(--green); flex-shrink: 0; }

/* ---- Logo Marquee ---- */
.marquee-section {
  padding: 32px 0 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
  overflow: hidden;
}
.marquee-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.marquee-wrapper {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.marquee-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  color: var(--gunpowder);
  font-size: 15px;
  font-weight: 500;
  margin-right: 48px;
  opacity: 0.7;
}

/* ---- Section shared ---- */
.section { padding: 96px 0; }
.section-alt { background: var(--surface); }

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-headline {
  font-size: 40px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--gunpowder);
  line-height: 1.7;
  max-width: 560px;
}
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ---- How it works ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
}
.step-number {
  width: 40px; height: 40px;
  background: var(--blue);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 20px;
}
.step-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.step-card p {
  font-size: 15px;
  color: var(--gunpowder);
  line-height: 1.65;
}
.step-checks { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.step-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gunpowder);
}
.step-check::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---- Call transcript ---- */
.transcript-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.transcript-text .section-sub { max-width: 440px; }
.transcript-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.transcript-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.transcript-dot { width: 10px; height: 10px; border-radius: 50%; }
.transcript-dot.red    { background: #f87171; }
.transcript-dot.yellow { background: #fbbf24; }
.transcript-dot.green  { background: #34d399; }
.transcript-title { font-size: 13px; font-weight: 600; color: var(--gunpowder); margin-left: 6px; }
.transcript-body { padding: 24px; display: flex; flex-direction: column; gap: 16px; }
.msg { display: flex; flex-direction: column; gap: 4px; max-width: 80%; }
.msg.caller { align-self: flex-start; }
.msg.ai { align-self: flex-end; }
.msg-label { font-size: 11px; font-weight: 600; color: var(--muted); letter-spacing: 0.05em; text-transform: uppercase; }
.msg.ai .msg-label { text-align: right; }
.msg-bubble {
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.6;
}
.msg.caller .msg-bubble { background: var(--surface); color: var(--dark); border-bottom-left-radius: 4px; }
.msg.ai .msg-bubble { background: var(--blue); color: var(--white); border-bottom-right-radius: 4px; }
.transcript-footer {
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.transcript-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--green);
  font-weight: 600;
}
.transcript-status::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ---- Comparison ---- */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.compare-card {
  border-radius: 20px;
  padding: 36px 32px;
}
.compare-card.before { background: var(--surface); border: 1px solid var(--border); }
.compare-card.after  { background: var(--blue); }
.compare-card-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.compare-card.before .compare-card-label { color: var(--muted); }
.compare-card.after  .compare-card-label { color: rgba(255,255,255,0.7); }
.compare-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 24px;
}
.compare-card.before h3 { color: var(--dark); }
.compare-card.after  h3 { color: var(--white); }
.compare-list { display: flex; flex-direction: column; gap: 12px; }
.compare-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.5;
}
.compare-card.before .compare-item { color: var(--gunpowder); }
.compare-card.after  .compare-item { color: rgba(255,255,255,0.9); }
.compare-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }

/* ---- Industries ---- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.industry-badge {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--gunpowder);
  transition: all 0.15s;
}
.industry-badge:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }
.industry-badge .industry-icon { font-size: 24px; display: block; margin-bottom: 8px; }

/* ---- ROI Calculator ---- */
.roi-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px;
  max-width: 720px;
  margin: 0 auto;
}
.roi-sliders { display: flex; flex-direction: column; gap: 32px; margin-bottom: 36px; }
.roi-slider-group { display: flex; flex-direction: column; gap: 10px; }
.roi-slider-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.roi-slider-label span:first-child { font-size: 15px; font-weight: 600; color: var(--dark); }
.roi-slider-value {
  font-size: 18px;
  font-weight: 800;
  color: var(--blue);
}
input[type="range"] {
  width: 100%;
  height: 6px;
  border-radius: 6px;
  background: var(--border);
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding: 12px 0;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--blue);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(18,108,211,0.35);
  transition: box-shadow 0.15s;
}
input[type="range"]::-webkit-slider-thumb:hover {
  box-shadow: 0 2px 16px rgba(18,108,211,0.5);
}
input[type="range"]::-moz-range-track {
  height: 6px;
  border-radius: 6px;
  background: var(--border);
}
input[type="range"]::-moz-range-thumb {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--blue);
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(18,108,211,0.35);
}
@media (max-width: 767px) {
  input[type="range"] { padding: 16px 0; }
  input[type="range"]::-webkit-slider-thumb { width: 36px; height: 36px; }
  input[type="range"]::-moz-range-thumb { width: 36px; height: 36px; }
}
.roi-result {
  background: var(--blue-light);
  border-radius: 16px;
  padding: 28px 32px;
  text-align: center;
}
.roi-result-label { font-size: 14px; color: var(--gunpowder); margin-bottom: 6px; }
.roi-result-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -1px;
  margin-bottom: 6px;
}
.roi-result-sub { font-size: 13px; color: var(--muted); }

/* ---- FAQ ---- */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  text-align: left;
  transition: color 0.15s;
  font-family: inherit;
}
.faq-question:hover { color: var(--blue); }
.faq-icon { font-size: 20px; color: var(--blue); flex-shrink: 0; transition: transform 0.2s; line-height: 1; font-weight: 300; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { overflow: hidden; max-height: 0; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 20px; }
.faq-answer p { font-size: 16px; color: var(--gunpowder); line-height: 1.7; }

/* ---- CTA Banner ---- */
.cta-section {
  background: var(--dark);
  padding: 96px 0;
  text-align: center;
}
.cta-section h2 { font-size: 44px; font-weight: 800; color: var(--white); margin-bottom: 16px; letter-spacing: -1px; line-height: 1.15; }
.cta-section p { font-size: 18px; color: rgba(255,255,255,0.6); margin-bottom: 36px; }
.cta-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-top: 20px;
}

/* ---- Footer ---- */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.35); transition: color 0.15s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ---- Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 1s cubic-bezier(0.16,1,0.3,1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---- Responsive Logo ---- */
.logo-mobile { display: none; }
.logo-desktop { display: block; }

/* ---- Hamburger & Mobile ---- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: transform 0.2s, opacity 0.2s; }
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 80%; max-width: 320px;
  height: 100%;
  background: var(--white);
  z-index: 200;
  padding: 0 24px 32px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  box-shadow: -4px 0 24px rgba(0,0,0,0.12);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  border-bottom: 1px solid var(--border);
  margin: 0 -24px;
  padding: 0 24px;
  margin-bottom: 24px;
}
.mobile-close { background: none; border: none; font-size: 20px; cursor: pointer; color: var(--gunpowder); padding: 4px; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 0; }
.mobile-nav-links li a { display: block; padding: 14px 0; font-size: 16px; font-weight: 600; color: var(--dark); border-bottom: 1px solid #f1f3f5; }
.mobile-nav-links li a:hover { color: var(--blue); }
.mobile-cta { margin-top: 16px; }
.mobile-lang {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  margin-top: 8px;
}
.mobile-lang-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 10px;
}
.mobile-lang-options {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-lang-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--gunpowder);
  transition: background 0.12s;
}
.mobile-lang-opt:hover { background: var(--surface); }
.mobile-lang-opt.active { background: var(--blue-light); color: var(--blue); font-weight: 700; }
.mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 199; }
.mobile-overlay.open { display: block; }

/* ---- Exit Popup ---- */
.exit-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,20,44,0.7);
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.exit-overlay.active { display: flex; }
.exit-popup {
  background: var(--white);
  border-radius: 20px;
  padding: 48px 40px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.2);
  animation: popIn 0.3s cubic-bezier(0.16,1,0.3,1);
}
@keyframes popIn {
  from { opacity: 0; transform: scale(0.92) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.exit-close { position: absolute; top: 16px; right: 16px; background: none; border: none; font-size: 18px; color: #9ca3af; cursor: pointer; padding: 4px 8px; line-height: 1; }
.exit-close:hover { color: var(--dark); }
.exit-gif { width: 160px; margin: 0 auto 16px; border-radius: 10px; overflow: hidden; }
.exit-headline { font-size: 28px; font-weight: 800; color: var(--dark); margin-bottom: 14px; line-height: 1.2; }
.exit-body { font-size: 16px; color: var(--gunpowder); line-height: 1.7; margin-bottom: 28px; }
.exit-cta { width: 100%; justify-content: center; font-size: 16px; padding: 14px 24px; margin-bottom: 14px; }
.exit-dismiss { background: none; border: none; font-size: 13px; color: var(--muted); cursor: pointer; text-decoration: underline; display: block; width: 100%; text-align: center; font-family: inherit; }
.exit-dismiss:hover { color: var(--gunpowder); }

/* ---- CookieYes overrides ---- */
@media (max-width: 767px) {
  .cky-consent-container { width: 100% !important; left: 0 !important; right: 0 !important; border-radius: 16px 16px 0 0 !important; }
  .cky-btn { width: auto !important; min-width: unset !important; padding: 10px 20px !important; font-size: 14px !important; }
  .cky-btn-accept, .cky-btn-reject, .cky-btn-customize { width: auto !important; flex: 1 !important; }
  .cky-footer-shadow .cky-button-wrapper { display: flex !important; flex-wrap: wrap !important; gap: 8px !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 767px) {
  .hamburger { display: flex; }
  .nav-links, .nav-right .btn { display: none; }
  .logo-mobile { display: block; }
  .logo-desktop { display: none; }

  .hero { padding: 56px 0 48px; }
  .hero-headline { font-size: 36px; letter-spacing: -0.8px; }
  .hero-sub { font-size: 16px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 320px; justify-content: center; }
  .hero-proof { flex-direction: column; gap: 10px; }

  .section { padding: 64px 0; }
  .section-headline { font-size: 30px; }

  .steps-grid { grid-template-columns: 1fr; }
  .transcript-grid { grid-template-columns: 1fr; gap: 40px; }
  .compare-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .roi-box { padding: 28px 20px; }

  .cta-section h2 { font-size: 30px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero-headline { font-size: 44px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 374px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .exit-popup { padding: 36px 20px 28px; }
  .exit-headline { font-size: 22px; }
  .hero-headline { font-size: 30px; }
}
