* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-bg: #040814;
  --color-surface: rgba(10, 16, 29, 0.78);
  --color-text: rgba(238, 244, 255, 0.78);
  --color-text-strong: #a9a9a9;
  --color-text-soft: rgba(238, 244, 255, 0.58);
  --color-accent: #ffa508;
  --color-accent-strong: #ffffff;
  --color-highlight: #5da9ff;
  --color-border: rgba(255, 255, 255, 0.12);
  --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.32);
  --shadow-strong: 0 30px 90px rgba(0, 0, 0, 0.42);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --max-width: 1240px;
  --header-height: 110px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 8px);
}

body {
  font-family: "Poppins", "Segoe UI", sans-serif;
  background:
    radial-gradient(660px 440px at 12% 10%, rgba(255, 157, 67, 0.15), transparent 62%),
    radial-gradient(620px 420px at 88% 12%, rgba(93, 169, 255, 0.13), transparent 64%),
    linear-gradient(180deg, #02050d 0%, #050a14 30%, #09111d 100%);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 72%);
  opacity: 0.2;
}

body::after {
  background:
    radial-gradient(360px 260px at 18% 80%, rgba(255, 157, 67, 0.14), transparent 72%),
    radial-gradient(380px 280px at 84% 74%, rgba(93, 169, 255, 0.14), transparent 74%);
  opacity: 0.48;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

ion-icon {
  display: block;
}

.page {
  position: relative;
  z-index: 1;
}

.section-shell {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 96px 4%;
  scroll-margin-top: calc(var(--header-height) + 8px);
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent 36%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.section-heading {
  max-width: 700px;
}

.section-heading--center {
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2,
.cta-copy h2 {
  margin-top: 16px;
  font-size: clamp(2.1rem, 4.8vw, 4.3rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: var(--color-text-strong);
  text-wrap: balance;
}

.section-heading--center h2 {
  margin-left: auto;
  margin-right: auto;
  max-width: 13ch;
}

.section-heading p:not(.eyebrow),
.cta-copy p:not(.eyebrow) {
  margin-top: 18px;
  max-width: 62ch;
  color: var(--color-text-strong);
}

.section-heading--center p:not(.eyebrow) {
  margin-left: auto;
  margin-right: auto;
}

.eyebrow,
.panel-label,
.screen-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-strong);
}

.eyebrow::before,
.panel-label::before,
.screen-eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.75;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease,
    color 0.28s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: #1e1207;
  background: linear-gradient(135deg, #ffa508, #ffa209);
  box-shadow: 0 20px 42px rgba(255, 157, 67, 0.26);
}

.button-primary:hover {
  box-shadow: 0 26px 52px rgba(255, 157, 67, 0.34);
}

.button-secondary {
  color: var(--color-text-strong);
  background: linear-gradient(135deg, #ffa508, #ffa209);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.button-secondary:hover {
  background: linear-gradient(135deg, #ffa508, #ffa209);
  border-color: rgba(255, 255, 255, 0.28);
}

.header {
  height: var(--header-height);
  padding: 0 clamp(18px, 3vw, 38px);
  background: rgba(4, 8, 16, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: none;
  position: sticky;
  top: 0;
  z-index: 50;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 250px;
  width: auto;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text-strong);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

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

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-toggle:focus-visible,
.nav > a:focus-visible,
.nav .dropdown > a:focus-visible,
.dropdown-menu a:focus-visible,
.button:focus-visible,
.contact-card:focus-visible,
.footer-links a:focus-visible {
  outline: 2px solid rgba(255, 157, 67, 0.72);
  outline-offset: 4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
}

.dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav > a,
.nav .dropdown > a {
  position: relative;
  padding: 6px 0;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  transition: color 0.22s ease;
}

.nav > a::after,
.nav .dropdown > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-highlight));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.26s ease;
}

.nav > a:hover::after,
.nav > a.active::after,
.nav .dropdown > a:hover::after,
.nav .dropdown > a.active::after {
  transform: scaleX(1);
}

.nav > a:hover,
.nav > a.active,
.nav .dropdown > a:hover,
.nav .dropdown > a.active {
  color: var(--color-text-strong);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: -14px;
  min-width: 220px;
  padding: 12px;
  display: grid;
  gap: 8px;
  border-radius: 18px;
  border: 1px solid var(--color-border);
  background: rgba(6, 10, 20, 0.96);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.dropdown.is-open .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (hover: hover) and (min-width: 921px) {
  .dropdown:hover .dropdown-menu,
  .dropdown:focus-within .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

.dropdown-menu a {
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 0.88rem;
  color: var(--color-text);
  transition: background 0.22s ease, transform 0.22s ease, color 0.22s ease;
}

.dropdown-menu a:hover {
  color: var(--color-text-strong);
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(3px);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: stretch;
  padding: clamp(20px, 4vh, 40px) 4% clamp(26px, 5vh, 48px);
  background: #030811;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.92;
  filter: saturate(1.05) contrast(1.03);
}

.scroll-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.scroll-track {
  display: flex;
  width: 200%;
  height: 100%;
  animation: scrollX 20s linear infinite;
}

.scroll-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.03);
}
.scroll-track img {
  transform: scale(1.08);
}

@keyframes scrollX {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.hero-media-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(102deg, rgba(2, 6, 12, 0.84) 0%, rgba(2, 6, 12, 0.6) 34%, rgba(2, 6, 12, 0.26) 64%, rgba(2, 6, 12, 0.66) 100%),
    linear-gradient(180deg, rgba(4, 8, 16, 0.2), rgba(4, 8, 16, 0.54));
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.hero::before {
  width: 520px;
  height: 520px;
  top: -120px;
  right: -120px;
  background: radial-gradient(circle, rgba(255, 157, 67, 0.16), transparent 68%);
}

.hero::after {
  width: 420px;
  height: 420px;
  bottom: -180px;
  left: -120px;
  background: radial-gradient(circle, rgba(93, 169, 255, 0.16), transparent 70%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: calc(100svh - var(--header-height) - clamp(46px, 9vh, 88px));
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto;
  gap: clamp(28px, 8vh, 76px);
  align-items: start;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 80vh;
}

.hero-title {
  margin-top: 14px;
  max-width: 12.8ch;
  font-size: clamp(2.9rem, 4.9vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  color: var(--color-text-strong);
}

.hero-text {
  margin-top: 16px;
  max-width: 54ch;
  font-size: clamp(1.02rem, 1.12vw, 1.14rem);
  line-height: 1.6;
}
.hero-top {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 600px;
  align-self: start;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.hero-proof {
  grid-row: 3;
  align-self: end;
  justify-self: start;
  width: min(100%, 560px);
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.proof-chip,
.screen-copy,
.dashboard-product,
.metric-card,
.problem-card,
.feature-card,
.process-card,
.service-banner,
.benefit-item,
.stat-card,
.testimonial-card,
.logo-pill,
.contact-card {
  border: 1px solid var(--color-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(9, 14, 25, 0.78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.proof-chip {
  padding: 14px 14px 16px;
  border-radius: 20px;
}

.proof-chip strong {
  display: block;
  color: var(--color-text-strong);
  font-size: 0.94rem;
}

.proof-chip span {
  display: block;
  margin-top: 5px;
  font-size: 0.84rem;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  min-height: clamp(450px, 50vh, 540px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
}

.hero-orb--one {
  width: 180px;
  height: 180px;
  top: 34px;
  left: 22px;
  background: radial-gradient(circle, rgba(255, 213, 111, 0.26), transparent 70%);
  animation: drift 12s ease-in-out infinite;
}

.hero-orb--two {
  width: 210px;
  height: 210px;
  right: 14px;
  bottom: 44px;
  background: radial-gradient(circle, rgba(93, 169, 255, 0.24), transparent 72%);
  animation: drift 15s ease-in-out infinite reverse;
}

.dashboard-panel {
  position: relative;
  width: min(100%, 590px);
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.dashboard-top,
.dashboard-screen,
.dashboard-metrics {
  position: relative;
  z-index: 1;
}

.hero .screen-copy,
.hero .dashboard-product,
.hero .metric-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    rgba(9, 14, 25, 0.26);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--color-text-strong);
  font-size: 0.82rem;
  font-weight: 600;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, #86ffb1, #35d06b);
  animation: pulse 1.8s ease-in-out infinite;
}

.dashboard-note {
  max-width: 24ch;
  font-size: 0.9rem;
  text-align: right;
}

.dashboard-screen {
  margin-top: 18px;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(220px, 0.84fr);
  gap: 12px;
}

.screen-copy,
.dashboard-product {
  padding: 20px;
  border-radius: 26px;
}

.screen-copy h2 {
  margin-top: 12px;
  font-size: clamp(1.55rem, 2vw, 1.95rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  color: var(--color-text-strong);
}

.screen-list {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.screen-list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.94rem;
  line-height: 1.45;
}

.screen-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-accent-strong) 0 42%, rgba(255, 157, 67, 0.12) 43% 100%);
}

.dashboard-product {
  display: grid;
  place-items: center;
}

.dashboard-product img {
  width: 100%;
  max-width: 225px;
  filter: drop-shadow(0 20px 32px rgba(0, 0, 0, 0.38));
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.metric-card,
.problem-card,
.process-card,
.stat-card {
  padding: 18px;
  border-radius: 24px;
}

.metric-card strong,
.stat-card strong {
  display: block;
  color: var(--color-text-strong);
  line-height: 1;
  letter-spacing: -0.05em;
}

.metric-card strong {
  font-size: 1.62rem;
}

.metric-card span {
  display: block;
  margin-top: 8px;
  font-size: 0.88rem;
  line-height: 1.35;
}

.stat-card span {
  display: block;
  margin-top: 8px;
  font-size: 0.84rem;
  line-height: 1.35;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 30px;
  align-items: start;
}

.problem-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  text-decoration: none;
}

.feature-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -60px;
  bottom: -70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(93, 169, 255, 0.18), transparent 72%);
}

.feature-card:nth-child(2n)::before {
  background: radial-gradient(circle, rgba(255, 157, 67, 0.18), transparent 72%);
}

.solutions-section {
  background:
    radial-gradient(520px 260px at 14% 18%, rgba(255, 157, 67, 0.08), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent 42%);
}

.mini-icon,
.feature-icon,
.process-icon,
.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--color-text-strong);
  background: linear-gradient(135deg, rgba(255, 157, 67, 0.22), rgba(93, 169, 255, 0.16));
}

.mini-icon ion-icon,
.feature-icon ion-icon,
.process-icon ion-icon,
.benefit-icon ion-icon {
  font-size: 1.45rem;
}

.problem-card h3,
.feature-card h3,
.process-card h3,
.benefit-item h3 {
  margin-top: 18px;
  font-size: 1.22rem;
  line-height: 1.22;
  color: var(--color-text-strong);
}

.feature-card p,
.problem-card p,
.process-card p,
.benefit-item p {
  margin-top: 12px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
  font-weight: 700;
  color: var(--color-accent-strong);
}

.card-link::after {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.step-badge {
  display: inline-flex;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--color-accent-strong);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.service-banner {
  margin-top: 30px;
  padding: 30px 32px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.service-banner h3 {
  margin-top: 12px;
  max-width: 30ch;
  font-size: clamp(1.5rem, 2.3vw, 2.2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--color-text-strong);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: 30px;
}

.benefit-list {
  list-style: none;
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.benefit-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 22px;
  border-radius: 26px;
}

.benefit-item p {
  margin-top: 8px;
}

.trust-column {
  display: grid;
  gap: 18px;
}

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

.stat-card strong {
  font-size: clamp(2.35rem, 4vw, 3.25rem);
}

.testimonial-stack {
  display: grid;
  gap: 18px;
}

.testimonial-card {
  padding: 24px 26px;
  border-radius: 28px;
}

.testimonial-author {
  display: block;
  margin-top: 16px;
  color: var(--color-accent-strong);
  font-size: 0.92rem;
  font-weight: 700;
}

.trust-section {
  padding-top: 58px;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.logo-pill {
  min-height: 86px;
  padding: 18px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
}

.cta-section {
  padding-bottom: 88px;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 4vw, 40px);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 157, 67, 0.14), rgba(93, 169, 255, 0.11) 48%, rgba(9, 15, 28, 0.96)),
    rgba(9, 15, 28, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-strong);
}

.cta-copy h2 {
  max-width: 12ch;
}

.cta-copy .button {
  margin-top: 28px;
}

.cta-actions {
  display: grid;
  gap: 14px;
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 22px;
  text-decoration: none;
}

.contact-card strong {
  color: var(--color-text-strong);
  font-size: 1rem;
  font-weight: 700;
  text-align: right;
}

.footer {
  padding: 28px 4% 42px;
  background: rgba(3, 7, 14, 0.78);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 34px;
}

.footer-brand img {
  height: 145px;
  width: auto;
  margin: -16px 0 -12px -10px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.footer-title {
  margin-bottom: 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent-strong);
}

.footer-links a {
  display: block;
  width: fit-content;
  margin-bottom: 10px;
  text-decoration: none;
  color: var(--color-text);
}

.footer-bottom {
  width: min(100%, var(--max-width));
  margin: 30px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  color: var(--color-text-soft);
  font-size: 0.92rem;
}

.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;
}

.chat-launcher {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 68px;
  padding: 12px 18px 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 157, 67, 0.12), rgba(93, 169, 255, 0.14)),
    rgba(8, 12, 22, 0.9);
  color: var(--color-text-strong);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.chat-launcher:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 157, 67, 0.32);
  box-shadow: 0 28px 62px rgba(0, 0, 0, 0.42);
}

.chat-launcher.is-active {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.chat-launcher-ring,
.chat-launcher-icon {
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.chat-launcher-ring {
  position: absolute;
  inset: 10px auto 10px 10px;
  width: 48px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.chat-launcher-icon {
  position: relative;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-highlight));
  color: #07101f;
  flex-shrink: 0;
}

.chat-launcher-icon ion-icon {
  font-size: 1.35rem;
}

.chat-launcher-copy {
  display: grid;
  gap: 2px;
  text-align: left;
}

.chat-launcher-copy strong {
  font-size: 0.96rem;
  line-height: 1.2;
}

.chat-launcher-copy span {
  font-size: 0.8rem;
  color: var(--color-text);
}

.chat-assistant {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 72;
  width: min(390px, calc(100vw - 24px));
  height: min(720px, calc(100vh - 24px));
  padding: 18px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  gap: 16px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(11, 18, 32, 0.9), rgba(7, 12, 22, 0.88)),
    linear-gradient(135deg, rgba(255, 157, 67, 0.08), rgba(93, 169, 255, 0.08));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(22px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow: hidden;
  transform: translateY(20px) scale(0.98);
  transition: opacity 0.26s ease, transform 0.26s ease, visibility 0.26s ease;
}

.chat-assistant.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.chat-assistant__header,
.chat-assistant__brand {
  display: flex;
  align-items: center;
}

.chat-assistant__header {
  justify-content: space-between;
  gap: 16px;
}

.chat-assistant__brand {
  gap: 12px;
}

.chat-assistant__badge,
.chat-close {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text-strong);
}

.chat-assistant__badge ion-icon,
.chat-close ion-icon {
  font-size: 1.1rem;
}

.chat-assistant__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent-strong);
}

.chat-assistant__brand h3 {
  margin-top: 2px;
  font-size: 1.2rem;
  line-height: 1.1;
  color: var(--color-text-strong);
}

.chat-close {
  cursor: pointer;
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.chat-close:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.chat-thread {
  min-height: 0;
  overflow-y: auto;
  display: grid;
  align-content: start;
  gap: 12px;
  padding-right: 6px;
}

.chat-bubble {
  max-width: 88%;
  padding: 12px 14px;
  border-radius: 18px;
  font-size: 0.92rem;
  line-height: 1.55;
  white-space: pre-line;
}

.chat-bubble--bot {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-text-strong);
}

.chat-bubble--user {
  margin-left: auto;
  border: 1px solid rgba(255, 157, 67, 0.18);
  background: linear-gradient(135deg, rgba(255, 157, 67, 0.18), rgba(93, 169, 255, 0.14));
  color: var(--color-text-strong);
}

.chat-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-start;
}

.chat-chip {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text);
  font: inherit;
  cursor: pointer;
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease, color 0.22s ease;
}

.chat-chip:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 157, 67, 0.28);
  color: var(--color-text-strong);
  transform: translateY(-1px);
}

.chat-response-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.chat-response-actions--contact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.chat-response-link {
  min-height: 42px;
  padding: 10px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(255, 255, 255, 0.02);
  color: var(--color-text-strong);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.chat-response-link:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 157, 67, 0.3);
  background:
    linear-gradient(180deg, rgba(255, 157, 67, 0.08), rgba(93, 169, 255, 0.05)),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.chat-response-link--contact {
  gap: 6px;
  flex-direction: column;
  padding: 10px 8px;
}

.chat-response-link--contact ion-icon {
  font-size: 0.94rem;
}

.chat-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.chat-input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text-strong);
  font: inherit;
}

.chat-input::placeholder {
  color: var(--color-text-soft);
}

.chat-input:focus-visible,
.chat-send:focus-visible,
.chat-chip:focus-visible,
.chat-response-link:focus-visible,
.chat-launcher:focus-visible,
.chat-close:focus-visible {
  outline: 2px solid rgba(255, 157, 67, 0.72);
  outline-offset: 3px;
}

.chat-send {
  min-width: 86px;
  min-height: 48px;
  padding: 0 18px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-strong));
  color: #19120a;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 16px 32px rgba(255, 157, 67, 0.22);
}

.chat-send:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 36px rgba(255, 157, 67, 0.28);
}

.proof-chip,
.metric-card,
.problem-card,
.feature-card,
.process-card,
.stat-card,
.logo-pill,
.contact-card,
.footer-links a,
.benefit-item {
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.problem-card:hover,
.feature-card:hover,
.process-card:hover,
.stat-card:hover,
.logo-pill:hover,
.contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 157, 67, 0.42);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.4);
}

.benefit-item:hover {
  transform: translateX(6px);
  border-color: rgba(93, 169, 255, 0.34);
}

.footer-links a:hover {
  transform: translateX(3px);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.25);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -12px, 0);
  }
}

@media (max-width: 1180px) {
  .hero-grid,
  .split-layout,
  .about-grid,
  .cta-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .problem-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

@media (min-width: 921px) and (max-height: 900px) {
  .hero {
    padding: 14px 4% 18px;
  }

  .hero-grid {
    gap: 18px;
  }

  .hero-title {
    max-width: 13.8ch;
    font-size: clamp(2.45rem, 4vw, 4.1rem);
    line-height: 0.98;
  }

  .hero-text {
    margin-top: 12px;
    max-width: 52ch;
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .hero-actions {
    margin-top: 16px;
    gap: 10px;
  }

  .hero .button {
    min-height: 46px;
    padding: 0 20px;
    font-size: 0.98rem;
  }

  .hero-proof {
    margin-top: 0;
    gap: 10px;
  }

  .proof-chip {
    padding: 12px 12px 14px;
  }

  .proof-chip strong {
    font-size: 0.9rem;
  }

  .proof-chip span {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .hero-visual {
    min-height: 380px;
  }

  .dashboard-panel {
    padding: 16px;
  }

  .status-pill {
    min-height: 34px;
    font-size: 0.76rem;
  }

  .dashboard-note {
    font-size: 0.82rem;
  }

  .screen-copy,
  .dashboard-product {
    padding: 14px;
  }

  .screen-copy h2 {
    margin-top: 10px;
    font-size: clamp(1.34rem, 1.6vw, 1.68rem);
  }

  .screen-list {
    gap: 6px;
    margin-top: 10px;
  }

  .screen-list li {
    font-size: 0.86rem;
    line-height: 1.35;
  }

  .dashboard-product img {
    max-width: 185px;
  }

  .dashboard-metrics {
    margin-top: 10px;
    gap: 8px;
  }

  .metric-card {
    padding: 12px;
  }

  .metric-card strong {
    font-size: 1.26rem;
  }

  .metric-card span {
    margin-top: 6px;
    font-size: 0.78rem;
    line-height: 1.28;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 82px;
  }

  .header {
    padding: 0 18px;
  }

  .logo img {
    height: clamp(66px, 12vw, 88px);
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    top: calc(100% + 14px);
    left: 18px;
    right: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 20px;
    border-radius: 24px;
    background: rgba(8, 12, 21, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.24s ease, transform 0.24s ease;
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav > a,
  .nav .dropdown > a {
    width: 100%;
    padding: 0;
  }

  .dropdown {
    display: block;
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    left: auto;
    top: auto;
    min-width: 0;
    margin-top: 10px;
    padding: 0;
    gap: 8px;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
  }

  .dropdown.is-open .dropdown-menu {
    max-height: 240px;
  }

  .dropdown-menu a {
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
  }

  .hero-title {
    font-size: clamp(2.7rem, 12vw, 4.4rem);
  }

  .hero-proof,
  .dashboard-metrics,
  .stats-grid,
  .logo-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .problem-panel,
  .process-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .service-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .chat-launcher {
    right: 16px;
    bottom: 16px;
  }

  .chat-assistant {
    right: 16px;
    bottom: 16px;
    width: min(390px, calc(100vw - 20px));
    height: min(680px, calc(100vh - 20px));
  }
}

@media (max-width: 640px) {
  .section {
    padding: 64px 5%;
  }

  .section-heading--center {
    margin-bottom: 28px;
  }

  .section-heading h2,
  .cta-copy h2 {
    font-size: clamp(1.85rem, 9vw, 3rem);
    letter-spacing: -0.025em;
  }

  .hero {
    min-height: auto;
    padding: 28px 5% 42px;
  }

  .hero-grid {
    min-height: calc(100svh - var(--header-height) - 70px);
    gap: 24px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .dashboard-screen,
  .footer-links {
    width: 100%;
  }

  .hero-proof,
  .dashboard-metrics,
  .stats-grid,
  .logo-strip,
  .feature-grid {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-note {
    text-align: left;
  }

  .contact-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-card strong {
    text-align: left;
  }

  .chat-launcher {
    min-height: 58px;
    padding: 10px 14px 10px 10px;
    gap: 10px;
  }

  .chat-launcher-ring,
  .chat-launcher-icon {
    width: 40px;
    height: 40px;
  }

  .chat-launcher-copy strong {
    font-size: 0.88rem;
  }

  .chat-launcher-copy span {
    font-size: 0.74rem;
  }

  .chat-assistant {
    padding: 16px;
    border-radius: 24px;
    grid-template-rows: auto minmax(0, 1fr) auto auto;
    height: min(700px, calc(100vh - 16px));
  }

  .chat-thread {
    min-height: 0;
  }

  .chat-bubble {
    max-width: 94%;
    font-size: 0.88rem;
  }

  .chat-form {
    grid-template-columns: 1fr;
  }

  .chat-response-actions,
  .chat-response-actions--contact {
    grid-template-columns: 1fr;
  }

  .chat-response-link--contact {
    flex-direction: row;
    justify-content: flex-start;
    padding: 12px 14px;
  }

  .chat-send {
    width: 100%;
  }
}

@media (max-width: 460px) {
  .hero-proof,
  .dashboard-metrics,
  .stats-grid,
  .logo-strip,
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}

/* Desktop-style mobile layout */
@media (max-width: 920px) {
  :root {
    --header-height: clamp(78px, 15vw, 104px);
  }

  body.nav-open {
    overflow-y: auto;
  }

  .header {
    height: var(--header-height);
    padding: 0 clamp(14px, 4vw, 34px);
    flex-wrap: nowrap;
    overflow: visible;
  }

  .logo img {
    height: clamp(82px, 15vw, 120px);
  }

  .nav-toggle {
    display: none !important;
  }

  .nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: clamp(12px, 3vw, 28px);
    width: auto;
    max-height: none;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    overflow: visible;
    white-space: nowrap;
  }

  .nav > a,
  .nav .dropdown > a {
    width: auto;
    padding: 6px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-size: clamp(0.76rem, 2vw, 0.9rem);
  }

  .nav > a::after,
  .nav .dropdown > a::after {
    display: block;
  }

  .dropdown {
    display: flex;
    width: auto;
  }

  .dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: -14px;
    min-width: 210px;
    margin-top: 0;
    padding: 12px;
    gap: 8px;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    background: rgba(6, 10, 20, 0.96);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    max-height: none;
    overflow: visible;
  }

  .dropdown.is-open .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    height: clamp(320px, 52svh, 440px);
    min-height: 0;
    padding: clamp(14px, 3vh, 24px) 4% clamp(16px, 3vh, 28px);
  }

  .hero-grid {
    min-height: 100%;
    height: 100%;
    grid-template-rows: auto 1fr auto;
    gap: clamp(14px, 4vh, 32px);
  }

  .hero-title {
    max-width: 12.8ch;
    font-size: clamp(2rem, 7vw, 3.4rem);
  }

  .scroll-track img {
    transform: none;
  }

  .hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .hero-proof {
    gap: 10px;
  }

  .proof-chip {
    padding: 12px 10px;
  }

  .proof-chip strong {
    font-size: clamp(0.72rem, 3.2vw, 0.92rem);
  }

  .proof-chip span {
    font-size: clamp(0.64rem, 2.8vw, 0.82rem);
    line-height: 1.35;
  }

  .feature-grid,
  .process-grid,
  .stats-grid,
  .logo-strip,
  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
