/* ═══════════════════════════════════════════════════
   BULVAR — DESIGN SYSTEM v3
   Flat / Editorial / B2B+B2C
   Grid Background · Floating Emojis · FontAwesome
═══════════════════════════════════════════════════ */

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

:root {
  --bg: #FFFFFF;
  --bg-muted: #F8FAFC;
  --ink: #0F172A;
  --ink-mid: #334155;
  --ink-soft: #475569;
  --ink-ghost: #94A3B8;
  --line: #E2E8F0;

  --blue: #3B82F6;
  --green: #10B981;
  --red: #EF4444;
  --amber: #F59E0B;
  --purple: #7C3AED;

  --blue-bg: #EFF6FF;
  --green-bg: #ECFDF5;
  --red-bg: #FEF2F2;
  --amber-bg: #FEF3C7;
  --purple-bg: #F3E8FF;

  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --section-py: 96px;
  --container: 1200px;
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;

  --grid-color: rgba(59, 130, 246, 0.045);
  --grid-size: 48px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══════════════════════════════════════════════════
   GRID BACKGROUND
═══════════════════════════════════════════════════ */
.hero__grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(var(--grid-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
  background-size: var(--grid-size) var(--grid-size);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 80%);
}

/* ═══════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════ */
.btn-ghost {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 8px 12px;
  border-radius: var(--r-sm);
  transition: color 0.15s;
  border: none;
  background: none;
  cursor: pointer;
}

.btn-ghost:hover {
  color: var(--ink);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
  background: var(--ink);
  padding: 10px 20px;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.15s;
}

.btn-dark:hover {
  opacity: 0.82;
  transform: translateY(-1px);
}

.btn-dark--lg {
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--r-md);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  background: transparent;
  padding: 10px 20px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--line);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
}

.btn-outline:hover {
  border-color: var(--ink);
  background: var(--bg-muted);
  transform: translateY(-1px);
}

.btn-outline--lg {
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--r-md);
}

.btn-outline--sm {
  font-size: 13px;
  padding: 10px 18px;
}

.btn-outline--dark {
  border-color: #334155;
  color: #fff;
}

.btn-outline--dark:hover {
  background: #1E293B;
  border-color: #475569;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  background: #fff;
  padding: 12px 24px;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.15s;
}

.btn-white:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════
   SECTION HEADER
═══════════════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-ghost);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
}

.section-sub {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-top: 14px;
}

.pricing-header__actions {
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

.pricing-smart-btn {
  background: linear-gradient(135deg, #0F172A 0%, #2563EB 100%);
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.18);
}

.pricing-smart-btn:hover {
  opacity: 1;
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.24);
}

/* ═══════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s;
}

.header.scrolled {
  box-shadow: 0 1px 20px rgba(15, 23, 42, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  height: 62px;
  gap: 40px;
}

.logo {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
  flex-shrink: 0;
}

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

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 6px 12px;
  border-radius: var(--r-sm);
  transition: color 0.15s, background 0.15s;
}

.nav__link:hover {
  color: var(--ink);
  background: var(--bg-muted);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.25s ease;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: fixed;
  top: 62px;
  left: 0;
  right: 0;
  z-index: 999;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}

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

.mobile-nav__link {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.15s;
}

.mobile-nav__link:hover {
  color: var(--ink);
}

.mobile-nav__link--ghost {
  border-bottom: none;
}

.mobile-nav__cta {
  margin-top: 8px;
  text-align: center;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--bg-muted);
  padding: 80px 0 64px;
  overflow: hidden;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
}

/* ── Left text column ── */
.hero__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

.hero__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 20px;
  max-width: 600px;
  width: 100%;
}

.hero__title-static {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1.05;
}

.hero__title-rotating {
  position: relative;
  height: clamp(40px, 5.5vw, 68px);
  overflow: hidden;
  width: 100%;
}

.rotating-word {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  opacity: 0;
  transform: translateY(30px) scale(0.96);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.rotating-word.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.rotating-word.leaving {
  opacity: 0;
  transform: translateY(-30px) scale(0.96);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.rotating-word[data-color="blue"] {
  color: var(--blue);
}

.rotating-word[data-color="green"] {
  color: var(--green);
}

.rotating-word[data-color="amber"] {
  color: var(--amber);
}

.rotating-word[data-color="purple"] {
  color: var(--purple);
}

/* Rotating Word Underline Accent */
.rotating-word.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60%;
  height: 4px;
  border-radius: 4px;
  background: currentColor;
  opacity: 0.2;
  animation: underline-in 0.5s ease forwards;
}

@keyframes underline-in {
  from {
    width: 0%;
    opacity: 0;
  }

  to {
    width: 60%;
    opacity: 0.2;
  }
}

.hero__subs {
  position: relative;
  height: 52px;
  overflow: hidden;
  margin-bottom: 32px;
  max-width: 480px;
  width: 100%;
}

.hero-sub {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.hero-sub.active {
  opacity: 1;
  transform: translateY(0);
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 14px;
}

.hero__cta-note {
  font-size: 12px;
  color: var(--ink-ghost);
  margin-bottom: 0;
}

/* ── Hero Stats ── */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-stat__val {
  display: flex;
  align-items: baseline;
}

.hero-stat__num {
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-feature-settings: "tnum";
}

.hero-stat__plus {
  font-size: 18px;
  font-weight: 800;
  color: var(--blue);
  margin-left: 2px;
}

.hero-stat__label {
  font-size: 12px;
  color: var(--ink-soft);
  font-weight: 600;
  margin-top: 4px;
}

.hero-stat__divider {
  width: 1px;
  height: 32px;
  background: var(--line);
}
/* Hero Visual — RPA Automation Flow */
.rpa-flow {
  width: 100%;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 24px 20px 16px;
  position: relative;
}

.rpa-flow__header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.rpa-flow__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-bg);
  border: 1px solid rgba(59, 130, 246, 0.15);
  padding: 5px 14px;
  border-radius: 100px;
}

.rpa-flow__dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  animation: rpa-pulse 1.5s ease-in-out infinite;
}

@keyframes rpa-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.6); }
}

/* ── Vertical Spiral Layout ── */
.rpa-spiral {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 16px;
  padding: 0 12px;
}

/* Center spine */
.rpa-spiral__spine {
  position: absolute;
  left: 50%;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: var(--line);
  transform: translateX(-50%);
  border-radius: 2px;
  z-index: 0;
}

.rpa-spiral__spine-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, #3B82F6, #8B5CF6, #D97706, #059669, #EF4444, #0EA5E9, #10B981);
  border-radius: 2px;
  transition: height 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Individual Step (spiral) ── */
.rpa-step {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  opacity: 0.25;
  transform: translateY(6px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: 1;
}

.rpa-step.rpa-step--active {
  opacity: 1;
  transform: translateY(0);
}

/* Left-aligned steps: node on left side of spine, text further left */
.rpa-step--left {
  flex-direction: row-reverse;
  padding-right: calc(50% + 18px);
}

.rpa-step--left .rpa-step__body {
  text-align: right;
}

/* Right-aligned steps: node on right side of spine, text further right */
.rpa-step--right {
  flex-direction: row;
  padding-left: calc(50% + 18px);
}

.rpa-step--right .rpa-step__body {
  text-align: left;
}

/* Connector arm from spine to node */
.rpa-step__connector {
  position: absolute;
  top: 50%;
  height: 2px;
  background: var(--line);
  z-index: 0;
  transition: background 0.3s ease;
}

.rpa-step--left .rpa-step__connector {
  right: calc(50% - 1px);
  width: 18px;
}

.rpa-step--right .rpa-step__connector {
  left: calc(50% - 1px);
  width: 18px;
}

.rpa-step--done .rpa-step__connector {
  background: var(--node-color);
}

/* Node (icon circle) */
.rpa-step__node {
  position: relative;
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: var(--node-bg);
  border: 2px solid var(--node-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--node-color);
  transition: transform 0.3s ease;
  z-index: 2;
}

.rpa-step--active .rpa-step__node {
  animation: rpa-node-pop 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes rpa-node-pop {
  0% { transform: scale(0.7); }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

/* Tick overlay */
.rpa-step__tick {
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--node-color);
  color: #fff;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.rpa-step--done .rpa-step__tick {
  opacity: 1;
  transform: scale(1);
}

/* Processing state — spinner ring */
.rpa-step--processing .rpa-step__node::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--node-color);
  animation: rpa-spin 0.8s linear infinite;
}

@keyframes rpa-spin {
  to { transform: rotate(360deg); }
}

/* Final node */
.rpa-step__node--final {
  border-width: 2.5px;
}

/* Step body text */
.rpa-step__body {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
  min-width: 0;
}

.rpa-step__num {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--ink-ghost);
}

.rpa-step__label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rpa-step__detail {
  font-size: 10px;
  line-height: 1.4;
  color: var(--ink-soft);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Console Log ── */
.rpa-console {
  background: #0F172A;
  border-radius: var(--r-md);
  padding: 10px 14px;
  max-height: 120px;
  overflow: hidden;
  font-family: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;
}

.rpa-console__line {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 2px 0;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.rpa-console__line.rpa-log--visible {
  opacity: 1;
  transform: translateY(0);
}

.rpa-console__time {
  font-size: 10px;
  color: #475569;
  flex-shrink: 0;
  font-weight: 600;
}

.rpa-console__msg {
  font-size: 10px;
  color: #94A3B8;
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Final console line highlight */
.rpa-console__line[data-log="7"] .rpa-console__msg {
  color: #10B981;
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════
   FLOATING EMOJIS
═══════════════════════════════════════════════════ */
.hero__emojis {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.floating-emoji {
  position: absolute;
  font-size: 28px;
  opacity: 0;
  will-change: transform, opacity;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  filter: grayscale(0.15);
}

/* Left side emojis */
.fe-1 {
  left: 4%;
  top: 18%;
  font-size: 32px;
  animation: floatLeftIn 8s 0s infinite;
}

.fe-2 {
  left: 8%;
  top: 55%;
  font-size: 24px;
  animation: floatLeftIn 9s 1.2s infinite;
}

.fe-3 {
  left: 2%;
  top: 38%;
  font-size: 22px;
  animation: floatLeftIn 10s 2.4s infinite;
}

.fe-4 {
  left: 12%;
  top: 75%;
  font-size: 30px;
  animation: floatLeftIn 8.5s 0.8s infinite;
}

.fe-5 {
  left: 6%;
  top: 8%;
  font-size: 26px;
  animation: floatLeftIn 9.5s 3s infinite;
}

.fe-6 {
  left: 14%;
  top: 30%;
  font-size: 20px;
  animation: floatLeftIn 11s 1.8s infinite;
}

/* Right side emojis */
.fe-7 {
  right: 4%;
  top: 20%;
  font-size: 30px;
  animation: floatRightIn 8s 0.5s infinite;
}

.fe-8 {
  right: 10%;
  top: 50%;
  font-size: 26px;
  animation: floatRightIn 9s 1.6s infinite;
}

.fe-9 {
  right: 3%;
  top: 35%;
  font-size: 22px;
  animation: floatRightIn 10s 2.8s infinite;
}

.fe-10 {
  right: 8%;
  top: 70%;
  font-size: 28px;
  animation: floatRightIn 8.5s 0.3s infinite;
}

.fe-11 {
  right: 14%;
  top: 12%;
  font-size: 24px;
  animation: floatRightIn 9.5s 2s infinite;
}

.fe-12 {
  right: 6%;
  top: 60%;
  font-size: 20px;
  animation: floatRightIn 11s 3.5s infinite;
}

@keyframes floatLeftIn {
  0% {
    opacity: 0;
    transform: translateX(-40px) translateY(0) rotate(-15deg) scale(0.6);
  }

  12% {
    opacity: 0.5;
    transform: translateX(0) translateY(-8px) rotate(0deg) scale(1);
  }

  50% {
    opacity: 0.35;
    transform: translateX(10px) translateY(-20px) rotate(8deg) scale(0.95);
  }

  88% {
    opacity: 0.5;
    transform: translateX(-5px) translateY(-8px) rotate(-3deg) scale(1);
  }

  100% {
    opacity: 0;
    transform: translateX(-40px) translateY(0) rotate(-15deg) scale(0.6);
  }
}

@keyframes floatRightIn {
  0% {
    opacity: 0;
    transform: translateX(40px) translateY(0) rotate(15deg) scale(0.6);
  }

  12% {
    opacity: 0.5;
    transform: translateX(0) translateY(-8px) rotate(0deg) scale(1);
  }

  50% {
    opacity: 0.35;
    transform: translateX(-10px) translateY(-20px) rotate(-8deg) scale(0.95);
  }

  88% {
    opacity: 0.5;
    transform: translateX(5px) translateY(-8px) rotate(3deg) scale(1);
  }

  100% {
    opacity: 0;
    transform: translateX(40px) translateY(0) rotate(15deg) scale(0.6);
  }
}

/* ═══════════════════════════════════════════════════
   FOR WHOM
═══════════════════════════════════════════════════ */
.for-whom {
  position: relative;
  background: var(--bg);
  padding: var(--section-py) 0;
  overflow: hidden;
}

/* ── BACKGROUND SCENE (Map & Bubbles) ── */
.fw-bg-scene {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.fw-bg-map {
  position: absolute;
  inset: -10%;
  opacity: 0.15;
  background-image: 
    radial-gradient(circle at 100% 100%, var(--bg) 20%, transparent 60%), /* fade edges */
    radial-gradient(circle at 0% 0%, var(--bg) 20%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='800' height='600' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-50,200 Q150,250 300,100 T700,300 M50,450 Q250,550 450,400 T850,500 M200,-50 Q250,150 150,350 T300,650 M600,-50 Q550,150 650,350 T500,650' fill='none' stroke='%2394A3B8' stroke-width='1.5' stroke-dasharray='6 6' opacity='0.7'/%3E%3C/svg%3E");
  background-size: auto;
  background-repeat: repeat;
  background-position: center;
}

.fw-bubble {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  border-radius: var(--r-xl);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 280px;
  z-index: 1;
}

.fw-bubble__head {
  position: relative;
  flex-shrink: 0;
}

.fw-bubble__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.fw-bubble__dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  background: #EF4444; /* Notification red */
  border: 2px solid #fff;
  border-radius: 50%;
}

.fw-bubble__text {
  font-size: 13px;
  color: var(--ink);
  line-height: 1.4;
}

.fw-bubble__text strong {
  font-size: 12px;
  color: var(--ink-soft);
}

/* Animations using existing or new floats */
.anim-float-slow-1 { animation: floatY 9s ease-in-out infinite; }
.anim-float-slow-2 { animation: floatX 11s ease-in-out infinite 2s; }
.anim-float-slow-3 { animation: floatY 10s ease-in-out infinite 1s; }

@media (max-width: 1200px) {
  .fw-bg-scene { opacity: 0.3; } /* Fade out slightly when grid hits them */
}
@media (max-width: 768px) {
  .fw-bg-scene { display: none; } /* Hide completely on mobile to not clutter */
}

.whom-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.whom-card {
  background: var(--bg);
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.whom-card--b2b:hover {
  background: #F8FAFF;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.1);
  z-index: 2;
}

.whom-card--b2c:hover {
  background: #F0FDF9;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.1);
  z-index: 2;
}

.whom-card__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.whom-pill {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}

.whom-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ink-ghost);
}

.whom-card__title {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
}

.whom-card__desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-soft);
}

.whom-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.whom-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-mid);
  font-weight: 500;
}

.whom-list li i {
  width: 16px;
  text-align: center;
  flex-shrink: 0;
  font-size: 14px;
}

.whom-card__cta {
  align-self: flex-start;
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════════
   CAMPAIGNS
═══════════════════════════════════════════════════ */
.campaigns {
  position: relative;
  background: var(--bg-muted);
  padding: var(--section-py) 0;
  overflow: hidden;
}

.campaigns-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.campaign-card {
  background: var(--bg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.campaign-card:hover {
  background: #FAFBFF;
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  z-index: 2;
}

.campaign-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.campaign-card__num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--ink-ghost);
}

.campaign-card__icon {
  font-size: 22px;
}

.campaign-card__label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  align-self: flex-start;
}

.campaign-card__title {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.2;
}

.campaign-card__desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.campaign-card__hint {
  font-size: 11px;
  color: var(--ink-ghost);
  font-weight: 500;
}

.stamp-preview {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.stamp-p {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.stamp-p.filled {
  background: var(--blue);
  border-color: var(--blue);
}

.stamp-p.reward {
  background: var(--amber-bg);
  border-color: var(--amber);
}

.time-block-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.time-block {
  background: var(--bg-muted);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 8px 12px;
  text-align: center;
}

.time-block__label {
  font-size: 9px;
  color: var(--ink-ghost);
  font-weight: 600;
}

.time-block__value {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.time-arrow {
  color: var(--ink-ghost);
  font-size: 12px;
}

.time-discount {
  margin-left: auto;
  font-size: 18px;
  font-weight: 800;
  color: var(--amber);
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-align: center;
}

.time-discount small {
  font-size: 10px;
  font-weight: 600;
  color: var(--ink-ghost);
  display: block;
}

.cross-preview {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cross-item {
  text-align: center;
}

.cross-emoji {
  width: 32px;
  height: 32px;
  background: var(--bg-muted);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin: 0 auto 2px;
}

.cross-name {
  font-size: 9px;
  color: var(--ink-soft);
  font-weight: 600;
}

.cross-plus {
  font-size: 14px;
  color: var(--ink-ghost);
  flex-shrink: 0;
}

.cross-result {
  margin-left: auto;
  text-align: right;
}

.micro-preview {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.micro-rule {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-muted);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 7px 10px;
}

.micro-cond {
  font-size: 10px;
  font-weight: 700;
  color: var(--ink-ghost);
  flex-shrink: 0;
}

.micro-val {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 2px 7px;
  border-radius: var(--r-sm);
}

.micro-val--action {
  color: #059669;
  background: var(--green-bg);
  border-color: #A7F3D0;
}

.micro-arrow {
  font-size: 14px;
  color: var(--ink-ghost);
  text-align: center;
}

.campaign-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.campaign-features li {
  font-size: 11px;
  color: var(--ink-soft);
  font-weight: 500;
  padding-left: 16px;
  position: relative;
}

.campaign-features li::before {
  content: '\f061';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 8px;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--ink-ghost);
}

/* ═══════════════════════════════════════════════════
   DISCOVER
═══════════════════════════════════════════════════ */
.discover {
  position: relative;
  background: var(--bg);
  padding: var(--section-py) 0;
  overflow: hidden;
}

.discover__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: center;
}

.discover__title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--ink);
  margin: 12px 0 18px;
}

.discover__desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 32px;
}

.discover__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.discover__feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.discover__feat-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  font-weight: 700;
}

.discover__feat-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.discover__feat-desc {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 2px;
}

.discover__cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.discover__cta-note {
  font-size: 12px;
  color: var(--ink-ghost);
}

.discover__visual {
  display: flex;
  justify-content: center;
}

.discover__visual-img {
  width: 100%;
  max-width: 360px;
  height: auto;
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  box-shadow: 0 8px 40px rgba(15, 23, 42, 0.08);
}

/* ═══════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════ */
.how {
  position: relative;
  background: var(--bg-muted);
  padding: var(--section-py) 0;
  overflow: hidden;
}

.how-tabs {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 4px;
  max-width: 380px;
  margin: 0 auto 48px;
}

.how-tab {
  flex: 1;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  background: none;
  border: none;
  padding: 10px 16px;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.how-tab--active {
  background: var(--ink);
  color: #fff;
}

.how-content {
  position: relative;
  z-index: 1;
}

.how-content--hidden {
  display: none;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.step {
  position: relative;
  padding: 0 32px;
}

.step:first-child {
  padding-left: 0;
}

.step:last-child {
  padding-right: 0;
}

.step__connector {
  position: absolute;
  top: 20px;
  right: 0;
  width: calc(50% - 20px);
  height: 1px;
  background: var(--line);
}

.step__num {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--ink-ghost);
  margin-bottom: 16px;
}

.step__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--ink);
  font-size: 17px;
}

.step__title {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.step__desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* ═══════════════════════════════════════════════════
   PRICING SECTION
═══════════════════════════════════════════════════ */
.pricing {
  position: relative;
  background: var(--bg-muted);
  padding: var(--section-py) 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

/* ── Plan Cards Grid ── */
.pricing-plans {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: 48px;
}

.pricing-plan {
  background: var(--bg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  position: relative;
  transition: background 0.3s ease;
}

.pricing-plan:hover {
  background: #FAFBFF;
}

.pricing-plan--featured {
  background: var(--blue-bg);
}

.pricing-plan--featured:hover {
  background: #E0EDFF;
}

.pricing-plan__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  background: var(--bg);
  border: 1px solid rgba(59, 130, 246, 0.2);
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.pricing-plan__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.pricing-plan__name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.pricing-plan__tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-ghost);
}

.pricing-plan__price {
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 4px 0;
}

.pricing-plan__price span {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-ghost);
  letter-spacing: 0;
}

.pricing-plan__audience {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
  min-height: 40px;
  display: flex;
  align-items: center;
}

.pricing-plan__limit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-mid);
  background: var(--bg-muted);
  border: 1px solid var(--line);
  padding: 6px 14px;
  border-radius: 100px;
}

.pricing-plan--featured .pricing-plan__limit {
  background: var(--bg);
}

.pricing-plan__limit i {
  font-size: 11px;
  color: var(--ink-ghost);
}

.pricing-plan__cta {
  margin-top: 8px;
  width: 100%;
  justify-content: center;
}

/* ── Feature Comparison Table ── */
.pricing-table-wrap {
  position: relative;
  z-index: 1;
}

.pricing-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: var(--bg);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  min-width: 700px;
}

.pricing-table thead {
  position: sticky;
  top: 0;
  z-index: 2;
}

.pricing-table th {
  background: var(--bg-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-mid);
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}

.pricing-table__feature-col {
  text-align: left !important;
  width: 260px;
  min-width: 200px;
}

.pricing-table__highlight {
  background: var(--blue-bg) !important;
  color: var(--blue) !important;
}

.pricing-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  text-align: center;
  color: var(--ink-mid);
  font-weight: 500;
  vertical-align: middle;
}

.pricing-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--ink);
}

/* Highlight column for "Büyüme" */
.pricing-table tbody td:nth-child(3) {
  background: rgba(239, 246, 255, 0.5);
}

/* Zebra striping */
.pricing-table tbody tr:nth-child(even):not(.pricing-table__group) {
  background: var(--bg-muted);
}

.pricing-table tbody tr:nth-child(even):not(.pricing-table__group) td:nth-child(3) {
  background: rgba(239, 246, 255, 0.7);
}

/* Last row no border */
.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

/* Group header rows */
.pricing-table__group td {
  background: var(--ink) !important;
  color: #fff !important;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 12px 20px;
}

/* Status badges */
.pt-yes {
  color: #059669;
  font-weight: 600;
  font-size: 12px;
}

.pt-no {
  color: var(--ink-ghost);
  font-weight: 500;
  font-size: 12px;
}

.pt-limited {
  color: #D97706;
  font-weight: 600;
  font-size: 12px;
}

/* Hover row */
.pricing-table tbody tr:not(.pricing-table__group):hover {
  background: rgba(59, 130, 246, 0.03);
}

.pricing-table tbody tr:not(.pricing-table__group):hover td:nth-child(3) {
  background: rgba(239, 246, 255, 0.8);
}

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.footer {
  background: var(--ink);
  border-top: 1px solid #1E293B;
  padding: 56px 0 32px;
}

.footer__top {
  display: flex;
  gap: 64px;
  margin-bottom: 48px;
}

.footer__brand {
  flex-shrink: 0;
  max-width: 220px;
}

.footer__logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 10px;
}

.footer__tagline {
  font-size: 13px;
  color: #64748B;
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #1E293B;
  border-radius: var(--r-sm);
  color: #64748B;
  transition: background 0.15s, color 0.15s;
  font-size: 14px;
}

.social-link:hover {
  background: #334155;
  color: #fff;
}

.footer__cols {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer__col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #475569;
  margin-bottom: 14px;
}

.footer__link {
  display: block;
  font-size: 13px;
  color: #64748B;
  padding: 4px 0;
  transition: color 0.12s;
}

.footer__link:hover {
  color: #fff;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid #1E293B;
}

.footer__copy,
.footer__made {
  font-size: 12px;
  color: #475569;
}

/* ═══════════════════════════════════════════════════
   REVEAL ANIMATIONS
═══════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-d1 {
  transition-delay: 0.08s;
}

.reveal-d2 {
  transition-delay: 0.16s;
}

.reveal-d3 {
  transition-delay: 0.24s;
}

.reveal-d4 {
  transition-delay: 0.32s;
}

/* ═══════════════════════════════════════════════════
   TESTIMONIALS (Yorumlar)
═══════════════════════════════════════════════════ */
.testimonials {
  position: relative;
  padding: var(--section-py) 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.testimonials__marquee-wrap {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  position: relative;
  margin-top: 48px;
  display: flex;
}

.testimonials__marquee-wrap::before,
.testimonials__marquee-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 15vw;
  z-index: 2;
  pointer-events: none;
}
.testimonials__marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), rgba(255, 255, 255, 0));
}
.testimonials__marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), rgba(255, 255, 255, 0));
}

.testimonials__marquee {
  display: flex;
  gap: 24px;
  padding: 12px 0;
  animation: marquee 60s linear infinite;
  white-space: nowrap;
}

.testimonials__marquee:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  /* Kaydırma: toplam genişliğin yarısı + boşluğun yarısı kadar (2 grup eşit olduğu için) */
  100% { transform: translateX(calc(-50% - 12px)); }
}

.testimonial-card {
  width: 380px;
  flex-shrink: 0;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  white-space: normal;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
}

.testimonial-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 800;
  color: var(--ink);
  font-size: 15px;
  letter-spacing: -0.01em;
}

.testimonial-card__type {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-ghost);
  margin-top: 2px;
}

.testimonial-card__icon {
  margin-left: auto;
  font-size: 20px;
  opacity: 0.8;
}

.testimonial-card__text {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════
   BRAND WALL (Brand Cloud)
═══════════════════════════════════════════════════ */
.brand-wall {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: var(--bg);
}

.brand-wall__grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 10%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 10%, transparent 80%);
}

.container--brand-wall {
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.brand-wall__cloud {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  perspective: 1000px;
}

.bw-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

/* Floating Animations */
@keyframes floatX {

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

  50% {
    transform: translate3d(-10px, 10px, 0);
  }
}

@keyframes floatY {

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

  50% {
    transform: translate3d(15px, -15px, 0);
  }
}

.bw-anim-1 {
  animation: floatX 8s ease-in-out infinite;
}

.bw-anim-2 {
  animation: floatY 10s ease-in-out infinite 1s;
}

.bw-anim-3 {
  animation: floatX 9s ease-in-out infinite 2s;
}

.bw-anim-4 {
  animation: floatY 11s ease-in-out infinite 0.5s;
}

.bw-item {
  width: 76px;
  height: 76px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  will-change: transform;
  padding: 14px;
}

.bw-item:hover {
  transform: translateY(-8px) scale(1.08) !important;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
  border-color: var(--blue);
  z-index: 2;
}

.bw-wrap:nth-child(even) .bw-item {
  width: 90px;
  height: 90px;
  padding: 18px;
}

.bw-wrap:nth-child(3) .bw-item {
  width: 68px;
  height: 68px;
  border-radius: 16px;
  padding: 12px;
}

/* B2B Grayscale effect to color on hover */
.bw-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: filter 0.4s ease;
}

.bw-item:hover img {
  filter: grayscale(0%) opacity(1);
}

.bw-item.empty {
  background: transparent;
  border: 1px dashed var(--line);
  box-shadow: none;
  opacity: 0.4;
}

.bw-item.empty:hover {
  transform: none !important;
  box-shadow: none;
  border-color: var(--line);
}

.brand-wall__center {
  position: relative;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 48px 60px;
  border-radius: 32px;
  text-align: center;
  z-index: 10;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  border: 1px solid rgba(255, 255, 255, 0.8);
  min-width: 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 900px) {
  .container--brand-wall {
    flex-direction: column;
    gap: 32px;
  }

  .brand-wall__center {
    padding: 36px 24px;
    min-width: 92%;
  }

  .cloud-right {
    display: none;
  }

  /* Simplify on mobile if needed or keep both */
}

@media (max-width: 768px) {
  .bw-item {
    width: 60px !important;
    height: 60px !important;
    padding: 10px;
  }
}

.brand-wall__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 16px;
}

.brand-wall__desc {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 380px;
}

.brand-wall__btn {
  background: var(--blue);
  color: #fff;
  width: 100%;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════
   FAQ (Sıkça Sorulan Sorular)
═══════════════════════════════════════════════════ */
.faq {
  padding: var(--section-py) 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.faq__inner {
  max-width: 760px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.faq-item {
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--bg);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: #CBD5E1;
}

.faq-item.active {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.05);
}

.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  line-height: 1.4;
  font-family: var(--font);
}

.faq-btn i {
  color: var(--ink-ghost);
  font-size: 14px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), color 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-btn i {
  transform: rotate(180deg);
  color: var(--blue);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-content p {
  padding: 0 24px 24px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

.faq-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
  padding: 40px 24px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  text-align: center;
}

.faq-cta__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue-bg);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.faq-cta__title {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.faq-cta__desc {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 24px;
  line-height: 1.5;
  max-width: 400px;
}

.faq-cta .btn-dark {
  padding: 14px 28px;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero__inner {
    grid-template-columns: 1fr 360px;
    gap: 32px;
  }

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

  .discover__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .discover__visual {
    order: -1;
  }

  .discover__visual-img {
    max-width: 280px;
  }
}

@media (max-width: 900px) {
  .whom-grid {
    grid-template-columns: 1fr;
  }

  .pricing-plans {
    grid-template-columns: repeat(2, 1fr);
  }

  .rpa-flow {
    padding: 24px 20px 20px;
  }

  .rpa-flow__steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  .rpa-step__detail {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --section-py: 64px;
    --grid-size: 32px;
  }

  .nav,
  .header__actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Mobile nav fix: use flex column display */
  .mobile-nav {
    display: flex;
  }

  .hero {
    padding: 56px 0 40px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero__text {
    align-items: center;
    text-align: center;
  }

  .hero__cta {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
    gap: 20px;
  }

  .hero-stat {
    align-items: center;
  }

  .hero-stat__num {
    font-size: 20px;
  }

  .hero-stat__plus {
    font-size: 14px;
  }

  .hero-stat__label {
    font-size: 11px;
  }

  .rotating-word {
    justify-content: center;
  }

  .rotating-word.active::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .hero__title-rotating {
    height: clamp(40px, 10vw, 56px);
  }

  .rotating-word {
    font-size: clamp(26px, 7vw, 42px);
  }

  .hero__title-static {
    font-size: clamp(28px, 7vw, 42px);
  }

  .hero__subs {
    height: 76px;
  }

  .whom-card {
    padding: 32px 24px;
  }

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

  .steps {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .step {
    padding: 0 !important;
  }

  .step__connector {
    display: none;
  }

  .footer__top {
    flex-direction: column;
    gap: 36px;
  }

  .footer__brand {
    max-width: 100%;
  }

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

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

  /* Hide emojis on smaller screens */
  .floating-emoji {
    display: none;
  }

  .discover__visual {
    display: none;
  }

  .rpa-flow__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .rpa-step__node {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .rpa-step__tick {
    width: 16px;
    height: 16px;
    font-size: 8px;
    bottom: -2px;
    right: -2px;
  }

  .rpa-step__label {
    font-size: 11px;
  }

  .rpa-console {
    max-height: 110px;
    padding: 10px 14px;
  }

  .rpa-console__time,
  .rpa-console__msg {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .hero__cta {
    flex-direction: column;
    width: 100%;
  }

  .hero__cta .btn-dark--lg,
  .hero__cta .btn-outline--lg {
    width: 100%;
    justify-content: center;
  }

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

  .whom-grid {
    border-radius: var(--r-lg);
  }

  .pricing-plans {
    grid-template-columns: 1fr;
  }

  .campaigns-grid {
    border-radius: var(--r-lg);
  }

  .campaign-card {
    padding: 24px 20px;
  }
}

/* ═══════════════════════════════════════════════════
   CAMPAIGN DETAIL PAGES
═══════════════════════════════════════════════════ */
.campaign-hero {
  position: relative;
  background: var(--bg-muted);
  padding: 100px 0 80px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.campaign-hero__icon {
  width: 64px;
  height: 64px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 24px;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.05);
}

.campaign-hero__title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 16px;
}

.campaign-hero__desc {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 32px;
}

.campaign-content {
  padding: var(--section-py) 0;
  background: var(--bg);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.content-text h3 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
}

.content-text p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

.content-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.content-list li {
  font-size: 15px;
  color: var(--ink-mid);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.content-list li i {
  color: var(--blue);
  font-size: 14px;
  margin-top: 4px;
  flex-shrink: 0;
}

.campaign-visual-box {
  background: var(--bg-muted);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

@media (max-width: 900px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .campaign-hero {
    padding: 80px 0 60px;
  }

  .cta-banner__cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
  }
}

/* ═══════════════════════════════════════════════════
   HERO JOURNEY FLOW (ANIMATED STEPS)
═══════════════════════════════════════════════════ */
.hero__journey {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--line);
  box-shadow:
    0 -4px 40px rgba(15,23,42,0.06),
    0 20px 60px rgba(15,23,42,0.04);
  padding: 40px 48px 48px;
  position: relative;
}
.hero__journey::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(59,130,246,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(16,185,129,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.journey__header {
  text-align: center;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}
.journey__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-bg);
  border: 1px solid rgba(59,130,246,0.15);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 8px;
}
.journey__badge i { font-size: 13px; }
.journey__subtitle {
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 500;
}

/* Track layout */
.journey__track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  z-index: 1;
}

/* Connecting line */
.journey__line {
  position: absolute;
  top: 24px;
  left: 32px;
  right: 32px;
  height: 2px;
  background: var(--line);
  z-index: 0;
  overflow: hidden;
  border-radius: 2px;
}
.journey__line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #3B82F6, #8B5CF6, #D97706, #059669, #EF4444, #0EA5E9, #10B981);
  border-radius: 2px;
  transition: width 3.2s linear;
}
.hero__journey.journey--active .journey__line::after {
  width: 100%;
}

/* Each step */
.journey__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.hero__journey.journey--active .journey__step {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Sequenced staggering relative to line filling */
.hero__journey.journey--active .journey__step[data-step="1"] { transition-delay: 0.1s; }
.hero__journey.journey--active .journey__step[data-step="2"] { transition-delay: 0.6s; }
.hero__journey.journey--active .journey__step[data-step="3"] { transition-delay: 1.1s; }
.hero__journey.journey--active .journey__step[data-step="4"] { transition-delay: 1.6s; }
.hero__journey.journey--active .journey__step[data-step="5"] { transition-delay: 2.1s; }
.hero__journey.journey--active .journey__step[data-step="6"] { transition-delay: 2.6s; }
.hero__journey.journey--active .journey__step[data-step="7"] { transition-delay: 3.1s; }

/* Node (circle icon) */
.journey__node {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--node-bg);
  border: 2px solid var(--node-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--node-color);
  z-index: 2;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.journey__step:hover .journey__node {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--node-color) 12%, transparent);
}

/* Animated pulse ring */
.journey__pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--node-color);
  opacity: 0;
  animation: journey-pulse 2.5s ease-out infinite;
}
/* Pulse delays match entry delays */
.journey__step[data-step="1"] .journey__pulse { animation-delay: 0.4s; }
.journey__step[data-step="2"] .journey__pulse { animation-delay: 0.9s; }
.journey__step[data-step="3"] .journey__pulse { animation-delay: 1.4s; }
.journey__step[data-step="4"] .journey__pulse { animation-delay: 1.9s; }
.journey__step[data-step="5"] .journey__pulse { animation-delay: 2.4s; }
.journey__step[data-step="6"] .journey__pulse { animation-delay: 2.9s; }
.journey__step[data-step="7"] .journey__pulse { animation-delay: 3.4s; }

@keyframes journey-pulse {
  0%   { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Final node glow */
.journey__node--final {
  box-shadow: 0 0 20px rgba(16,185,129,0.25);
}
.journey__node--final::after {
  content: '✨';
  position: absolute;
  top: -8px;
  right: -8px;
  font-size: 14px;
  animation: sparkle 1.5s ease infinite;
}
@keyframes sparkle {
  0%,100% { transform: scale(1) rotate(0deg); opacity: 1; }
  50%     { transform: scale(1.3) rotate(15deg); opacity: 0.6; }
}

/* Text area below node (Removed white background) */
.journey__card {
  text-align: center;
  padding: 12px 4px 0;
  transition: transform 0.3s ease;
  width: 100%;
}
.journey__step:hover .journey__card {
  transform: translateY(-2px);
}
.journey__num {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--ink-ghost);
  display: block;
  margin-bottom: 6px;
}
.journey__card-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 6px;
}
.journey__card-desc {
  font-size: 11px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* Mobile responsive */
@media (max-width: 900px) {
  .hero__journey {
    padding: 28px 20px 32px;
  }
  .journey__track {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 320px;
    margin: 0 auto;
  }
  .journey__line {
    top: 0;
    bottom: 0;
    left: 23px;
    right: auto;
    width: 2px;
    height: auto;
  }
  .journey__line::after {
    width: 100% !important;
    height: 0%;
    transition: height 3.2s linear;
  }
  .hero__journey.journey--active .journey__line::after {
    height: 100%;
  }
  .journey__step {
    flex-direction: row;
    gap: 16px;
    padding: 16px 0;
  }
  .journey__card {
    text-align: left;
    padding: 0;
  }
  .journey__node {
    width: 44px;
    height: 44px;
    min-width: 44px;
    font-size: 15px;
  }
}
