@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ══════════ DESIGN TOKENS ══════════ */
:root {
  --bg: #0B0D12;
  --surface: #12151C;
  --surface-2: #161A22;
  --surface-3: #1C2030;
  --border: rgba(108, 92, 231, 0.15);
  --border-2: rgba(108, 92, 231, 0.28);

  /* Accent gradient */
  --accent-from: #6C5CE7;
  --accent-mid: #8B5CF6;
  --accent-to: #4F46E5;
  --accent: #7C5CFF;
  --accent-solid: #7C5CFF;
  --gradient: linear-gradient(135deg, #6C5CE7 0%, #8B5CF6 50%, #4F46E5 100%);
  --gradient-h: linear-gradient(135deg, #8B5CF6 0%, #a78bfa 50%, #6C5CE7 100%);
  --glow: rgba(124, 92, 255, 0.22);
  --glow-strong: rgba(124, 92, 255, 0.40);
  --accent-dim: rgba(124, 92, 255, 0.08);
  --accent-dim2: rgba(124, 92, 255, 0.14);

  /* Text */
  --text-primary: #FFFFFF;
  --text-secondary: #B0B3C0;
  --text-muted: #6B7280;

  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text-secondary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.12;
  color: var(--text-primary);
}

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

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

ul {
  list-style: none;
}

.nav-logo img {
  width: 230px;
}

.scrolled .nav-logo img {
  width: 138px;
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 2px;
}

/* ── Noise grain overlay ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}

/* ── Utility ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(28px, 4vw, 50px);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.75;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 24px rgba(108, 92, 231, 0.35);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-h);
  opacity: 0;
  transition: opacity 0.25s;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(108, 92, 231, 0.5);
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn-primary span {
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--text-secondary);
  border: 1.5px solid var(--border-2);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--text-primary);
  transform: translateY(-2px);
  background: var(--accent-dim);
}

.arrow {
  transition: transform 0.2s;
}

.btn:hover .arrow {
  transform: translateX(4px);
}

/* ══════════ NAV ══════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 111px;
  display: flex;
  align-items: center;
  padding: 0 28px;
  background: rgba(11, 13, 18, 0.80);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}

nav.scrolled {
  height: 62px;
  background: rgba(11, 13, 18, 0.97);
  border-color: var(--border-2);
}

.nav-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  box-shadow: 0 4px 16px rgba(108, 92, 231, 0.4);
}

.nav-logo .brand {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.06em;
}

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

.nav-links a {
  padding: 8px 15px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
  background: var(--accent-dim);
}

.nav-links a.active {
  color: var(--accent);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-secondary);
  margin: 5px 0;
  transition: all 0.3s;
  border-radius: 2px;
}

/* Mobile nav */
.mobile-menu {
  position: fixed;
  top: 100px;
  left: 0;
  right: 0;
  background: rgba(11, 13, 18, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-2);
  padding: 20px 28px 28px;
  z-index: 999;
  transform: translateY(-110%);
  transition: transform 0.35s ease;
}

nav.scrolled + .mobile-menu {
  top: 48px;
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--accent);
}

.mobile-menu .btn {
  margin-top: 20px;
  width: 100%;
  justify-content: center;
}

/* ══════════ HERO ══════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

/* Animated mesh background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--bg);
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 30%;
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse, rgba(108, 92, 231, 0.13) 0%, transparent 65%);
  animation: bg-pulse 8s ease-in-out infinite alternate;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(79, 70, 229, 0.09) 0%, transparent 65%);
  animation: bg-pulse 10s ease-in-out infinite alternate-reverse;
}

@keyframes bg-pulse {
  0% {
    opacity: 0.5;
    transform: scale(1)
  }

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

/* Grid */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(108, 92, 231, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108, 92, 231, 0.055) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 75%, transparent 100%);
}

canvas#particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 50px;
  background: var(--accent-dim2);
  border: 1px solid var(--border-2);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

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

@keyframes pulse-dot {

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

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

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(40px, 5.5vw, 74px);
  font-weight: 900;
  line-height: 1.04;
  color: var(--text-primary);
  margin-bottom: 22px;
  min-height: 180px;
}

.hero-title .accent-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  font-size: 60px;
}

.hero-desc {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 460px;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.hstat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
}

.hstat-eu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hstat-num .acc {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hstat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 480px;
}

.server-room {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.8;
  pointer-events: none;
  mask-image: linear-gradient(to right, transparent 0%, transparent 40%, black 75%, black 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, transparent 40%, black 75%, black 100%);
}

.server-room::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg,
      transparent 0px,
      transparent 28px,
      rgba(108, 92, 231, 0.04) 28px,
      rgba(108, 92, 231, 0.04) 29px);
}

.cloud-3d {
  font-size: 90px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 40px rgba(108, 92, 231, 0.6)) drop-shadow(0 0 80px rgba(108, 92, 231, 0.3));
  animation: float-3d 5s ease-in-out infinite;
}

@keyframes float-3d {

  0%,
  100% {
    transform: translateY(0) rotateY(0deg)
  }

  50% {
    transform: translateY(-16px) rotateY(5deg)
  }
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border-2);
}

.orbit-ring:nth-child(2) {
  width: 280px;
  height: 280px;
  animation: orbit 20s linear infinite;
}

.orbit-ring:nth-child(3) {
  width: 200px;
  height: 200px;
  animation: orbit 14s linear infinite reverse;
}

.orbit-ring:nth-child(4) {
  width: 340px;
  height: 340px;
  animation: orbit 28s linear infinite;
  border-style: dashed;
  opacity: 0.5;
}

@keyframes orbit {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(360deg)
  }
}

.orbit-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gradient);
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 14px rgba(124, 92, 255, 0.8);
}

.float-badge {
  position: absolute;
  background: rgba(18, 21, 28, 0.92);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 14px 18px;
  backdrop-filter: blur(12px);
  z-index: 3;
  font-family: 'Outfit', sans-serif;
  animation: float-b 3s ease-in-out infinite;
}

.badge-uptime {
  bottom: 60px;
  left: -16px;
  animation-delay: 0.3s;
}

.badge-clients {
  top: 60px;
  right: -20px;
  animation-delay: 0.9s;
}

.badge-savings {
  bottom: 110px;
  right: -10px;
  animation-delay: 1.5s;
}

@keyframes float-b {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

.fb-val {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
}

.fb-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.fb-bar {
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: var(--surface-3);
  margin-top: 8px;
  overflow: hidden;
}

.fb-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: var(--gradient);
}

/* Play Video Button */
.play-btn {
  position: absolute;
  right: 20px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  z-index: 10;
}

.play-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(124, 92, 255, 0.2);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s;
  animation: ring-pulse 2.5s ease-in-out infinite;
}

.play-btn:hover .play-circle {
  background: var(--accent);
  transform: scale(1.1);
}

@keyframes ring-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(124, 92, 255, 0.4);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(124, 92, 255, 0);
  }
}

.play-label {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

/* ── Mini Trust Bar ── */
.mini-trust-bar {
  background: #06080C;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  position: relative;
  z-index: 5;
  overflow: hidden;
}

.trust-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.trust-star {
  color: var(--accent);
  font-size: 16px;
  filter: drop-shadow(0 0 5px var(--accent));
  line-height: 1;
}

.trust-text {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .trust-content {
    flex-wrap: wrap;
    gap: 6px;
    text-align: center;
    padding: 0 20px;
  }

  .trust-text {
    font-size: 12px;
    line-height: 1.4;
  }
}

/* Video Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  width: 90%;
  max-width: 800px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.modal-close:hover {
  background: var(--accent);
  color: #fff;
}

.modal-video {
  aspect-ratio: 16/9;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: rgba(255, 255, 255, 0.1);
}

.modal-video-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a0a1a, #1a1040);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}

.modal-video-inner p {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  color: var(--text-muted);
}

/* ══════════ ABOUT ══════════ */
.about {
  padding: 100px 0;
}

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

.about-visual-wrap {
  position: relative;
}

.iso-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  transform: perspective(700px) rotateY(-12deg) rotateX(6deg);
}

.iso-cube {
  aspect-ratio: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.iso-cube::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.35s;
}

.iso-cube:hover {
  transform: scale(1.05);
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(108, 92, 231, 0.25);
}

.iso-cube:hover::after {
  opacity: 0.12;
}

.iso-cube.lit {
  background: var(--accent-dim2);
  border-color: var(--border-2);
}

.iso-cube.lit::after {
  opacity: 0.1;
}

.features-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s;
  cursor: default;
}

.feat:hover {
  border-color: var(--border-2);
  background: var(--surface-2);
  box-shadow: 0 8px 32px rgba(108, 92, 231, 0.12);
}

.feat-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--accent-dim2);
  border: 1px solid var(--border-2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s;
}

.feat:hover .feat-icon {
  background: var(--gradient);
}

.feat h4 {
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.feat p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ══════════ SERVICES ══════════ */
.services {
  padding: 130px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
  position: relative;
  overflow: hidden;
}

.svc-bg-anim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.float-item.svc-icon {
  font-size: 40px;
  filter: grayscale(100%) sepia(100%) hue-rotate(250deg) brightness(1.2) saturate(2);
  opacity: 0.08;
}

.float-item.svc-orb {
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(108, 92, 231, 0.07), transparent 70%);
  filter: blur(25px);
}

.services .container {
  position: relative;
  z-index: 1;
}

.sec-header {
  text-align: center;
  margin-bottom: 64px;
}

.sec-header .section-desc {
  margin: 0 auto;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px;
}

.svc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 0;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.svc-card:hover {
  border-color: var(--border-2);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(108, 92, 231, 0.14);
}

.svc-img-wrap {
  width: 100%;
  height: 300px;
  position: relative;
  background: var(--surface-2);
}

.svc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
  opacity: 0.8;
  transition: opacity 0.3s;
}

.svc-card:hover .svc-img-wrap img {
  opacity: 1;
}

.svc-icon-float {
  position: absolute;
  bottom: -24px;
  left: 24px;
  width: 52px;
  height: 52px;
  background: var(--accent);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 8px 24px rgba(108, 92, 231, 0.4);
  z-index: 2;
  border: 2px solid var(--surface);
}

.svc-content {
  padding: 44px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.svc-card h3 {
  font-size: 18px;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.svc-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.svc-link {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.svc-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 10;
}

.svc-link .arr {
  -webkit-text-fill-color: var(--accent);
}

.svc-card:hover .svc-link {
  gap: 10px;
}

/* ══════════ WHY ══════════ */
.why {
  padding: 130px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 52px;
}

.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 34px 26px;
  transition: all 0.3s;
}

.why-card:hover {
  border-color: var(--border-2);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(108, 92, 231, 0.12);
}

.why-icon {
  font-size: 40px;
  margin-bottom: 18px;
}

.why-card h3 {
  font-size: 19px;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.why-cta {
  text-align: center;
}

/* ══════════ TESTIMONIALS ══════════ */
.testimonials {
  padding: 130px 0;
  background: var(--surface);
}

.t-slider-wrap {
  position: relative;
  margin-bottom: 44px;
}

.t-grid {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 10px;
  justify-content: center;
}

.t-grid::-webkit-scrollbar {
  display: none;
}

#testimonial-slider .owl-stage-outer {
  padding: 20px;
  margin: -20px;
}

.t-card {
  flex: 0 0 100%;
  scroll-snap-align: start;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 30px;
  position: relative;
  transition: all 0.3s;
  overflow: hidden;
}

@media (min-width: 768px) {
  .t-card {
    flex: 0 0 calc(50% - 13px);
  }
}

@media (min-width: 1024px) {
  .t-card {
    flex: 0 0 calc(50% - 13px);
  }
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  color: var(--text-primary);
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.slider-btn:hover {
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
}

.prev-btn {
  left: -22px;
}

.next-btn {
  right: -22px;
}

.t-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: 72px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.35;
  line-height: 1;
}

.t-card:hover {
  border-color: var(--border-2);
  transform: translateY(-5px);
  box-shadow: 0 18px 50px rgba(108, 92, 231, 0.12);
}

.t-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-top: 36px;
  margin-bottom: 26px;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  border: 2px solid var(--border);
}

.t-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.t-role {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.t-stars {
  font-size: 12px;
  margin-top: 4px;
}

.t-stars span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.t-cta {
  text-align: center;
}

/* ══════════ STATS BAR ══════════ */
.stats-bar {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-right: 1px solid var(--border);
}

.stat-item:last-child {
  border-right: none;
}

.stat-icon {
  font-size: 30px;
}

.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--text-primary);
}

.stat-num .g {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ══════════ CTA BAND ══════════ */
.cta-wrap {
  padding: 80px 0;
}

.cta-band {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  padding: 70px 64px;
}

.cta-band::before {
  content: '';
  position: absolute;
  right: -120px;
  top: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(108, 92, 231, 0.18) 0%, transparent 65%);
}

.cta-band::after {
  content: '';
  position: absolute;
  left: -80px;
  bottom: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.12) 0%, transparent 65%);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  font-size: clamp(24px, 3.5vw, 44px);
  margin-bottom: 12px;
}

.cta-band p {
  color: var(--text-secondary);
  font-size: 15px;
}

/* ══════════ INDUSTRIES ══════════ */
.industries {
  padding: 130px 0;
  background: linear-gradient(to bottom, var(--bg), #0f111a);
  position: relative;
  overflow: hidden;
}

.ind-bg-anim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.float-item {
  position: absolute;
  animation: floatObj linear infinite alternate;
}

.float-item.icon {
  font-size: 40px;
  filter: grayscale(100%) sepia(100%) hue-rotate(110deg) brightness(1.2);
  opacity: 0.08;
}

.float-item.orb {
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(0, 217, 163, 0.08), transparent 70%);
  filter: blur(20px);
}

@keyframes floatObj {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  50% {
    transform: translate(50px, -60px) rotate(15deg) scale(1.1);
  }

  100% {
    transform: translate(-30px, 50px) rotate(-10deg) scale(0.9);
  }
}

.industries .container {
  position: relative;
  z-index: 1;
}

.industries .svc-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.industries .svc-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(0, 217, 163, 0.12);
  border-color: rgba(0, 217, 163, 0.25);
}

.industries .svc-card .svc-img-wrap img {
  transition: transform 0.6s ease;
}

.industries .svc-card:hover .svc-img-wrap img {
  transform: scale(1.1);
}

.industries .svc-card .svc-icon-float {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.industries .svc-card:hover .svc-icon-float {
  transform: translateY(-8px) rotate(-10deg) scale(1.1);
}

.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 50px;
}

.ind-tags {
  display: flex;
  gap: 12px;
  font-size: 11px;
  color: var(--text-muted);
  align-items: center;
  margin-top: auto;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.ind-tag {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ══════════ PROCESS ══════════ */
.process {
  padding: 130px 0;
  background: var(--surface);
}

.proc-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 64px;
}

.proc-steps::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-from), var(--accent-mid), var(--accent-to), transparent);
  opacity: 0.3;
}

.step {
  text-align: center;
  padding: 20px 16px;
}

.step-circle {
  width: 76px;
  height: 76px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 2px solid var(--border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.step:hover .step-circle {
  border-color: var(--accent);
  box-shadow: 0 0 28px rgba(108, 92, 231, 0.35);
  background: var(--accent-dim2);
}

.step-num {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.step h3 {
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.step p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ══════════ FAQ ══════════ */
.faq {
  padding: 130px 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.faq-side-wrapper {
  position: sticky;
  top: 110px;
}

.faq-side {
  margin-bottom: 30px;
}

.faq-side h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 18px;
}

.faq-side p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 36px;
}

.faq-contact-box {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.faq-contact-box h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.faq-contact-box p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

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

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.open {
  border-color: var(--border-2);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  text-align: left;
  gap: 12px;
  transition: color 0.2s;
}

.faq-item.open .faq-q {
  color: var(--text-primary);
}

.faq-ico {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--accent-dim2);
  border: 1px solid var(--border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--accent);
  transition: transform 0.3s, background 0.3s;
}

.faq-item.open .faq-ico {
  transform: rotate(45deg);
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
}

.faq-ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-ans-inner {
  padding: 0 22px 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ══════════ FOOTER ══════════ */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 16px 0 22px;
  max-width: 270px;
}

.socials {
  display: flex;
  gap: 10px;
}

.soc-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-muted);
  transition: all 0.2s;
}

.soc-btn:hover {
  border-color: var(--border-2);
  color: var(--accent);
  background: var(--accent-dim);
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--accent);
}

.footer-contact p {
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--accent);
}

/* ══════════ ABOUT NEW ══════════ */
.about {
  padding: 130px 0;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-feature-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 24px 30px;
  transition: all 0.3s ease;
}

.about-feature-card:hover {
  transform: translateX(10px);
  border-color: var(--accent);
  box-shadow: 0 10px 40px rgba(108, 92, 231, 0.15);
}

.about-feature-content {
  flex: 1;
  padding-right: 20px;
}

.about-feature-content h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.about-feature-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.about-feature-img {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: rgba(108, 92, 231, 0.05);
}

.about-feature-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.about-main-content {
  padding-left: 20px;
}

.about-main-visual {
  margin-top: 30px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-2);
  box-shadow: 0 12px 50px rgba(108, 92, 231, 0.2);
}

.about-main-visual img {
  width: 100%;
  display: block;
}

/* ══════════ REVEAL ══════════ */
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.d1 {
  transition-delay: 0.1s;
}

.d2 {
  transition-delay: 0.2s;
}

.d3 {
  transition-delay: 0.3s;
}

.d4 {
  transition-delay: 0.4s;
}

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

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

  .about-main-content {
    padding-left: 0;
  }

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

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

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .stat-item {
    border-right: none;
  }
  
  .stat-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--border);
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid var(--border);
  }

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

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

  .proc-steps::before {
    display: none;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-side {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-right {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .about,
  .services,
  .industries,
  .process {
    padding: 80px 0;
  }
  
  .testimonials,
  .why {
    padding: 80px 0 70px;
  }
  
  .t-slider-wrap {
    margin-bottom: 24px;
  }

  .why-grid {
    margin-bottom: 22px;
  }

  .about-feature-card {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .about-feature-content {
    padding-right: 0;
    margin-bottom: 20px;
  }

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

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

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

  .proc-steps {
    grid-template-columns: 1fr 1fr;
  }

  .faq {
    padding: 80px 0;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .cta-band {
    padding: 44px 28px;
  }
}

@media (max-width: 480px) {
  .hero-btns {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .about,
  .services,
  .industries,
  .process {
    padding: 60px 0;
  }

  .testimonials,
  .why {
    padding: 60px 0 50px;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

   .stat-item:last-child {
    border-bottom: none;
  }
  
  .stat-item:nth-child(odd) {
    border-right: none;
  }

  .proc-steps {
    grid-template-columns: 1fr;
  }

  .faq {
    padding: 50px 0 60px;
  }

  .hero-stats {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    justify-items: center;
    width: 100%;
  }

  .hero-stats > div {
    text-align: center;
    width: 100%;
  }

  .hstat-num,
  .hstat-eu {
    font-size: 26px; /* Larger again since we have space in 2x2 */
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .hstat-num img {
    width: 18px !important;
    height: auto;
  }

  .hstat-label {
    font-size: 11px;
    white-space: normal; /* Allow wrap if needed in 2x2 */
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }
}

/* ── Large Testimonials ── */
.testimonial-single {
  padding: 100px 0;
  background: rgba(6, 8, 12, 0.5);
}

.t-card-large {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  padding: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.t-card-large::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.t-quote-icon {
  font-family: 'Outfit', sans-serif;
  font-size: 120px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.2;
  position: absolute;
  top: 13px;
  left: 40px;
  pointer-events: none;
}

.t-card-large .t-content {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.t-card-large .t-content p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.t-card-large .t-content p:last-child {
  margin-bottom: 0;
}

.t-card-large .t-author {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 2;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.t-card-large .t-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
}

.t-card-large .t-meta .t-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

.t-card-large .t-meta .t-role {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.t-card-large .t-stars {
  color: #FFD700;
  font-size: 14px;
}

@media (max-width: 768px) {
  .testimonial-single {
    padding: 70px 0;
  }

  .t-card-large {
    padding: 40px 24px;
  }

  .t-card-large .t-content p {
    font-size: 16px;
  }

  .t-quote-icon {
    font-size: 80px;
    left: 12px;
  }
}

/* ── Hero Pill Badge ── */
.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  border-radius: 100px;
  background: rgba(124, 92, 255, 0.1);
  border: 1px solid rgba(124, 92, 255, 0.2);
  margin-bottom: 36px;
  backdrop-filter: blur(8px);
}

.pill-icon {
  font-size: 18px;
}

.pill-text {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.3px;
}

@media (max-width: 600px) {
  .hero-pill-badge {
    padding: 8px 16px;
    gap: 8px;
  }
  .pill-text {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .testimonial-single {
    padding: 50px 0;
  }
}

/* ── What Makes Us Different Section ── */
.diff-section {
  padding: 120px 0;
  position: relative;
  background: rgba(18, 21, 28, 0.4);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.diff-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.diff-container {
  position: relative;
  z-index: 1;
}

.diff-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.diff-content h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.15;
}

.diff-headline {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  line-height: 1.4;
}

.diff-headline span.red-strike {
  color: #FF4A4A;
  text-decoration: line-through;
  display: block;
  margin-bottom: 4px;
  opacity: 0.8;
}

.diff-headline span.purple-accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 32px;
  font-weight: 900;
}

.diff-desc {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.diff-footer-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  margin-top: 32px;
  letter-spacing: 0.3px;
}

.diff-list-card {
  background: rgba(22, 26, 34, 0.8);
  border: 1px solid rgba(124, 92, 255, 0.25);
  border-radius: var(--radius-xl);
  padding: 40px;
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.diff-list-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.diff-ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.diff-li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
}

.diff-li-icon {
  color: var(--accent);
  font-size: 18px;
  font-weight: 900;
}

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


@media (max-width: 768px) {
  .diff-section {
    padding: 80px 0;
  }
}

@media (max-width: 480px) {
  .diff-section {
    padding: 60px 0;
  }
}

/* FAQ Mobile Reorder */
@media (max-width: 992px) {
  .faq-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important;
  }
  
  .faq-side-wrapper {
    display: contents !important;
  }
  
  .faq-side {
    order: 1 !important;
    margin-bottom: 0 !important;
    position: static !important;
  }
  
  .faq-list {
    order: 2 !important;
  }
  
  .faq-contact-box {
    order: 3 !important;
    margin-top: 0 !important;
  }
}

/* ── EMAIL REVEAL ── */
.email-reveal-wrap {
  margin-bottom: 12px;
}

.email-reveal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s;
  padding: 4px 0;
  border-bottom: 1px dashed var(--accent);
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  font-family: inherit;
}

.email-reveal:hover {
  color: var(--text-primary);
  border-bottom-color: var(--text-primary);
}

.dynamic-email.revealed {
  display: inline-block;
  animation: emailFadeIn 0.4s ease forwards;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
}

@keyframes emailFadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}