/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

:root {
  --bg: #f8fafc;
  --bg2: #ffffff;
  --bg3: #f1f5f9;
  --blue: #2563ff;
  --blue-bright: #1d4ed8;
  --green: #059669;
  --green-dim: #047857;
  --white: #0f172a;
  --pure-white: #ffffff;
  --gray: #475569;
  --gray-dim: #cbd5e1;
  --border: rgba(15, 23, 42, 0.08);
  --glass: rgba(255, 255, 255, 0.85);
  --font-display: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --glow-blue: 0 10px 30px rgba(37, 99, 255, 0.12);
  --glow-green: 0 10px 30px rgba(5, 150, 105, 0.12);
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
}



/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--gray-dim);
  border-radius: 2px;
}

/* ===== NAVBAR ===== */
nav {
  position: fixed;
  top: 24px;
  left: 50%;
  z-index: 100;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1100px;
  padding: 12px 16px 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  border-radius: 25px;
  transition: all 0.3s;
}

nav.scrolled {
  top: 16px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.1);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
}

.nav-logo-img {
  height: 28px;
  width: auto;
  border-radius: 4px;
}

.nav-logo-text {
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a.active {
  position: relative;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--blue-bright);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--blue-bright);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: #ff4742;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.nav-phone {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
}

.btn-nav-blue {
  background: var(--blue);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 50px;
  border: none;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-nav-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 255, 0.4);
}

.mobile-toggle {
  display: none;
  width: 32px;
  height: 24px;
  background: transparent;
  border: none;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1001;
  position: relative;
}

.mobile-toggle span {
  width: 100%;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 140px 24px 80px;
  position: relative;
  overflow: hidden;
}

/* Background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(37, 99, 255, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

.hero-glow-1 {
  background: rgba(255, 71, 66, 0.2);
  top: -150px;
  left: 5%;
  animation: float-glow 18s ease-in-out infinite alternate;
}

.hero-glow-2 {
  background: rgba(37, 99, 255, 0.15);
  bottom: -200px;
  right: 5%;
  animation: float-glow 22s ease-in-out infinite alternate-reverse;
}

@keyframes float-glow {
  0% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(100px, 50px) scale(1.1);
  }

  66% {
    transform: translate(-50px, 100px) scale(0.9);
  }

  100% {
    transform: translate(-100px, -50px) scale(1.05);
  }
}

.hero-centered {
  position: relative;
  z-index: 1;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-social-proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.avatar-group {
  display: flex;
}

.avatar-item {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -10px;
  object-fit: cover;
}

.avatar-item:first-child {
  margin-left: 0;
}

.social-proof-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--gray);
  font-size: 0.85rem;
}

.stars {
  color: #f59e0b;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--gray);
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--white);
}

.benefit-icon {
  color: #ff4742;
  font-size: 1.1rem;
  font-weight: bold;
}

.btn-cta-red {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ff4742;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 24px 8px 8px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-cta-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 71, 66, 0.4);
}

.btn-cta-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

/* ===== SECTION BASE ===== */
section {
  padding: 100px 60px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--blue-bright);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.section-title em {
  font-style: normal;
  color: var(--green);
}

.section-desc {
  font-size: 1rem;
  color: var(--gray);
  max-width: 480px;
  line-height: 1.7;
}

.max-w {
  max-width: 1280px;
  margin: 0 auto;
}

/* ===== CLIENTS ===== */
.clients {
  padding: 60px 0 0 0;
}

.clients-label {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 36px;
}

.marquee-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  background: #ffffff;
  padding: 10px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.marquee-container::before,
.marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 200px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, #ffffff, transparent);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll-horizontal 60s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 100px;
  padding-right: 100px;
}

@keyframes scroll-horizontal {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.client-logo-img {
  height: 128px;
  width: auto;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all 0.3s;
}

.client-logo-img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ===== PREMIUM SERVICES ===== */
.premium-services {
  position: relative;
  padding: 140px 60px;
  background: var(--bg);
  overflow: hidden;
  border-top: 1px solid var(--border);
}

.ps-bg-glow {
  position: absolute;
  top: 10%;
  right: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.05) 0%, rgba(37, 99, 255, 0.03) 30%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.ps-particles {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

.ps-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.ps-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
}

.ps-title em {
  font-style: normal;
  color: var(--green);
  text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.ps-desc {
  max-width: 400px;
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.7;
  padding-bottom: 10px;
}

.ps-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 380px;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.ps-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  text-decoration: none;
  color: var(--white);
  transition: transform 0.4s cubic-bezier(0.1, 0.9, 0.2, 1), border-color 0.4s, box-shadow 0.4s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.ps-card-large {
  grid-column: span 8;
}

.ps-card-medium {
  grid-column: span 6;
}

.ps-card-small {
  grid-column: span 4;
}

.ps-card:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 99, 255, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 0 40px rgba(37, 99, 255, 0.1);
}

.branding-card:hover {
  border-color: rgba(0, 255, 136, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 0 40px rgba(0, 255, 136, 0.1);
}

.social-card:hover {
  border-color: rgba(224, 36, 255, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 0 40px rgba(224, 36, 255, 0.1);
}

.advertising-card:hover {
  border-color: rgba(255, 115, 0, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 0 40px rgba(255, 115, 0, 0.1);
}

.ps-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.2) 60%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.ps-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: transform 0.6s cubic-bezier(0.1, 0.9, 0.2, 1), filter 0.6s;
  filter: brightness(0.8) grayscale(20%);
}

.ps-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ps-card:hover .ps-visual {
  transform: scale(1.05);
  filter: brightness(1.1) grayscale(0%);
}

.ps-content {
  position: relative;
  z-index: 2;
  padding: 36px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.ps-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.ps-card:hover .ps-icon {
  background: var(--green);
  color: var(--bg);
  border-color: var(--green);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
  transform: scale(1.1) rotate(5deg);
}

.social-card:hover .ps-icon {
  background: #e024ff;
  color: var(--bg);
  border-color: #e024ff;
  box-shadow: 0 0 20px rgba(224, 36, 255, 0.4);
}

.uiux-card:hover .ps-icon,
.webdev-card:hover .ps-icon,
.motion-card:hover .ps-icon {
  background: var(--blue-bright);
  color: var(--bg);
  border-color: var(--blue-bright);
  box-shadow: 0 0 20px rgba(37, 99, 255, 0.4);
}

.advertising-card:hover .ps-icon {
  background: #ff7300;
  color: var(--bg);
  border-color: #ff7300;
  box-shadow: 0 0 20px rgba(255, 115, 0, 0.4);
}

.ps-text h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.ps-text p {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 24px;
}

.ps-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s;
}

.ps-card:hover .ps-cta {
  color: var(--green);
}

.social-card:hover .ps-cta {
  color: #e024ff;
}

.uiux-card:hover .ps-cta,
.webdev-card:hover .ps-cta,
.motion-card:hover .ps-cta {
  color: var(--blue-bright);
}

.advertising-card:hover .ps-cta {
  color: #ff7300;
}

@media (max-width: 1024px) {
  .ps-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .ps-card-large,
  .ps-card-medium,
  .ps-card-small {
    grid-column: span 6;
  }
}

@media (max-width: 768px) {

  .ps-card-large,
  .ps-card-medium,
  .ps-card-small {
    grid-column: span 12;
  }

  .ps-grid {
    grid-auto-rows: 300px;
  }
}

/* ===== OLD SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.service-card {
  background: var(--bg2);
  padding: 40px 36px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  background: var(--bg3);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(37, 99, 255, 0.1);
  border: 1px solid rgba(37, 99, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.3rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.65;
}

.service-tag {
  margin-top: 20px;
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--green);
  text-transform: uppercase;
}

/* ===== PORTFOLIO ===== */
.portfolio {
  background: var(--bg2);
}

.portfolio-filters {
  display: flex;
  gap: 8px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: 50px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--gray);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  transition: all 0.2s;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.portfolio-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: var(--bg3);
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  transition: transform 0.3s, box-shadow 0.3s;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.portfolio-card-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-meta h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

.portfolio-meta span {
  font-size: 0.75rem;
  color: var(--green);
}

.p-bg-1 {
  background: linear-gradient(135deg, #0f1f4a 0%, #1a3a7a 100%);
}

.p-bg-2 {
  background: linear-gradient(135deg, #0a2218 0%, #0f3d28 100%);
}

.p-bg-3 {
  background: linear-gradient(135deg, #1f0f35 0%, #3d1a6e 100%);
}

.p-bg-4 {
  background: linear-gradient(135deg, #2a1500 0%, #5c3000 100%);
}

.p-bg-5 {
  background: linear-gradient(135deg, #001a2a 0%, #003d5c 100%);
}

.p-bg-6 {
  background: linear-gradient(135deg, #1f1f00 0%, #3d3d00 100%);
}

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.why-card {
  padding: 32px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  transition: border-color 0.3s, transform 0.3s;
}

.why-card:hover {
  border-color: rgba(37, 99, 255, 0.3);
  transform: translateY(-4px);
}

.why-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(37, 99, 255, 0.15);
  margin-bottom: 16px;
  line-height: 1;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
}

.testimonial-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
  transition: border-color 0.3s;
}

.testimonial-card:hover {
  border-color: rgba(37, 99, 255, 0.2);
}

.stars {
  color: var(--green);
  font-size: 0.85rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--bg);
}

.author-info .name {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
}

.author-info .role {
  font-size: 0.75rem;
  color: var(--gray);
}

/* ===== STATS ===== */
.stats {
  background: var(--bg2);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 64px;
}

.stat-item {
  padding: 48px 36px;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.stat-item:hover::before {
  opacity: 1;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, var(--white), var(--blue-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-num sup {
  font-size: 1.5rem;
  -webkit-text-fill-color: var(--green);
}

.stat-label {
  font-size: 0.82rem;
  color: var(--gray);
  margin-top: 8px;
  letter-spacing: 0.02em;
}

/* Compact Stats for Hero */
.stats-grid.hero-stats {
  margin-top: 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(10px);
}

.stats-grid.hero-stats .stat-item {
  padding: 12px 20px;
}

.stats-grid.hero-stats .stat-num {
  font-size: 1.8rem;
}

.stats-grid.hero-stats .stat-num sup {
  font-size: 0.9rem;
}

.stats-grid.hero-stats .stat-label {
  font-size: 0.7rem;
  margin-top: 2px;
}

/* ===== ABOUT ===== */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin-left: auto;
}

.about-card-main {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.about-video-bg {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.9);
  transition: filter 0.3s ease;
}

.about-card-main:hover .about-video-bg {
  filter: brightness(1.1);
}

.about-pattern {
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(45deg, rgba(37, 99, 255, 0.03) 0px, rgba(37, 99, 255, 0.03) 1px,
      transparent 1px, transparent 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}

.about-inner-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  backdrop-filter: blur(20px);
}

.about-inner-badge .big-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
}

.about-inner-badge .small-label {
  font-size: 0.75rem;
  color: var(--gray);
}

.about-text .section-desc {
  max-width: 100%;
  margin-bottom: 24px;
}

.about-text p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.chip {
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--gray);
}

/* ===== FAQ ===== */
.faq {
  background: var(--bg2);
}

.faq-list {
  max-width: 740px;
  margin: 64px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  text-align: left;
  transition: color 0.2s;
}

.faq-q:hover {
  color: var(--blue-bright);
}

.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gray);
  transition: transform 0.3s, border-color 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--blue-bright);
  color: var(--blue-bright);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.75;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding-bottom: 24px;
}

/* ===== CTA ===== */
.cta-section {
  text-align: center;
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(37, 99, 255, 0.12) 0%, transparent 65%);
}

.cta-section .section-label {
  justify-content: center;
}

.cta-section .section-title {
  max-width: 700px;
  margin: 0 auto 16px;
}

.cta-section .section-desc {
  margin: 0 auto 44px;
  text-align: center;
  max-width: 460px;
}

.btn-cta-big {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  padding: 18px 40px;
  border-radius: 10px;
  border: none;
  text-decoration: none;
  box-shadow: 0 8px 40px rgba(37, 99, 255, 0.35);
  transition: all 0.25s;
  position: relative;
  z-index: 1;
}

.btn-cta-big:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 60px rgba(37, 99, 255, 0.45);
}

/* ===== FOOTER ===== */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 60px 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 260px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--gray);
  text-decoration: none;
  transition: all 0.2s;
}

.social-icon:hover {
  border-color: var(--blue);
  color: var(--blue-bright);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.82rem;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--gray-dim);
}

.footer-bottom a {
  color: var(--gray-dim);
  text-decoration: none;
}

/* ===== HEADER SPLIT LAYOUT ===== */
.section-header-split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
}

.section-header-split .section-desc {
  margin-bottom: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  nav {
    padding: 12px 20px;
    width: 95%;
    top: 12px;
  }

  nav.scrolled {
    top: 8px;
  }

  .nav-logo-text {
    font-size: 1.1rem;
  }

  .nav-cta,
  .nav-right .btn-nav-blue,
  .nav-right .status-pill,
  .nav-right .nav-phone,
  .btn-nav-blue {
    display: none;
  }

  .mobile-toggle {
    display: flex;
    margin-left: auto;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
    z-index: 1000;
  }

  .nav-links.active {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    font-size: 1.5rem;
    font-weight: 500;
  }

  section {
    padding: 60px 20px;
  }

  .hero {
    padding: 120px 20px 60px;
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .hero-sub {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 24px;
    padding: 0 10px;
  }

  .hero-benefits {
    gap: 12px;
  }

  .benefit-item {
    font-size: 0.85rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid.hero-stats {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 20px;
  }

  .stats-grid.hero-stats .stat-item {
    padding: 16px 10px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .stats-grid.hero-stats .stat-item:nth-child(2n) {
    border-right: none;
  }

  .stats-grid.hero-stats .stat-item:nth-child(3),
  .stats-grid.hero-stats .stat-item:nth-child(4) {
    border-bottom: none;
  }

  .services-grid,
  .portfolio-grid,
  .why-grid,
  .testimonials-grid,
  .premium-portfolio-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .portfolio-card,
  .premium-card-img-wrap {
    aspect-ratio: 1;
  }

  .premium-headline {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .ps-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
  }

  .ps-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 16px;
  }

  .ps-card-large,
  .ps-card-medium,
  .ps-card-small {
    grid-column: span 12;
    height: 350px;
  }

  .ps-content {
    padding: 24px;
  }

  .ps-text h3 {
    font-size: 1.3rem;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-visual {
    max-width: 100%;
    margin: 0;
    height: auto;
  }

  .about-inner-badge {
    bottom: 10px;
    right: 10px;
    padding: 12px 16px;
  }

  .about-inner-badge .big-num {
    font-size: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-brand p {
    margin: 0 auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    padding-top: 24px;
  }

  .process-steps {
    flex-direction: column;
  }

  .process-steps::before {
    display: none;
  }

  .section-header-split {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .marquee-container {
    padding: 20px 0;
  }

  .client-logo-img {
    height: 60px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .stats-grid.hero-stats {
    grid-template-columns: 1fr;
  }

  .stats-grid.hero-stats .stat-item {
    border-right: none !important;
    border-bottom: 1px solid var(--border) !important;
  }

  .stats-grid.hero-stats .stat-item:last-child {
    border-bottom: none !important;
  }

  .marquee-content {
    gap: 40px;
    padding-right: 40px;
  }
}


/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
}

#lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  transition: color 0.3s, transform 0.3s;
}

.lightbox-close:hover {
  color: var(--blue-bright);
  transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: background 0.3s, transform 0.3s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--blue);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

.lightbox-counter {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gray);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}


/* ===== PREMIUM VERTICAL GALLERY ===== */
.premium-gallery-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 800px;
  background: var(--bg);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.premium-gallery-section::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(37, 99, 255, 0.06) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.premium-gallery-section::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.04) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.gallery-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  height: 100%;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  transform: rotate(-2deg) scale(1.1);
}

.gallery-column {
  display: flex;
  flex-direction: column;
  width: 33.333%;
  height: 100%;
  overflow: visible;
}

.gallery-track {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 15px 0;
  will-change: transform;
}

.scroll-up {
  animation: scrollUp 45s linear infinite;
}

.scroll-down {
  animation: scrollDown 45s linear infinite;
}

.gallery-track:hover {
  animation-play-state: paused;
}

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(calc(-50% - 15px));
  }
}

@keyframes scrollDown {
  0% {
    transform: translateY(calc(-50% - 15px));
  }

  100% {
    transform: translateY(0);
  }
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg2);
  border: 1px solid var(--border);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.6s ease, border-color 0.6s;
  aspect-ratio: 16 / 9;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: brightness(0.8) grayscale(20%);
  transition: filter 0.6s, transform 0.6s;
}

.gallery-item:hover {
  transform: scale(1.02) translateY(-4px);
  z-index: 10;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(37, 99, 255, 0.15);
  border-color: rgba(37, 99, 255, 0.4);
}

.gallery-item:hover img {
  filter: brightness(1.05) grayscale(0%);
  transform: scale(1.04);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 40%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 36px 30px;
  opacity: 0;
  transition: opacity 0.5s;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.g-meta h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.g-meta span {
  font-size: 0.75rem;
  color: var(--green);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.gallery-fade-top,
.gallery-fade-bottom {
  position: absolute;
  left: 0;
  right: 0;
  height: 180px;
  z-index: 2;
  pointer-events: none;
}

.gallery-fade-top {
  top: 0;
  background: linear-gradient(to bottom, var(--bg), transparent);
}

.gallery-fade-bottom {
  bottom: 0;
  background: linear-gradient(to top, var(--bg), transparent);
}

@media (max-width: 900px) {
  .gallery-container {
    transform: rotate(0) scale(1);
    max-width: 100%;
    padding: 0 20px;
  }

  .gallery-column:nth-child(3) {
    display: none;
  }

  .gallery-column {
    width: 50%;
  }
}

/* ===== PREMIUM PORTFOLIO PAGE ===== */
.portfolio-page-body {
  background: var(--bg);
}

.portfolio-page-body nav {
  background: rgba(255, 255, 255, 0.85);
}

.premium-hero-header {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.premium-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(37, 99, 255, 0.08);
  border: 1px solid rgba(37, 99, 255, 0.18);
  font-size: 0.75rem;
  color: var(--blue-bright);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.premium-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}

.premium-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 500px;
  line-height: 1.6;
}

.premium-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 60px;
}

.premium-filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  color: var(--gray);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.premium-filter-btn:hover {
  background: #f1f5f9;
  color: var(--white);
  border-color: rgba(15, 23, 42, 0.2);
}

.premium-filter-btn.active {
  background: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
  box-shadow: 0 4px 15px rgba(37, 99, 255, 0.3);
}

.premium-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

@media (max-width: 900px) {
  .premium-portfolio-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .premium-headline {
    font-size: 2.5rem;
  }
}

.premium-card {
  background: transparent;
  border-radius: 20px;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.premium-card:hover {
  transform: translateY(-8px);
}

.premium-card-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  transition: box-shadow 0.4s, border-color 0.4s;
}

.premium-card:hover .premium-card-img-wrap {
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12), 0 0 30px rgba(37, 99, 255, 0.15);
  border-color: rgba(37, 99, 255, 0.3);
}

.premium-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.premium-card:hover .premium-card-img-wrap img {
  transform: scale(1.05);
}

.premium-card-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(37, 99, 255, 0.2);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.4s;
}

.premium-card:hover .premium-card-hover-overlay {
  opacity: 1;
}

.premium-card-content {
  padding: 24px 10px 10px;
}

.premium-card-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.premium-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.premium-tag {
  padding: 6px 14px;
  border-radius: 50px;
  background: #f1f5f9;
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 0.75rem;
  color: var(--gray);
  font-weight: 500;
}


/* ===== STATIC PROCESS TIMELINE ===== */
:root {
  --cyan: #0284c7;
  --neon-green: #059669;
  --dark-navy: #f8fafc;
}

.static-process-section {
  position: relative;
  background-color: var(--bg);
  color: var(--white);
  padding: 120px 0;
  overflow: hidden;
}

/* Background Effects (Static) */
.static-glow-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.05) 0%, rgba(5, 150, 105, 0.02) 40%, transparent 70%);
  filter: blur(100px);
  z-index: 0;
  pointer-events: none;
}

.static-spotlight {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 600px;
  background: radial-gradient(ellipse at top, rgba(2, 132, 199, 0.1), transparent 70%);
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}

.static-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(15, 23, 42, 0.06) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.3;
  z-index: 0;
}

.static-process-section .max-w {
  position: relative;
  z-index: 2;
}

/* Header */
.process-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 100px;
}

.process-subtitle {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  color: var(--cyan);
  margin-bottom: 15px;
  font-weight: 600;
}

.process-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
}

.text-gradient {
  background: linear-gradient(90deg, var(--cyan), var(--neon-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.process-desc {
  color: var(--gray);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Timeline 5-Column Grid */
.static-timeline-wrapper {
  position: relative;
  padding-top: 30px;
  /* space for markers */
}

/* The horizontal glowing line */
.static-timeline-line {
  position: absolute;
  top: 6px;
  /* align with marker center */
  left: 5%;
  width: 90%;
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(2, 132, 199, 0.4);
  z-index: 1;
}

.static-timeline-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

.static-step-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Center the marker over the card */
}

/* Markers */
.static-marker {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid var(--cyan);
  box-shadow: 0 0 8px rgba(2, 132, 199, 0.4);
  margin-bottom: 40px;
  z-index: 3;
  flex-shrink: 0;
  box-sizing: border-box;
}

.active-marker {
  background: var(--neon-green);
  border-color: var(--neon-green);
  box-shadow: 0 0 15px var(--neon-green), 0 0 30px rgba(5, 150, 105, 0.3);
}

/* Glassmorphism Cards */
.static-step-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 30px 20px;
  border-radius: 12px;
  text-align: left;
  width: 100%;
  height: 100%;
}

.static-step-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: rgba(15, 23, 42, 0.15);
  margin-bottom: 15px;
}

.static-step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.static-step-card p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1100px) {
  .static-timeline-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 60px;
  }

  .static-timeline-line {
    display: none;
    /* Hide horizontal line on wrapped layouts */
  }

  .static-marker {
    display: none;
    /* Hide markers on wrapped layout to keep it clean */
  }
}

@media (max-width: 768px) {
  .static-timeline-grid {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }
}


.static-step-card {
  transition: all 0.5s ease;
}

.static-marker {
  transition: all 0.5s ease;
}

.static-step-col.active .static-marker {
  background: var(--neon-green);
  border-color: var(--neon-green);
  box-shadow: 0 0 15px var(--neon-green), 0 0 30px rgba(0, 255, 115, 0.4);
  transform: scale(1.3);
}

.static-step-col.active .static-step-card {
  background: #ffffff;
  border-color: rgba(5, 150, 105, 0.4);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
  transform: translateY(-10px);
}

.static-step-col.active .static-step-num {
  color: var(--cyan);
}

/* CONTACT MODAL */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  padding: 20px;
}

.modal.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 24px;
  width: 100%;
  max-width: 800px;
  padding: 60px;
  position: relative;
  transform: translateY(40px) scale(0.95);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0 25px 70px rgba(15, 23, 42, 0.15), 0 0 50px rgba(37, 99, 255, 0.08);
  max-height: 90vh;
  overflow-y: auto;
  color: var(--white);
}

.modal.active .modal-content {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 40px;
  cursor: pointer;
  opacity: 0.5;
  transition: 0.3s;
  line-height: 1;
}

.modal-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.modal-header {
  margin-bottom: 40px;
  text-align: center;
}

.modal-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: -1px;
}

.modal-title em {
  font-style: italic;
  color: var(--blue-bright);
}

.modal-subtitle {
  color: var(--gray);
  font-size: 18px;
  max-width: 500px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.12);
  padding: 15px 20px;
  border-radius: 12px;
  color: #0f172a;
  font-family: inherit;
  font-size: 16px;
  transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-bright);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(37, 99, 255, 0.15);
}

.btn-submit {
  width: 100%;
  padding: 20px;
  background: var(--blue-bright);
  border: none;
  border-radius: 14px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: 0.4s;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(37, 99, 255, 0.4);
}

.btn-submit span {
  position: relative;
  z-index: 2;
}

.form-success-msg {
  display: none;
  text-align: center;
  padding: 40px 0;
}

.form-success-msg.active {
  display: block;
  animation: fadeInUp 0.6s ease forwards;
}

.success-icon {
  font-size: 60px;
  color: var(--blue-bright);
  margin-bottom: 20px;
}

.form-success-msg h3 {
  font-size: 32px;
  margin-bottom: 10px;
}

.form-success-msg p {
  color: #aaa;
  margin-bottom: 30px;
}

.btn-close-success {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 30px;
  border-radius: 30px;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.btn-close-success:hover {
  background: #fff;
  color: #000;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .modal-content {
    padding: 40px 25px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full-width {
    grid-column: span 1;
  }

  .modal-title {
    font-size: 32px;
  }
}

/* ===== SOUND TOGGLE ===== */
.about-card-main {
  position: relative;
}




/* ===== ABOUT LOGO CENTERED ===== */
.about-card-main {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16/9;
  box-shadow: inset 0 0 30px rgba(37, 99, 255, 0.05);
}

.about-logo-center {
  width: 70%;
  max-width: 300px;
  padding: 40px;
  filter: drop-shadow(0 0 20px rgba(0, 112, 243, 0.2));
  animation: logoPulse 4s ease-in-out infinite;
}

.about-logo-center img {
  width: 100%;
  height: auto;
}

@keyframes logoPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 20px rgba(0, 112, 243, 0.2)); }
  50% { transform: scale(1.05); filter: drop-shadow(0 0 30px rgba(0, 112, 243, 0.4)); }
}

@media (max-width: 768px) {
  .about-card-main {
    aspect-ratio: 4/3;
  }
  .about-logo-center {
    max-width: 220px;
  }
}

