/* ============================================================
   OfficeCallback — design system
   White + teal/pink, bold sans headings, soft glows and rounded cards.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --bg:            #F7FBFA;
  --bg-soft:       #EEF7F5;
  --card:          #FFFFFF;
  --ink:           #12211F;
  --muted:         #5B726D;
  --accent:        #3FBFAE;
  --accent-deep:   #268F84;
  --accent-strong: #1B6B62;
  --accent-soft:   #DFF6F2;
  --line:          #DCEAE6;
  --ok:            #3FBFAE;
  --ok-soft:       #DFF6F2;
  --on-accent:     #FFFFFF;
  --waveform-bg:   #0E211F;

  --font-display: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: ui-monospace, "SF Mono", "Menlo", "Consolas", monospace;

  --maxw: 1120px;
  --radius: 22px;
  --radius-pill: 999px;
  --shadow: 0 8px 24px rgba(20, 60, 55, 0.07);
  --shadow-big: 0 20px 50px rgba(20, 60, 55, 0.16);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }

h1, h2, h3 { line-height: 1.15; margin: 0 0 0.5em; }
p { margin: 0 0 1em; }

a { color: var(--accent-deep); }
a:hover { color: var(--accent-strong); }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  background: var(--ink);
  color: var(--bg);
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }

/* ---------- Type helpers ---------- */
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-strong);
  background: var(--accent-soft);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(1.9rem, 4.5vw, 2.9rem);
  margin-bottom: 12px;
}

.section-lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 44px;
}

/* ---------- Buttons ---------- */
.button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.button:active { transform: translateY(1px); }
.button svg { width: 17px; height: 17px; flex: none; }

.button-primary {
  background: var(--accent);
  color: var(--on-accent);
}
.button-primary:hover { background: var(--accent-deep); transform: translateY(-1px); box-shadow: var(--shadow); }

.button-outline {
  border-color: var(--line);
  color: var(--ink);
  background: var(--card);
}
.button-outline:hover { border-color: var(--accent); color: var(--accent-deep); background: var(--accent-soft); }

/* The big tap-to-call button — the number is a headline, not a label */
.call-button {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 28px;
  border-radius: 20px;
  background: var(--accent);
  color: var(--on-accent);
  text-decoration: none;
  box-shadow: var(--shadow-big);
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.call-button:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
}
.call-button:active { transform: translateY(0); }

.call-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  flex: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  animation: ring-pulse 2.4s ease-out infinite;
}
.call-icon svg { width: 24px; height: 24px; }

@keyframes ring-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.45); }
  70%  { box-shadow: 0 0 0 14px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.call-number {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: clamp(1.45rem, 4.5vw, 2.1rem);
  white-space: nowrap;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: box-shadow 0.2s ease;
}
.nav.scrolled { box-shadow: 0 2px 18px rgba(30, 41, 59, 0.08); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 44px;
  height: 44px;
  flex: none;
}

.nav-cta { padding: 9px 18px; font-size: 0.95rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(48px, 7vw, 88px) 0 0;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -10% -10% auto -10%;
  height: 600px;
  background: radial-gradient(520px 320px at 12% 5%, rgba(63, 191, 174, 0.14), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: clamp(1.95rem, 9vw, 4rem);
  margin-bottom: 18px;
}

.hero .lead {
  font-size: clamp(1.1rem, 2.2vw, 1.25rem);
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 30px;
}

.demo-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 26px 20px;
  max-width: 560px;
}

.demo-kicker {
  font-size: 1.02rem;
  margin-bottom: 16px;
}
.demo-kicker strong { color: var(--accent-strong); }

.demo-note {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 16px 0 12px;
}

.copy-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px dashed var(--line);
  padding-top: 14px;
}

.copy-button {
  border: 1.5px solid var(--line);
  background: transparent;
  color: var(--accent-deep);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  cursor: pointer;
}
.copy-button:hover { background: var(--accent-soft); border-color: var(--accent-soft); }

.copy-status {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ok);
}

.copy-hint {
  font-size: 0.88rem;
  color: var(--muted);
}

.hero-actions { margin-top: 24px; }

/* Live call panel */
.hero-visual { display: flex; justify-content: center; }

.call-panel {
  width: min(400px, 100%);
  background: var(--waveform-bg);
  border-radius: 28px;
  padding: 26px 24px;
  box-shadow: 0 20px 50px rgba(20, 60, 55, 0.2);
}

.call-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 22px;
}
.call-panel-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
}
.call-panel-badge {
  background: var(--accent);
  color: var(--waveform-bg);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-out infinite;
}

.waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 88px;
  margin-bottom: 22px;
}
.wave-bar {
  width: 4px;
  height: var(--h);
  border-radius: 3px;
  background: var(--accent);
  transform-origin: center;
  animation: wave-bump var(--dur) ease-in-out var(--delay) infinite;
}

.call-panel-transcript {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 16px 18px;
}
.transcript-label {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.transcript-line { margin: 0 0 8px; font-size: 0.92rem; }
.transcript-line:last-child { margin-bottom: 0; }
.transcript-them { color: #fff; }
.transcript-us { color: var(--accent); }

.call-panel-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.76rem;
  padding: 14px 4px 0;
}
.call-panel-footer svg { width: 14px; height: 14px; flex: none; }

@keyframes wave-bump {
  0%, 100% { transform: scaleY(0.25); }
  50% { transform: scaleY(1); }
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(63, 191, 174, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(63, 191, 174, 0); }
  100% { box-shadow: 0 0 0 0 rgba(63, 191, 174, 0); }
}

/* Trust strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 36px;
  justify-content: center;
  margin-top: clamp(40px, 6vw, 64px);
  padding-top: 22px;
  padding-bottom: 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--muted);
}
.trust-strip span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* ---------- Sections (shared rhythm) ---------- */
.pain, .how, .features, .calculator, .faq, .cta {
  padding: clamp(64px, 9vw, 110px) 0;
}

/* ---------- Pain ---------- */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.pain-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 26px 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pain-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-big); }
.pain-card h3 {
  font-size: 1.13rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.pain-card p { color: var(--muted); margin-bottom: 0; }

/* ---------- Demo band ---------- */
.demo-band { padding: clamp(48px, 6vw, 72px) 0; }

.demo-band-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: linear-gradient(135deg, #EEFBF9, #F7FBFA);
  padding: clamp(40px, 6vw, 64px);
}
.demo-band-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(360px 240px at 92% 8%, rgba(63, 191, 174, 0.18), transparent 70%);
  pointer-events: none;
}

.demo-band-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 5vw, 60px);
}

.demo-band h2 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(1.9rem, 4.5vw, 2.9rem);
  margin-bottom: 12px;
}
.demo-band p {
  font-size: clamp(1.02rem, 2vw, 1.15rem);
  max-width: 520px;
  color: var(--muted);
  margin-bottom: 28px;
}

.demo-band-badge {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  box-shadow: 0 8px 24px rgba(20, 60, 55, 0.08);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--accent-strong);
}
.demo-band-badge .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}

/* ---------- How it works ---------- */
.how { background: var(--bg-soft); }

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  counter-reset: step;
}

.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow-big); }
.step-num {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.12rem; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--muted); margin-bottom: 0; font-size: 0.98rem; }

/* ---------- Features ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-big); }
.feature-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  margin-bottom: 15px;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-card h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 7px; }
.feature-card p { color: var(--muted); margin-bottom: 0; font-size: 0.96rem; }

/* ---------- Missed-call calculator ---------- */
.calculator { background: var(--bg-soft); text-align: center; }
.calculator .section-title { margin-bottom: 44px; }

.calc-card {
  max-width: 920px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(20, 60, 55, 0.1);
  padding: clamp(28px, 4vw, 48px);
  text-align: left;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}

.calc-sliders {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.calc-field-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
.calc-field-head label { font-weight: 700; font-size: 0.98rem; }
.calc-value { font-weight: 800; color: var(--accent); font-size: 1.15rem; }

.calc-field input[type="range"] {
  width: 100%;
  height: 6px;
  accent-color: var(--accent);
}

.calc-result {
  background: #EEFBF9;
  border-radius: 20px;
  padding: clamp(24px, 3vw, 34px);
  text-align: center;
}
.calc-result-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 10px;
}
.calc-result-monthly {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: var(--accent);
  margin: 0 0 4px;
}
.calc-result-annual {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0 0 22px;
}
.calc-result-note {
  font-size: 0.95rem;
  color: var(--ink);
  margin: 0;
}

.math-closer {
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  font-weight: 700;
  max-width: 560px;
  margin: 36px auto 0;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 720px;
}

.faq-list details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 1.03rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "";
  flex: none;
  width: 11px;
  height: 11px;
  border-right: 2.5px solid var(--accent-deep);
  border-bottom: 2.5px solid var(--accent-deep);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
.faq-list details[open] summary::after { transform: rotate(-135deg); }

.faq-list details p {
  padding: 0 22px 20px;
  margin: 0;
  color: var(--muted);
}

/* ---------- Final CTA ---------- */
.cta { text-align: center; }
.cta-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: linear-gradient(135deg, #EEFBF9, #F7FBFA);
  padding: clamp(48px, 7vw, 76px) clamp(24px, 5vw, 48px);
}
.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(360px 240px at 8% 12%, rgba(63, 191, 174, 0.18), transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; max-width: 760px; margin: 0 auto; }

.cta h2 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(2rem, 5vw, 3.1rem);
  margin-bottom: 16px;
}
.cta p {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 34px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 22px;
}

.cta-fixed {
  width: 260px;
  height: 56px;
  justify-content: center;
  font-size: 1.05rem;
}
.cta-actions .button-primary { box-shadow: var(--shadow-big); }

.cta-note {
  font-size: 0.92rem !important;
  color: var(--muted);
  margin-bottom: 0 !important;
}

/* ---------- Footer ---------- */
.footer {
  position: relative;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}
.footer-links a:hover { color: var(--accent-deep); }

.footer-legal {
  color: var(--muted);
  opacity: 0.75;
  font-size: 0.82rem;
  margin: 0;
}

/* ---------- Legal pages ---------- */
.legal {
  padding: clamp(64px, 9vw, 110px) 0;
}
.legal-content {
  max-width: 720px;
}
.legal-content .section-title { margin-bottom: 6px; }
.legal-content .section-lead {
  max-width: none;
  margin-bottom: 40px;
}
.legal-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 2em 0 0.6em;
}
.legal-content p,
.legal-content li {
  color: var(--muted);
}
.legal-content ul {
  margin: 0 0 1em;
  padding-left: 1.2em;
}
.legal-content li { margin-bottom: 0.5em; }
.legal-content li:last-child { margin-bottom: 0; }
.legal-content strong { color: var(--ink); }
.legal-entity {
  margin-top: 2.5em;
  padding-top: 1.2em;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  opacity: 0.8;
}

/* ---------- Scroll reveal (JS-gated so no-JS never hides content) ---------- */
html.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
html.js .reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-inner { grid-template-columns: minmax(0, 1fr); }
  .hero-visual { order: 2; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: 1fr; }
  .demo-band-inner { flex-direction: column; text-align: center; }
  .demo-band p { margin-left: auto; margin-right: auto; }
  .calc-card { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 720px) {
  .nav-cta { padding: 9px 14px; font-size: 0.9rem; }
  .nav-cta .nav-cta-long { display: none; }
  .brand { font-size: 1.05rem; }
  .nav-inner { gap: 10px; }

  .pain-grid,
  .feature-grid { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
  .nav-cta .nav-cta-text { display: none; }
  .nav-cta { padding: 10px 12px; }
}

@media (max-width: 480px) {
  .call-button {
    width: 100%;
    justify-content: center;
    padding: 15px 18px;
    gap: 12px;
  }
  .call-icon { width: 44px; height: 44px; }
  .demo-card { padding: 20px 18px 16px; }
  .copy-hint { display: none; }
  .cta-fixed { width: 100%; max-width: 260px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .call-icon, .wave-bar, .pulse-dot { animation: none; }
  html.js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .call-button, .button, .pain-card, .step, .feature-card { transition: none; }
}
