/* ============================================================
   ZYRIXTEC — Premium Digital Agency CSS
   ============================================================ */

/* ---- RESET & BASE ---- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background: #0a0a0f;
  color: #e8e8f0;
  overflow-x: hidden;
  cursor: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

input,
textarea,
select,
button {
  font-family: inherit;
}

/* ---- CSS VARIABLES ---- */
:root {
  --clr-bg: #0a0a0f;
  --clr-bg-2: #0f0f18;
  --clr-surface: #13131e;
  --clr-surface-2: #1a1a28;
  --clr-border: rgba(255, 255, 255, 0.07);
  --clr-accent: #6c5ce7;
  --clr-accent-2: #a29bfe;
  --clr-accent-glow: rgba(108, 92, 231, 0.3);
  --clr-cyan: #00cec9;
  --clr-text: #e8e8f0;
  --clr-text-muted: #8888aa;
  --clr-white: #ffffff;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-glow: 0 0 40px rgba(108, 92, 231, 0.2);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- CUSTOM CURSOR ---- */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--clr-accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: normal;
}

.cursor-follower {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(108, 92, 231, 0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.12s linear, width 0.25s, height 0.25s, border-color 0.25s;
}

body:has(a:hover) .cursor,
body:has(button:hover) .cursor {
  width: 16px;
  height: 16px;
  background: var(--clr-accent-2);
}

body:has(a:hover) .cursor-follower,
body:has(button:hover) .cursor-follower {
  width: 56px;
  height: 56px;
  border-color: var(--clr-accent);
}

/* ---- LOADER ---- */
.loader {
  position: fixed;
  inset: 0;
  background: var(--clr-bg);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
}

.loader-logo {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -1px;
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: var(--clr-surface-2);
  border-radius: 99px;
  overflow: hidden;
  margin: 0 auto;
}

.loader-fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-cyan));
  width: 0%;
  transition: width 0.05s linear;
  border-radius: 99px;
}

/* ---- CONTAINER ---- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 1.25rem 0;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--clr-border);
  padding: 0.85rem 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--clr-accent);
  transition: width var(--transition);
}

.nav-link:hover {
  color: var(--clr-white);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta-link {
  padding: 0.5rem 1.25rem;
  border: 1.5px solid var(--clr-accent);
  border-radius: 99px;
  color: var(--clr-accent);
  font-weight: 600;
  transition: background var(--transition), color var(--transition);
}

.nav-cta-link:hover {
  background: var(--clr-accent);
  color: var(--clr-white);
}

.nav-cta-link::after {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-text);
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- MOBILE MENU ---- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--clr-bg-2);
  z-index: 850;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-nav-link {
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Syne', sans-serif;
  color: var(--clr-text-muted);
  transition: color 0.2s;
}

.mobile-nav-link:hover {
  color: var(--clr-white);
}

/* ---- SECTION BASICS ---- */
.section {
  padding: 8rem 0;
}

.section-dark {
  background: var(--clr-bg-2);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 5rem;
}

.section-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 99px;
  background: rgba(108, 92, 231, 0.15);
  border: 1px solid rgba(108, 92, 231, 0.3);
  color: var(--clr-accent-2);
  margin-bottom: 1.5rem;
}

.section-badge.light {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--clr-white);
  margin-bottom: 1rem;
}

.section-title.light {
  color: var(--clr-white);
}

.section-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--clr-text-muted);
  margin-top: 1rem;
}

.section-subtitle.light {
  color: rgba(255, 255, 255, 0.5);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  border-radius: 99px;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 0.2s;
}

.btn:hover::before {
  opacity: 1;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--clr-accent), #8c7ae6);
  color: var(--clr-white);
  box-shadow: 0 4px 20px var(--clr-accent-glow);
}

.btn-primary:hover {
  box-shadow: 0 8px 30px rgba(108, 92, 231, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--clr-white);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ---- SCROLL ANIMATIONS ---- */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-card {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease var(--card-delay, 0s), transform 0.6s ease var(--card-delay, 0s);
}

.reveal-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0 4rem;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.6;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 1;
}

.hero-glow-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  left: -100px;
  background: radial-gradient(circle, rgba(108, 92, 231, 0.25) 0%, transparent 70%);
  animation: glowPulse 6s ease-in-out infinite alternate;
}

.hero-glow-2 {
  width: 500px;
  height: 500px;
  bottom: -100px;
  right: -50px;
  background: radial-gradient(circle, rgba(0, 206, 201, 0.2) 0%, transparent 70%);
  animation: glowPulse 8s ease-in-out infinite alternate-reverse;
}

@keyframes glowPulse {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }

  100% {
    opacity: 1;
    transform: scale(1.15);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1000px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  margin-bottom: 2rem;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: #00b894;
  border-radius: 50%;
  box-shadow: 0 0 8px #00b894;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--clr-white);
  margin-bottom: 1.5rem;
}

.hero-line {
  display: block;
}

.hero-line-accent {
  background: linear-gradient(135deg, var(--clr-accent) 0%, var(--clr-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.word-wrap {
  display: inline-block;
  overflow: hidden;
}

.word {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.word.visible {
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.55s;
}

.delay-6 {
  transition-delay: 0.7s;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.8;
  color: var(--clr-text-muted);
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 4rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--clr-white);
  letter-spacing: -0.03em;
}

.stat-plus {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-accent);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  margin-top: 0.25rem;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--clr-border);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--clr-text-muted);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-line {
  width: 1.5px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--clr-accent));
  display: block;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(8px)
  }
}

/* ---- MARQUEE ---- */
.marquee-section {
  padding: 1.5rem 0;
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  overflow: hidden;
}

.marquee-track {
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  display: inline-block;
  animation: marquee-scroll 28s linear infinite;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--clr-text-muted);
}

.marquee-content span {
  margin: 0 1.5rem;
}

.marquee-dot {
  color: var(--clr-accent);
  font-size: 0.7rem;
  vertical-align: middle;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* ---- ABOUT ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-visual {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.about-graphic {
  position: relative;
  width: 260px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ag-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid;
  animation: rotateSlow linear infinite;
}

.ag-ring-1 {
  width: 100%;
  height: 100%;
  border-color: rgba(108, 92, 231, 0.2);
  animation-duration: 20s;
}

.ag-ring-2 {
  width: 75%;
  height: 75%;
  border-color: rgba(108, 92, 231, 0.35);
  animation-duration: 14s;
  animation-direction: reverse;
}

.ag-ring-3 {
  width: 50%;
  height: 50%;
  border-color: rgba(0, 206, 201, 0.3);
  animation-duration: 10s;
}

@keyframes rotateSlow {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(360deg)
  }
}

.ag-center {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-cyan));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: white;
  box-shadow: 0 0 40px rgba(108, 92, 231, 0.6);
  z-index: 1;
}

.ag-orbit {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotateSlow 8s linear infinite;
}

.ag-planet {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: var(--clr-cyan);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--clr-cyan);
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--clr-text-muted);
  margin-bottom: 1.5rem;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.value-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(108, 92, 231, 0.1);
  border: 1px solid rgba(108, 92, 231, 0.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-accent-2);
  transition: background var(--transition);
}

.value-item:hover .value-icon {
  background: rgba(108, 92, 231, 0.2);
}

.value-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--clr-white);
  margin-bottom: 0.2rem;
}

.value-item p {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
}

/* ---- SERVICES ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  cursor: none;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(108, 92, 231, 0.4);
  box-shadow: var(--shadow-glow);
}

.service-card:hover::before {
  opacity: 1;
}

.service-number {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--clr-accent);
  margin-bottom: 1.25rem;
  font-family: 'Syne', sans-serif;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(108, 92, 231, 0.12);
  border: 1px solid rgba(108, 92, 231, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-accent-2);
  margin-bottom: 1.5rem;
  transition: background var(--transition);
}

.service-card:hover .service-icon {
  background: rgba(108, 92, 231, 0.2);
}

.service-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 0.75rem;
  font-family: 'Syne', sans-serif;
}

.service-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--clr-text-muted);
  margin-bottom: 1.5rem;
}

.service-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.service-tags span {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--clr-border);
  border-radius: 99px;
  color: var(--clr-text-muted);
  letter-spacing: 0.03em;
}

.service-arrow {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  color: var(--clr-text-muted);
  transform: translateX(-6px);
  opacity: 0;
  transition: transform var(--transition), opacity var(--transition);
}

.service-card:hover .service-arrow {
  transform: translateX(0);
  opacity: 1;
  color: var(--clr-accent);
}

/* ---- PORTFOLIO ---- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.portfolio-grid-5 {
  grid-template-columns: repeat(3, 1fr);
}

.portfolio-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  cursor: none;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  border-color: rgba(108, 92, 231, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.portfolio-visual {
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 1.25rem 1.25rem 0.5rem;
  gap: 0.5rem;
}

/* Project-specific backgrounds */
.pv-biscents {
  background: linear-gradient(135deg, #2a1a0a 0%, #1a1005 100%);
}

.pv-fca {
  background: linear-gradient(135deg, #071a30 0%, #04121e 100%);
}

.pv-himalians {
  background: linear-gradient(135deg, #231508 0%, #160d04 100%);
}

.pv-alburooj {
  background: linear-gradient(135deg, #2a0a0a 0%, #1a0505 100%);
}

.pv-royalcurry {
  background: linear-gradient(135deg, #2a2005 0%, #1a1503 100%);
}

/* Domain label */
.pv-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(136, 136, 170, 0.6);
  margin-top: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  text-align: center;
  padding-bottom: 0.5rem;
}

/* Browser mockup */
.pv-browser {
  width: 100%;
  max-width: 340px;
  background: #1e1e2e;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s ease;
}

.portfolio-card:hover .pv-browser {
  transform: scale(1.03) translateY(-4px);
}

.pv-browser-bar {
  padding: 0.6rem 0.8rem;
  background: #252535;
  display: flex;
  gap: 5px;
  align-items: center;
}

.pv-browser-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.pv-screen {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pv-el {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 4px;
}

.pv-nav {
  height: 14px;
}

.pv-hero-block {
  height: 55px;
  background: linear-gradient(90deg, rgba(108, 92, 231, 0.3), rgba(0, 206, 201, 0.2));
}

.pv-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.pv-card-sm {
  height: 28px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
}

/* Mobile mockup */
.pv-phone {
  width: 110px;
  height: 200px;
  background: #1e1e2e;
  border-radius: 20px;
  border: 3px solid #333348;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s ease;
}

.portfolio-card:hover .pv-phone {
  transform: scale(1.06) translateY(-4px);
}

.pv-phone-notch {
  width: 40px;
  height: 8px;
  background: #252535;
  border-radius: 0 0 8px 8px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.pv-phone-screen {
  padding: 14px 8px 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 6px;
}

.pv-app-header {
  height: 12px;
}

.pv-app-card {
  height: 55px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(0, 118, 206, 0.4), rgba(0, 206, 201, 0.3));
}

.pv-app-chart {
  height: 40px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 5px;
}

.pv-app-tabs {
  height: 12px;
  background: rgba(108, 92, 231, 0.2);
  border-radius: 6px;
  margin-top: auto;
}

/* Brand screen */
.pv-screen-3 {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.pv-brand-logo {
  height: 18px;
  width: 60%;
  background: linear-gradient(90deg, rgba(138, 92, 231, 0.5), transparent);
  border-radius: 4px;
}

.pv-brand-colors {
  display: flex;
  gap: 6px;
}

.pv-swatch {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.pv-s1 {
  background: #6c5ce7;
}

.pv-s2 {
  background: #a29bfe;
}

.pv-s3 {
  background: #00cec9;
}

.pv-s4 {
  background: #1e1e2e;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.pv-brand-type {
  height: 12px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 3px;
}

/* Ecom screen */
.pv-screen-4 {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pv-ecom-nav {
  height: 14px;
}

.pv-ecom-hero {
  height: 45px;
  background: linear-gradient(90deg, rgba(0, 180, 90, 0.3), rgba(0, 206, 201, 0.2));
  border-radius: 4px;
}

.pv-ecom-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.pv-prod {
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
}

.portfolio-info {
  padding: 1.75rem;
}

.portfolio-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.portfolio-tags span {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  border-radius: 99px;
  background: rgba(108, 92, 231, 0.15);
  color: var(--clr-accent-2);
  border: 1px solid rgba(108, 92, 231, 0.25);
}

.portfolio-title {
  font-size: 1.1rem;
  font-weight: 700;
  font-family: 'Syne', sans-serif;
  color: var(--clr-white);
  margin-bottom: 0.5rem;
}

.portfolio-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--clr-text-muted);
  margin-bottom: 1rem;
}

.portfolio-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--clr-accent-2);
  transition: gap var(--transition), color var(--transition);
}

.portfolio-link:hover {
  gap: 0.7rem;
  color: var(--clr-white);
}

.portfolio-cta {
  text-align: center;
}

/* ---- WHY US ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  padding: 2rem;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  cursor: none;
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(108, 92, 231, 0.35);
  box-shadow: var(--shadow-glow);
}

.why-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.2), rgba(0, 206, 201, 0.1));
  border: 1px solid rgba(108, 92, 231, 0.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-accent-2);
  margin-bottom: 1.25rem;
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 0.6rem;
  font-family: 'Syne', sans-serif;
}

.why-card p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--clr-text-muted);
}

/* ---- PROCESS ---- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-track {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  margin-bottom: 2rem;
}

.step-dot {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background: var(--clr-accent);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(108, 92, 231, 0.7);
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

.step-line {
  position: absolute;
  top: 50%;
  left: 50%;
  right: -50%;
  height: 1px;
  background: linear-gradient(90deg, var(--clr-accent), rgba(108, 92, 231, 0.1));
  transform: translateY(-50%);
}

.process-step:last-child .step-line {
  display: none;
}

.step-content {
  padding: 0 1rem;
}

.step-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--clr-accent);
  margin-bottom: 1rem;
}

.step-icon {
  width: 56px;
  height: 56px;
  background: rgba(108, 92, 231, 0.1);
  border: 1px solid rgba(108, 92, 231, 0.25);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-accent-2);
  margin: 0 auto 1rem;
}

.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  font-family: 'Syne', sans-serif;
  color: var(--clr-white);
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--clr-text-muted);
}

/* ---- TESTIMONIALS ---- */
.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: 100%;
  padding: 3rem;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
}

.testimonial-stars {
  font-size: 1.2rem;
  color: #f9ca24;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--clr-text);
  font-weight: 400;
  margin-bottom: 2rem;
  font-style: italic;
  max-width: 750px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: 'Syne', sans-serif;
  color: white;
  flex-shrink: 0;
}

.av-1 {
  background: linear-gradient(135deg, #6c5ce7, #a29bfe);
}

.av-2 {
  background: linear-gradient(135deg, #00cec9, #81ecec);
}

.av-3 {
  background: linear-gradient(135deg, #fd79a8, #e84393);
}

.av-4 {
  background: linear-gradient(135deg, #fdcb6e, #e17055);
}

.author-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--clr-white);
  font-weight: 700;
}

.author-info span {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
}

.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.testi-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--clr-border);
  background: var(--clr-surface);
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.testi-btn:hover {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  color: white;
}

.testi-dots {
  display: flex;
  gap: 6px;
}

.testi-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-border);
  cursor: none;
  transition: background var(--transition), width var(--transition);
}

.testi-dot.active {
  background: var(--clr-accent);
  width: 20px;
  border-radius: 99px;
}

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-intro {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--clr-text-muted);
  margin: 1.5rem 0 2rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--clr-text-muted);
}

.contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(108, 92, 231, 0.1);
  border: 1px solid rgba(108, 92, 231, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-accent-2);
  flex-shrink: 0;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-muted);
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.social-link:hover {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  color: white;
  transform: translateY(-2px);
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  color: var(--clr-text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(136, 136, 170, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.15);
}

.form-group select {
  cursor: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238888aa' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: var(--clr-surface);
  color: var(--clr-text);
}

.form-success {
  display: none;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(0, 200, 120, 0.1);
  border: 1px solid rgba(0, 200, 120, 0.3);
  border-radius: var(--radius-sm);
  color: #00b894;
  font-size: 0.9rem;
  font-weight: 500;
}

.form-success.visible {
  display: flex;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--clr-bg-2);
  border-top: 1px solid var(--clr-border);
  padding: 4rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--clr-border);
  margin-bottom: 2rem;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
  max-width: 280px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: 0.25rem;
}

.footer-col a {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--clr-white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.825rem;
  color: var(--clr-text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.825rem;
  color: var(--clr-text-muted);
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--clr-white);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .portfolio-grid,
  .portfolio-grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .step-line {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 5rem 0;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: clamp(2.5rem, 10vw, 5rem);
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 2rem 1.5rem;
  }

  .cursor,
  .cursor-follower {
    display: none;
  }

  body {
    cursor: auto;
  }

  a,
  button,
  input,
  select,
  textarea {
    cursor: auto;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .portfolio-grid,
  .portfolio-grid-5 {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.75rem;
  }
}