:root {
  --bg: #f7f4ee;
  --bg-soft: #fdfaf5;
  --card: #ffffff;
  --card-2: #fffaf2;
  --line: rgba(107, 88, 56, 0.12);
  --line-strong: rgba(107, 88, 56, 0.2);
  --text: #1f2937;
  --heading: #152235;
  --muted: #6b7280;
  --primary: #0f766e;
  --primary-2: #1d9a8f;
  --accent: #1d4ed8;
  --accent-soft: #eff6ff;
  --danger: #dc2626;
  --shadow: 0 16px 44px rgba(34, 44, 58, 0.08);
  --radius: 24px;
  --max: 1180px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    Inter,
    Segoe UI,
    Arial,
    sans-serif;
  background:
    radial-gradient(
      circle at top right,
      rgba(29, 78, 216, 0.06),
      transparent 22%
    ),
    radial-gradient(
      circle at top left,
      rgba(15, 118, 110, 0.05),
      transparent 26%
    ),
    linear-gradient(180deg, #f8f6f0, #f7f4ee 40%, #f5f1e9 100%);
  color: var(--text);
  line-height: 1.6;
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: min(var(--max), calc(100% - 40px));
  margin: auto;
}
.section {
  padding: 92px 0;
  position: relative;
}
.section.compact {
  padding: 72px 0;
}
.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}
.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--primary);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 14px;
}
.eyebrow:before {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--primary), transparent);
}
h1,
h2,
h3,
h4 {
  line-height: 1.1;
  color: var(--heading);
}
h1 {
  font-size: clamp(2.5rem, 5vw, 4.6rem);
}
h2 {
  font-size: clamp(2rem, 3vw, 3.05rem);
}
h3 {
  font-size: 1.18rem;
}
p {
  color: var(--muted);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  border-radius: 999px;
  padding: 13px 24px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.25s ease;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  box-shadow: 0 14px 28px rgba(15, 118, 110, 0.18);
}
.btn-secondary {
  background: #fff;
  color: var(--heading);
  border: 1px solid var(--line-strong);
}
.btn-ghost {
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--heading);
}
.topbar {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 252, 247, 0.86);
  backdrop-filter: blur(12px);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 10px 0;
  font-size: 0.9rem;
  color: #4b5563;
}
.topbar-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.topbar a {
  text-decoration: none;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: 0.25s ease;
}
.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 12px 30px rgba(28, 33, 40, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 0;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 56px;
  padding: 0 14px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff, #f4ede2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  color: var(--heading);
  font-weight: 900;
  letter-spacing: 0.08em;
  font-size: 1rem;
}
.brand strong {
  display: block;
  font-size: 1.08rem;
  letter-spacing: 0.02em;
  color: var(--heading);
}
.brand span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
}
.nav-toggle {
  display: none;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--heading);
  border-radius: 14px;
  width: 46px;
  height: 46px;
  font-size: 1.35rem;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-menu a {
  text-decoration: none;
  color: #334155;
  font-weight: 600;
  position: relative;
}
.nav-menu a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: 0.25s ease;
}
.nav-menu a:hover:after,
.nav-menu a.active:after {
  width: 100%;
}
.nav-menu a.active,
.nav-menu a:hover {
  color: var(--heading);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mobile-panel {
  display: contents;
}
.has-submenu {
  position: relative;
}
.nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-caret {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: 0.25s ease;
  opacity: 0.75;
}
.has-submenu.open > .nav-parent .nav-caret {
  transform: rotate(225deg) translateY(-1px);
}
.submenu {
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  min-width: 240px;
  padding: 12px;
  display: grid;
  gap: 6px;
  list-style: none;
  background: rgba(255, 252, 247, 0.98);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.25s ease;
  z-index: 70;
}
.submenu a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 0.94rem;
  font-weight: 600;
}
.submenu a:after {
  display: none;
}
.submenu a:hover,
.submenu a.active {
  background: #fff;
  color: var(--heading);
}
.has-submenu.open > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 74px;
  border-bottom: 1px solid var(--line);
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      115deg,
      rgba(253, 251, 247, 0.92),
      rgba(248, 243, 235, 0.88)
    ),
    url("cyberbg.PNG") center/cover no-repeat;
  z-index: -2;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(21, 34, 53, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 34, 53, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 92%);
  z-index: -1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 42px;
  align-items: center;
}
.hero-copy p.lead {
  font-size: 1.07rem;
  max-width: 690px;
  margin: 20px 0 28px;
  color: #4b5563;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-chips span {
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  color: #334155;
}
.dashboard-card,
.metric-card,
.feature-card,
.service-card,
.timeline-card,
.contact-card,
.blog-card,
.panel-card {
  background: linear-gradient(180deg, var(--card), var(--card-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.dashboard-card {
  padding: 28px;
}
.dash-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  color: #334155;
  font-size: 0.9rem;
}
.status-pill i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-block;
  box-shadow: 0 0 12px rgba(15, 118, 110, 0.38);
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}
.metric-card {
  padding: 18px;
}
.metric-card strong {
  font-size: 2rem;
  display: block;
  margin-bottom: 4px;
  color: var(--heading);
}
.metric-card span {
  font-size: 0.9rem;
  color: #6b7280;
}
.signal-bars {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  height: 86px;
}
.signal-bars span {
  flex: 1;
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(
    180deg,
    var(--primary-2),
    rgba(29, 78, 216, 0.22)
  );
  animation: pulseBars 2.2s infinite ease-in-out;
}
.signal-bars span:nth-child(1) {
  height: 46%;
}
.signal-bars span:nth-child(2) {
  height: 76%;
  animation-delay: 0.15s;
}
.signal-bars span:nth-child(3) {
  height: 60%;
  animation-delay: 0.3s;
}
.signal-bars span:nth-child(4) {
  height: 88%;
  animation-delay: 0.45s;
}
@keyframes pulseBars {
  50% {
    opacity: 0.55;
    transform: translateY(4px);
  }
}
.side-stack {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}
.mini-card {
  padding: 22px;
}
.mini-card h3 {
  margin-bottom: 8px;
}
.trust-band {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
}
.trust-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.trust-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.trust-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: #475569;
  font-size: 0.9rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card,
.feature-card,
.timeline-card,
.blog-card,
.contact-card,
.panel-card {
  padding: 26px;
  position: relative;
  overflow: hidden;
}
.service-card:before,
.feature-card:before,
.blog-card:before,
.contact-card:before {
  content: "";
  position: absolute;
  inset: auto -80px -80px auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(
    circle,
    rgba(15, 118, 110, 0.09),
    transparent 65%
  );
}
.service-card img,
.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 18px;
  border: 1px solid rgba(107, 88, 56, 0.1);
}
.service-card ul,
.check-list,
.icon-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 16px;
}
.check-list li,
.icon-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #334155;
}
.check-list li:before,
.icon-list li:before {
  content: "✓";
  color: var(--primary);
  font-weight: 900;
}
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}
.split-visual img {
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  max-height: 520px;
  object-fit: cover;
  width: 100%;
}
.highlight-box {
  padding: 26px;
  background: linear-gradient(180deg, #fff, #fbf7ef);
  border: 1px solid var(--line);
  border-radius: 26px;
  display: grid;
  gap: 16px;
}
.highlight-stat {
  display: flex;
  justify-content: space-between;
  padding: 16px 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
}
.highlight-stat strong {
  font-size: 1.6rem;
  color: var(--heading);
}
.process-grid {
  counter-reset: step;
}
.timeline-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.timeline-card .step {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  font-weight: 900;
  color: #fff;
}
.case-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: stretch;
}
.case-main {
  padding: 28px;
  background: linear-gradient(135deg, #fff, #faf6ee);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.case-side {
  display: grid;
  gap: 18px;
}
.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.metric-box {
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #fff;
}
.metric-box strong {
  font-size: 1.8rem;
  display: block;
  color: var(--heading);
}
.metric-box span {
  font-size: 0.92rem;
  color: #6b7280;
}
.page-hero {
  padding: 78px 0 52px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(252, 249, 244, 0.96),
    rgba(248, 244, 237, 0.82)
  );
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 30px;
  align-items: center;
}
.hero-panel-image img {
  border-radius: 26px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 300px;
  object-fit: cover;
}
.logo-cloud {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.logo-cloud .panel-card {
  padding: 18px;
  text-align: center;
  font-weight: 700;
  color: #334155;
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
}
.contact-details {
  display: grid;
  gap: 18px;
}
.contact-item strong {
  display: block;
  margin-bottom: 6px;
}
.social-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.social-row a {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  transition: 0.2s ease;
}
.social-row a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.social-row img {
  width: 20px;
  height: 20px;
}
.contact-form {
  display: grid;
  gap: 16px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.field {
  display: grid;
  gap: 8px;
}
.field label {
  font-weight: 700;
  color: var(--heading);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--heading);
  font: inherit;
}
.field textarea {
  min-height: 140px;
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #9ca3af;
}
.alert {
  display: none;
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 700;
}
.alert.show {
  display: block;
}
.alert.success {
  background: rgba(15, 118, 110, 0.1);
  border: 1px solid rgba(15, 118, 110, 0.2);
  color: #0f766e;
}
.alert.error {
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.2);
  color: #b91c1c;
}
.cta-banner {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(
    135deg,
    rgba(15, 118, 110, 0.08),
    rgba(29, 78, 216, 0.08),
    #fff
  );
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow);
}
.footer {
  padding: 28px 0 36px;
  border-top: 1px solid var(--line);
  background: #f4efe6;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr 0.9fr;
  gap: 22px;
  margin-bottom: 24px;
}
.footer h4 {
  margin-bottom: 12px;
  color: var(--heading);
}
.footer ul {
  list-style: none;
  display: grid;
  gap: 10px;
}
.footer a {
  text-decoration: none;
  color: #4b5563;
}
.footer a:hover {
  color: var(--heading);
}
.footer .brand-mark {
  min-width: 50px;
  height: 50px;
}
.footer-social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.footer-social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(34, 44, 58, 0.05);
}
.footer-social-icons img {
  width: 18px;
  height: 18px;
}
.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.92rem;
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.delay-1 {
  transition-delay: 0.12s;
}
.delay-2 {
  transition-delay: 0.22s;
}
.floating-chat {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
}
.chat-toggle {
  width: 62px;
  height: 62px;
  border: none;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 18px 30px rgba(15, 118, 110, 0.2);
  color: #fff;
  font-size: 1.55rem;
  font-weight: 900;
  cursor: pointer;
}
.chat-box {
  display: none;
  width: min(380px, calc(100vw - 28px));
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 12px;
}
.chat-box.open {
  display: block;
}
.chat-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 18px 12px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #faf6ef);
}
.chat-head button {
  background: transparent;
  border: none;
  color: var(--heading);
  font-size: 1.4rem;
  cursor: pointer;
}
.chat-messages {
  padding: 16px;
  height: 300px;
  overflow: auto;
  display: grid;
  gap: 12px;
  background: #fffdf9;
}
.chat-msg {
  max-width: 86%;
  padding: 12px 14px;
  border-radius: 16px;
  font-size: 0.96rem;
  white-space: pre-wrap;
}
.chat-msg.bot {
  background: #f3f4f6;
  color: #1f2937;
}
.chat-msg.user {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  margin-left: auto;
  font-weight: 700;
}
.chat-msg.bot.typing {
  color: #64748b;
  font-style: italic;
}
.chat-input-row {
  display: flex;
  gap: 10px;
  padding: 14px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.chat-input-row input {
  flex: 1;
  padding: 13px 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line-strong);
  color: var(--heading);
}
.chat-input-row button {
  border: none;
  border-radius: 14px;
  padding: 0 16px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-weight: 900;
}
@media (max-width: 1024px) {
  .hero-grid,
  .split-layout,
  .case-strip,
  .page-hero-grid,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3,
  .grid-2,
  .metric-row,
  .logo-cloud,
  .form-grid,
  .metric-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 820px) {
  .has-submenu {
    width: 100%;
  }
  .nav-parent {
    width: 100%;
    justify-content: space-between;
  }
  .submenu {
    position: static;
    min-width: 100%;
    padding: 8px 0 0;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
  }
  .has-submenu.open > .submenu {
    display: grid;
  }
  .submenu a {
    padding: 10px 0 10px 14px;
    border-radius: 0;
  }
  .submenu a:hover,
  .submenu a.active {
    background: transparent;
    color: var(--heading);
  }
  .nav-toggle {
    display: grid;
    place-items: center;
  }
  .mobile-panel {
    position: fixed;
    top: 87px;
    left: 16px;
    right: 16px;
    background: rgba(255, 252, 247, 0.98);
    backdrop-filter: blur(14px);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 18px;
    display: none;
    box-shadow: var(--shadow);
  }
  .mobile-panel.open {
    display: grid;
    gap: 18px;
  }
  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .header-actions .btn-primary {
    display: none;
  }
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero {
    padding-top: 62px;
  }
  .grid-3,
  .grid-2,
  .grid-4,
  .metric-row,
  .logo-cloud,
  .form-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy h1 {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }
}
@media (max-width: 560px) {
  .container {
    width: min(var(--max), calc(100% - 24px));
  }
  .section {
    padding: 74px 0;
  }
  .brand-mark {
    min-width: 48px;
    height: 48px;
    font-size: 0.92rem;
    padding: 0 12px;
  }
  .brand strong {
    font-size: 0.96rem;
  }
  .brand span {
    font-size: 0.74rem;
  }
  .btn {
    width: 100%;
  }
  .hero-actions {
    display: grid;
  }
  .cta-banner {
    padding: 24px;
  }
  .floating-chat {
    right: 14px;
    bottom: 14px;
  }
}
