/* ============================================
   SK AD MANIACZ — HOME PAGE CSS — PREMIUM DARK
   ============================================ */
@import url('global.css');

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--magenta);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(192,132,252,0.5);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}
.cursor-ring.hovered {
  width: 56px; height: 56px;
  border-color: var(--magenta);
  opacity: 0.6;
}
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 130px 48px 90px;
  gap: 60px;
  background: var(--dark);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 30%, rgba(124,58,237,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(212,0,255,0.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--dark) 0%, var(--dark2) 100%);
  pointer-events: none;
}

.noise-overlay {
  position: absolute; inset: 0;
  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='0.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 1; opacity: 0.4;
}

.hero-bg-anim { position: absolute; inset: 0; pointer-events: none; }

.orb {
  position: absolute;
  border-radius: 50%;
  animation: orbDrift 12s ease-in-out infinite alternate;
}
.orb1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,0,255,0.18), transparent 70%);
  top: -150px; right: -100px;
  animation-delay: 0s; animation-duration: 14s;
}
.orb2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(124,58,237,0.18), transparent 70%);
  bottom: -80px; left: 5%;
  animation-delay: -3s; animation-duration: 11s;
}
.orb3 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(168,85,247,0.12), transparent 70%);
  top: 40%; left: 38%;
  animation-delay: -6s; animation-duration: 9s;
}
@keyframes orbDrift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, 20px) scale(1.08); }
}

/* Grid lines */
.grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(124,58,237,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridShift 20s linear infinite;
}
@keyframes gridShift {
  0%   { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

.hero::after {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  border: 1px solid rgba(124,58,237,0.08);
  top: 50%; right: -200px;
  transform: translateY(-50%);
  animation: ringRotate 20s linear infinite;
  pointer-events: none;
}
@keyframes ringRotate {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}

/* Particles */
.particles { position: absolute; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
.particle {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--magenta);
  border-radius: 50%;
  opacity: 0;
  animation: particleFly linear infinite;
}
@keyframes particleFly {
  0%   { opacity: 0; transform: translateY(0) scale(0); }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.2; }
  100% { opacity: 0; transform: translateY(-120vh) scale(1.5); }
}

/* Hero content */
.hero-content {
  flex: 1;
  max-width: 600px;
  position: relative;
  z-index: 2;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(192,132,252,0.9);
  margin-bottom: 24px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: #7c3aed;
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(124,58,237,0.4);
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(124,58,237,0.4); }
  50%       { box-shadow: 0 0 0 6px rgba(124,58,237,0); }
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  font-family: var(--font-display);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.hero-tagline {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.6;
}
.hero-tagline em { font-style: italic; color: var(--magenta); }

.hero-sub {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 500px;
  color: var(--text-muted);
}
.hero-sub strong { color: var(--text); }

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary svg { transition: transform 0.3s ease; }
.btn-primary:hover svg { transform: translateX(4px); }

/* Stats */
.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 28px;
}
.stat { display: flex; flex-direction: column; position: relative; }
.stat p { font-size: 0.78rem; color: var(--text-faint); margin-top: 4px; font-weight: 500; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-suf {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* Impact pills */
.hero-impact {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.impact-pill {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: rgba(255,255,255,0.02);
  transition: all 0.3s ease;
}
.impact-pill:hover {
  border-color: var(--magenta);
  color: var(--magenta);
  background: rgba(124,58,237,0.08);
}

/* ============================================
   HERO VISUAL
   ============================================ */
.hero-visual {
  flex: 1;
  position: relative;
  min-height: 520px;
  z-index: 2;
}

.floating-card {
  position: absolute;
  background: rgba(18, 18, 30, 0.92);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(124,58,237,0.1);
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 165px;
  animation: floatCard 4s ease-in-out infinite;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.floating-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(124,58,237,0.05), transparent);
  pointer-events: none;
}
.card1 { top: 0%;  left: 100px; animation-delay: 0s; }
.card2 { top: 48%; right: 0;    animation-delay: -1.5s; }
.card3 { bottom: 4%; left: 1%;  animation-delay: -3s; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-14px) rotate(0.5deg); }
}

.card-icon  { font-size: 1.6rem; }
.card-label { font-size: 0.7rem; color: var(--text-faint); font-weight: 500; }
.card-val   { font-family: var(--font-display); font-size: 1rem; font-weight: 800; color: var(--magenta); }

/* Phone */
.hero-phone {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 210px;
  background: #000;
  border-radius: 42px;
  padding: 10px;
  box-shadow:
    0 50px 100px rgba(0,0,0,0.6),
    0 0 0 1px rgba(124,58,237,0.25),
    0 0 60px rgba(124,58,237,0.12),
    inset 0 1px 0 rgba(255,255,255,0.06);
  animation: phoneFloat 7s ease-in-out infinite;
  z-index: 2;
}
@keyframes phoneFloat {
  0%, 100% { transform: translate(-50%, -50%) rotate(-2deg); }
  50%       { transform: translate(-50%, -56%) rotate(2deg); }
}
.hero-phone::after {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 62px;
  background: var(--gradient);
  opacity: 0.08;
  filter: blur(20px);
  z-index: -1;
  animation: scaleBreath 4s ease-in-out infinite;
}
@keyframes scaleBreath {
  0%, 100% { opacity: 0.08; transform: scale(1); }
  50%       { opacity: 0.15; transform: scale(1.05); }
}
.phone-frame {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 34px;
  overflow: hidden;
  background: #000;
}
.phone-island {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px; height: 20px;
  background: #000;
  border-radius: 12px;
  z-index: 10;
}
.phone-reel {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}
.reel-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 10px 12px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, transparent 25%, transparent 55%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.reel-top { display: flex; justify-content: space-between; align-items: center; }
.reel-icon { color: #fff; font-size: 14px; opacity: 0.85; }
.reel-actions {
  position: absolute;
  right: 8px; bottom: 60px;
  display: flex; flex-direction: column;
  align-items: center; gap: 14px;
}
.reel-action { display: flex; flex-direction: column; align-items: center; gap: 3px; position: relative; }
.reel-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a855f7, #ec4899);
  border: 2px solid #fff;
}
.reel-plus {
  position: absolute; bottom: -6px; left: 50%;
  transform: translateX(-50%);
  background: #fe2c55; color: #fff;
  font-size: 9px;
  width: 14px; height: 14px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; line-height: 1;
}
.reel-icon-btn {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: #fff;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.5));
}
.reel-label { color: #fff; font-size: 9px; font-weight: 600; text-shadow: 0 1px 3px rgba(0,0,0,0.5); }
.reel-bottom { display: flex; flex-direction: column; gap: 4px; padding-right: 44px; }
.reel-username { margin: 0; color: #fff; font-size: 11px; font-weight: 700; text-shadow: 0 1px 4px rgba(0,0,0,0.6); }
.reel-caption {
  margin: 0; color: rgba(255,255,255,0.92);
  font-size: 9.5px; line-height: 1.4;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.reel-audio { display: flex; align-items: center; gap: 5px; }
.reel-audio-icon { font-size: 10px; color: #fff; animation: audioSpin 3s linear infinite; }
@keyframes audioSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.reel-audio-text {
  color: rgba(255,255,255,0.85);
  font-size: 8.5px;
  white-space: nowrap; overflow: hidden;
  text-overflow: ellipsis;
  max-width: 110px;
}
.reel-progress { position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: rgba(255,255,255,0.2); z-index: 4; }
.reel-progress-bar { height: 100%; width: 0%; background: #fff; animation: progressPlay 15s linear infinite; }
@keyframes progressPlay { from { width: 0%; } to { width: 100%; } }

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 44px; left: 48px;
  display: flex; align-items: center; gap: 12px; z-index: 2;
}
.scroll-indicator span {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-faint);
  font-weight: 700;
}
.scroll-line { width: 60px; height: 1px; background: var(--border); position: relative; overflow: hidden; }
.scroll-line::after {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gradient);
  animation: scrollAnim 1.8s ease-in-out infinite;
}
@keyframes scrollAnim { from { left: -100%; } to { left: 100%; } }

/* ============================================
   MARQUEE STRIP
   ============================================ */
.marquee-strip {
  background: linear-gradient(90deg, rgba(124,58,237,0.15), rgba(212,0,255,0.1), rgba(124,58,237,0.15));
  border-top: 1px solid rgba(124,58,237,0.2);
  border-bottom: 1px solid rgba(124,58,237,0.2);
  padding: 16px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex; gap: 30px;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(192,132,252,0.85);
  text-transform: uppercase;
  flex-shrink: 0;
}
.marquee-track .dot { color: var(--magenta); }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   WHO WE ARE
   ============================================ */
.who-we-are {
  background: var(--dark);
  border-bottom: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}
.who-we-are::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.07), transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
}
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.who-left .section-label { margin-bottom: 12px; }
.who-left .section-title { margin-bottom: 24px; }
.who-desc {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.who-desc2 {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  border-left: 2px solid var(--magenta);
  padding-left: 16px;
  margin-bottom: 32px;
}

.mission-vision-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mv-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.mv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.mv-card:hover { transform: translateY(-6px); border-color: rgba(124,58,237,0.3); box-shadow: 0 20px 60px rgba(124,58,237,0.12); }
.mv-card:hover::before { transform: scaleX(1); }
.mv-icon { font-size: 2rem; margin-bottom: 14px; }
.mv-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}
.mv-card p { font-size: 0.9rem; line-height: 1.7; color: var(--text-muted); }

/* ============================================
   SERVICES PREVIEW
   ============================================ */
.services-preview {
  background: var(--dark2);
  border-top: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}
.services-preview::after {
  content: '';
  position: absolute;
  bottom: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.08), transparent 70%);
  pointer-events: none;
}
.section-sub {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 52px;
  text-align: center;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after  { opacity: 1; }
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(124,58,237,0.25), 0 0 0 1px rgba(124,58,237,0.3);
  border-color: transparent;
}
.service-card:hover h3,
.service-card:hover p,
.service-card:hover .svc-num,
.service-card:hover .svc-arrow { color: white !important; }
.service-card > * { position: relative; z-index: 1; }
.svc-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--magenta);
  margin-bottom: 18px;
  transition: color 0.3s;
}
.svc-icon { font-size: 2.2rem; margin-bottom: 14px; }
.service-card h3 { margin-bottom: 10px; font-size: 1.05rem; transition: color 0.3s; color: var(--text); line-height: 1.3; }
.service-card p  { font-size: 0.88rem; line-height: 1.65; transition: color 0.3s; }
.svc-arrow {
  margin-top: 22px;
  font-size: 1.3rem;
  color: var(--purple);
  transition: color 0.3s, transform 0.3s;
  display: inline-block;
}
.service-card:hover .svc-arrow { transform: translateX(8px); }

/* ============================================
   SHOWCASE
   ============================================ */
.showcase { background: var(--dark); overflow: hidden; position: relative; }
.showcase .container { text-align: center; }
.showcase-scroll-wrap {
  position: relative; overflow: hidden;
  width: 100%; padding: 70px 0;
}
.showcase-scroll-wrap::before,
.showcase-scroll-wrap::after {
  content: ''; position: absolute; top: 0;
  width: 140px; height: 100%;
  z-index: 5; pointer-events: none;
}
.showcase-scroll-wrap::before { left: 0; background: linear-gradient(to right, var(--dark), transparent); }
.showcase-scroll-wrap::after  { right: 0; background: linear-gradient(to left, var(--dark), transparent); }
.showcase-track {
  display: flex; align-items: center; gap: 24px;
  width: max-content;
  animation: scrollShowcase 35s linear infinite;
}
.showcase-track:hover { animation-play-state: paused; }
.showcase-item { flex-shrink: 0; width: 380px; }
.showcase-img {
  position: relative; width: 100%; height: 300px;
  overflow: hidden; border-radius: 28px;
  background: #111; transition: 0.5s ease;
  cursor: pointer;
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
}
.showcase-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.8s ease; }
.showcase-img::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.1));
  z-index: 1;
}
.showcase-item:hover .showcase-img { transform: translateY(-10px); box-shadow: 0 25px 70px rgba(124,58,237,0.3), 0 0 0 1px rgba(124,58,237,0.2); }
.showcase-item:hover .showcase-img img { transform: scale(1.08); }
.showcase-overlay {
  position: absolute; left: 0; bottom: 0;
  width: 100%; padding: 30px; z-index: 2;
  transform: translateY(20px); opacity: 0;
  transition: 0.5s ease;
}
.showcase-item:hover .showcase-overlay { transform: translateY(0); opacity: 1; }
.showcase-overlay span {
  display: inline-block; font-size: 0.75rem;
  font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7); margin-bottom: 8px;
}
.showcase-overlay h4 { color: #fff; font-size: 1.5rem; line-height: 1.2; font-weight: 700; }
@keyframes scrollShowcase { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============================================
   WHY SK
   ============================================ */
.why-sk {
  background: var(--dark2);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}
.why-sk::before {
  content: '';
  position: absolute;
  top: -150px; left: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,0,255,0.05), transparent 70%);
  pointer-events: none;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.why-left p { margin-bottom: 36px; max-width: 440px; font-size: 0.95rem; line-height: 1.8; color: var(--text-muted); }
.why-item {
  display: flex; gap: 20px;
  align-items: flex-start;
  padding: 22px 24px;
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid transparent;
  position: relative;
}
.why-item::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 2px; height: 0;
  background: var(--gradient);
  border-radius: 2px;
  transition: height 0.3s ease;
}
.why-item:hover {
  background: var(--dark3);
  border-color: var(--border);
  transform: translateX(6px);
}
.why-item:hover::before { height: 70%; }
.why-icon { font-size: 1.8rem; flex-shrink: 0; line-height: 1; }
.why-item h4 { margin-bottom: 6px; color: var(--text); font-size: 0.95rem; }
.why-item p  { margin: 0; font-size: 0.85rem; line-height: 1.65; }

/* ============================================
   IMPACT STRIP
   ============================================ */
.impact-strip {
  background: var(--dark);
  border-top: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}
.impact-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(124,58,237,0.07), transparent 70%);
  pointer-events: none;
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.impact-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 44px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.impact-card::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.impact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(124,58,237,0.2);
  border-color: rgba(124,58,237,0.3);
}
.impact-card:hover::before { opacity: 0.06; }
.impact-num {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4vw, 3.8rem);
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
  position: relative; z-index: 1;
}
.impact-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative; z-index: 1;
}
.impact-bar {
  width: 40px; height: 2px;
  background: var(--gradient);
  border-radius: 2px;
  margin: 16px auto 0;
  position: relative; z-index: 1;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--dark2);
  border-top: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(124,58,237,0.06), transparent 70%);
}
.testimonials .container { text-align: center; }
.testimonial-carousel {
  position: relative; overflow: hidden;
  margin-top: 20px; border-radius: var(--radius-lg);
}
.testimonial-track { display: flex; transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1); }
.testi-card {
  flex-shrink: 0; width: 100%;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 52px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
  text-align: left; position: relative; overflow: hidden;
}
.testi-card::before {
  content: '"';
  position: absolute; top: 20px; right: 40px;
  font-family: var(--font-display);
  font-size: 8rem; font-weight: 800;
  color: rgba(124,58,237,0.06);
  line-height: 1; pointer-events: none;
}
.testi-stars { color: #f59e0b; font-size: 1.2rem; margin-bottom: 24px; letter-spacing: 3px; }
.testi-card > p {
  font-size: 1.1rem; line-height: 1.85;
  color: var(--text-muted); margin-bottom: 36px; font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 16px; }
.testi-avatar { width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0; border: 2px solid var(--border-glow); }
.testi-author strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem; color: var(--text);
}
.testi-author span { font-size: 0.85rem; color: var(--text-faint); }
.testi-dots { display: flex; justify-content: center; gap: 10px; margin-top: 36px; }
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%; background: var(--border);
  cursor: pointer; transition: var(--transition); border: none;
}
.testi-dot.active {
  background: var(--magenta); width: 28px;
  border-radius: 4px; box-shadow: 0 0 12px rgba(192,132,252,0.4);
}

/* ============================================
   CLIENTS MARQUEE
   ============================================ */
.clients {
  background: var(--dark);
  border-top: 1px solid var(--border-light);
}
.clients-marquee { overflow: hidden; margin-top: 32px; position: relative; }
.clients-marquee::before,
.clients-marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
}
.clients-marquee::before { left: 0; background: linear-gradient(to right, var(--dark), transparent); }
.clients-marquee::after  { right: 0; background: linear-gradient(to left, var(--dark), transparent); }
.clients-track {
  display: flex; gap: 60px;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}
.client-logo {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 800;
  color: rgba(155,93,229,0.25);
  flex-shrink: 0; transition: color 0.3s;
  letter-spacing: -0.5px;
}
.client-logo:hover { color: var(--magenta); }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--dark2);
  border-top: 1px solid var(--border-light);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-orb {
  position: absolute; border-radius: 50%;
}
.cta-orb1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(124,58,237,0.15), transparent 70%);
  top: -100px; left: -100px;
  animation: orbDrift 10s ease-in-out infinite alternate;
}
.cta-orb2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,0,255,0.12), transparent 70%);
  bottom: -80px; right: -80px;
  animation: orbDrift 13s ease-in-out infinite alternate-reverse;
}
.cta-grid-anim {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(124,58,237,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: gridShift 15s linear infinite;
}
.cta-badge {
  display: inline-block;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(192,132,252,0.9);
  margin-bottom: 24px;
}
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
}
.cta-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.btn-large { padding: 18px 40px; font-size: 1rem; }
.cta-pills {
  display: flex; gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  color: var(--text-faint);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border-light);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}
.footer-brand p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin: 16px 0 24px; max-width: 280px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700;
  color: var(--text-faint);
  transition: all 0.3s ease;
  text-decoration: none;
}
.social-links a:hover { border-color: var(--magenta); color: var(--magenta); background: rgba(124,58,237,0.08); }
.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--text-faint);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-col ul li a:hover { color: var(--magenta); }
.footer-col ul li:not(:has(a)) { font-size: 0.88rem; color: var(--text-faint); }
.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-faint) ;text-align: center;align-items: center;padding-left: 40%; }

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="100"]  { transition-delay: 0.1s; }
.reveal[data-delay="150"]  { transition-delay: 0.15s; }
.reveal[data-delay="200"]  { transition-delay: 0.2s; }
.reveal[data-delay="300"]  { transition-delay: 0.3s; }
.reveal[data-delay="400"]  { transition-delay: 0.4s; }
.reveal[data-delay="450"]  { transition-delay: 0.45s; }
.reveal[data-delay="500"]  { transition-delay: 0.5s; }

/* ============================================
   SECTION LABELS + TITLES (GLOBAL)
   ============================================ */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--magenta);
  padding: 7px 16px;
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 48px;
  letter-spacing: -0.5px;
}
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section { padding: 110px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ============================================
   RESPONSIVE — HOME PAGE
   ============================================ */
@media (max-width: 1200px) {
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .hero { flex-direction: column; padding: 130px 32px 70px; gap: 48px; }
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 52px; }
  .who-grid { grid-template-columns: 1fr; gap: 52px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .hero { padding: 110px 20px 64px; gap: 40px; min-height: 100svh; }
  .hero-content { max-width: 100%; }
  .hero-title { font-size: clamp(2rem, 8.5vw, 3.2rem); word-break: break-word; }
  .hero-tagline { font-size: 1rem; }
  .hero-sub { font-size: 0.9rem; max-width: 100%; }
  .hero-btns { gap: 12px; }
  .hero-stats { gap: 20px; }
  .hero-impact { gap: 8px; }
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .showcase-item { width: 300px; }
  .showcase-img  { height: 240px; }
  .testi-card { padding: 32px 24px; }
  .testi-card > p { font-size: 0.95rem; }
  .testi-card::before { font-size: 5rem; top: 12px; right: 20px; }
  .scroll-indicator { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-section { padding: 80px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .mission-vision-cards { gap: 16px; }
  .section { padding: 80px 0; }
}

@media (max-width: 480px) {
  .hero { padding: 100px 16px 56px; }
  .hero-title { font-size: clamp(1.8rem, 9vw, 2.8rem); }
  .hero-sub { font-size: 0.88rem; }
  .hero-btns { flex-direction: column; gap: 10px; align-items: flex-start; }
  .hero-btns .btn-primary,
  .hero-btns .btn-ghost { width: 100%; justify-content: center; }
  .hero-stats { gap: 16px; }
  .stat-num { font-size: 1.8rem; }
  .stat p { font-size: 0.72rem; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 28px 20px; }
  .showcase-item { width: 270px; }
  .showcase-img  { height: 200px; }
  .testi-card { padding: 24px 18px; }
  .testi-card > p { font-size: 0.88rem; }
  .impact-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .impact-card { padding: 30px 20px; }
  .section-title { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .cta-content h2 { font-size: clamp(2rem, 8vw, 3rem); }
  .cta-btns { flex-direction: column; align-items: center; }
}

/* Phone responsive */
@media (max-width: 1024px) {
  .hero-phone { width: 185px; }
  .phone-frame { height: 370px; }
}
@media (max-width: 768px) {
  .hero-phone {
    position: relative; top: unset; left: unset;
    transform: none;
    animation: phoneFloatMobile 7s ease-in-out infinite;
    margin: 32px auto 0; width: 170px;
  }
  @keyframes phoneFloatMobile {
    0%, 100% { transform: rotate(-2deg); }
    50%       { transform: translateY(-8px) rotate(2deg); }
  }
  .phone-frame { height: 340px; }
  .reel-actions { right: 6px; bottom: 50px; gap: 12px; }
}

/* ===============social icon================ */

.social-links{
  display:flex;
  gap:15px;
  align-items:center;
}

.social-links a{
  width:45px;
  height:45px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#111;
  color:#fff;
  font-size:20px;
  text-decoration:none;
  transition:0.3s ease;
}

.social-links a:hover{
  transform:translateY(-5px);
  background:#7c3aed; /* change color if needed */
}



/* ======================================= */

/* ============================================
   WHY SK
   ============================================ */

.why-sk {
  background: var(--dark2);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.why-sk::before {
  content: '';
  position: absolute;
  top: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,0,255,0.05), transparent 70%);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-left p {
  margin-bottom: 36px;
  max-width: 440px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 22px 24px;
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid transparent;
  position: relative;
}

.why-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 0;
  background: var(--gradient);
  border-radius: 2px;
  transition: height 0.3s ease;
}

.why-item:hover {
  background: var(--dark3);
  border-color: var(--border);
  transform: translateX(6px);
}

.why-item:hover::before {
  height: 70%;
}

.why-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
}

.why-item h4 {
  margin-bottom: 6px;
  color: var(--text);
  font-size: 0.95rem;
}

.why-item p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--text-muted);
}


/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
  .section {
    padding: 90px 0;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .why-left p {
    max-width: 700px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 76px 0;
  }

  .container {
    width: min(92%, 100%);
  }

  .section-title {
    font-size: clamp(2.15rem, 11vw, 3.6rem);
    line-height: 1;
  }

  .section-sub {
    margin-bottom: 42px;
    font-size: 0.94rem;
    line-height: 1.75;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-card {
    min-height: auto;
    padding: 30px 24px 70px;
  }

  .svc-arrow {
    opacity: 1;
    transform: translateX(0);
  }

  .why-item {
    padding: 20px 18px;
    gap: 16px;
  }

  .why-item:hover {
    transform: none;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 64px 0;
  }

  .section-label {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
  }

  .section-title {
    font-size: 2.25rem;
    letter-spacing: -0.04em;
  }

  .section-sub {
    font-size: 0.9rem;
    text-align: left;
  }

  .services-preview .section-sub {
    text-align: center;
  }

  .service-card {
    padding: 28px 22px 68px;
    border-radius: 22px;
  }

  .svc-icon {
    width: 52px;
    height: 52px;
    font-size: 1.55rem;
    margin-bottom: 22px;
  }

  .service-card h3 {
    font-size: 1.08rem;
  }

  .service-card p {
    font-size: 0.88rem;
  }

  .svc-num {
    top: 22px;
    right: 22px;
  }

  .why-grid {
    gap: 34px;
  }

  .why-item {
    border-color: var(--border-light);
    background: rgba(255,255,255,0.025);
  }

  .why-icon {
    font-size: 1.55rem;
  }
}


/* =================================== */

