:root {
  --bg: #f6fbfc;
  --ink: #101828;
  --muted: #475467;
  --brand: #e80909;
  --brand-dark: #b50707;
  --teal: #1fa7a1;
  --card: #ffffff;
  --line: #d9e6ee;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

a {
  color: inherit;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.narrow {
  width: min(700px, 92%);
}

.site-header {
  background: #ffffffdd;
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 68px;
  flex-wrap: wrap;
}

.logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.logo-image {
  display: block;
  width: 160px;
  height: auto;
}

.site-nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}

.site-nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-cta .btn {
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease;
}

.nav-toggle:hover {
  border-color: #cfdce5;
}

.nav-toggle:focus-visible {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(232, 9, 9, 0.16);
}

.nav-toggle-icon {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 20px;
  height: 20px;
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section {
  padding: 4.5rem 0;
}

#services.section {
  padding-top: 0;
}

.section-top {
  padding-top: 3.5rem;
}

.section-muted {
  background: #edf5f8;
}

.hero {
  padding: 4.5rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.hero h1 {
  margin: 0.3rem 0 1rem;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.1;
}

.hero-copy {
  color: var(--muted);
  max-width: 62ch;
}

.hero-note {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-cta-note {
  color: var(--ink);
}

.contact-cta-note .is-brand {
  color: var(--brand);
  font-weight: 600;
}

.contact-cta-note-on-dark {
  color: rgba(255, 255, 255, 0.92);
}

.hero-art img,
.hero-art-svg {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #f4fafc 0%, #ffffff 100%);
}

.hero-art-svg {
  display: block;
  height: auto;
  font-family: "Inter", sans-serif;
}

.hero-flow-inbound-bg {
  fill: #ffffff;
  stroke: var(--teal);
  stroke-width: 1.6;
}

.hero-flow-inbound-icon path {
  fill: var(--teal);
}

.hero-flow-pulse {
  fill: none;
  stroke: var(--teal);
  stroke-width: 2;
  opacity: 0;
  animation: callPulse 2.6s ease-in-out infinite;
}

.hero-flow-link {
  fill: none;
  stroke: var(--teal);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 6 7;
  animation: flowDash 3.2s linear infinite;
}

.hero-flow-link-out-1 { animation-delay: 0.3s; }
.hero-flow-link-out-2 { animation-delay: 0.6s; }
.hero-flow-link-out-3 { animation-delay: 0.9s; }

.hero-flow-agent {
  fill: var(--brand);
  stroke: var(--brand);
  stroke-width: 1.4;
  transform-box: fill-box;
  transform-origin: center;
  animation: nodeBreathe 3.2s ease-in-out infinite;
}

.hero-flow-agent-icon {
  stroke: #ffffff;
  stroke-width: 3;
  stroke-linecap: round;
  fill: none;
}

.hero-flow-agent-cup {
  fill: #ffffff;
}

.hero-flow-agent-mic {
  fill: #ffffff;
}

.hero-flow-247-pill {
  fill: #ffffff;
  stroke: var(--brand);
  stroke-width: 1.4;
}

.hero-flow-247-text {
  fill: var(--brand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-anchor: middle;
  dominant-baseline: middle;
}

.hero-flow-pill-dispatch {
  fill: var(--teal);
}

.hero-flow-pill-faq {
  fill: #ffffff;
  stroke: var(--line);
  stroke-width: 1.2;
}

.hero-flow-pill-escalation {
  fill: var(--brand);
}

.hero-flow-pill-text {
  font-size: 12px;
  font-weight: 600;
  text-anchor: middle;
  dominant-baseline: middle;
}

.hero-flow-pill-text-on-color {
  fill: #ffffff;
}

.hero-flow-pill-text-neutral {
  fill: var(--ink);
}

.eyebrow {
  color: var(--teal);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
}

h2, .section-title {
  margin: 0 0 1rem;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.section-intro {
  color: var(--muted);
  max-width: 68ch;
}

.language-switch-flags {
  margin: 0 0 0.8rem;
  display: flex;
  justify-content: center;
}

.language-switch-flags img {
  display: block;
  max-width: min(120px, 36vw);
  width: 100%;
  height: auto;
}

.language-support-section .container {
  padding-inline: clamp(0.75rem, 2.5vw, 1.5rem);
}

.cards {
  display: grid;
  gap: 1rem;
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.2rem;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
}

.card p {
  color: var(--muted);
  margin: 0;
}

.service-card {
  overflow: hidden;
}

.service-graphic {
  margin-bottom: 0.95rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(180deg, #fff, #f8fbfe);
  padding: 0.35rem 0.55rem;
}

.service-graphic svg {
  display: block;
  width: 100%;
  height: 96px;
}

.service-graphic-voice .sg-phone-badge-caller {
  fill: #fff;
  stroke: var(--teal);
  stroke-width: 2.2;
}

.service-graphic-voice .sg-phone-badge-ai {
  fill: var(--brand);
  stroke: var(--brand);
  stroke-width: 2.2;
}

.service-graphic-voice .sg-phone-icon-caller path {
  fill: var(--teal);
}

.service-graphic-voice .sg-phone-icon-ai path {
  fill: #fff;
}

.service-graphic-voice .sg-pulse-ring {
  fill: none;
  stroke-width: 2;
  opacity: 0;
}

.service-graphic-voice .sg-pulse-caller {
  stroke: var(--teal);
  animation: callPulse 2.4s ease-in-out infinite;
}

.service-graphic-voice .sg-pulse-ai {
  stroke: var(--brand);
  animation: callPulse 2.4s ease-in-out infinite 1.2s;
}

.service-graphic-voice .sg-conv-wave {
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-dasharray: 6 7;
  animation: flowDash 3.2s linear infinite;
}

.service-graphic-voice .sg-conv-wave-1 {
  stroke: var(--teal);
}

.service-graphic-voice .sg-conv-wave-2 {
  stroke: var(--brand);
  animation-direction: reverse;
}

.service-graphic-workflow .sg-node {
  fill: #fff;
  stroke: var(--brand);
  stroke-width: 2;
}

.service-graphic-workflow .sg-link {
  fill: none;
  stroke: var(--teal);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-dasharray: 6 7;
  animation: flowDash 3.2s linear infinite;
}

.service-graphic-workflow .sg-link-b,
.service-graphic-workflow .sg-link-d {
  animation-delay: 0.45s;
}

.service-graphic-workflow .sg-node-1,
.service-graphic-workflow .sg-node-3 {
  animation: nodeBreathe 2.6s ease-in-out infinite;
}

.service-graphic-workflow .sg-node-2,
.service-graphic-workflow .sg-node-4 {
  animation: nodeBreathe 2.6s ease-in-out infinite 0.5s;
}

.service-graphic-knowledge .sg-sheet {
  fill: #fff;
  stroke: var(--line);
  stroke-width: 1.6;
}

.service-graphic-knowledge .sg-line {
  fill: #dbe8f2;
}

.service-graphic-knowledge .sg-scan {
  fill: var(--brand);
  opacity: 0.72;
  animation: scanLine 2.8s ease-in-out infinite;
}

@keyframes callPulse {
  0% {
    opacity: 0.6;
    stroke-width: 2;
  }
  100% {
    opacity: 0;
    stroke-width: 0.6;
  }
}

@keyframes flowDash {
  to {
    stroke-dashoffset: -26;
  }
}

@keyframes nodeBreathe {
  0%,
  100% {
    transform: scale(1);
    transform-origin: center;
  }
  50% {
    transform: scale(1.08);
    transform-origin: center;
  }
}

@keyframes scanLine {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(46px);
  }
  100% {
    transform: translateY(0);
  }
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.step {
  display: flex;
  gap: 0.75rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
}

.step span {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.cta-band {
  background: linear-gradient(120deg, #0d2038, #123a5d 60%, #116f84);
  color: #fff;
}

.cta-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: clip;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  padding-right: 3rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  line-height: 1;
  color: var(--brand);
  transition: transform 0.15s ease;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: -2px;
}

.faq-item p {
  margin: 0;
  padding: 0 1.15rem 1rem;
  color: var(--muted);
  line-height: 1.6;
}

.btn {
  border: none;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 0.65rem 1rem;
  font-weight: 600;
  cursor: pointer;
}

.btn:hover {
  background: var(--brand-dark);
}

.btn-sm {
  padding: 0.45rem 0.8rem;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 0.8rem 1.1rem;
}

.btn-ghost {
  background: transparent;
  color: var(--brand);
  border: 1px solid var(--brand);
}

.btn-ghost:hover {
  background: #eaf3ff;
}

.hero-cta {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.creator-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.creator-shell {
  max-width: 860px;
}

.creator-intro {
  margin: 0 auto 1rem;
}

.creator-demo-image {
  display: block;
  width: min(260px, 72vw);
  height: auto;
  margin: 0.45rem auto 1rem;
}

.creator-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  display: grid;
  gap: 0.85rem;
}

.creator-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  align-items: start;
}

.creator-form label {
  display: grid;
  gap: 0.35rem;
  color: #344054;
  font-weight: 600;
  font-size: 0.9rem;
}

.creator-voice-select-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.creator-voice-select-row select {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
}

.creator-voice-preview-btn {
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  border-radius: 999px;
  padding: 0;
  line-height: 1;
  flex: 0 0 auto;
}

.creator-voice-preview-status {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.82rem;
  min-height: 1em;
}

.creator-form input,
.creator-form textarea,
.creator-form select {
  border: 1px solid #c8d7e3;
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
  font-size: 0.98rem;
  font-family: inherit;
  color: var(--teal);
  width: 100%;
  max-width: 100%;
}

.creator-form select {
  color: var(--ink);
}

.creator-form input,
.creator-form select {
  min-height: 42px;
}

.creator-form textarea {
  resize: vertical;
}

.creator-note {
  color: var(--muted);
  margin: 0.2rem 0 0;
}

.creator-submit {
  justify-self: start;
  padding: 0.95rem 1.4rem;
  font-size: 1.05rem;
}

.creator-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
}

.creator-modal[hidden] {
  display: none;
}

.creator-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 24, 40, 0.62);
}

.creator-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(92%, 560px);
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--line);
  padding: 1rem 1rem 1.15rem;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.22);
}

.creator-modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.6rem;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #475467;
}

.creator-modal-loading {
  margin: 0;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.creator-modal-loading[hidden] {
  display: none;
}

.creator-modal-loading::before {
  content: "";
  width: 0.9rem;
  height: 0.9rem;
  border: 2px solid rgba(15, 23, 42, 0.18);
  border-top-color: var(--brand);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
  flex-shrink: 0;
}

.creator-widget-mount {
  margin-top: 0.8rem;
}

.creator-widget-result {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f8fbfe;
  padding: 0.95rem;
}

.creator-widget-title {
  margin: 0 0 0.65rem;
  color: var(--ink);
  font-weight: 600;
}

.creator-widget-error {
  border-color: #fecdca;
  background: #fff6f5;
  color: #b42318;
}

.creator-test-call {
  width: 100%;
}

.creator-desktop-call-note {
  display: none;
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.creator-next-steps {
  margin-top: 0.9rem;
  border-top: 1px solid var(--line);
  padding-top: 0.9rem;
}

.creator-next-steps h4 {
  margin: 0 0 0.45rem;
}

.creator-next-steps ol {
  margin: 0 0 0.7rem;
  padding-left: 1.2rem;
  color: var(--muted);
}

body.modal-open {
  overflow: hidden;
}

.demo-call-overlay {
  position: fixed;
  right: 0.9rem;
  bottom: 0.9rem;
  z-index: 55;
  width: min(260px, calc(100vw - 1.8rem));
  padding: 0.75rem;
  border-radius: 14px;
  border: 1px solid #c7d4df;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.2);
}

.demo-call-overlay__text {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.35;
}

.demo-call-overlay__button {
  margin-top: 0.2rem;
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  padding: 0.46rem 0.65rem;
  font-size: 0.76rem;
  white-space: nowrap;
  background: var(--brand);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.16s ease;
}

.demo-call-overlay__button:hover {
  background: var(--brand-dark);
}

.text-center {
  text-align: center;
}

.secondary-contact-cta {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.cta-band .secondary-contact-cta {
  color: rgba(255, 255, 255, 0.72);
}

.secondary-email-link {
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: color 0.16s ease, border-color 0.16s ease;
}

.secondary-email-link:hover {
  color: var(--brand);
  border-bottom-color: rgba(232, 9, 9, 0.85);
}

.secondary-email-link:focus-visible {
  outline: none;
  color: var(--brand);
  border-bottom-color: rgba(232, 9, 9, 0.7);
}

.cta-band .secondary-email-link,
.cta-band .secondary-email-link:hover,
.cta-band .secondary-email-link:focus-visible {
  color: var(--brand);
}

.cta-band .secondary-email-link:hover,
.cta-band .secondary-email-link:focus-visible {
  border-bottom: 1px solid rgba(232, 9, 9, 0.85);
}

.tier-grid {
  margin-top: 1.2rem;
}

.quote-card {
  margin-top: 1.1rem;
  border-radius: 20px;
  padding: clamp(1.1rem, 2vw, 1.5rem);
  box-shadow: 0 10px 26px rgba(16, 24, 40, 0.07);
}

.quote-call-cta {
  margin-top: 0.8rem;
}

.quote-bottom-cta {
  margin-top: 1rem;
}

.quote-hero-section {
  padding-bottom: 1rem;
}

.quote-body-section {
  padding-top: 0.5rem;
}

.quote-card-head {
  margin-bottom: 1rem;
}

.quote-package-name {
  margin: 0.25rem 0 0;
  font-size: clamp(1.3rem, 2.7vw, 1.8rem);
  color: var(--ink);
}

.quote-price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.quote-price-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f8fbff;
  padding: 0.9rem;
}

.quote-price-item-highlight {
  background: #f3f8ff;
  border-color: #bfd7ff;
}

.quote-price-label {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
}

.quote-price-value {
  margin: 0.3rem 0 0;
  font-size: 1.7rem;
  line-height: 1.1;
  font-weight: 800;
  color: var(--ink);
}

.quote-price-value span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}

.quote-setup-price {
  margin: 0.3rem 0 0;
  font-size: 2rem;
  line-height: 1.1;
  font-weight: 800;
  color: var(--brand);
}

.quote-metrics {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.quote-metrics li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.65rem 0;
  color: var(--muted);
}

.quote-metrics li + li {
  border-top: 1px dashed #d7e2ec;
}

.quote-metrics strong {
  color: var(--ink);
  font-weight: 700;
}

.quote-revenue-asterisk {
  color: var(--brand);
  text-decoration: none;
  margin-left: 0.15rem;
  font-weight: 700;
  vertical-align: super;
  font-size: 0.82em;
}

.quote-revenue-asterisk:hover {
  text-decoration: underline;
}

.quote-features {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.quote-features h3 {
  margin: 0 0 0.7rem;
  font-size: 1.1rem;
}

.quote-features ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.quote-features li + li {
  margin-top: 0.45rem;
}

.quote-payment {
  margin-top: 1rem;
  scroll-margin-top: 100px;
}

.quote-payment h2 {
  margin: 0;
}

.quote-payment p {
  margin-top: 0.45rem;
}

.quote-setup-included {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
}

.quote-setup-included h3 {
  margin: 0 0 0.55rem;
  font-size: 1.02rem;
}

.quote-setup-included ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.quote-setup-included li + li {
  margin-top: 0.4rem;
}

.crm-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.9rem;
}

.crm-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 6.25rem;
  padding: 0.85rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  text-align: center;
  transition: border-color 120ms ease-in-out, box-shadow 120ms ease-in-out;
}

.crm-logo-item:hover {
  border-color: #c8d7e3;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.crm-logo-img {
  width: 2.75rem;
  height: 2.75rem;
  object-fit: contain;
}

.crm-logo-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}

.setup-timeline {
  list-style: none;
  margin: 0.7rem 0 0;
  padding: 0;
}

.setup-timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  padding-bottom: 1.15rem;
}

.setup-timeline-step::before {
  content: "";
  position: absolute;
  left: 0.43rem;
  top: 1.05rem;
  bottom: -0.1rem;
  width: 2px;
  background: var(--line);
}

.setup-timeline-step:last-child {
  padding-bottom: 0;
}

.setup-timeline-step:last-child::before {
  display: none;
}

.setup-timeline-dot {
  position: relative;
  z-index: 1;
  width: 0.9rem;
  height: 0.9rem;
  margin-top: 0.2rem;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--teal);
}

.setup-timeline-step.is-current .setup-timeline-dot {
  background: var(--brand);
  border-color: var(--brand);
  animation: setupPulse 1.8s ease-out infinite;
}

.setup-timeline-title {
  margin: 0;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

.setup-timeline-note {
  margin: 0.18rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.card .setup-timeline-caption {
  margin: 0.9rem 0 0.9rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-style: italic;
}

.card .tier-custom-note {
  margin-top: 1rem;
}

@keyframes setupPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(232, 9, 9, 0.45);
  }
  70% {
    box-shadow: 0 0 0 0.5rem rgba(232, 9, 9, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(232, 9, 9, 0);
  }
}

.quote-payment-form {
  margin-top: 0.9rem;
}

.quote-pricing-math {
  margin-top: 0.9rem;
  max-width: 100%;
  font-size: 0.9rem;
}

.pricing-cta {
  margin-top: 1.4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-cta .cta-actions {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: nowrap;
}

.pricing-cta .cta-actions .btn {
  white-space: nowrap;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.section#pricing .section-intro {
  max-width: 80ch;
}

.site-footer .secondary-email-link {
  font-weight: 500;
}

.section#pricing .tier-card {
  border-color: var(--line);
  box-shadow: none;
}

.tier-card {
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.tier-card-static {
  cursor: default;
  display: flex;
  flex-direction: column;
}

.tier-card.is-selected {
  border-color: var(--brand);
  box-shadow: 0 0 0 2px #d6e9ff;
}

.tier-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}

.tier-price {
  font-size: 2rem;
  margin: 0.2rem 0 0.7rem;
  font-weight: 800;
}

.section#pricing .tier-name {
  color: var(--ink);
  font-size: 0.79rem;
}

.section#pricing .tier-price {
  color: var(--ink);
  margin: 0.25rem 0 0.75rem;
  line-height: 1.1;
}

.tier-revenue-item {
  margin-top: 0.55rem;
  font-size: 0.93rem;
  line-height: 1.35;
}

.tier-revenue-item strong {
  color: var(--brand);
  font-size: 1.05rem;
}

.section#pricing .tier-price span {
  color: var(--muted);
}

.tier-revenue-item .tier-revenue-unit {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.tier-revenue-item .tier-revenue-asterisk {
  color: var(--brand);
  text-decoration: none;
  margin-left: 0.15rem;
  font-weight: 700;
  vertical-align: super;
  font-size: 0.82em;
}

.tier-revenue-item .tier-revenue-asterisk:hover {
  text-decoration: underline;
}

.section#pricing .tier-card ul {
  margin-bottom: 0;
}

.pricing-math {
  margin: 1rem auto 0;
  max-width: 860px;
  border: 1px solid var(--line);
  background: #f8fafc;
  border-radius: 14px;
  padding: 1rem 1.15rem;
  color: var(--muted);
  font-size: 0.95rem;
  scroll-margin-top: 96px;
}

.pricing-math-title {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.8rem;
  padding-right: 1.4rem;
  position: relative;
}

.pricing-math-title::-webkit-details-marker {
  display: none;
}

.pricing-math-title::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand);
  font-size: 1.15rem;
  line-height: 1;
}

.pricing-math[open] .pricing-math-title::after {
  content: "−";
}

.pricing-math-title:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
  border-radius: 6px;
}

.pricing-math-summary-hint {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 500;
}

.pricing-math[open] .pricing-math-summary-hint {
  display: none;
}

.pricing-math-body {
  margin-top: 0.5rem;
}

.pricing-math-intro {
  margin: 0.5rem 0 0.7rem;
}

.pricing-math-assumptions {
  margin: 0;
  padding-left: 1.1rem;
}

.pricing-math-assumptions li + li {
  margin-top: 0.3rem;
}

.pricing-math-formula {
  margin: 0.7rem 0 0;
}

.pricing-math-formula strong {
  color: var(--ink);
}

.pricing-math-foot {
  margin: 0.7rem 0 0;
  font-size: 0.88rem;
}

.tier-price span {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 500;
}

.tier-card ul {
  padding-left: 1.1rem;
  color: var(--muted);
  margin: 0 0 1rem;
}

.tier-card li + li {
  margin-top: 0.45rem;
}

.tier-bottom-note {
  margin: 0;
  padding-top: 0.7rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.tier-card .tier-bottom-note {
  margin-top: auto;
}

.tier-contact {
  width: 100%;
}

.tier-phone {
  margin-top: 0.7rem;
  display: block;
  text-align: center;
  color: var(--muted);
}

/* Subscribe page layout */
.subscribe-container {
  width: min(880px, 92%);
}

.subscribe-head {
  text-align: center;
}

.subscribe-head .section-intro {
  margin-left: auto;
  margin-right: auto;
}

/* Selectable plan cards */
.subscribe-plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.tier-card-selectable,
.tier-card-modern {
  position: relative;
  border-radius: 16px;
  padding: 1.25rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  background: #fff;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.tier-card-selectable {
  cursor: pointer;
}

.tier-card-selectable:hover {
  border-color: #b9cede;
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.1);
  transform: translateY(-2px);
}

.tier-card-selectable:focus-visible {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(232, 9, 9, 0.18);
}

.tier-card-selectable.is-selected {
  border-color: var(--brand);
  box-shadow: 0 0 0 2px rgba(232, 9, 9, 0.55), 0 12px 30px rgba(16, 24, 40, 0.1);
}

.tier-card-selectable .tier-check {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #c8d7e3;
  background: #fff;
  transition: border-color 0.16s ease, background-color 0.16s ease;
}

.tier-card-selectable.is-selected .tier-check {
  border-color: var(--brand);
  background: var(--brand);
}

.tier-card-selectable.is-selected .tier-check::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.tier-card-selectable .tier-price,
.tier-card-modern .tier-price {
  margin: 0.25rem 0 0.85rem;
}

.tier-card-selectable ul,
.tier-card-modern ul {
  flex: 1;
}

.tier-select-flag {
  margin-top: 0.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 10px;
  padding: 0.6rem 0.9rem;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--brand);
  color: var(--brand);
  background: #fff;
  transition: background-color 0.16s ease, color 0.16s ease;
}

.tier-select-flag-picked {
  display: none;
}

.tier-card-selectable.is-selected .tier-select-flag {
  background: var(--brand);
  color: #fff;
}

.tier-card-selectable.is-selected .tier-select-flag-pick {
  display: none;
}

.tier-card-selectable.is-selected .tier-select-flag-picked {
  display: inline;
}

/* Subscription form panel */
.subscribe-panel {
  margin-top: 1.6rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(1.3rem, 3vw, 2rem);
  box-shadow: 0 16px 40px rgba(16, 24, 40, 0.08);
}

.subscribe-panel h2 {
  margin: 0 0 0.25rem;
  font-size: 1.4rem;
}

.subscribe-panel-sub {
  margin: 0 0 1.3rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.subscribe-form {
  display: grid;
  gap: 0;
}

.subscribe-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.subscribe-field {
  display: grid;
  gap: 0.4rem;
}

.subscribe-form label {
  font-size: 0.88rem;
  color: #344054;
  font-weight: 600;
}

.subscribe-optional {
  color: var(--muted);
  font-weight: 500;
}

.subscribe-form input {
  border: 1px solid #c8d7e3;
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  font-size: 1rem;
  width: 100%;
  background: #fff;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.subscribe-form input::placeholder {
  color: #98a8b6;
}

.subscribe-form input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(232, 9, 9, 0.14);
}

.subscribe-actions {
  margin-top: 1.3rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.subscribe-form #submitBtn {
  width: 100%;
  min-height: 56px;
  padding: 0.95rem 1.4rem;
  font-size: 1.08rem;
  border-radius: 12px;
}

.subscribe-talk-first-copy {
  margin: 0.85rem 0 0;
  text-align: center;
}

@media (max-width: 560px) {
  .subscribe-grid-2 {
    grid-template-columns: 1fr;
  }
}

.form-hint {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0.7rem 0 0;
}

.form-error {
  margin: 0.35rem 0 0;
  color: #b42318;
  font-weight: 600;
}

.spinner {
  width: 0.9rem;
  height: 0.9rem;
  border: 2px solid #ffffff7a;
  border-top-color: #fff;
  border-radius: 50%;
  display: inline-block;
  margin-left: 0.45rem;
  animation: spin 0.9s linear infinite;
}

.spinner[hidden] {
  display: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.is-disabled {
  opacity: 0.72;
  cursor: not-allowed;
}

.site-footer {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-content {
  padding: 2rem 0;
  color: var(--muted);
}

.footer-title {
  color: #101828;
  font-weight: 700;
  margin: 0 0 0.2rem;
}

.footer-legal a {
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid transparent;
  transition: border-color 120ms ease-in-out;
}

.footer-legal a:hover {
  border-bottom-color: var(--brand);
}

.footer-copy {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0.75rem 0;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  transition: border-color 120ms ease-in-out, transform 120ms ease-in-out, color 120ms ease-in-out;
}

.footer-social-link--linkedin {
  color: #0a66c2;
}

.footer-social-link--linkedin:hover {
  border-color: #0a66c2;
  transform: translateY(-1px);
}

.footer-social-link--instagram {
  color: #e1306c;
}

.footer-social-link--instagram:hover {
  border-color: #e1306c;
  transform: translateY(-1px);
}

.footer-social-link svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
}

.sep {
  margin: 0 0.45rem;
}

.legal-page {
  padding-bottom: 2rem;
}

.legal-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--teal);
  margin: 0 0 0.5rem;
  font-weight: 600;
}

.legal-meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: -0.4rem;
  margin-bottom: 1.6rem;
}

.legal-page h2 {
  font-size: 1.2rem;
  margin: 1.8rem 0 0.6rem;
}

.legal-page h3 {
  font-size: 1rem;
  margin: 1.1rem 0 0.4rem;
}

.legal-page p,
.legal-page li {
  color: var(--ink);
  line-height: 1.6;
}

.legal-page ul {
  padding-left: 1.2rem;
  margin: 0.4rem 0 1rem;
}

.legal-page li + li {
  margin-top: 0.3rem;
}

.legal-page a {
  color: var(--brand-dark);
}

/* ── Photo placeholders (swap src when real images arrive) ── */
.photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 280px;
  background: linear-gradient(135deg, #d0dde6 0%, #b8ccd8 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: #5a7080;
  letter-spacing: 0.03em;
  text-align: center;
  padding: 1rem;
  user-select: none;
}

/* ── Spot A: field split — "While you're on the job…" ── */
.field-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.field-split-photo {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.field-split-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

.field-split-body {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.field-split-body blockquote {
  margin: 0;
  padding: 1.2rem 1.4rem;
  border-left: 4px solid var(--teal);
  background: var(--card);
  border-radius: 0 12px 12px 0;
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink);
}

.field-split-body blockquote cite {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.85rem;
  font-style: normal;
  color: var(--muted);
  font-weight: 600;
}

/* ── Spot B: Why HVACRelay — photo above cards ── */
.why-photo-strip {
  margin-bottom: 2rem;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 4;
}

.why-photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

/* ── Spot C: CTA band with photo ── */
.cta-band--split .cta-wrap {
  grid-template-columns: auto 1fr;
  align-items: center;
}

.cta-band-photo {
  flex-shrink: 0;
  width: 220px;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  align-self: stretch;
  max-height: 260px;
}

.cta-band-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 12px;
  opacity: 0.88;
}

.calculator-section {
  padding-top: 0.1rem;
}

.calculator-hero .section-intro {
  max-width: 56ch;
}

.calculator-hero.section-top {
  padding-top: 1.6rem;
  padding-bottom: 1rem;
}

.calculator-card {
  border-radius: 34px;
  border: 1px solid #e8edf4;
  background: linear-gradient(160deg, #eef1f6 0%, #e7ebf2 55%, #e6ebf3 100%);
  box-shadow: 18px 20px 42px rgba(145, 157, 173, 0.35), -14px -16px 30px rgba(255, 255, 255, 0.92);
}

.calculator-shell {
  padding: 1.5rem;
}

.calculator-form {
  display: grid;
  gap: 0.82rem;
}

.calculator-label {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #55606f;
}

.calculator-input {
  border: 0;
  border-radius: 18px;
  background: #ecf0f5;
  box-shadow: inset 3px 3px 7px rgba(174, 184, 197, 0.45), inset -3px -3px 7px rgba(255, 255, 255, 0.92);
  color: #1c2532;
  padding: 0.88rem 1rem;
  font-size: 1.02rem;
}

.calculator-input:focus {
  outline: none;
  box-shadow: inset 2px 2px 5px rgba(174, 184, 197, 0.45), inset -2px -2px 5px rgba(255, 255, 255, 0.92), 0 0 0 3px rgba(232, 9, 9, 0.14);
}

.calculator-slider-group {
  margin-top: 0.5rem;
  padding: 0.9rem 1rem;
  border-radius: 20px;
  background: #ecf0f5;
  box-shadow: inset 3px 3px 8px rgba(177, 188, 201, 0.42), inset -3px -3px 7px rgba(255, 255, 255, 0.9);
}

.calculator-slider-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.45rem;
}

.calculator-slider-value {
  border: 1px solid rgba(31, 167, 161, 0.18);
  background: rgba(31, 167, 161, 0.12);
  color: #0f6f6b;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  min-width: 3.1rem;
  text-align: center;
}

#bookingRateInput {
  width: 100%;
  appearance: none;
  height: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(31, 167, 161, 0.9), rgba(31, 167, 161, 0.48));
  outline: none;
  border: 0;
}

#bookingRateInput::-webkit-slider-thumb {
  appearance: none;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  border: 2px solid #c9ecea;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(31, 167, 161, 0.16), 0 8px 14px rgba(31, 167, 161, 0.3);
  cursor: pointer;
}

#bookingRateInput::-moz-range-thumb {
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  border: 2px solid #c9ecea;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(31, 167, 161, 0.16), 0 8px 14px rgba(31, 167, 161, 0.3);
  cursor: pointer;
}

#bookingRateInput::-moz-range-track {
  height: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(31, 167, 161, 0.9), rgba(31, 167, 161, 0.48));
}

.calculator-submit {
  width: 100%;
  margin-top: 0.25rem;
  border-radius: 18px;
  border: 1px solid rgba(232, 9, 9, 0.12);
  background: linear-gradient(180deg, #ff5952 0%, #f0322b 100%);
  color: #fff;
  box-shadow: 8px 10px 18px rgba(223, 78, 72, 0.35), -5px -5px 10px rgba(255, 255, 255, 0.4);
}

.calculator-submit:hover {
  background: linear-gradient(180deg, #ff5e57 0%, #e92e27 100%);
}

.calculator-submit:disabled {
  opacity: 0.78;
  cursor: not-allowed;
}

.calculator-results {
  margin-top: 1rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  border-radius: 30px;
  border: 1px solid #e8edf4;
  background: linear-gradient(165deg, #eceff4, #e5eaf2);
  box-shadow: 12px 14px 28px rgba(143, 154, 171, 0.3), -12px -12px 22px rgba(255, 255, 255, 0.88);
}

.calculator-results.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.calculator-results-title {
  margin-bottom: 0.2rem;
}

.calculator-formula {
  margin: 0 0 0.65rem;
  color: #5a6678;
  font-size: 0.97rem;
  font-weight: 600;
}

.calculator-lost-revenue {
  margin: 0;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-size: clamp(2rem, 6vw, 3.2rem);
  color: var(--brand);
}

.calculator-tier-fit {
  margin-top: 1rem;
  border: 1px solid rgba(31, 167, 161, 0.18);
  background: linear-gradient(180deg, #edf3f3, #e9f1f2);
  border-radius: 20px;
  padding: 0.95rem 1rem;
  box-shadow: inset 2px 2px 6px rgba(175, 185, 197, 0.4), inset -2px -2px 6px rgba(255, 255, 255, 0.88);
}

.calculator-tier-fit-title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.calculator-tier-name {
  margin: 0;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 700;
}

.calculator-tier-meta {
  margin-top: 0.3rem;
  color: var(--muted);
}

.calculator-home-btn {
  margin-top: 1rem;
  border-radius: 16px;
  background: #e8edf5;
  color: #1a2533;
  border: 1px solid #d6deea;
  box-shadow: 6px 8px 16px rgba(153, 165, 182, 0.35), -6px -6px 14px rgba(255, 255, 255, 0.82);
}

.calculator-home-btn:hover {
  background: #dfe6f0;
}

.calculator-post-cta {
  margin-top: 0.95rem;
  border-radius: 24px;
  border: 1px solid #e2e8f1;
  background: linear-gradient(165deg, #edf1f7, #e8edf5);
  box-shadow: 10px 12px 24px rgba(143, 154, 171, 0.28), -10px -10px 20px rgba(255, 255, 255, 0.86);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.calculator-post-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.calculator-post-cta-text {
  margin: 0;
  color: #26313f;
  font-size: 1.04rem;
  line-height: 1.5;
  font-weight: 600;
}

.calculator-highlight {
  color: var(--brand);
  font-weight: 800;
}

.calculator-learn-btn {
  margin-top: 0.95rem;
  border-radius: 16px;
  background: linear-gradient(180deg, #ff5952 0%, #f0322b 100%);
  border: 1px solid rgba(232, 9, 9, 0.12);
  box-shadow: 8px 10px 18px rgba(223, 78, 72, 0.35), -5px -5px 10px rgba(255, 255, 255, 0.4);
}

.calculator-learn-btn:hover {
  background: linear-gradient(180deg, #ff5e57 0%, #e92e27 100%);
}

@media (max-width: 520px) {
  .calculator-shell,
  .calculator-results,
  .calculator-post-cta {
    border-radius: 24px;
  }

  .calculator-shell {
    padding: 1.05rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-graphic-voice .sg-pulse-ring,
  .service-graphic-voice .sg-conv-wave,
  .service-graphic-workflow .sg-link,
  .service-graphic-workflow .sg-node,
  .service-graphic-knowledge .sg-scan,
  .hero-flow-pulse,
  .hero-flow-link,
  .hero-flow-agent,
  .setup-timeline-step.is-current .setup-timeline-dot {
    animation: none !important;
  }
  .service-graphic-voice .sg-conv-wave {
    opacity: 0.55;
  }
  .hero-flow-pulse {
    opacity: 0.2;
  }
}

@media (max-width: 960px) {
  .crm-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-grid,
  .cards-3,
  .steps,
  .cta-wrap {
    grid-template-columns: 1fr;
    display: grid;
  }

  .cta-wrap {
    gap: 1rem;
  }

  .quote-price-grid {
    grid-template-columns: 1fr;
  }

  .quote-metrics li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }

  .cta-actions {
    align-items: flex-start;
  }

  .field-split {
    grid-template-columns: 1fr;
  }

  .why-photo-strip {
    aspect-ratio: 16 / 7;
  }

  .cta-band--split .cta-wrap {
    grid-template-columns: 1fr;
  }

  .cta-band-photo {
    width: 100%;
    max-height: 200px;
    aspect-ratio: 16 / 5;
  }

  .creator-grid {
    grid-template-columns: 1fr;
  }

  .nav-wrap {
    flex-wrap: nowrap;
    justify-content: space-between;
    row-gap: 0;
  }

  .nav-controls {
    margin-left: auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    width: auto;
    margin: 0;
    gap: 0;
    padding: 0.5rem 4% 0.85rem;
    background: #ffffff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    z-index: 19;
  }

  .site-nav-links.is-open {
    display: flex;
  }

  .site-nav-links a {
    padding: 0.6rem 0;
    width: 100%;
  }
}

@media (max-width: 520px) {
  .crm-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 961px) {
  .creator-desktop-call-note {
    display: block;
  }
}

