/* ═══════════════════════════════════════════
   GML SALES GROUP — Ultra-Premium v3
   ═══════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #5b3cc4;
  --primary-light: #7c5ce7;
  --primary-dark: #4a2db0;
  --gold: #5b3cc4;
  --gold-dark: #4a2db0;
  --gold-soft: #e8dff5;
  --gold-glow: rgba(91, 60, 196, .12);
  --bg: #f7f7fb;
  --bg-1: #eeeef5;
  --bg-2: #e8e8f0;
  --bg-card: #ffffff;
  --blue: #5b3cc4;
  --white: #1a1a2e;
  --gray-50: #4a4a68;
  --gray-100: #4a4a68;
  --gray-300: #6e6e80;
  --gray-500: #8888a0;
  --gray-700: #c0c0d0;
  --gray-900: #e8e8ed;
  --border: rgba(0, 0, 0, .06);
  --border-hover: rgba(0, 0, 0, .12);
  --border-gold: rgba(91, 60, 196, .08);
  --radius: 20px;
  --radius-lg: 28px;
  --ease: cubic-bezier(.25, .46, .45, .94);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: #4a4a68;
  line-height: 1.65;
  font-weight: 400;
  -webkit-overflow-scrolling: touch;
}

/* Subtle film-grain overlay for premium texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.06;
  color: #1a1a2e;
}

a {
  text-decoration: none;
  color: inherit
}

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px
}

/* ═══ PARTICLES ═══ */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: auto;
  opacity: 1;
}

#stars-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
}

/* ═══ NAVBAR ═══ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: rgba(26, 26, 46, .95);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: all .6s var(--ease)
}

.navbar.scrolled {
  background: rgba(26, 26, 46, .95);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 10px 0
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.navbar__logo img {
  height: 38px;
  width: auto;
  transition: all .4s var(--ease)
}

.navbar__logo:hover img {
  opacity: .8
}

.navbar__links {
  display: flex;
  gap: 2px;
  align-items: center
}

.navbar__links a {
  padding: 8px 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .2px;
  color: rgba(255,255,255,.6);
  border-radius: 100px;
  transition: all .3s var(--ease);
}

.navbar__links a:hover {
  color: #fff
}

.navbar__links a.active {
  color: #fff
}

.navbar__cta {
  background: var(--primary) !important;
  color: #fff !important;
  font-weight: 600 !important;
  padding: 9px 22px !important;
  font-size: 13px !important;
  transition: all .4s var(--ease) !important;
}

.navbar__cta:hover {
  opacity: .85 !important;
  transform: scale(1.02) !important
}

.navbar__wa {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  background: rgba(37,211,102,.12) !important;
  color: #25D366 !important;
  font-weight: 600 !important;
  padding: 9px 18px !important;
  border-radius: 100px !important;
  font-size: 13px !important;
  transition: all .3s !important;
}

.navbar__wa:hover {
  background: rgba(37,211,102,.2) !important;
}

.navbar__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  z-index: 1001
}

.navbar__toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s var(--ease)
}

.navbar__toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px)
}

.navbar__toggle.open span:nth-child(2) {
  opacity: 0
}

.navbar__toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px)
}

/* ═══ HERO ═══ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 28px 100px;
  overflow: hidden;
  z-index: 2;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 35%, rgba(91, 60, 196, .06) 0%, transparent 70%),
    radial-gradient(ellipse 30% 30% at 65% 25%, rgba(91, 60, 196, .04) 0%, transparent 60%),
    var(--bg);
}

.hero__bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--bg), transparent);
}

.hero .container {
  position: relative;
  z-index: 2;
  max-width: 860px
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: rgba(91, 60, 196, .05);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--gray-100);
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp .7s var(--ease-out) .3s forwards;
}

.hero__title {
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 900;
  margin-bottom: 28px;
  letter-spacing: -1px;
  min-height: 1.2em;
}

.hero__title .typewriter-cursor {
  display: inline-block;
  width: 3px;
  height: .85em;
  background: var(--gold);
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: blink-cursor .7s step-end infinite;
}

@keyframes blink-cursor {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.hero__title span {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  0% {
    background-position: 0% center
  }

  100% {
    background-position: 200% center
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.hero__subtitle {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--gray-100);
  margin: 0 auto 56px;
  max-width: 540px;
  line-height: 1.75;
  font-weight: 400;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp .7s var(--ease-out) .8s forwards;
}

.hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp .7s var(--ease-out) 1s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  background: var(--primary);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all .4s var(--ease);
  letter-spacing: .2px;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(91, 60, 196, .3);
  background: var(--primary-light);
}

.btn-primary svg {
  transition: transform .3s var(--ease)
}

.btn-primary:hover svg {
  transform: translateX(3px)
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  background: transparent;
  color: #1a1a2e;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  border-radius: 100px;
  border: 1px solid rgba(0, 0, 0, .12);
  cursor: pointer;
  transition: all .4s var(--ease);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(91, 60, 196, .04)
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp .6s var(--ease-out) 1.5s forwards;
  pointer-events: none;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gray-500), transparent);
  animation: scrollPulse 2s ease-in-out infinite
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: .4;
    height: 40px
  }

  50% {
    opacity: .8;
    height: 50px
  }
}

.hero__scroll-text {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-500);
  font-weight: 500
}

/* ═══ GML STICKY SECTION — Fathom-Style Two-Column ═══ */
.gml-section {
  position: relative;
  padding: 0;
  min-height: 450vh;
  z-index: 2;
}

.gml-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gml-sticky .container {
  max-width: 1100px;
  position: relative;
  min-height: 500px;
  width: 100%;
}

/* --- GML Slide (two-column row) --- */
.gml-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 0 16px;
  opacity: 0;
  transform: translateY(60px) scale(1.02);
  transition: opacity .5s var(--ease-out), transform .7s var(--ease-out);
  will-change: opacity, transform;
}

.gml-slide.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.gml-slide.prev {
  opacity: 0;
  transform: translateY(-60px) scale(.95);
}

/* Left column: content */
.gml-slide__content {
  flex: 1;
  max-width: 55%;
  text-align: left;
}

.gml-slide__eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: .85;
}

.gml-slide__keyword {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 60px rgba(91, 60, 196, .12));
  letter-spacing: -2px;
}

.gml-slide__keyword--combined {
  font-size: clamp(32px, 4.5vw, 56px);
  letter-spacing: 8px;
}

.gml-slide__desc {
  font-size: clamp(15px, 1.5vw, 18px);
  color: #4a4a68;
  max-width: 480px;
  line-height: 1.75;
  font-weight: 400;
  margin-bottom: 28px;
}

.gml-slide__bold {
  font-weight: 600;
  color: var(--primary);
}

.btn-primary--sm {
  padding: 12px 28px;
  font-size: 13px;
}

/* Dimmed preview words */
.gml-slide__previews {
  display: flex;
  gap: 24px;
  margin-top: 36px;
}

.gml-slide__preview-word {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
  transition: color .5s var(--ease);
}

.gml-slide__preview-word--done {
  color: var(--primary);
  opacity: .3;
}

/* Right column: visual */
.gml-slide__visual {
  flex: 0 0 auto;
  width: clamp(250px, 30vw, 380px);
}

.gml-slide__visual .visual-showcase {
  max-width: 100%;
  margin: 0;
}

.gml-slide__visual .visual-showcase__frame {
  aspect-ratio: 1/1;
  border-radius: 50%;
}

.gml-slide__visual .visual-showcase__frame img {
  display: block;
}

.gml-slide__visual .visual-showcase__frame::before {
  border-radius: 50%;
}

/* Progress dots */
.gml-progress {
  position: absolute;
  bottom: 6vh;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.gml-progress__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gray-700);
  transition: all .5s var(--ease);
}

.gml-progress__dot.active {
  background: var(--gold);
  box-shadow: 0 0 14px rgba(91, 60, 196, .4);
  width: 24px;
  border-radius: 3px;
}

/* ═══ INTEGRATION HUB ═══ */
.integration-hub {
  position: relative;
  z-index: 2;
  padding: 100px 0 80px;
  background: var(--bg);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: .85;
}

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}

.section-title span {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-desc {
  font-size: clamp(14px, 1.4vw, 17px);
  color: var(--gray-100);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

.hub-diagram {
  position: relative;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 1/1;
  margin: 0 auto;
}

.hub-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hub-line {
  stroke: rgba(91, 60, 196, .15);
  stroke-width: 1;
  stroke-dasharray: 6 4;
  animation: hubLinePulse 3s ease-in-out infinite alternate;
  transition: stroke .3s, stroke-width .3s, filter .3s;
}

.hub-line.hub-line--active {
  stroke: rgba(91, 60, 196, .8);
  stroke-width: 2.5;
  stroke-dasharray: none;
  filter: drop-shadow(0 0 6px rgba(91, 60, 196, .5));
  animation: none;
}

.hub-node:hover {
  transform: translate(calc(cos(var(--angle)) * var(--dist)), calc(sin(var(--angle)) * var(--dist))) scale(1.1);
}

.hub-line:nth-child(2n) {
  animation-delay: .5s;
}

.hub-line:nth-child(3n) {
  animation-delay: 1s;
}

@keyframes hubLinePulse {
  0% {
    stroke: rgba(91, 60, 196, .08);
  }

  100% {
    stroke: rgba(91, 60, 196, .25);
  }
}

.hub-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(91, 60, 196, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 20px rgba(91, 60, 196, .08), 0 0 40px rgba(91, 60, 196, .04);
}

.hub-center__text {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 3px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hub-node {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(var(--angle)) translateY(calc(var(--dist) * -1)) rotate(calc(var(--angle) * -1));
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: transform .4s var(--ease-out);
}

.hub-node:hover {
  transform: translate(-50%, -50%) rotate(var(--angle)) translateY(calc(var(--dist) * -1.08)) rotate(calc(var(--angle) * -1));
}

.hub-node__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(0, 0, 0, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  transition: all .3s var(--ease);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
}

.hub-node:hover .hub-node__icon {
  border-color: rgba(91, 60, 196, .25);
  box-shadow: 0 0 30px rgba(91, 60, 196, .1);
}

.hub-node__label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-300);
  letter-spacing: .3px;
  white-space: nowrap;
}

.hub-node:hover .hub-node__label {
  color: var(--white);
}

/* ═══ ENTERPRISE BADGE ═══ */
.srv-slide__badge--enterprise {
  border: 1px solid rgba(91, 60, 196, .3);
  color: var(--gold);
  background: rgba(91, 60, 196, .06);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ═══ SHIMMER ANIMATION ═══ */
@keyframes shimmer {
  0% {
    background-position: -200% center
  }

  100% {
    background-position: 200% center
  }
}

.gold-shimmer {
  color: var(--gold);
}

/* ═══ SECTION SHARED ═══ */
.section-header {
  text-align: center;
  margin-bottom: 80px
}

.section-badge {
  display: inline-block;
  padding: 0;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--gold);
}

.section-title {
  font-size: clamp(34px, 4.5vw, 56px);
  margin-bottom: 18px;
  letter-spacing: -1.5px
}

.section-title span {
  background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 4s linear infinite;
}

.section-desc {
  font-size: 16px;
  color: var(--white);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.75;
  font-weight: 400
}

/* ═══ SERVICES SECTION ═══ */
.services-section {
  position: relative;
  padding: 100px 0 80px;
  z-index: 2;
}

.services-section .container {
  text-align: center;
  max-width: 1100px;
  overflow: visible;
}

/* ═══ SERVICES CAROUSEL ═══ */
.srv-carousel {
  position: relative;
  overflow: visible;
}

.srv-carousel::before,
.srv-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 5;
  pointer-events: none;
}

.srv-carousel::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}

.srv-carousel::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

.srv-carousel__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 20px 40px 30px;
  scrollbar-width: none;
}

.srv-carousel__track::-webkit-scrollbar {
  display: none;
}

.srv-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: rgba(255, 255, 255, .95);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: border-color .4s var(--ease), box-shadow .4s var(--ease), transform .3s var(--ease);
  position: relative;
}

.srv-card:hover {
  border-color: rgba(91, 60, 196, .35);
  box-shadow: 0 0 30px rgba(91, 60, 196, .08), 0 0 60px rgba(91, 60, 196, .04);
  transform: translateY(-4px);
}

.srv-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(91, 60, 196, .08);
  border: 1px solid rgba(91, 60, 196, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.srv-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}

.srv-card__tag {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: .3px;
}

.srv-card__desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--gray-100);
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.srv-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.srv-card__features li {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--gray-100);
  padding-left: 18px;
  position: relative;
}

.srv-card__features li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 10px;
  top: 2px;
}

.srv-card__cta {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  transition: color .3s;
  margin-top: auto;
}

.srv-card__cta:hover {
  color: var(--primary-light);
}

.srv-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .9);
  color: var(--gray-300);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s var(--ease);
  z-index: 10;
}

.srv-carousel__arrow:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(91, 60, 196, .08);
}

.srv-carousel__arrow--prev {
  left: -21px;
}

.srv-carousel__arrow--next {
  right: -21px;
}

.srv-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  opacity: 0;
  transform: translateY(60px) scale(1.02);
  transition: opacity .5s var(--ease-out), transform .7s var(--ease-out);
  will-change: opacity, transform;
}

.srv-slide.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.srv-slide.prev {
  opacity: 0;
  transform: translateY(-60px) scale(.95);
}

.srv-slide__badge {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.srv-slide__badge--crm {
  font-size: 13px;
  letter-spacing: 2px;
}

.srv-slide__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(91, 60, 196, .08), rgba(91, 60, 196, .02));
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.srv-slide__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.6;
}

.srv-slide__icon--crm {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(91, 60, 196, .15), rgba(91, 60, 196, .05));
  border-color: rgba(91, 60, 196, .2);
  box-shadow: 0 0 40px rgba(91, 60, 196, .1);
}

.srv-slide__icon--crm svg {
  width: 30px;
  height: 30px;
}

.srv-slide__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  color: var(--white);
}

.srv-slide__title--crm {
  font-size: clamp(32px, 5vw, 56px);
}

.srv-slide__desc {
  font-size: clamp(14px, 1.4vw, 17px);
  color: rgba(245, 245, 247, .85);
  max-width: 620px;
  margin: 0 auto 28px;
  line-height: 1.75;
  font-weight: 400;
  text-wrap: balance;
}

.srv-slide__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.srv-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--white);
  font-weight: 500;
}

.srv-feature__icon {
  color: var(--gold);
  font-size: 12px;
}

/* CRM Star Slide */
.srv-slide--crm {
  padding: 0 16px;
}

.srv-crm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto 28px;
  text-align: left;
}

.srv-crm-feature {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: rgba(91, 60, 196, .03);
  border: 1px solid rgba(91, 60, 196, .08);
  border-radius: 14px;
  transition: all .3s var(--ease);
}

.srv-crm-feature:hover {
  border-color: rgba(91, 60, 196, .15);
  background: rgba(91, 60, 196, .06);
}

.srv-crm-feature__icon {
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1.2;
}

.srv-crm-feature__text {
  font-size: 13px;
  color: rgba(245, 245, 247, .9);
  line-height: 1.6;
}

.srv-crm-feature__text strong {
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
}

.srv-crm-cta {
  margin-top: 8px;
}

.btn-primary--glow {
  box-shadow: 0 0 30px rgba(91, 60, 196, .2), 0 0 60px rgba(91, 60, 196, .08);
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {

  0%,
  100% {
    box-shadow: 0 0 30px rgba(91, 60, 196, .2), 0 0 60px rgba(91, 60, 196, .08)
  }

  50% {
    box-shadow: 0 0 40px rgba(91, 60, 196, .3), 0 0 80px rgba(91, 60, 196, .12)
  }
}

/* Progress & Hint — positioned on the sticky wrapper, not on container */
.srv-progress {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 100;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s var(--ease);
}

.services-section.in-view .srv-progress {
  opacity: 1;
}

.srv-progress__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gray-700);
  transition: all .5s var(--ease);
}

.srv-progress__dot.active {
  background: var(--gold);
  box-shadow: 0 0 14px rgba(91, 60, 196, .4);
  width: 24px;
  border-radius: 3px;
}

.scroll-hint {
  position: fixed;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  opacity: 0;
  z-index: 100;
  pointer-events: none;
  transition: opacity .3s var(--ease);
  animation: hintBounce 2s ease-in-out infinite;
}

.services-section.in-view .scroll-hint {
  opacity: .6;
}

@keyframes hintBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0)
  }

  50% {
    transform: translateX(-50%) translateY(4px)
  }
}

.scroll-hint__text {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.scroll-hint__arrow {
  font-size: 14px;
  color: var(--gold);
}

/* ═══ PROBLEM→SOLUTION STICKY ═══ */
.problem-section {
  position: relative;
  min-height: 320vh;
  z-index: 2;
}

.problem-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden
}

.problem-sticky .container {
  max-width: 900px;
  text-align: center;
  position: relative;
  min-height: 400px;
  width: 100%;
}

.problem-phase {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity .5s var(--ease-out), transform .7s var(--ease-out);
  will-change: opacity, transform;
}

.problem-phase.active {
  opacity: 1;
  transform: translateY(0)
}

.problem-phase.prev {
  opacity: 0;
  transform: translateY(-60px)
}

.problem-phase__title {
  font-size: clamp(26px, 4.5vw, 52px);
  margin-bottom: 24px;
  letter-spacing: -1.5px;
  max-width: 700px;
  text-wrap: balance;
}

.problem-phase__title .highlight {
  background: linear-gradient(90deg, var(--gold), var(--gold-soft), var(--gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 4s linear infinite;
}

.problem-phase__desc {
  font-size: clamp(14px, 1.5vw, 18px);
  color: rgba(245, 245, 247, .85);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
  font-weight: 400;
  text-wrap: balance;
}

.problem-flow {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  margin-top: 48px;
  flex-wrap: wrap
}

.problem-flow__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(16px);
  transition: all .6s var(--ease-out)
}

.problem-flow__step.visible {
  opacity: 1;
  transform: translateY(0)
}

.problem-flow__step-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(91, 60, 196, .06), rgba(91, 60, 196, .02));
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .4s var(--ease);
}

.problem-flow__step.visible .problem-flow__step-icon {
  box-shadow: 0 0 30px rgba(91, 60, 196, .06)
}

.problem-flow__step-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.6
}

.problem-flow__step-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-100);
  letter-spacing: .3px
}

.problem-flow__arrow {
  color: var(--gray-500);
  font-size: 18px;
  opacity: 0;
  transform: translateX(-8px);
  transition: all .5s var(--ease-out)
}

.problem-flow__arrow.visible {
  opacity: 1;
  transform: translateX(0)
}



/* ═══ CONTACT ═══ */
.contact {
  padding: 140px 0;
  position: relative;
  z-index: 2;
  background: var(--bg);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start
}

.contact__info {
  padding-top: 8px
}

.contact__info h3 {
  font-size: 32px;
  margin-bottom: 12px;
  letter-spacing: -.8px
}

.contact__info>p {
  color: rgba(245, 245, 247, .8);
  margin-bottom: 36px;
  line-height: 1.75;
  font-size: 15px
}

.contact__detail {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border)
}

.contact__detail:last-child {
  border-bottom: none
}

.contact__detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(91, 60, 196, .06), rgba(91, 60, 196, .02));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__detail-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.6
}

.contact__detail-text strong {
  display: block;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 2px;
  font-weight: 600
}

.contact__detail-text span {
  font-size: 13px;
  color: var(--gray-300)
}

.contact__form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
  position: relative;
  overflow: hidden;
}

.contact__form::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(91, 60, 196, .06), transparent 50%, transparent);
  z-index: -1;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  padding: 1px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px
}

.form-group.full {
  grid-column: 1/-1
}

.form-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--gray-300)
}

.form-input {
  padding: 13px 16px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 12px;
  color: #1a1a2e;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  transition: all .3s var(--ease);
}

.form-input::placeholder {
  color: var(--gray-500)
}

.form-input:focus {
  border-color: rgba(91, 60, 196, .3);
  box-shadow: 0 0 0 3px rgba(91, 60, 196, .05)
}

textarea.form-input {
  resize: vertical;
  min-height: 80px
}

select.form-input {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2386868b' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center
}

.form-hint {
  font-size: 11px;
  color: var(--gray-500)
}

.form-actions {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 16px
}

#form-msg {
  font-size: 13px;
  font-weight: 600
}

/* ═══ FORM WIZARD ═══ */
.form-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.form-step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: .45;
  transition: opacity .3s var(--ease);
}

.form-step-indicator.active {
  opacity: 1;
}

.form-step-indicator.done {
  opacity: .85;
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--gray-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-300);
  transition: all .3s var(--ease);
}

.form-step-indicator.active .step-num {
  border-color: var(--gold);
  color: var(--bg);
  background: var(--gold);
}

.form-step-indicator.done .step-num {
  border-color: var(--gold);
  color: var(--gold);
}

.step-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--gray-400);
}

.form-step-indicator.active .step-label {
  color: var(--gold);
}

.form-step-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 0 12px;
  margin-bottom: 20px;
  max-width: 80px;
}

.form-wizard-step {
  display: none;
  animation: fadeUp .4s var(--ease-out) forwards;
}

.form-wizard-step.active {
  display: block;
}

.btn-secondary {
  padding: 14px 28px;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-300);
  background: rgba(91, 60, 196, .04);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all .3s var(--ease);
}

.btn-secondary:hover {
  background: rgba(91, 60, 196, .08);
  border-color: var(--gray-500);
  color: var(--white);
}

/* Checkbox grid */
.form-checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(91, 60, 196, .02);
  cursor: pointer;
  transition: all .3s var(--ease);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--gray-300);
}

.form-checkbox:hover {
  border-color: rgba(91, 60, 196, .25);
  background: rgba(91, 60, 196, .04);
}

.form-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
}

.form-checkbox input[type="checkbox"]:checked+span {
  color: var(--white);
}

.form-input--error {
  border-color: #ff6b6b !important;
  box-shadow: 0 0 0 3px rgba(255, 107, 107, .1);
}

/* ═══ FOOTER ═══ */
.footer {
  background: #1a1a2e;
  color: rgba(255,255,255,.7);
  padding: 60px 0 30px;
  position: relative;
  z-index: 2;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__links h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.footer__links a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin-bottom: 10px;
  transition: color .3s;
}

.footer__links a:hover {
  color: var(--primary-light);
}

.footer__logo {
  height: 30px;
  filter: brightness(10);
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 32px
}

.footer__brand img {
  height: 32px;
  margin-bottom: 14px;
  opacity: .7
}

.footer__brand p {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  max-width: 280px;
  line-height: 1.6
}

.footer__social {
  display: flex;
  gap: 8px
}

.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(91, 60, 196, .04);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s var(--ease);
}

.footer__social a:hover {
  border-color: var(--border-hover);
  background: rgba(91, 60, 196, .06)
}

.footer__social a svg {
  width: 16px;
  height: 16px
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.35);
}

.footer__bottom a {
  color: rgba(255,255,255,.5);
  transition: all .3s var(--ease)
}

.footer__bottom a:hover {
  color: #fff
}

/* ═══ SCROLL REVEAL ═══ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out)
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

.reveal-delay-1 {
  transition-delay: .08s
}

.reveal-delay-2 {
  transition-delay: .16s
}

.reveal-delay-3 {
  transition-delay: .24s
}

.reveal-delay-4 {
  transition-delay: .32s
}

.reveal-delay-5 {
  transition-delay: .40s
}

.reveal-delay-6 {
  transition-delay: .48s
}

/* ═══ INTERACTIVE GRID CANVAS ═══ */
#grid-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: .18;
}

/* ═══ AMBIENT GLOW ORBS ═══ */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.ambient-glow--gold {
  background: radial-gradient(circle, rgba(91, 60, 196, .12) 0%, transparent 70%);
  width: 600px;
  height: 600px;
}

.ambient-glow--blue {
  background: radial-gradient(circle, rgba(91, 60, 196, .06) 0%, transparent 70%);
  width: 500px;
  height: 500px;
}

.ambient-glow--warm {
  background: radial-gradient(circle, rgba(91, 60, 196, .04) 0%, transparent 70%);
  width: 400px;
  height: 400px;
}

/* ═══ TRUST BADGES BAR ═══ */
.trust-bar {
  position: relative;
  z-index: 2;
  padding: 60px 0;
  overflow: hidden;
}

.trust-bar__label {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gray-100);
  margin-bottom: 32px;
}

.trust-bar__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: .85;
  transition: all .5s var(--ease);
  cursor: default;
}

.trust-bar__item:hover {
  opacity: .85;
  transform: translateY(-2px);
}

.trust-bar__item svg {
  width: 28px;
  height: 28px;
  fill: var(--gray-100);
  transition: fill .4s var(--ease);
}

.trust-bar__item:hover svg {
  fill: var(--white);
}

.trust-bar__item span {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-100);
  letter-spacing: .3px;
  transition: color .4s var(--ease);
}

.trust-bar__item:hover span {
  color: var(--white);
}

/* ═══ FLOW DIAGRAM ═══ */
.flow-diagram {
  margin-top: 80px;
  text-align: center;
}

.flow-diagram__title {
  font-size: 1.8rem;
  color: #1a1a2e;
  font-weight: 300;
  margin-bottom: 48px;
  letter-spacing: -.01em;
}

.flow-diagram__title span {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 4s linear infinite;
  font-weight: 600;
}

.flow-diagram__pipeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.flow-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.flow-stage__label {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(91, 60, 196, .5);
  font-weight: 600;
}

.flow-stage__nodes {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.flow-node--channel {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(91, 60, 196, .04);
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 12px;
  padding: 10px 16px;
  min-width: 140px;
  transition: border-color .3s, background .3s;
}

.flow-node--channel:hover {
  border-color: rgba(91, 60, 196, .3);
  background: rgba(91, 60, 196, .05);
}

.flow-node--channel span {
  color: #4a4a68;
  font-size: .85rem;
  font-weight: 500;
}

.flow-arrow {
  width: 60px;
  flex-shrink: 0;
  padding: 0 4px;
}

.flow-arrow svg {
  width: 100%;
  height: 24px;
}

.flow-node--main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(91, 60, 196, .05);
  border: 1px solid rgba(91, 60, 196, .2);
  border-radius: 20px;
  padding: 28px 24px;
  min-width: 120px;
  position: relative;
  transition: border-color .3s, transform .3s;
}

.flow-node--main:hover {
  border-color: rgba(91, 60, 196, .5);
  transform: scale(1.05);
}

.flow-node--main span {
  color: rgba(91, 60, 196, .9);
  font-size: .95rem;
  font-weight: 600;
}

.flow-node--main small {
  color: #8888a0;
  font-size: .75rem;
}

.flow-node__glow {
  position: absolute;
  inset: -8px;
  border-radius: 28px;
  background: radial-gradient(ellipse, rgba(91, 60, 196, .08) 0%, transparent 70%);
  animation: flowGlow 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes flowGlow {

  0%,
  100% {
    opacity: .4;
  }

  50% {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .flow-diagram__pipeline {
    flex-direction: column;
    gap: 12px;
  }

  .flow-arrow {
    width: 24px;
    height: 40px;
    transform: rotate(90deg);
  }

  .flow-stage__nodes {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .flow-node--channel {
    min-width: auto;
    padding: 8px 12px;
  }
}

/* ═══ HOOK PHRASES ═══ */
.hook-phrase {
  position: relative;
  z-index: 2;
  padding: 100px 20px;
  text-align: center;
  overflow: hidden;
}

.hook-phrase__text {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -1.5px;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease-out), transform 1s var(--ease-out);
}

.hook-phrase__text.visible {
  opacity: 1;
  transform: translateY(0);
}

.hook-phrase__text .highlight-gold {
  color: var(--gold);
}

.hook-phrase__sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(14px, 1.5vw, 17px);
  color: var(--gray-100);
  margin-top: 20px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease-out) .15s, transform 1s var(--ease-out) .15s;
}

.hook-phrase__sub.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══ IMAGE PLACEHOLDERS ═══ */
.visual-showcase {
  position: relative;
  margin: 40px auto 0;
  max-width: 520px;
}

.visual-showcase--side {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 60px;
}

.visual-showcase--side .visual-showcase__frame {
  margin: 0;
}

.visual-showcase--side .visual-showcase__content {
  order: -1;
}

.visual-showcase__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, .95), rgba(245, 245, 250, .95));
  border: 1px solid rgba(0, 0, 0, .06);
}

/* Rotating glow border — Fathom style */
.visual-showcase__frame::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: conic-gradient(from var(--glow-angle, 0deg),
      transparent 0%,
      rgba(91, 60, 196, .3) 10%,
      transparent 20%,
      transparent 50%,
      rgba(91, 60, 196, .3) 60%,
      transparent 70%);
  z-index: -1;
  animation: rotateGlow 6s linear infinite;
}

@keyframes rotateGlow {
  0% {
    --glow-angle: 0deg;
  }

  100% {
    --glow-angle: 360deg;
  }
}

/* Fallback for browsers without @property */
@supports not (background: conic-gradient(from 0deg, red, blue)) {
  .visual-showcase__frame::before {
    background: linear-gradient(135deg, rgba(91, 60, 196, .15), rgba(91, 60, 196, .15));
  }
}

@property --glow-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.visual-showcase__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(91, 60, 196, .04) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(91, 60, 196, .06) 0%, transparent 60%),
    linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(245, 245, 250, 1));
}

.visual-showcase__placeholder-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(91, 60, 196, .06);
  border: 1px solid rgba(91, 60, 196, .1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-showcase__placeholder-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.4;
  opacity: .6;
}

.visual-showcase__placeholder-text {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-500);
  letter-spacing: .5px;
}

/* Circular frame — like Fathom's feature showcase */
.visual-showcase__frame--circle {
  aspect-ratio: 1;
  max-width: 380px;
  border-radius: 50%;
  margin: 0 auto;
  border: 3px solid rgba(91, 60, 196, 0.55);
  box-shadow: 0 0 25px rgba(91, 60, 196, 0.4), 0 0 50px rgba(91, 60, 196, 0.2), 0 0 80px rgba(91, 60, 196, 0.1), inset 0 0 20px rgba(91, 60, 196, 0.15);
  overflow: hidden;
  background: transparent;
}

.visual-showcase__frame--circle::before {
  border-radius: 50%;
}

.visual-showcase__frame--circle .visual-showcase__placeholder {
  border-radius: 50%;
}

/* ═══ ANIMATED CARD GLOW BORDERS ═══ */
.srv-crm-feature {
  position: relative;
  overflow: hidden;
}

.srv-crm-feature::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg,
      transparent 0%,
      rgba(91, 60, 196, .08) 25%,
      transparent 50%);
  animation: rotateGlow 8s linear infinite;
  z-index: -1;
  opacity: 0;
  transition: opacity .4s var(--ease);
}

.srv-crm-feature:hover::after {
  opacity: 1;
}

/* ═══ SECTION GLOW SEPARATORS ═══ */
.section-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent 5%, rgba(91, 60, 196, .06) 20%, rgba(91, 60, 196, .18) 50%, rgba(91, 60, 196, .06) 80%, transparent 95%);
  position: relative;
  z-index: 2;
  margin: 40px 0;
}

.section-divider::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 20%;
  right: 20%;
  height: 60px;
  background: radial-gradient(ellipse, rgba(91, 60, 196, .06) 0%, transparent 70%);
  pointer-events: none;
}

.section-divider::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 40%;
  right: 40%;
  height: 4px;
  background: radial-gradient(ellipse, rgba(91, 60, 196, .25) 0%, transparent 80%);
  border-radius: 2px;
  pointer-events: none;
}

/* ═══ ENHANCED SERVICE SLIDE LAYOUT (side-by-side with visual) ═══ */
.srv-slide--with-visual {
  flex-direction: row;
  text-align: left;
  align-items: center;
  gap: 40px;
  padding: 0 20px;
}

.srv-slide--with-visual .srv-slide__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.srv-slide--with-visual .srv-slide__visual {
  flex: 1;
  max-width: 340px;
}

.srv-slide--with-visual .srv-slide__features {
  align-items: flex-start;
}

/* ═══ LANGUAGE SWITCHER ═══ */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-right: 8px;
}

.lang-switcher__btn {
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--gray-300);
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 6px;
  transition: all .3s var(--ease);
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-switcher__btn:hover {
  color: var(--white);
}

.lang-switcher__btn.active {
  color: var(--gold);
  background: rgba(91, 60, 196, .08);
}

.lang-switcher__btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.lang-switcher__sep {
  color: var(--gray-700);
  font-size: 12px;
  user-select: none;
}

/* ═══ CUSTOM SELECT ═══ */
.custom-select {
  position: relative;
  width: 100%;
}

.custom-select__trigger {
  padding: 13px 16px;
  background: rgba(91, 60, 196, .03);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  cursor: pointer;
  transition: all .3s var(--ease);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  user-select: none;
  width: 100%;
}

.custom-select__trigger:hover {
  border-color: rgba(91, 60, 196, .12);
}

.custom-select.open .custom-select__trigger {
  border-color: rgba(91, 60, 196, .3);
  box-shadow: 0 0 0 3px rgba(91, 60, 196, .05);
}

.custom-select__trigger--placeholder {
  color: var(--gray-500);
}

.custom-select__arrow {
  width: 12px;
  height: 12px;
  stroke: var(--gray-500);
  fill: none;
  stroke-width: 2;
  transition: transform .3s var(--ease);
  flex-shrink: 0;
}

.custom-select.open .custom-select__arrow {
  transform: rotate(180deg);
}

.custom-select__options {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, .98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 12px;
  padding: 6px;
  z-index: 100;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: all .25s var(--ease-out);
  max-height: 240px;
  overflow-y: auto;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .5);
}

.custom-select.open .custom-select__options {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.custom-select__option {
  padding: 10px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--gray-100);
  border-radius: 8px;
  cursor: pointer;
  transition: all .2s var(--ease);
}

.custom-select__option:hover {
  background: rgba(91, 60, 196, .08);
  color: var(--white);
}

.custom-select__option.selected {
  background: rgba(91, 60, 196, .12);
  color: var(--gold);
  font-weight: 600;
}

/* Scrollbar for options */
.custom-select__options::-webkit-scrollbar {
  width: 4px;
}

.custom-select__options::-webkit-scrollbar-track {
  background: transparent;
}

.custom-select__options::-webkit-scrollbar-thumb {
  background: var(--gray-700);
  border-radius: 4px;
}

/* ═══ FORM SUCCESS OVERLAY ═══ */
.form-success-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 14, .97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  z-index: 10;
  text-align: center;
  padding: 40px 28px;
  animation: successFadeIn .5s var(--ease-out) forwards;
}

@keyframes successFadeIn {
  from {
    opacity: 0;
    transform: scale(.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.form-success-overlay__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(91, 60, 196, .12), rgba(91, 60, 196, .04));
  border: 2px solid rgba(91, 60, 196, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 24px;
  box-shadow: 0 0 40px rgba(91, 60, 196, .15);
  animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {

  0%,
  100% {
    box-shadow: 0 0 40px rgba(91, 60, 196, .15);
  }

  50% {
    box-shadow: 0 0 60px rgba(91, 60, 196, .25);
  }
}

.form-success-overlay__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
  letter-spacing: -.5px;
}

.form-success-overlay__text {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--gray-100);
  line-height: 1.7;
  max-width: 320px;
}

/* ═══ RESPONSIVE ═══ */

/* ── TABLET (≤1024px) ── */
@media(max-width:1024px) {
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .srv-crm-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .gml-section {
    min-height: 300vh;
  }

  .problem-section {
    min-height: 200vh;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .contact {
    padding: 80px 0;
  }

  .srv-carousel__arrow {
    width: 36px;
    height: 36px;
  }

  .srv-carousel__arrow--prev {
    left: -10px;
  }

  .srv-carousel__arrow--next {
    right: -10px;
  }
}

/* ── MOBILE (≤768px) ── */
@media(max-width:768px) {

  /* --- Critical overflow fix --- */
  body {
    max-width: 100vw;
  }

  /* Hide ambient glow orbs that cause horizontal overflow on mobile */
  .ambient-glow {
    display: none !important;
  }

  /* Hide body grain overlay on mobile — position:fixed z-index:9999 can interfere with iOS touch */
  body::after {
    display: none !important;
  }

  /* Hide fixed canvases on mobile — they block iOS touch scrolling */
  #particles-canvas,
  #stars-canvas,
  #grid-canvas {
    display: none !important;
  }

  /* --- Mobile reveal animations --- */
  .mob-reveal {
    opacity: 0.15;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  .mob-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }

  /* --- Language Switcher --- */
  .lang-switcher {
    position: static;
    margin: 16px 0 0;
    justify-content: center;
    gap: 4px;
  }

  .lang-switcher__btn {
    font-size: 11px;
    padding: 4px 6px;
    gap: 0;
  }

  .lang-switcher__btn svg {
    display: none;
  }

  .lang-switcher__sep {
    font-size: 10px;
    margin: 0 1px;
  }

  /* --- Custom Select --- */
  .custom-select__trigger {
    padding: 14px 16px;
    font-size: 16px;
    /* Prevents iOS zoom */
  }

  .custom-select__option {
    padding: 12px 14px;
    font-size: 14px;
  }


  /* --- Global mobile overrides --- */
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-title {
    font-size: clamp(22px, 6vw, 32px) !important;
    letter-spacing: -0.5px;
    text-align: center;
  }

  .section-desc {
    font-size: 14px;
    text-align: center;
  }

  .section-badge {
    font-size: 11px;
    text-align: center;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .section-divider {
    margin: 24px 0;
  }

  /* --- Navbar --- */
  .navbar {
    padding: 10px 0;
  }

  .navbar__links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    background: #1a1a2e;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    z-index: 9999;
    padding: 80px 40px 40px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .35s ease, transform .35s ease, visibility 0s .35s;
    display: flex;
  }

  .navbar__links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity .35s ease, transform .35s ease, visibility 0s 0s;
  }

  .navbar__links a {
    font-size: 20px;
    font-weight: 500;
    padding: 16px 32px;
    color: rgba(255,255,255,.55);
    border-radius: 12px;
    transition: all .3s ease;
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .navbar__links a:hover,
  .navbar__links a:active {
    color: #fff;
    background: rgba(91, 60, 196, .15);
  }

  .navbar__links a.active {
    color: #fff;
    background: rgba(91, 60, 196, .1);
  }

  .navbar__links .navbar__wa {
    margin-top: 12px;
    justify-content: center;
    max-width: 280px;
    width: 100%;
    text-align: center;
  }

  .navbar__links .lang-switcher {
    margin-top: 8px;
  }

  .navbar__links .navbar__cta {
    margin-top: 20px;
    font-size: 15px !important;
    padding: 14px 40px !important;
    width: auto;
  }

  .navbar__toggle {
    display: flex;
    z-index: 10000;
  }

  /* --- Hero --- */
  .hero {
    min-height: auto;
    padding: 100px 20px 40px;
    text-align: center;
  }

  .hero__title {
    font-size: clamp(22px, 6.5vw, 34px);
    max-width: 100%;
    text-align: center;
  }

  .hero__subtitle {
    font-size: 14px;
    margin-bottom: 28px;
    max-width: 100%;
    text-align: center;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero__actions .btn-primary,
  .hero__actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero__scroll {
    display: none;
  }

  .hero__badge {
    font-size: 11px;
    padding: 6px 14px;
  }

  /* --- Trust Bar --- */
  .trust-bar {
    padding: 28px 16px;
    text-align: center;
  }

  .trust-bar__logos {
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 20px;
  }

  .trust-bar__item {
    gap: 4px;
  }

  .trust-bar__item span {
    display: none;
  }

  .trust-bar__item svg {
    width: 32px;
    height: 32px;
  }

  .trust-bar__label {
    font-size: 10px;
    text-align: center;
  }

  /* --- Hook Phrases --- */
  .hook-phrase {
    padding: 24px 20px;
  }

  .hook-phrase__text {
    font-size: clamp(20px, 5.5vw, 30px);
  }

  .hook-phrase__sub {
    font-size: 13px;
  }

  /* --- GML Section: Swipe carousel on mobile --- */
  .gml-section {
    min-height: auto !important;
    height: auto !important;
    padding: 40px 0 20px !important;
    overflow: visible !important;
  }

  .gml-sticky {
    position: relative !important;
    height: auto !important;
    min-height: auto !important;
    overflow: visible !important;
  }

  .gml-sticky .container {
    min-height: auto !important;
    position: relative !important;
    overflow: visible !important;
  }

  /* Carousel: show one slide at a time with transitions */
  .gml-slide {
    position: relative !important;
    inset: auto !important;
    flex-direction: column !important;
    text-align: center !important;
    gap: 20px !important;
    padding: 20px 16px !important;
    /* Hidden by default */
    display: none !important;
    opacity: 0 !important;
    transform: translateX(40px) !important;
    transition: opacity 0.45s ease, transform 0.45s ease !important;
  }

  /* Active slide visible with entrance animation */
  .gml-slide.active {
    display: flex !important;
    opacity: 1 !important;
    transform: translateX(0) !important;
  }

  /* First slide visible by default before JS runs */
  .gml-slide:first-child:not(.prev):not(.active) {
    display: flex !important;
    opacity: 1 !important;
    transform: translateX(0) !important;
  }

  /* Once any slide has .active, hide non-active (including first-child) */
  .gml-slide.prev {
    display: none !important;
    opacity: 0 !important;
    transform: translateX(-40px) !important;
  }

  .gml-slide__content {
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .gml-slide__eyebrow {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .gml-slide__keyword {
    font-size: clamp(32px, 9vw, 48px);
  }

  .gml-slide__keyword--combined {
    font-size: clamp(24px, 7vw, 36px);
    letter-spacing: 3px;
  }

  .gml-slide__desc {
    max-width: 100%;
    font-size: 13px;
    padding: 0 8px;
  }

  .gml-slide__visual {
    width: clamp(220px, 65vw, 300px) !important;
    margin: 10px auto 0 !important;
    flex-shrink: 0;
  }

  .visual-showcase__frame--circle {
    max-width: 280px;
    border: 2px solid rgba(59, 130, 246, 0.4);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
  }

  /* Glow effects restored on mobile */

  .gml-slide__previews {
    justify-content: center;
    gap: 14px;
    margin-top: 20px;
  }

  .gml-slide__preview-word {
    font-size: clamp(13px, 3.5vw, 18px);
  }

  /* Progress dots — visible, centered below slides */
  .gml-progress {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    display: flex !important;
    justify-content: center !important;
    margin-top: 16px !important;
    gap: 8px !important;
  }

  .gml-progress__dot {
    width: 10px;
    height: 10px;
    cursor: pointer;
  }

  /* ── Mobile swipe hint ── */
  .mobile-swipe-hint {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    padding: 8px 20px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: swipeHintPulse 2.5s ease-in-out infinite;
  }

  .mobile-swipe-hint svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--primary);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: swipeArrowBounce 1.5s ease-in-out infinite;
  }

  /* --- Integration Hub --- */
  .integration-hub {
    padding: 30px 0 20px;
  }

  .hub-diagram {
    max-width: 320px;
    margin: 0 auto;
  }

  .hub-node {
    --dist: 130px !important;
  }

  .hub-node__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .hub-node__icon svg {
    width: 18px;
    height: 18px;
  }

  .hub-node__label {
    font-size: 9px;
  }

  .hub-center {
    width: 60px;
    height: 60px;
  }

  .hub-center__text {
    font-size: 16px;
    letter-spacing: 1px;
  }

  .hub-lines {
    stroke-width: .5;
  }

  /* --- Flow Diagram (vertical on mobile) --- */
  .flow-diagram {
    padding: 24px 16px;
  }

  .flow-diagram__title {
    font-size: clamp(18px, 5vw, 24px);
    margin-bottom: 24px;
  }

  .flow-diagram__pipeline {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }

  .flow-stage {
    width: 100%;
    max-width: 300px;
  }

  .flow-stage__label {
    font-size: 10px;
    margin-bottom: 8px;
  }

  .flow-stage__nodes {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
  }

  .flow-node--channel {
    min-width: auto;
    padding: 6px 10px;
    font-size: 11px;
  }

  .flow-node--channel svg {
    width: 16px;
    height: 16px;
  }

  .flow-node--main {
    padding: 14px 16px;
  }

  .flow-node__title {
    font-size: 13px;
  }

  .flow-node__subtitle {
    font-size: 10px;
  }

  .flow-arrow {
    width: 20px;
    height: 32px;
    transform: rotate(90deg);
  }

  /* --- Services Section --- */
  .services-section {
    padding: 50px 0 40px;
  }

  .srv-carousel {
    margin: 0;
    overflow: hidden;
  }

  .srv-carousel__track {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 12px 16px 20px;
    overflow-x: visible;
    scroll-snap-type: none;
  }

  .srv-card {
    flex: none;
    width: 100%;
    max-width: 100%;
    padding: 24px 18px;
    border-radius: 14px;
    scroll-snap-align: none;
  }

  .srv-card__icon {
    width: 44px;
    height: 44px;
  }

  .srv-card__title {
    font-size: 17px;
  }

  .srv-card__desc {
    font-size: 13px;
    line-height: 1.5;
  }

  .srv-card__features li {
    font-size: 12px;
  }

  .srv-carousel__arrow {
    display: none;
  }

  .srv-carousel::before,
  .srv-carousel::after {
    display: none;
  }

  /* Service slides (legacy sticky) */
  .srv-slide__title {
    font-size: clamp(20px, 5.5vw, 28px);
  }

  .srv-slide__desc {
    max-width: 100%;
    font-size: 13px;
  }

  .srv-crm-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .srv-slide__features {
    align-items: flex-start;
    padding: 0 12px;
  }

  .services-sticky .container {
    min-height: 520px;
  }

  .srv-slide--with-visual {
    flex-direction: column;
    text-align: center;
  }

  .srv-slide--with-visual .srv-slide__content {
    align-items: center;
  }

  .srv-slide--with-visual .srv-slide__visual {
    max-width: 200px;
    margin: 0 auto;
  }

  /* --- Problem Section: Swipe carousel on mobile --- */
  .problem-section {
    min-height: auto !important;
    height: auto !important;
    padding: 40px 0 20px !important;
    overflow: visible !important;
  }

  .problem-sticky {
    position: relative !important;
    height: auto !important;
    min-height: auto !important;
    overflow: visible !important;
  }

  .problem-sticky .container {
    min-height: auto !important;
    position: relative !important;
  }

  /* Carousel: show one phase at a time */
  .problem-phase {
    position: relative !important;
    inset: auto !important;
    display: none !important;
    opacity: 0 !important;
    transform: translateX(40px) !important;
    transition: opacity 0.45s ease, transform 0.45s ease !important;
    padding: 0 16px !important;
  }

  .problem-phase.active {
    display: flex !important;
    opacity: 1 !important;
    transform: translateX(0) !important;
  }

  .problem-phase:first-child:not(.prev):not(.active) {
    display: flex !important;
    opacity: 1 !important;
    transform: translateX(0) !important;
  }

  .problem-phase.prev {
    display: none !important;
    opacity: 0 !important;
    transform: translateX(-40px) !important;
  }

  /* Problem progress dots — visible */
  .problem-section .gml-progress {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    display: flex !important;
    justify-content: center !important;
    margin-top: 16px !important;
    gap: 8px !important;
  }

  .problem-phase__title {
    font-size: clamp(20px, 5.5vw, 30px);
  }

  .problem-phase__desc {
    max-width: 100%;
    font-size: 13px;
  }

  .problem-flow {
    gap: 10px;
    margin-top: 24px;
  }

  /* Force flow steps visible on mobile */
  .problem-flow__step {
    opacity: 1 !important;
    transform: none !important;
  }

  .problem-flow__arrow {
    opacity: 1 !important;
    transform: none !important;
  }

  .problem-flow__step-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }

  .problem-flow__step-icon svg {
    width: 18px;
    height: 18px;
  }

  .problem-flow__step-label {
    font-size: 10px;
  }

  /* arrows visible via opacity rule above */

  /* --- Contact Section --- */
  .contact {
    padding: 50px 0;
  }

  .contact__grid {
    gap: 24px;
  }

  .contact__info h3 {
    font-size: 22px;
  }

  .contact__info p {
    font-size: 14px;
  }

  .contact__form {
    padding: 20px 16px;
  }

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

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

  .form-input {
    padding: 14px 16px;
    font-size: 16px;
    /* Prevents iOS zoom on focus */
  }

  select.form-input {
    font-size: 16px;
  }

  .form-label {
    font-size: 11px;
  }

  .form-actions {
    flex-direction: column;
    gap: 12px;
  }

  .form-actions .btn-primary,
  .form-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .form-steps {
    margin-bottom: 20px;
    padding-bottom: 12px;
  }

  .step-label {
    display: none;
  }

  .step-num {
    width: 26px;
    height: 26px;
    font-size: 11px;
  }

  .form-step-line {
    max-width: 40px;
    margin: 0 6px;
    margin-bottom: 0;
  }

  .form-checkbox {
    font-size: 12px;
    padding: 10px 12px;
  }

  /* --- Visual Showcase --- */
  .visual-showcase--side {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .visual-showcase--side .visual-showcase__content {
    order: 0;
  }

  /* --- Footer --- */
  .footer {
    padding: 36px 0 16px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer__brand {
    grid-column: 1 / -1;
    text-align: center;
  }

  .footer__brand img {
    margin: 0 auto 12px;
  }

  .footer__bottom {
    text-align: center;
    font-size: 12px;
  }

  .footer__top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }

  .footer__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer__brand img {
    margin: 0 auto;
  }

  .footer__brand p {
    max-width: 100%;
    font-size: 13px;
  }

  .footer__col h4 {
    font-size: 13px;
  }

  .footer__col a,
  .footer__col p {
    font-size: 12px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    font-size: 11px;
  }

  .footer__social a {
    width: 36px;
    height: 36px;
  }

  /* --- Canvas effects reduced --- */
  #grid-canvas {
    opacity: .04;
  }

  #particles-canvas {
    opacity: .1;
  }

  #stars-canvas {
    opacity: .6;
  }
}

/* ── SMALL PHONES (≤480px) ── */
@media(max-width:480px) {

  .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .section-title {
    font-size: clamp(20px, 5.5vw, 28px) !important;
  }

  .hero {
    padding: 100px 12px 50px;
  }

  .hero__title {
    font-size: clamp(19px, 6vw, 26px);
  }

  .hero__subtitle {
    font-size: 13px;
  }

  .gml-section {
    min-height: auto !important;
  }

  .gml-sticky .container {
    min-height: auto;
  }

  .gml-slide__visual {
    width: clamp(200px, 60vw, 280px);
  }

  .gml-slide__keyword {
    font-size: clamp(26px, 8vw, 38px);
  }

  .gml-slide__keyword--combined {
    font-size: clamp(20px, 6vw, 30px);
    letter-spacing: 2px;
  }

  .gml-slide__desc {
    font-size: 12px;
  }

  .gml-slide__preview-word {
    font-size: clamp(11px, 3vw, 15px);
  }

  .hub-diagram {
    max-width: 300px;
  }

  .hub-node {
    --dist: 120px !important;
  }

  .hub-node__icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }

  .hub-node__icon svg {
    width: 16px;
    height: 16px;
  }

  .hub-node__label {
    font-size: 8px;
  }

  .hub-center {
    width: 52px;
    height: 52px;
  }

  .hub-center__text {
    font-size: 14px;
    letter-spacing: .5px;
  }

  .flow-node--channel {
    padding: 5px 8px;
    font-size: 10px;
  }

  .flow-node--channel svg {
    width: 14px;
    height: 14px;
  }

  .flow-node--main {
    padding: 12px 14px;
  }

  .flow-node__title {
    font-size: 12px;
  }

  .flow-node__subtitle {
    font-size: 9px;
  }

  .flow-arrow {
    width: 16px;
    height: 24px;
  }

  .srv-card {
    padding: 20px 16px;
  }

  .srv-card__title {
    font-size: 16px;
  }

  .srv-card__desc {
    font-size: 12px;
  }

  .problem-phase__title {
    font-size: clamp(18px, 5vw, 26px);
  }

  .problem-flow {
    gap: 6px;
  }

  .problem-flow__step-icon {
    width: 38px;
    height: 38px;
  }

  .problem-flow__step-icon svg {
    width: 16px;
    height: 16px;
  }

  .contact__info h3 {
    font-size: 20px;
  }

  .contact__form {
    padding: 16px 12px;
  }

  .form-input {
    font-size: 16px;
    padding: 12px 14px;
  }

  .footer {
    padding: 28px 0 14px;
  }

  .footer__brand p {
    font-size: 12px;
  }

  .hook-phrase {
    padding: 30px 12px;
  }

  .hook-phrase__text {
    font-size: clamp(18px, 5vw, 26px);
  }

  .hook-phrase__sub {
    font-size: 12px;
  }
}

/* ── TOUCH FEEDBACK (replaces hover on touch devices) ── */
@media(hover:none) and (pointer:coarse) {

  /* Active states for touch — replicate hover effects */
  .srv-card:active {
    border-color: rgba(91, 60, 196, .35);
    box-shadow: 0 0 30px rgba(91, 60, 196, .08), 0 0 60px rgba(91, 60, 196, .04);
    transform: translateY(-2px);
  }

  .hub-node:active .hub-node__icon {
    border-color: rgba(91, 60, 196, .5);
    box-shadow: 0 0 20px rgba(91, 60, 196, .15);
    transform: scale(1.1);
  }

  .hub-node:active .hub-node__label {
    color: var(--white);
  }

  .form-checkbox:active {
    border-color: rgba(91, 60, 196, .25);
    background: rgba(91, 60, 196, .06);
    transform: scale(.98);
  }

  .srv-crm-feature:active {
    border-color: rgba(91, 60, 196, .2);
    background: rgba(91, 60, 196, .08);
    transform: scale(.98);
  }

  .btn-primary:active {
    transform: scale(.97);
    opacity: .9;
  }

  .btn-secondary:active {
    transform: scale(.97);
    background: rgba(91, 60, 196, .08);
    border-color: var(--gray-500);
  }

  .navbar__links a:active {
    color: var(--gold);
  }

  .footer__social a:active {
    border-color: var(--border-hover);
    background: rgba(91, 60, 196, .08);
    transform: scale(.95);
  }

  .problem-flow__step:active .problem-flow__step-icon {
    box-shadow: 0 0 30px rgba(91, 60, 196, .12);
    transform: scale(1.05);
  }

  .contact__detail:active {
    background: rgba(91, 60, 196, .03);
    border-radius: 12px;
  }

  .flow-node:active {
    transform: scale(1.05);
  }

  .flow-node--main:active .flow-node__glow {
    opacity: 1;
  }

  .gml-slide__preview-word:active {
    color: var(--gold);
  }

  .srv-card__cta:active {
    color: var(--gold-soft);
    transform: scale(.98);
  }

  /* Disable hover-only animations on touch devices */
  .srv-card:hover {
    transform: none;
    border-color: var(--border);
    box-shadow: none;
  }

  .srv-crm-feature::after {
    display: none;
  }
}

/* ── Mobile swipe hint (hidden on desktop) ── */
.mobile-swipe-hint {
  display: none;
}

/* ── Swipe Hint Animations ── */
@keyframes swipeHintPulse {

  0%,
  100% {
    opacity: 0.7;
  }

  50% {
    opacity: 1;
  }
}

@keyframes swipeArrowBounce {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(5px);
  }
}

/* ── REDUCED MOTION ── */
@media(prefers-reduced-motion:reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto;
  }
}