/* --------------------------------------------------------------------------
   Design tokens — matches reference: navy #050A30, accent #FF3366
   Font: Poppins (headings + body)
   -------------------------------------------------------------------------- */
:root {
  --color-navy: #050a30;
  --color-navy-soft: #0d1438;
  --color-accent: #ff3366;
  --color-accent-hover: #e62e5c;
  --color-white: #ffffff;
  --color-text-muted: rgba(255, 255, 255, 0.75);
  --color-text-dark: #050a30;
  --color-text-body: #4a5568;
  --color-icon-teal: #14b8a6;
  --color-icon-blue: #3b82f6;
  --color-icon-orange: #f59e0b;
  --color-card-hero: rgba(255, 255, 255, 0.08);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-mockup: 0 12px 40px rgba(0, 0, 0, 0.12);
  --container-max: 1180px;
  --section-pad-y: 80px;
  --radius-btn: 50px;
  --radius-card: 10px;
  --mega-blue: #1a7fb8;
  --mega-blue-dark: #0f679c;
  --mega-blue-light: #2ea8de;
  --mega-border: #d6e5ef;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

body {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-dark);
  background: var(--color-white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-white);
  padding: 14px 32px;
  border-radius: var(--radius-btn);
}

.btn--primary:hover {
  background: var(--color-accent-hover);
}

.btn--primary:active {
  transform: scale(0.98);
}

.link-learn {
  color: var(--color-accent);
  font-weight: 600;
  font-size: 15px;
}

.link-learn:hover {
  text-decoration: underline;
}

/* Section spacing */
.section {
  padding: var(--section-pad-y) 0;
}

.section--navy {
  background: var(--color-navy);
  color: var(--color-white);
}

.section--white {
  background: var(--color-white);
}

.section--gradient-pink {
  background: linear-gradient(180deg, #ffffff 0%, #fff5f8 50%, #ffeef4 100%);
}

/* Typography */
.heading-hero {
  font-family: "Poppins", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 50px;
  letter-spacing: normal;
  margin: 0 0 20px;
  text-align: center;
  color: rgb(255, 255, 255);
}

@media (max-width: 768px) {
  .heading-hero {
    font-size: clamp(2rem, 12vw, 32px);
    line-height: 1.01;
  }
}

.subhead-hero {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
  color: var(--color-text-muted);
}

.heading-section {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 16px;
  text-align: center;
  color: var(--color-text-dark);
}

.text-center {
  text-align: center;
}

.text-body {
  color: var(--color-text-body);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

.text-body--narrow {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== Header / Hero ========== */
.hero {
  position: relative;
  background-color: #444bc6 !important;
  background: linear-gradient(180deg, #0f0d2d 0, #0b0b44);
  padding-bottom: 0;
  overflow: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #0b0b44;
  background: linear-gradient(180deg, #0f0d2d 0%, #0b0b44 100%);
}

.site-header > .container {
  padding-left: 0;
  padding-right: 0;
  max-width: 100%;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
  border-bottom: none;
  position: relative;
}

.site-header::after {
  content: "";
  display: block;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle {
  display: none;
}

.mobile-menu {
  display: none;
}

.logo--mega {
  color: var(--mega-blue-dark);
  font-weight: 700;
  font-size: 18px;
  white-space: nowrap;
}

.logo--mega .logo__mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e11d48 0%, #0f3d96 100%);
}

.nav-links--mega {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: static;
  list-style: none;
}

.nav-links--mega > .nav-item > a {
  display: inline-flex;
  align-items: center;
  height: 74px;
  color: var(--color-white);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-align: center;
  line-height: 1.1;
}

.nav-links--mega > .nav-item:hover > a {
  color: var(--mega-blue-dark);
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: #ffffff;
  border: 1px solid var(--mega-border);
  border-top: none;
  box-shadow: 0 10px 24px rgba(15, 45, 78, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.nav-item--mega:hover > .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mega-menu__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(110px, 1fr));
  align-items: start;
  width: 100%;
}

.mega-link {
  min-height: 104px;
  padding: 14px 10px 12px;
  border-right: 1px solid #eef4f9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.mega-link:last-child {
  border-right: 0;
}

.mega-link__title {
  color: var(--mega-blue);
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.2;
}

.mega-link__icon {
  margin-top: 12px;
  color: var(--mega-blue-light);
  font-size: 26px;
  line-height: 1;
}

.mega-link:hover {
  background: #f8fcff;
}

.header-search-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search {
  width: 180px;
  height: 38px;
  border: 1px solid var(--mega-border);
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 8px;
  background: #ffffff;
}

.header-search input {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  outline: 0;
  flex: 1;
  font-family: inherit;
  font-size: 14px;
  color: #334155;
  background: transparent;
}

.header-search__icon {
  width: 16px;
  height: 16px;
  display: block;
  color: var(--mega-blue);
}

.header-search input::-webkit-search-decoration,
.header-search input::-webkit-search-cancel-button,
.header-search input::-webkit-search-results-button,
.header-search input::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

.header-search__icon-btn {
  width: 24px;
  height: 24px;
  border: 0;
  background: transparent;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 22px;
  color: var(--color-white);
  letter-spacing: -0.03em;
}

.logo__mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--color-accent) 0%, #c0264a 100%);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--color-white);
}

.hero__inner {
  padding-top: 56px;
  padding-bottom: 100px;
}

.hero__tiles-fieldset {
  border: none;
  margin: 0 auto 36px;
  padding: 0;
  max-width: 1100px;
}

.hero__tiles-fieldset legend {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero__tiles {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  margin-bottom: 4rem;
  margin-left: auto;
  margin-right: auto;
}

.capability-tile {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  background: var(
    --Card-Gradient,
    radial-gradient(
      50.28% 26.58% at 50.28% 0,
      hsla(0, 0%, 100%, 0.08) 0,
      hsla(0, 0%, 100%, 0) 100%
    ),
    linear-gradient(
      129deg,
      hsla(0, 0%, 100%, 0.2) 0,
      hsla(0, 0%, 100%, 0.1) 100%
    )
  );
  border: none;
  border: 1px solid hsla(0, 0%, 100%, 0.2);
  border-radius: 16px;
  cursor: pointer;
  gap: 0;
  padding: 1.5rem;
  transition: background 0.1s ease;
  font-family: "Poppins", sans-serif;
}

.capability-tile:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
}

.capability-tile:has(.capability-tile__input:focus-visible) {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}

.capability-tile__input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.capability-tile__radio {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 14px;
  height: 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  pointer-events: none;
  box-sizing: border-box;
}

.capability-tile__input:checked + .capability-tile__radio {
  border-color: rgba(255, 255, 255, 1);
}

.capability-tile__input:checked + .capability-tile__radio::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
}

.capability-tile__icon-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 0;
}

.capability-tile__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.95);
}

.capability-tile__label {
  display: block;
  width: 100%;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
  color: #ffffff;
  margin-top: 4px;
}

.hero__cta-wrap {
  text-align: center;
  margin-bottom: 32px;
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 32px;
}

.trust-bar__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.stars {
  display: flex;
  gap: 2px;
  color: #fbbf24;
}

.trust-bar__logos {
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust-logo {
  height: 22px;
  opacity: 0.85;
  filter: brightness(0) invert(1);
}

/* Wave transition — single symmetric arc (inverted: valley at center, white higher at sides) */
.hero-wave {
  display: block;
  width: 100%;
  height: 72px;
  margin-top: -1px;
  line-height: 0;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 72px;
}

/* ========== Integration section ========== */
.integration-graphic {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  max-width: 960px;
  margin: 48px auto 48px;
  min-height: 280px;
}

.mock-dashboard {
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: var(--shadow-mockup);
  padding: 20px;
  border: 1px solid #e2e8f0;
}

.mock-dashboard__title {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 16px;
}

.mock-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 120px;
  padding-top: 8px;
}

.mock-bars span {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #60a5fa, #3b82f6);
}

.mock-bars span:nth-child(2) {
  height: 65%;
  background: linear-gradient(180deg, #a78bfa, #7c3aed);
}

.mock-bars span:nth-child(3) {
  height: 45%;
  background: linear-gradient(180deg, #34d399, #059669);
}

.mock-bars span:nth-child(4) {
  height: 88%;
}

.mock-bars span:nth-child(5) {
  height: 52%;
  background: linear-gradient(180deg, #fb923c, #ea580c);
}

.play-hub {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 48px rgba(255, 51, 102, 0.45);
  flex-shrink: 0;
}

.play-hub svg {
  width: 36px;
  height: 36px;
  margin-left: 6px;
  fill: var(--color-white);
}

.integration-apps {
  position: relative;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.app-node {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #64748b;
  border: 1px solid #e2e8f0;
}

.app-node--1 {
  top: 10%;
  right: 8%;
}

.app-node--2 {
  top: 38%;
  right: 2%;
}

.app-node--3 {
  bottom: 28%;
  right: 18%;
}

.app-node--4 {
  bottom: 8%;
  right: 5%;
}

.connector-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
}

.two-col-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: left;
}

.two-col-text h3 {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-text-dark);
  margin: 0 0 12px;
}

.two-col-text p {
  font-size: 15px;
  color: var(--color-text-body);
  margin: 0;
  line-height: 1.7;
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}

.logo-strip__item {
  flex: 0 0 auto;
  width: 140px;
  height: 64px;
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 1px solid #f1f5f9;
}

.logo-strip__item img {
  max-height: 28px;
  width: auto;
  opacity: 0.65;
  filter: grayscale(100%);
}

/* ========== Feature zigzag (light) ========== */
.platform-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}

.platform-tag__icon {
  width: 28px;
  height: 28px;
  background: var(--color-accent);
  border-radius: 6px;
}

.heading-platform {
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 400;
  text-align: center;
  margin: 0 0 56px;
  color: var(--color-text-dark);
}

.feature-zigzag {
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.feature-row__text {
  max-width: 480px;
}

.feature-icon-square {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.feature-icon-square--pink {
  background: var(--color-accent);
}

.feature-icon-square--teal {
  background: var(--color-icon-teal);
}

.feature-icon-square--blue {
  background: var(--color-icon-blue);
}

.feature-icon-square--orange {
  background: var(--color-icon-orange);
}

.feature-row__title {
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 14px;
  color: var(--color-text-dark);
  letter-spacing: -0.02em;
}

.feature-row__desc {
  font-size: 16px;
  color: var(--color-text-body);
  margin: 0 0 18px;
  line-height: 1.7;
}

.feature-row__mock {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: none;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
}

.feature-row__mock img {
  width: 100%;
  vertical-align: middle;
}

/* ========== Dark deep-dive ========== */
.section--navy .feature-row__title,
.section--navy .heading-section {
  color: var(--color-white);
}

.section--navy .text-body {
  color: var(--color-text-muted);
}

.section--navy .feature-row__mock {
  border-color: rgba(255, 255, 255, 0.1);
}

.diagram-placeholder {
  background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
  border-radius: 12px;
  min-height: 280px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.diagram-flow {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.diagram-node {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
}

/* ========== Social proof ========== */
.testimonial-card {
  max-width: 720px;
  margin: 40px auto 48px;
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  padding: 40px 48px;
  border: 1px solid #f1f5f9;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: start;
}

.testimonial-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f1f5f9;
}

.testimonial-card__quote {
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-text-dark);
  margin: 0 0 20px;
  font-style: italic;
}

.testimonial-card__name {
  font-weight: 400;
  font-size: 16px;
  margin: 0 0 4px;
}

.testimonial-card__role {
  font-size: 14px;
  color: var(--color-text-body);
  margin: 0;
}

.industry-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 32px;
  margin-bottom: 56px;
}

.industry-icons__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--color-text-body);
  width: 72px;
  text-align: center;
}

.industry-icons__glyph {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wide-mock {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-mockup);
  border: 1px solid #e2e8f0;
}

/* ========== Final CTA ========== */
.cta-panel {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 56px 40px;
  background: linear-gradient(135deg, #fff0f5 0%, #ffe4ec 100%);
  border-radius: 16px;
  border: 1px solid rgba(255, 51, 102, 0.12);
}

.cta-panel__title {
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 400;
  color: var(--color-text-dark);
  margin: 0 0 28px;
  line-height: 1.35;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.badge-g2 {
  padding: 8px 14px;
  background: var(--color-white);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  color: #334155;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* ========== Footer ========== */
.site-footer {
  position: relative;
  background: var(--color-navy);
  color: var(--color-white);
  padding: 64px 0 100px;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 40px 32px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  margin: 16px 0 0;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.95);
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-col a:hover {
  color: var(--color-white);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.social-row {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.footer-deco {
  position: absolute;
  pointer-events: none;
}

.footer-deco--circle {
  left: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.9;
}

.footer-deco--arc {
  right: -20px;
  bottom: -40px;
  width: 180px;
  height: 180px;
  border: 24px solid #f59e0b;
  border-radius: 50%;
  opacity: 0.35;
  clip-path: inset(0 0 50% 0);
}

/* ========== Responsive ========== */
@media (max-width: 992px) {
  .nav-bar {
    min-height: auto;
    padding: 14px 16px;
  }

  .nav-links {
    display: none;
  }

  .header-search-wrap {
    display: none;
  }

  .mobile-menu-toggle {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    border-radius: 10px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-left: auto;
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: #ffffff;
    border-radius: 999px;
  }

  .mobile-menu {
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    transition:
      max-height 0.25s ease,
      opacity 0.2s ease;
  }

  .mobile-menu.is-open {
    max-height: 320px;
    opacity: 1;
  }

  .mobile-menu__parent,
  .mobile-menu a {
    width: 100%;
    text-align: left;
    background: transparent;
    border: 0;
    display: block;
    padding: 12px 16px;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    cursor: pointer;
  }

  .mobile-menu__parent {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .mobile-menu__parent::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(255, 255, 255, 0.88);
    border-bottom: 2px solid rgba(255, 255, 255, 0.88);
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    margin-left: 8px;
    flex-shrink: 0;
  }

  .mobile-menu__item.is-open .mobile-menu__parent::after {
    transform: rotate(-135deg);
  }

  .mobile-menu__item:last-child .mobile-menu__parent {
    border-bottom: 0;
  }

  .mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease;
    background: rgba(255, 255, 255, 0.04);
  }

  .mobile-menu__item.is-open .mobile-submenu {
    max-height: 240px;
  }

  .mobile-submenu a {
    padding: 10px 26px;
    font-size: 12px;
    letter-spacing: 0.01em;
    text-transform: none;
    color: rgba(255, 255, 255, 0.88);
  }

  .mobile-submenu a:last-child {
    border-bottom: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .integration-graphic {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .integration-apps {
    min-height: 200px;
    justify-content: center;
  }

  .app-node--1 {
    top: 5%;
    right: 25%;
  }

  .app-node--2 {
    top: 35%;
    right: 15%;
  }

  .app-node--3 {
    bottom: 25%;
    right: 30%;
  }

  .app-node--4 {
    bottom: 5%;
    right: 20%;
  }
}

/* .site-header is already fixed by default above — no overrides needed */
body {
  padding-top: 74px;
}

@media (max-width: 768px) {
  :root {
    --section-pad-y: 56px;
  }

  .hero__inner {
    padding-top: 60px;
    padding-bottom: 72px;
  }

  .hero__tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 2rem;
  }

  .capability-tile {
    width: 100%;
    max-width: none;
    aspect-ratio: auto;
    min-height: 150px;
    padding: 12px 10px;
    justify-content: flex-start;
  }

  .capability-tile__icon-wrap {
    flex: 0 0 auto;
    min-height: 38px;
    margin-top: 12px;
    margin-bottom: 8px;
  }

  .capability-tile__icon {
    width: 28px;
    height: 28px;
  }

  .capability-tile__label {
    font-size: 11px;
    line-height: 1.25;
    margin-top: 0;
    text-wrap: balance;
  }

  .two-col-text {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .feature-row {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .testimonial-card__avatar {
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-deco--arc {
    display: none;
  }
}

/* ========== Motion Layer (subtle + consistent) ========== */
.reveal-on-scroll {
  transition:
    opacity 0.7s ease,
    transform 0.7s ease,
    filter 0.7s ease;
  will-change: opacity, transform, filter;
}

.reveal-on-scroll[data-reveal-state="hidden"] {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(2px);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@keyframes heroGlow {
  0%,
  100% {
    transform: translate3d(-2%, -2%, 0) scale(1);
    opacity: 0.18;
  }

  50% {
    transform: translate3d(2%, 3%, 0) scale(1.02);
    opacity: 0.26;
  }
}

.hero::before {
  content: "";
  position: absolute;
  inset: -120px;
  background:
    radial-gradient(
      600px circle at 15% 20%,
      rgba(255, 51, 102, 0.22),
      transparent 60%
    ),
    radial-gradient(
      540px circle at 80% 30%,
      rgba(59, 130, 246, 0.18),
      transparent 55%
    );
  pointer-events: none;
  animation: heroGlow 10s ease-in-out infinite;
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.feature-row__mock,
.logo-strip__item,
.testimonial-card,
.cta-panel {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.feature-row:hover .feature-row__mock {
  transform: translateY(-6px);
  box-shadow: none;
}

.logo-strip__item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-mockup);
}

.btn--primary:hover {
  transform: translateY(-2px);
}

.sticky-cta,
.sticky-whatsapp {
  animation: ctaBreathe 3s ease-in-out infinite;
}

.sticky-top-btn {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--mega-blue-dark);
  border: 1px solid var(--mega-border);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.sticky-top-btn:hover {
  background: #f8fcff;
}

@keyframes ctaBreathe {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

/* ========== Form separation (clarity) ========== */
.forms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto 24px;
}

.form-card {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 51, 102, 0.14);
  border-radius: 14px;
  padding: 22px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

@media (max-width: 768px) {
  .forms-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section--gradient-pink .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .cta-panel {
    padding: 28px 14px;
    border-radius: 12px;
  }

  .cta-panel__title {
    margin-bottom: 14px;
    line-height: 1.3;
  }

  .cta-panel .text-body--narrow {
    max-width: 100%;
    margin-bottom: 16px !important;
  }

  .forms-grid {
    gap: 12px;
    margin-bottom: 16px;
  }

  .form-card {
    padding: 16px 12px;
    border-radius: 12px;
  }

  #request-demo-form form > div[style],
  #contact-sales-form form > div[style] {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  #request-demo-form input,
  #request-demo-form select,
  #contact-sales-form input,
  #contact-sales-form textarea {
    width: 100%;
    max-width: 100%;
    font-size: 16px;
  }

  #request-demo-form button,
  #contact-sales-form button {
    width: 100%;
    justify-content: center;
  }

  .badge-row {
    gap: 8px;
    margin-top: 16px;
  }

  .badge-g2 {
    width: 100%;
    text-align: center;
  }
}

/* ========== Products SaaS Scroll Showcase (Desktop Focus) ========== */
#products-saas {
  height: 100svh;
  min-height: 100svh;
  padding-top: 0;
  padding-bottom: 0;
}

#products-saas .container {
  height: 100svh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: start;
  flex: 1;
  height: 100%;
  min-height: 0;
}

.product-showcase__left {
  height: 100%;
  max-height: none;
  overflow-y: auto;
  padding-right: 10px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge Legacy */
}

.product-showcase__left::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

.product-step {
  padding: 22px 0 38px;
}

.product-step:not(:last-child) {
  border-bottom: 1px solid #e2e8f0;
}

.product-showcase__right {
  position: sticky;
  top: 0;
  align-self: start;
  height: 100svh;
  min-height: 420px;
}

.product-image {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  filter: blur(2px);
  transition:
    opacity 0.35s ease,
    transform 0.45s ease,
    filter 0.45s ease;
  pointer-events: none;
}

.product-image.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  filter: blur(0);
  pointer-events: auto;
}

.product-image .feature-row__mock {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image .feature-row__mock img {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  #products-saas {
    height: auto;
    min-height: auto;
    padding-top: var(--section-pad-y);
    padding-bottom: var(--section-pad-y);
  }

  #products-saas .container {
    height: auto;
    min-height: auto;
  }

  .product-showcase {
    grid-template-columns: 1fr;
    gap: 24px;
    flex: initial;
  }

  .product-showcase__left {
    max-height: 340px;
    height: auto;
  }

  .product-showcase__right {
    position: relative;
    top: auto;
    height: auto;
    min-height: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before {
    animation: none;
  }

  .reveal-on-scroll {
    transition: none;
  }

  .reveal-on-scroll[data-reveal-state="hidden"] {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .feature-row:hover .feature-row__mock,
  .logo-strip__item:hover,
  .testimonial-card:hover,
  .btn--primary:hover {
    transform: none;
  }

  .sticky-cta,
  .sticky-whatsapp {
    animation: none;
  }

  .product-image {
    transition: none;
  }

  .product-image.is-active {
    transform: none;
    filter: none;
  }
}

/* ========== Clone Tab Sections ========== */
.ui-clone-section {
  background: #f2f3f5;
}

.clone-title {
  margin-bottom: 34px;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  letter-spacing: -0.02em;
  font-weight: 400;
}

.industry-tabs {
  display: grid;
  grid-template-columns: 285px 1fr;
  gap: 38px;
  align-items: start;
}

.industry-tabs__nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 8px;
}

.industry-tab {
  border: none;
  background: transparent;
  text-align: left;
  font-size: 15px;
  color: #2c3949;
  opacity: 0.8;
  cursor: pointer;
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.industry-tab.is-active {
  color: #ff3366;
  opacity: 1;
  font-weight: 600;
}

.industry-tab__icon {
  width: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.industry-tabs__content {
  position: relative;
  min-height: 410px;
}

.industry-panel {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.28s ease, transform 0.32s ease;
}

.industry-panel.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.industry-panel__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.industry-panel__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.35) 45%, rgba(0, 0, 0, 0.2) 100%);
}

.industry-panel__body {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 540px;
  padding: 42px 34px;
}

.industry-badge {
  display: inline-block;
  border: 2px solid #fff;
  border-radius: 6px;
  font-weight: 700;
  padding: 3px 8px;
  margin-bottom: 18px;
}

.industry-quote {
  font-size: 18px;
  line-height: 1.18;
  margin: 0 0 16px;
  font-weight: 600;
}

.industry-person {
  margin: 0;
  font-weight: 600;
}

.industry-role {
  margin: 2px 0 42px;
  opacity: 0.9;
  font-size: 14px;
}

.industry-link {
  font-weight: 500;
  font-size: 14px;
}

.task-tabs__nav {
  display: grid;
  grid-template-columns: repeat(7, minmax(120px, 1fr));
  gap: 10px;
  margin-bottom: 28px;
}

.task-tab {
  border: none;
  background: transparent;
  padding: 6px 8px;
  cursor: pointer;
  color: #233143;
  font-size: 12px;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.task-tab.is-active {
  color: #ff3366;
  border-bottom-color: #ff3366;
}

.task-tab__icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  border: 1.5px solid #8a99aa;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.task-tab.is-active .task-tab__icon {
  border-color: #ff3366;
  color: #ff3366;
}

.task-tab__label {
  line-height: 1.15;
  text-align: center;
}

.task-tabs__content {
  position: relative;
  min-height: 380px;
}

.task-panel {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.28s ease, transform 0.32s ease;
}

.task-panel.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.task-title {
  font-size: 1.5rem;
  line-height: 1.2;
  margin: 0 0 16px;
  font-weight: 400;
}

.task-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #2f3f51;
  margin: 0 0 24px;
  max-width: 560px;
}

.task-copy .btn {
  padding: 14px 28px;
  border-radius: 999px;
}

.task-mock {
  border-radius: 18px;
  min-height: 300px;
  background-size: cover;
  background-position: center;
  border: 1px solid #dce3eb;
}

@media (max-width: 768px) {
  .task-mock {
    min-height: 0;
  }
}

.clone-bg-health { background: linear-gradient(135deg, #1f2937, #475569); }
.clone-bg-hotel { background: linear-gradient(135deg, #7c2d12, #d97706); }
.clone-bg-logistics { background: linear-gradient(135deg, #0f172a, #1d4ed8); }
.clone-bg-property { background: linear-gradient(135deg, #334155, #64748b); }
.clone-bg-retail { background: linear-gradient(135deg, #14532d, #16a34a); }
.clone-bg-consolidation { background: linear-gradient(135deg, #0f172a, #334155); }
.clone-bg-reporting { background: linear-gradient(135deg, #1e3a8a, #3b82f6); }
.clone-bg-analysis { background: linear-gradient(135deg, #0f766e, #14b8a6); }
.clone-bg-connect { background: linear-gradient(135deg, #7c3aed, #a855f7); }
.clone-bg-close { background: linear-gradient(135deg, #7f1d1d, #ef4444); }
.clone-bg-cash { background: linear-gradient(135deg, #854d0e, #f59e0b); }

@media (max-width: 992px) {
  .industry-tabs {
    grid-template-columns: 1fr;
  }
  .industry-tabs__content {
    min-height: 300px;
  }
  .task-tabs__nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .task-panel {
    grid-template-columns: 1fr;
  }
  .task-title {
    font-size: 34px;
  }
  .task-desc {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .task-tabs__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .task-tab {
    padding: 8px 6px;
  }

  .task-tab__label {
    font-size: 11px;
    line-height: 1.15;
    word-break: break-word;
  }
}
