/* ============================================
   be-creative — Premium Agency Design System
   ============================================ */

/* ── Variables ── */
:root {
  --bg-dark: #080808;
  --bg-warm: #f2f1ed;
  --bg-card: #111111;
  --bg-card-hover: #161616;
  --cyan: #00BFFF;
  --purple: #6A5ACD;
  --magenta: #D147BD;
  --text-dark: #0a0a0a;
  --text-light: #f2f1ed;
  --text-muted-dark: rgba(242,241,237,0.45);
  --text-muted-light: rgba(10,10,10,0.45);
  --border-dark: rgba(255,255,255,0.07);
  --border-light: rgba(0,0,0,0.08);
  --gradient: linear-gradient(135deg, #00BFFF 0%, #6A5ACD 50%, #D147BD 100%);
  --radius: 16px;
  --radius-xl: 28px;
  --nav-h: 76px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  cursor: none;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: none; border: none; background: none; font-family: inherit; }

/* ── Grain Overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.04;
}

/* ── Custom Cursor ── */
.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background 0.3s;
}
.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--ease), height 0.4s var(--ease), border-color 0.3s;
}
body.dark-cursor .cursor-dot { background: white; }
body.dark-cursor .cursor-ring { border-color: rgba(255,255,255,0.5); }
body:not(.dark-cursor) .cursor-dot { background: #0a0a0a; }
body:not(.dark-cursor) .cursor-ring { border-color: rgba(0,0,0,0.3); }
.cursor-hover .cursor-ring { width: 60px; height: 60px; border-color: var(--cyan); }

/* ── Preloader ── */
.preloader {
  position: fixed;
  inset: 0;
  background: #080808;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease);
}
.preloader.hide {
  opacity: 0;
  pointer-events: none;
}
.preloader-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 48px);
  color: white;
  letter-spacing: -0.03em;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.preloader-logo.visible {
  opacity: 1;
  transform: none;
}
.preloader-logo .accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Container ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background 0.4s, border-bottom 0.4s;
}
.navbar.scrolled {
  background: rgba(8,8,8,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.navbar.light-nav { background: transparent; }
.navbar.light-nav.scrolled {
  background: rgba(242,241,237,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
.logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.03em;
  color: white;
  flex-shrink: 0;
}
.light-nav .logo { color: var(--text-dark); }
.logo-accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.navbar.light-nav .nav-links > li > a { color: rgba(10,10,10,0.6); }
.nav-links > li > a:hover,
.nav-links > li > a.active { color: white; background: rgba(255,255,255,0.06); }
.navbar.light-nav .nav-links > li > a:hover,
.navbar.light-nav .nav-links > li > a.active { color: var(--text-dark); background: rgba(0,0,0,0.05); }
.nav-arrow { font-size: 10px; opacity: 0.5; transition: transform 0.2s; }
.nav-links > li:hover .nav-arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 240px;
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s var(--ease);
  backdrop-filter: blur(20px);
}
.nav-links > li:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  border-radius: 10px;
  transition: background 0.15s, color 0.15s;
}
.dropdown a:hover { background: rgba(255,255,255,0.06); color: white; }
.dropdown-icon { font-size: 16px; }

/* Nav CTA */
.nav-cta-wrapper { margin-left: 8px; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  background: var(--gradient);
  color: white !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.01em;
  border-radius: 100px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  box-shadow: 0 2px 16px rgba(0,191,255,0.2);
}
.nav-cta:hover { transform: scale(1.05); box-shadow: 0 4px 24px rgba(0,191,255,0.35); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 24px 24px 40px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  overflow-y: auto;
}
.mobile-nav.open { transform: none; }
.mobile-nav-links { flex: 1; }
.mobile-nav-links > li > a {
  display: block;
  padding: 16px 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-dropdown { display: none; padding: 8px 0 16px; }
.mobile-dropdown.open { display: block; }
.mobile-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 15px;
  color: rgba(255,255,255,0.55);
}
.mobile-nav-cta {
  display: block;
  text-align: center;
  padding: 16px;
  background: var(--gradient);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border-radius: 100px;
  margin-top: 24px;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--gradient);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  border-radius: 100px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  box-shadow: 0 4px 24px rgba(0,191,255,0.25);
  white-space: nowrap;
}
.btn-primary:hover { transform: scale(1.04); box-shadow: 0 8px 40px rgba(0,191,255,0.35); }
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.15);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border-radius: 100px;
  transition: border-color 0.3s, color 0.3s;
  white-space: nowrap;
}
.btn-outline-light:hover { border-color: rgba(255,255,255,0.4); color: white; }
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  background: transparent;
  color: rgba(10,10,10,0.6);
  border: 1px solid rgba(0,0,0,0.15);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border-radius: 100px;
  transition: border-color 0.3s, color 0.3s;
  white-space: nowrap;
}
.btn-outline-dark:hover { border-color: rgba(0,0,0,0.4); color: var(--text-dark); }

/* ── Section Base ── */
.section { padding: clamp(80px, 10vw, 160px) 0; }
.section-dark { background: var(--bg-dark); color: var(--text-light); }
.section-warm { background: var(--bg-warm); color: var(--text-dark); }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 24px;
}
.section-tag::before { content: ''; width: 24px; height: 1px; background: currentColor; }
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.section-title em {
  font-style: normal;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Word Reveal ── */
.word-wrap { overflow: hidden; display: inline-block; }
.word { display: inline-block; transform: translateY(110%); opacity: 0; }
.word.visible {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.8s var(--ease), opacity 0.4s;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-blob {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 70% 50%, rgba(106,90,205,0.25) 0%, rgba(0,191,255,0.1) 40%, transparent 70%);
  pointer-events: none;
}
.hero-blob-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(209,71,189,0.15) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  animation: blobFloat 8s ease-in-out infinite;
}
@keyframes blobFloat {
  0%, 100% { transform: translateY(-50%) scale(1); }
  50% { transform: translateY(-52%) scale(1.05); }
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: var(--nav-h);
  max-width: 900px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
}
.hero-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient);
  flex-shrink: 0;
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(52px, 7.5vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: 32px;
}
.hero-title .gradient-word {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  max-width: 520px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-muted-dark);
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease) 0.6s, transform 0.8s var(--ease) 0.6s;
}
.hero-sub.visible { opacity: 1; transform: none; }
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease) 0.8s, transform 0.8s var(--ease) 0.8s;
}
.hero-actions.visible { opacity: 1; transform: none; }
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  z-index: 1;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Marquee Strip ── */
.marquee-strip {
  background: #111;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  padding: 18px 0;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 40px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.marquee-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gradient);
  flex-shrink: 0;
}

/* ── Intro Section ── */
.intro-section {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--bg-dark);
}
.intro-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 3.5vw, 48px);
  line-height: 1.3;
  letter-spacing: -0.025em;
  color: rgba(255,255,255,0.18);
  max-width: 1000px;
}
.intro-text .highlight { color: white; }
.intro-text em {
  font-style: normal;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Bento Grid ── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
  margin-top: 64px;
}
.bento-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--border-dark);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.3s, background 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.bento-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}
.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.4s;
  border-radius: inherit;
}
.bento-card:hover::before { opacity: 0.04; }
.bento-xl { grid-column: span 5; grid-row: span 2; }
.bento-lg { grid-column: span 4; grid-row: span 1; }
.bento-md { grid-column: span 3; grid-row: span 1; }
.bento-wide { grid-column: span 7; grid-row: span 1; }
.bento-sm { grid-column: span 5; grid-row: span 1; }
.bento-accent {
  background: linear-gradient(135deg, rgba(0,191,255,0.12), rgba(106,90,205,0.12));
  border-color: rgba(0,191,255,0.2);
}
.bento-accent:hover {
  background: linear-gradient(135deg, rgba(0,191,255,0.18), rgba(106,90,205,0.18));
  border-color: rgba(0,191,255,0.3);
}
.bento-icon {
  width: 48px;
  height: 48px;
  margin-bottom: auto;
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.bento-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.bento-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.bento-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--cyan);
  margin-top: 20px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
  position: relative;
  z-index: 1;
}
.bento-card:hover .bento-link { opacity: 1; transform: none; }

/* ── Stats ── */
.stats-section {
  background: var(--bg-dark);
  padding: clamp(80px, 10vw, 120px) 0;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-dark);
}
.stat-item {
  padding: 48px 40px;
  background: var(--bg-dark);
}
.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(56px, 7vw, 96px);
  letter-spacing: -0.04em;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 14px;
  color: var(--text-muted-dark);
  margin-top: 12px;
  letter-spacing: 0.02em;
}

/* ── Process Section (warm) ── */
.process-section {
  background: var(--bg-warm);
  color: var(--text-dark);
  padding: clamp(80px, 10vw, 160px) 0;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-light);
  margin-top: 64px;
}
.process-step {
  padding: 48px 32px;
  background: var(--bg-warm);
  position: relative;
}
.process-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 64px;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(0,0,0,0.06);
  margin-bottom: 24px;
}
.process-step h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--text-dark);
}
.process-step p {
  font-size: 14px;
  color: var(--text-muted-light);
  line-height: 1.7;
}

/* ── Platforms Section (warm) ── */
.platforms-section {
  background: var(--bg-warm);
  padding: clamp(60px, 8vw, 100px) 0;
  overflow: hidden;
}
.platforms-section .section-tag { color: var(--text-dark); }
.platforms-section .section-title { color: var(--text-dark); }
.platforms-marquee {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  margin-top: 40px;
}
.platforms-marquee-reverse {
  animation-direction: reverse;
  margin-top: 16px;
}
.platform-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  margin: 0 8px;
  background: white;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  white-space: nowrap;
}

/* ── CTA Section ── */
.cta-section {
  background: var(--bg-dark);
  padding: clamp(100px, 14vw, 180px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-blob {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(106,90,205,0.2) 0%, rgba(0,191,255,0.08) 40%, transparent 70%);
  pointer-events: none;
}
.cta-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 8vw, 120px);
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: white;
  position: relative;
  z-index: 1;
}
.cta-title em {
  font-style: normal;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-sub {
  font-size: 18px;
  color: var(--text-muted-dark);
  max-width: 480px;
  margin: 24px auto 48px;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}
.cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ── */
.footer {
  background: #050505;
  border-top: 1px solid var(--border-dark);
  padding: clamp(60px, 8vw, 100px) 0 40px;
  color: var(--text-light);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: white;
  display: block;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--text-muted-dark);
  line-height: 1.6;
  max-width: 260px;
  margin-bottom: 32px;
}
.footer-col h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-links a:hover { color: white; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.footer-contact a {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-contact a:hover { color: white; }
.footer-divider {
  height: 1px;
  background: var(--gradient);
  opacity: 0.2;
  margin-bottom: 32px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.22); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.22); transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.5); }

/* ── Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-right.visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* ── Service/Page Hero ── */
.page-hero {
  min-height: 70vh;
  background: var(--bg-dark);
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  padding-top: calc(var(--nav-h) + 60px);
  position: relative;
  overflow: hidden;
}
.page-hero-blob {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 80% 30%, rgba(106,90,205,0.2) 0%, rgba(0,191,255,0.08) 50%, transparent 70%);
  pointer-events: none;
}
.page-hero-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
  display: block;
}
.page-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 7vw, 100px);
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: white;
}
.page-hero-sub {
  font-size: 20px;
  color: rgba(255,255,255,0.45);
  max-width: 580px;
  margin-top: 24px;
  line-height: 1.6;
}

/* ── Feature Cards (service pages, warm) ── */
.features-section {
  background: var(--bg-warm);
  color: var(--text-dark);
  padding: clamp(80px, 10vw, 140px) 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.feature-card {
  padding: 40px;
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.feature-icon { font-size: 28px; margin-bottom: 20px; }
.feature-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}
.feature-card p {
  font-size: 14px;
  color: var(--text-muted-light);
  line-height: 1.7;
}

/* ── Service Process (dark) ── */
.service-process {
  background: var(--bg-dark);
  padding: clamp(80px, 10vw, 140px) 0;
}
.service-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-dark);
  margin-top: 64px;
}
.service-process-step {
  padding: 48px 32px;
  background: var(--bg-dark);
}
.service-step-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 64px;
  letter-spacing: -0.04em;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.4;
  margin-bottom: 24px;
}
.service-process-step h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: white;
}
.service-process-step p {
  font-size: 14px;
  color: var(--text-muted-dark);
  line-height: 1.7;
}

/* ── USP Cards (service why) ── */
.usp-section {
  background: var(--bg-warm);
  color: var(--text-dark);
  padding: clamp(80px, 10vw, 140px) 0;
}
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.usp-card {
  padding: 40px;
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
}
.usp-icon { font-size: 24px; margin-bottom: 16px; }
.usp-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}
.usp-card p {
  font-size: 14px;
  color: var(--text-muted-light);
  line-height: 1.7;
}

/* ── Contact ── */
.contact-section {
  background: var(--bg-warm);
  color: var(--text-dark);
  padding: clamp(80px, 10vw, 140px) 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  line-height: 1.05;
}
.contact-info h3 em {
  font-style: normal;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.contact-info p {
  font-size: 16px;
  color: var(--text-muted-light);
  line-height: 1.7;
  margin-bottom: 40px;
}
.contact-detail { display: flex; flex-direction: column; gap: 16px; }
.contact-detail a {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  transition: opacity 0.2s;
}
.contact-detail a:hover { opacity: 0.6; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
  opacity: 0.5;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 18px;
  background: white;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(106,90,205,0.1);
}
.form-group textarea { resize: vertical; min-height: 140px; }

/* ── Over Ons ── */
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.value-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--border-dark);
}
.value-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: white;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.value-card p {
  font-size: 14px;
  color: var(--text-muted-dark);
  line-height: 1.7;
}

/* ── Platformen / Tools grids ── */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.platform-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border-light);
  text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.platform-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.platform-card-icon { font-size: 32px; margin-bottom: 14px; }
.platform-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.platform-card p { font-size: 13px; color: var(--text-muted-light); line-height: 1.6; }
.platform-category {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  color: var(--text-dark);
}
.platform-category em {
  font-style: normal;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.platforms-block { margin-bottom: 72px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .bento-xl { grid-column: span 6; }
  .bento-md { grid-column: span 6; }
  .bento-wide { grid-column: span 12; }
  .bento-sm { grid-column: span 6; }
  .bento-lg { grid-column: span 6; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .service-process-steps { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .platform-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-inner { gap: 16px; }
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
  .bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .bento-xl, .bento-lg, .bento-md, .bento-wide, .bento-sm {
    grid-column: span 1;
    grid-row: span 1;
  }
  .bento-card { min-height: 200px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .service-process-steps { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-title { font-size: clamp(44px, 12vw, 72px); }
  .form-row { grid-template-columns: 1fr; }
  .hero-scroll { display: none; }
  .cta-actions { flex-direction: column; align-items: center; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .platform-grid { grid-template-columns: 1fr; }
}
