:root {
  --bg: #f6f8fc;
  --surface: #ffffff;
  --surface-2: #eef4ff;
  --ink: #07111f;
  --muted: #536176;
  --line: #d7e0ee;
  --brand: #2563eb;
  --brand-2: #0891b2;
  --accent: #f97316;
  --green: #16a34a;
  --shadow: 0 24px 70px rgba(15, 23, 42, .12);
  --soft-shadow: 0 14px 35px rgba(37, 99, 235, .16);
  --radius: 26px;
  --max: 1210px;
}

body.dark {
  --bg: #07111f;
  --surface: #101b2d;
  --surface-2: #17243a;
  --ink: #f8fafc;
  --muted: #a8b5c8;
  --line: #29384f;
  --shadow: 0 24px 70px rgba(0, 0, 0, .42);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 8% 10%, rgba(37, 99, 235, .14), transparent 26%),
    radial-gradient(circle at 92% 6%, rgba(8, 145, 178, .12), transparent 24%),
    var(--bg);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(15, 23, 42, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, .04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px;
}

.top-strip {
  background: #07111f;
  color: #dbeafe;
  font-size: 14px;
}

.top-strip__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.top-strip__call {
  color: #fed7aa;
  font-weight: 900;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}

.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 950;
  min-width: max-content;
}

.brand__mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: var(--soft-shadow);
}

.brand__text {
  display: grid;
  font-size: 18px;
  line-height: 1.05;
  letter-spacing: -.5px;
}

.brand__text span {
  color: var(--brand);
  font-size: 13px;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav-links a,
.nav-dropdown__button {
  display: inline-flex;
  align-items: center;
  border: 0;
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  padding: 10px 12px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-dropdown__button:hover {
  color: var(--brand);
  background: var(--surface-2);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__menu {
  position: absolute;
  top: 44px;
  right: 0;
  min-width: 245px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 10px;
  display: none;
}

.nav-dropdown:hover .nav-dropdown__menu {
  display: grid;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.button,
.icon-button,
.menu-button {
  border: 0;
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 900;
  transition: .25s ease;
  white-space: nowrap;
}

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: var(--soft-shadow);
}

.button--primary:hover,
.action-card:hover,
.brand-card:hover,
.issue-card:hover,
.article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.button--soft {
  color: var(--ink);
  background: var(--surface-2);
  border: 1px solid var(--line);
}

.button--glass {
  color: #fff;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .24);
  backdrop-filter: blur(12px);
}

.icon-button,
.menu-button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--ink);
  border: 1px solid var(--line);
  font-weight: 900;
}

.menu-button {
  display: none;
  font-size: 22px;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(118deg, rgba(7, 17, 31, .96), rgba(12, 45, 96, .88), rgba(37, 99, 235, .38)),
    url("https://images.unsplash.com/photo-1612815154858-60aa4c59eaa6?auto=format&fit=crop&w=1800&q=85") center / cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  z-index: -1;
  background: linear-gradient(to bottom, transparent, var(--bg));
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  align-items: center;
  gap: 48px;
  padding: 90px 22px 115px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(37, 99, 235, .10);
  color: var(--brand);
  border: 1px solid rgba(37, 99, 235, .18);
  font-size: 13px;
  font-weight: 900;
}

.hero .eyebrow {
  color: #bfdbfe;
  background: rgba(255, 255, 255, .11);
  border-color: rgba(255, 255, 255, .18);
}

h1,
.section-heading h2,
.split__content h2,
.contact-copy h2 {
  letter-spacing: -1.6px;
  line-height: 1.06;
}

h1 {
  color: #fff;
  font-size: clamp(42px, 6.2vw, 76px);
  margin: 18px 0;
}

.hero p {
  color: #dbeafe;
  font-size: 19px;
  max-width: 760px;
}

.hero__actions {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-panel {
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 34px;
  padding: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.hero-panel__top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.hero-panel__top strong {
  display: block;
  font-size: 18px;
}

.hero-panel__top span:not(.live-dot) {
  color: var(--muted);
  font-size: 13px;
}

.live-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(22, 163, 74, .16);
  flex: 0 0 auto;
  margin-top: 8px;
}

.printer-illustration {
  position: relative;
  min-height: 250px;
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 20% 15%, rgba(8, 145, 178, .22), transparent 30%),
    linear-gradient(145deg, #eff6ff, #dbeafe 48%, #bfdbfe);
  border: 1px solid rgba(37, 99, 235, .15);
}

body.dark .printer-illustration {
  background:
    radial-gradient(circle at 20% 15%, rgba(8, 145, 178, .25), transparent 30%),
    linear-gradient(145deg, #0e1c31, #122b50 48%, #164e63);
}

.paper {
  position: absolute;
  top: 36px;
  width: 140px;
  height: 96px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 28px rgba(15, 23, 42, .14);
}

.paper::before,
.paper::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  height: 6px;
  border-radius: 999px;
  background: #cbd5e1;
}

.paper::before { top: 30px; }
.paper::after { top: 50px; }

.printer-body {
  position: relative;
  width: 230px;
  height: 138px;
  border-radius: 26px 26px 18px 18px;
  background: linear-gradient(#f8fafc, #e2e8f0 45%, #cbd5e1 46%, #ffffff 47%);
  box-shadow: 0 28px 48px rgba(15, 23, 42, .24);
}

.printer-body::after {
  content: "";
  position: absolute;
  right: 35px;
  top: 56px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--green);
}

.signal {
  position: absolute;
  border: 2px solid var(--brand);
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 28px 0 0;
  transform: rotate(-35deg);
  opacity: .45;
}

.signal--one { width: 52px; height: 52px; right: 80px; top: 50px; }
.signal--two { width: 82px; height: 82px; right: 60px; top: 32px; opacity: .25; }

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.mini-grid a {
  padding: 14px;
  border-radius: 18px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  font-weight: 900;
  color: var(--ink);
}

.section {
  padding: 90px 0;
  position: relative;
}

.section--lift {
  margin-top: -70px;
  z-index: 5;
}

.section--soft {
  background: color-mix(in srgb, var(--surface-2) 70%, transparent);
  border-block: 1px solid var(--line);
}

.section--blueprint {
  background:
    linear-gradient(135deg, rgba(37, 99, 235, .08), rgba(8, 145, 178, .06));
  border-block: 1px solid var(--line);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 36px;
}

.section-heading h2,
.split__content h2,
.contact-copy h2 {
  margin: 13px 0 12px;
  font-size: clamp(30px, 4.4vw, 52px);
}

.section-heading p,
.action-card p,
.brand-card p,
.issue-card p,
.article-card p,
.compare-card p,
.step-card p,
.contact-copy p,
.legal-panel p,
.footer p {
  color: var(--muted);
}

.card-grid {
  display: grid;
  gap: 22px;
}

.card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.action-card,
.brand-card,
.issue-card,
.article-card,
.compare-card,
.step-card,
.contact-form,
.legal-panel,
.checklist-card {
  display: block;
  background: color-mix(in srgb, var(--surface) 96%, transparent);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .055);
  transition: .28s ease;
}

.action-card span {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--surface-2);
  font-size: 25px;
  margin-bottom: 18px;
}

.action-card h3,
.issue-card h3,
.article-card h3,
.compare-card h3,
.step-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.action-card b,
.brand-card span,
.issue-card span,
.article-card span {
  display: inline-block;
  margin-top: 18px;
  color: var(--brand);
  font-weight: 950;
}

.brand-grid,
.issue-grid,
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.brand-card strong {
  display: block;
  font-size: 34px;
  color: var(--brand);
  margin-bottom: 10px;
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.split__media {
  min-height: 540px;
  border-radius: 34px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  background:
    linear-gradient(to top, rgba(7, 17, 31, .85), transparent 55%),
    url("https://images.unsplash.com/photo-1587614382346-4ec70e388b28?auto=format&fit=crop&w=1200&q=85") center / cover;
  box-shadow: var(--shadow);
}

.checklist-card {
  color: var(--ink);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
}

body.dark .checklist-card {
  background: rgba(16, 27, 45, .92);
}

.checklist-card span {
  color: var(--brand);
  font-weight: 900;
}

.checklist-card strong {
  display: block;
  font-size: 26px;
  margin: 6px 0;
}

.steps-list {
  display: grid;
  gap: 16px;
}

.step-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.step-card > span {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  font-weight: 950;
}

.center {
  text-align: center;
  margin-top: 30px;
}

.narrow {
  max-width: 890px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 20px;
  text-align: left;
  font-weight: 950;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

.faq-a {
  display: none;
  color: var(--muted);
  padding: 0 20px 20px;
}

.faq-item.active .faq-a {
  display: block;
}

.contact-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
  align-items: start;
}

.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.disclosure-box {
  margin-top: 22px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(249, 115, 22, .10);
  border: 1px solid rgba(249, 115, 22, .26);
  color: var(--muted);
  font-size: 14px;
}

.contact-form {
  display: grid;
  gap: 15px;
}

.contact-form label,
.auth-form label {
  display: grid;
  gap: 6px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  color: var(--ink);
  padding: 14px 15px;
  outline: none;
}

textarea {
  min-height: 148px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .12);
}

.legal-panel ul {
  margin-top: 18px;
  padding-left: 22px;
  color: var(--muted);
}

.legal-panel li {
  margin: 8px 0;
}

.footer {
  background: #07111f;
  color: #cbd5e1;
  padding: 56px 0 24px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 30px;
}

.footer h3 {
  color: #fff;
  margin-bottom: 10px;
}

.footer a:not(.brand) {
  display: block;
  color: #cbd5e1;
  margin: 8px 0;
}

.brand--footer {
  margin-bottom: 15px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin-top: 28px;
  padding-top: 18px;
  color: #94a3b8;
  font-size: 13px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(7, 17, 31, .64);
  padding: 20px;
  display: none;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-box {
  width: min(430px, 100%);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 28px;
  position: relative;
}

.close {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--ink);
  cursor: pointer;
  font-size: 20px;
}

.auth-close {
  position: absolute;
  top: 14px;
  right: 14px;
}

.auth-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.auth-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px;
  margin-bottom: 18px;
}

.auth-tab {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  padding: 10px;
  font-weight: 900;
  cursor: pointer;
}

.auth-tab.active {
  background: var(--surface);
  color: var(--brand);
  box-shadow: 0 8px 18px rgba(15, 23, 42, .08);
}

.auth-heading {
  font-size: 22px;
  margin-bottom: 4px;
}

.auth-sub,
.auth-note,
.auth-switch {
  color: var(--muted);
  font-size: 13px;
}

.auth-form {
  display: grid;
  gap: 13px;
  margin-top: 16px;
}

.auth-link {
  border: 0;
  background: transparent;
  color: var(--brand);
  font-weight: 900;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.auth-switch {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.hidden {
  display: none;
}

.chat-button,
.back-top {
  position: fixed;
  right: 20px;
  z-index: 80;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.chat-button {
  bottom: 22px;
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  font-size: 26px;
}

.back-top {
  bottom: 94px;
  width: 46px;
  height: 46px;
  background: var(--surface);
  color: var(--brand);
  border: 1px solid var(--line);
  opacity: 0;
  pointer-events: none;
  transition: .25s;
}

.back-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.chat-window {
  position: fixed;
  right: 20px;
  bottom: 94px;
  width: min(390px, calc(100vw - 40px));
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
  z-index: 90;
  overflow: hidden;
  display: none;
}

.chat-window.active {
  display: block;
}

.chat-head {
  padding: 16px 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.chat-head span {
  display: block;
  font-size: 12px;
  opacity: .86;
}

.chat-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 300px;
  overflow-y: auto;
}

.bubble {
  background: var(--surface-2);
  color: var(--ink);
  padding: 11px 14px;
  border-radius: 16px 16px 16px 4px;
  font-size: 14px;
  max-width: 88%;
}

.bubble.user {
  background: var(--brand);
  color: #fff;
  margin-left: auto;
  border-radius: 16px 16px 4px 16px;
}

.bubble.lead-cta {
  max-width: 100%;
  border: 1px solid rgba(22, 163, 74, .28);
  background: rgba(22, 163, 74, .10);
}

.chat-call-btn {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  border-radius: 14px;
  padding: 12px;
  background: linear-gradient(135deg, #16a34a, #059669);
  color: #fff;
  font-weight: 950;
}

.quick-replies {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 0 16px 16px;
}

.quick-replies button {
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 11px;
  cursor: pointer;
  font-weight: 800;
  font-size: 13px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 120;
  transform: translateX(-50%) translateY(28px);
  opacity: 0;
  pointer-events: none;
  background: #07111f;
  color: #fff;
  padding: 13px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  transition: .25s;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1060px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    padding: 14px 22px 20px;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-dropdown__menu {
    position: static;
    box-shadow: none;
    margin-top: 4px;
  }

  .menu-button {
    display: grid;
  }

  .hero__grid,
  .split,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .brand-grid,
  .issue-grid,
  .comparison-grid,
  .card-grid--three,
  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 660px) {
  .top-strip__inner {
    justify-content: center;
    text-align: center;
  }

  .brand__text {
    font-size: 16px;
  }

  .nav-actions .button {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero__grid {
    padding: 58px 22px 92px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero-panel {
    padding: 18px;
  }

  .section {
    padding: 66px 0;
  }

  .section--lift {
    margin-top: -40px;
  }

  .brand-grid,
  .issue-grid,
  .comparison-grid,
  .card-grid--three,
  .card-grid--two,
  .footer__grid,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .split__media {
    min-height: 360px;
  }
}


/* Premium logo, brand, and call CTA updates */
.brand {
  min-width: 235px;
}

.brand__logo {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  object-fit: cover;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 26px rgba(15, 23, 42, .12);
}

.brand__text strong {
  display: block;
  font-size: 20px;
  line-height: 1.05;
  letter-spacing: -.7px;
}

.brand__text small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  color: #ffffff !important;
  background: linear-gradient(135deg, #16a34a, #059669);
  box-shadow: 0 16px 34px rgba(22, 163, 74, .28);
  font-weight: 950;
  white-space: nowrap;
}

.nav-call:hover,
.floating-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(22, 163, 74, .36);
}

.floating-call {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 95;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 19px;
  border-radius: 999px;
  color: #ffffff !important;
  background: linear-gradient(135deg, #16a34a, #059669);
  box-shadow: 0 24px 70px rgba(15, 23, 42, .25);
  font-weight: 950;
  animation: callPulse 2.6s infinite;
}

@keyframes callPulse {
  0% { box-shadow: 0 0 0 0 rgba(22, 163, 74, .38), 0 24px 70px rgba(15, 23, 42, .20); }
  70% { box-shadow: 0 0 0 18px rgba(22, 163, 74, 0), 0 24px 70px rgba(15, 23, 42, .20); }
  100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0), 0 24px 70px rgba(15, 23, 42, .20); }
}

.keyword-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.keyword-panel {
  padding: 24px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(15, 23, 42, .06);
}

.keyword-panel h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.keyword-panel ul {
  margin-left: 18px;
  color: var(--muted);
}

.keyword-panel li {
  margin: 7px 0;
}

.brand-logo-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 14px 36px rgba(15, 23, 42, .07);
  transition: .28s ease;
}

.brand-logo-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.brand-logo-card img {
  width: 104px;
  height: 52px;
  object-fit: contain;
  background: #fff;
  border-radius: 14px;
  padding: 6px;
  border: 1px solid #dbe5f2;
}

.issue-card__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.issue-card__brand img {
  width: 76px;
  height: 38px;
  object-fit: contain;
  background: #fff;
  border-radius: 12px;
  padding: 5px;
  border: 1px solid #dbe5f2;
}

.copy-block {
  max-width: 920px;
  color: var(--muted);
  font-size: 17px;
}

.copy-block p + p {
  margin-top: 16px;
}

.intent-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.intent-strip span {
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 850;
  font-size: 13px;
}

@media (max-width: 980px) {
  .keyword-grid { grid-template-columns: 1fr; }
  .nav-call { display: none; }
  .brand { min-width: 0; }
}

@media (max-width: 650px) {
  .floating-call {
    left: 12px;
    right: 92px;
    bottom: 16px;
    padding: 13px 12px;
    font-size: 14px;
  }
  .brand__logo { width: 48px; height: 48px; }
  .brand__text strong { font-size: 17px; }
}


/* Breathing life animation update */
@keyframes siteBreath {
  0%, 100% {
    transform: scale(1);
    filter: saturate(1);
  }
  50% {
    transform: scale(1.012);
    filter: saturate(1.08);
  }
}

@keyframes softGlowBreath {
  0%, 100% {
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.10);
  }
  50% {
    box-shadow: 0 26px 70px rgba(29, 78, 216, 0.20);
  }
}

@keyframes buttonBreath {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-1px) scale(1.035);
  }
}

@keyframes orbBreath {
  0%, 100% {
    opacity: 0.42;
    transform: scale(1);
  }
  50% {
    opacity: 0.72;
    transform: scale(1.18);
  }
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.16), transparent 68%);
  pointer-events: none;
  z-index: -1;
  animation: orbBreath 7s ease-in-out infinite;
}

body::before {
  top: 90px;
  left: -170px;
}

body::after {
  right: -190px;
  bottom: 80px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.14), transparent 68%);
  animation-delay: 1.8s;
}

.hero__visual,
.brand-card,
.service-card,
.issue-card,
.feature-card,
.check-card,
.content-card,
.contact-card,
.faq-card,
.quick-card {
  animation: softGlowBreath 6.5s ease-in-out infinite;
  will-change: box-shadow;
}

.brand-card:nth-child(2),
.service-card:nth-child(2),
.issue-card:nth-child(2),
.feature-card:nth-child(2),
.check-card:nth-child(2),
.quick-card:nth-child(2) {
  animation-delay: .8s;
}

.brand-card:nth-child(3),
.service-card:nth-child(3),
.issue-card:nth-child(3),
.feature-card:nth-child(3),
.check-card:nth-child(3),
.quick-card:nth-child(3) {
  animation-delay: 1.4s;
}

.button--primary,
.nav-call,
.floating-call,
.top-strip__call {
  animation: buttonBreath 3.2s ease-in-out infinite;
  will-change: transform;
}

.logo img,
.brand-card img,
.company-logo img {
  animation: siteBreath 5.8s ease-in-out infinite;
  transform-origin: center;
  will-change: transform, filter;
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  body::after,
  .hero__visual,
  .brand-card,
  .service-card,
  .issue-card,
  .feature-card,
  .check-card,
  .content-card,
  .contact-card,
  .faq-card,
  .quick-card,
  .button--primary,
  .nav-call,
  .floating-call,
  .top-strip__call,
  .logo img,
  .brand-card img,
  .company-logo img {
    animation: none !important;
  }
}
