/* ============================================================
   ENNOM DIGITAL — style.css
   Premium Software Agency Company Profile
   ============================================================ */

/* ── CSS Variables ── */
:root {
  --bg: #050b18;
  --bg2: #0b1120;
  --bg3: #0f1929;
  --card: rgba(255, 255, 255, 0.04);
  --card-border: rgba(255, 255, 255, 0.08);
  --accent: #6366f1;
  --accent2: #06b6d4;
  --accent-grad: linear-gradient(135deg, #6366f1, #06b6d4);
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --text-faint: #475569;
  --white: #ffffff;
  --success: #22c55e;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-h: 80px;
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 3px;
}

/* ── Container ── */
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* ── Section ── */
.section {
  padding-block: 100px;
}

/* ── Section Header ── */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-tag {
  display: inline-block;
  background: rgba(99, 102, 241, 0.15);
  color: var(--accent);
  border: 1px solid rgba(99, 102, 241, 0.3);
  padding: 0.3rem 1rem;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-inline: auto;
}
.gradient-text {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.6rem;
  border-radius: 99px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: var(--transition);
}
.btn:hover::after {
  background: rgba(255, 255, 255, 0.07);
}

.btn-primary {
  background: var(--accent-grad);
  color: #fff;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.35);
}
.btn-primary:hover {
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--card-border);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: #0b1120;
  font-weight: 700;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}
.btn-lg {
  padding: 0.9rem 2rem;
  font-size: 1rem;
}
.btn-full {
  width: 100%;
  justify-content: center;
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 6rem;
  right: 1.5rem;
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  z-index: 999;
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.65);
}
.wa-tooltip {
  position: absolute;
  right: 64px;
  background: #fff;
  color: #0b1120;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.8rem;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: opacity 0.25s;
}
.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
}

/* ── Back to Top ── */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.4);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover {
  transform: translateY(-3px);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition:
    background 0.4s,
    box-shadow 0.4s,
    height 0.4s;
}
.navbar.scrolled {
  background: rgba(5, 11, 24, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  height: 68px;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
}
.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--accent-grad);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}
.logo-img {
  width: 250px;
}
.logo-text .accent {
  color: var(--accent2);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  padding: 0.4rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  transition: var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}
.nav-cta {
  margin-left: 0.5rem;
  padding: 0.55rem 1.2rem;
  font-size: 0.88rem;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(99, 102, 241, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.06) 1px, transparent 1px);
  background-size: 50px 50px;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.3;
}
.glow-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, #6366f1, transparent 70%);
  top: -150px;
  left: -200px;
}
.glow-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #06b6d4, transparent 70%);
  bottom: -100px;
  right: -100px;
}

/* Split grid */
.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  padding-block: 2rem 3rem;
}

/* ── Left column ── */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  text-align: left;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.25);
  color: var(--text-muted);
  padding: 0.4rem 1.1rem;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 500;
  width: fit-content;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}
.hero-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}
.hero-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 520px;
  margin: 0;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0;
}
/* Tech stack row */
.hero-tech {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.tech-label {
  font-size: 0.8rem;
  color: var(--text-faint);
  white-space: nowrap;
}
.tech-icons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.tech-icons span {
  font-size: 1.3rem;
  color: var(--text-faint);
  transition:
    color var(--transition),
    transform var(--transition);
  cursor: default;
}
.tech-icons span:hover {
  color: var(--accent);
  transform: translateY(-3px);
}

/* ── Right column ── */
.hero-right {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 8.2rem;
}
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 460px;
}
.hv-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.25),
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(60px);
  pointer-events: none;
}

/* Main dashboard card */
.hv-card {
  background: rgba(11, 17, 32, 0.85);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.hv-main {
  padding: 1.4rem 1.6rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.hv-card-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}
.hv-dots {
  display: flex;
  gap: 5px;
}
.hv-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.hv-dots span:nth-child(1) {
  background: #ff5f57;
}
.hv-dots span:nth-child(2) {
  background: #ffbd2e;
}
.hv-dots span:nth-child(3) {
  background: #28c840;
}
.hv-head-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: auto;
}
.hv-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}
.hv-metric {
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.15);
  border-radius: 10px;
  padding: 0.7rem 0.5rem;
  text-align: center;
}
.hv-metric-val {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hv-metric-lbl {
  font-size: 0.7rem;
  color: var(--text-faint);
}
.hv-bars {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.hv-bar-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.hv-bar-row > span:first-child {
  width: 56px;
  flex-shrink: 0;
}
.hv-bar {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 99px;
  overflow: hidden;
}
.hv-fill {
  height: 100%;
  background: var(--accent-grad);
  border-radius: 99px;
  animation: bar-grow 1.5s ease forwards;
  transform-origin: left;
}
@keyframes bar-grow {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
.hv-pct {
  font-size: 0.7rem;
  color: var(--text-faint);
  width: 28px;
  text-align: right;
}

/* Floating cards */
.hv-float {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(11, 17, 32, 0.9);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 0.65rem 1rem;
  backdrop-filter: blur(12px);
  position: absolute;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.hv-float-icon {
  font-size: 1.2rem;
}
.hv-float-label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-faint);
}
.hv-float-val {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
}
.hv-f1 {
  bottom: -1rem;
  left: -2.5rem;
  animation: float1 4s ease-in-out infinite;
}
.hv-f2 {
  top: 8rem;
  right: -2.5rem;
  animation: float2 5s ease-in-out infinite;
}
.hv-f3 {
  bottom: 5rem;
  right: -1.5rem;
  animation: float1 4.5s ease-in-out infinite reverse;
}
@keyframes float1 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes float2 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}
.hv-avatars {
  display: flex;
}
.hv-av {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;
  border: 2px solid #0b1120;
  margin-left: -6px;
}
.hv-av:first-child {
  margin-left: 0;
}

/* Stats bar at bottom of hero */
.hero-stats-bar {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--card-border);
  background: rgba(5, 11, 24, 0.8);
  backdrop-filter: blur(8px);
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding-block: 1.2rem;
}
.stat-item {
  text-align: center;
  padding-inline: 2.5rem;
  position: relative;
}
.stat-item + .stat-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: var(--card-border);
}
.stat-val {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.stat-number {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-plus {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
  display: block;
}
.stat-divider {
  display: none;
} /* replaced by ::before pseudo */

.hero-scroll-indicator {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.scroll-mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-mouse span {
  width: 4px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
  animation: scroll-anim 2s infinite;
}
@keyframes scroll-anim {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(12px);
    opacity: 0;
  }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--bg2);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Visual panel — orbital composition */
.about-vis-wrap {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.av-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.18),
    transparent 70%
  );
  filter: blur(60px);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Central card */
.av-main-card {
  position: relative;
  z-index: 2;
  background: rgba(11, 17, 32, 0.9);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: var(--radius-lg);
  padding: 1.8rem 2rem;
  text-align: center;
  min-width: 200px;
  backdrop-filter: blur(12px);
  box-shadow:
    0 0 0 1px rgba(99, 102, 241, 0.1),
    0 24px 64px rgba(0, 0, 0, 0.5);
}
.av-card-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 0.8rem;
}
.av-card-logo .logo-icon {
  width: 48px;
  height: 48px;
  font-size: 1.2rem;
}
.av-card-name {
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
}
.av-card-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.av-divider {
  height: 1px;
  background: var(--card-border);
  margin-bottom: 1rem;
}
.av-stats-mini {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}
.av-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.av-stat strong {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.av-stat span {
  font-size: 0.68rem;
  color: var(--text-faint);
}
.av-stat-sep {
  width: 1px;
  height: 28px;
  background: var(--card-border);
}

/* Orbit cards */
.av-orbit-card {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  background: rgba(11, 17, 32, 0.88);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 0.7rem 0.9rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.av-orbit-card:hover {
  border-color: rgba(99, 102, 241, 0.4);
  color: var(--text);
  transform: scale(1.08);
}
.av-orbit-card i {
  font-size: 1.2rem;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* Position each orbit card */
.aoc-1 {
  top: 10%;
  left: 2%;
  animation: orb 6s ease-in-out infinite;
}
.aoc-2 {
  top: 0%;
  right: 8%;
  animation: orb 7s ease-in-out infinite reverse;
}
.aoc-3 {
  top: 40%;
  left: -3%;
  animation: orb 5s ease-in-out infinite 1s;
}
.aoc-4 {
  top: 40%;
  right: -2%;
  animation: orb 8s ease-in-out infinite 0.5s;
}
.aoc-5 {
  bottom: 8%;
  left: 8%;
  animation: orb 6.5s ease-in-out infinite 1.5s;
}
.aoc-6 {
  bottom: 5%;
  right: 5%;
  animation: orb 7.5s ease-in-out infinite 2s;
}
@keyframes orb {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Badge pills */
.av-badge-pill {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(11, 17, 32, 0.95);
  border: 1px solid rgba(245, 158, 11, 0.3);
  backdrop-filter: blur(12px);
  padding: 0.5rem 0.9rem;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}
.av-badge-pill i {
  color: #f59e0b;
}
.ab1 {
  top: 18%;
  right: -1rem;
}
.ab2 {
  bottom: 18%;
  left: -1rem;
}

/* About content (right side) */
.about-content .section-tag {
  margin-bottom: 1rem;
}
.about-content .section-title {
  margin-bottom: 1.2rem;
}
.about-text {
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
.vm-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 1.2rem;
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  transition: var(--transition);
}
.vm-card:hover {
  border-color: rgba(99, 102, 241, 0.3);
}
.vm-icon {
  width: 38px;
  height: 38px;
  background: rgba(99, 102, 241, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}
.vm-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.vm-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}
.highlight {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.highlight i {
  color: var(--success);
  font-size: 0.85rem;
  flex-shrink: 0;
}
/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-grad);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  border-color: rgba(99, 102, 241, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
.service-card:hover::before {
  opacity: 1;
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  flex-shrink: 0;
}
/* Gradient helpers */
.g-purple {
  background: linear-gradient(135deg, #7c3aed, #6366f1);
}
.g-blue {
  background: linear-gradient(135deg, #3b82f6, #0ea5e9);
}
.g-pink {
  background: linear-gradient(135deg, #ec4899, #f43f5e);
}
.g-orange {
  background: linear-gradient(135deg, #f97316, #eab308);
}
.g-cyan {
  background: linear-gradient(135deg, #06b6d4, #0ea5e9);
}
.g-green {
  background: linear-gradient(135deg, #10b981, #22c55e);
}
.g-indigo {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
}
.g-yellow {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}
.service-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  flex: 1;
  line-height: 1.6;
}
.service-link {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap var(--transition);
}
.service-link:hover {
  gap: 0.6rem;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us {
  background: var(--bg2);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(99, 102, 241, 0.3);
}
.why-icon {
  width: 56px;
  height: 56px;
  background: rgba(99, 102, 241, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent);
  margin-inline: auto;
  margin-bottom: 1.2rem;
  transition: var(--transition);
}
.why-card:hover .why-icon {
  background: rgba(99, 102, 241, 0.25);
  transform: scale(1.1);
}
.why-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.why-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.5rem 1.2rem;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 99px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.portfolio-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.portfolio-card.hidden {
  display: none;
}
.portfolio-thumb {
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}
.pf-link {
  width: 46px;
  height: 46px;
  background: #fff;
  color: #0b1120;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.pf-link:hover {
  transform: scale(1.1);
}
.pf-icon {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.2);
}
.portfolio-body {
  padding: 1.3rem 1.4rem;
}
.pf-cat {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.4rem;
}
.portfolio-body h3 {
  font-size: 0.97rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.portfolio-body p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  background: var(--bg2);
}
.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem 2rem;
  padding-top: 2rem;
  counter-reset: step;
}
.process-line {
  display: none; /* hidden; steps show numbers instead */
}
.process-step {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  position: relative;
  transition: var(--transition);
}
.process-step:hover {
  border-color: rgba(99, 102, 241, 0.35);
  transform: translateY(-4px);
}
.ps-num {
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1rem;
  background: rgba(99, 102, 241, 0.1);
  display: inline-block;
  padding: 0.25rem 0.7rem;
  border-radius: 99px;
}
.ps-icon {
  width: 50px;
  height: 50px;
  background: var(--accent-grad);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 1rem;
}
.ps-body h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.ps-body p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-wrap {
  position: relative;
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-slide {
  min-width: 100%;
  padding: 0.5rem;
}
.testi-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 700px;
  margin-inline: auto;
  position: relative;
}
.testi-card::before {
  content: "\201C";
  position: absolute;
  top: 1rem;
  left: 2rem;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: rgba(99, 102, 241, 0.15);
  line-height: 1;
}
.testi-stars {
  color: #f59e0b;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.2rem;
}
.testi-card > p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.8rem;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  flex-shrink: 0;
}
.testi-info h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.testi-info span {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 2rem;
}
.testi-btn {
  width: 44px;
  height: 44px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 50%;
  color: var(--text);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.testi-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.testi-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--card-border);
  transition: var(--transition);
}
.testi-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.1),
    rgba(6, 182, 212, 0.08)
  );
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-card {
  padding: 2rem 1rem;
  transition: var(--transition);
}
.stat-card:hover {
  transform: translateY(-4px);
}
.sc-icon {
  font-size: 1.8rem;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.8rem;
}
.sc-num-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.1rem;
}
.counter-number {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sc-suffix {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}
.sc-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  background: var(--bg2);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.pricing-card {
  grid-column: span 2;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  position: relative;
  transition: var(--transition);
}
.pricing-card:nth-child(4) {
  grid-column: 2 / 4;
}
.pricing-card:nth-child(5) {
  grid-column: 4 / 6;
}
.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(99, 102, 241, 0.3);
}
.pricing-card.featured {
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.12),
    rgba(6, 182, 212, 0.08)
  );
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 8px 40px rgba(99, 102, 241, 0.2);
}
.pc-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-grad);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 99px;
  white-space: nowrap;
}
.pc-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.pc-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-grad);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  margin-inline: auto;
  margin-bottom: 1rem;
}
.pc-header h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}
.pc-header p {
  font-size: 0.83rem;
  color: var(--text-muted);
}
.pc-target-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  margin-bottom: 0.75rem;
}
.pc-badge-growth {
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.25);
}
.pc-badge-enterprise {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.25);
}
.pc-price {
  text-align: center;
  margin-bottom: 1.5rem;
}
.pc-currency {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  vertical-align: top;
  margin-top: 0.5rem;
  display: inline-block;
}
.pc-amount {
  font-family: "Poppins", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
}
.pc-period {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.pc-contact {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pc-features {
  margin-bottom: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.pc-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
}
.pc-features li.on {
  color: var(--text);
}
.pc-features li.off {
  color: var(--text-faint);
}
.pc-features li.on i {
  color: var(--success);
}
.pc-features li.off i {
  color: var(--text-faint);
}
.pricing-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.pricing-note i {
  color: var(--accent);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--bg);
}
.faq-inner {
  max-width: 780px;
  margin-inline: auto;
}
.faq-header {
  margin-bottom: 2.5rem;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open {
  border-color: rgba(99, 102, 241, 0.35);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color var(--transition);
}
.faq-q:hover {
  color: var(--accent);
}
.faq-ico {
  width: 28px;
  height: 28px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-ico {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
}
.faq-a.open {
  max-height: 300px;
  padding: 0 1.5rem 1.3rem;
}
.faq-a p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, #0f107a 0%, #0a2a4a 50%, #061b36 100%);
  position: relative;
  overflow: hidden;
  padding-block: 100px;
  text-align: center;
}
.cta-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.3), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
}
.cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  padding: 0.35rem 1rem;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.cta-section h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.2rem;
  line-height: 1.2;
}
.cta-section p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}
.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--bg2);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ci-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.3rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: var(--transition);
}
.ci-card:hover {
  border-color: rgba(99, 102, 241, 0.3);
  transform: translateX(3px);
}
.ci-icon {
  width: 40px;
  height: 40px;
  background: rgba(99, 102, 241, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.ci-card h4 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.ci-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.map-placeholder {
  height: 160px;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.08),
    rgba(6, 182, 212, 0.06)
  );
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.map-placeholder:hover {
  border-color: rgba(99, 102, 241, 0.35);
}
.map-inner {
  text-align: center;
  color: var(--text-muted);
}
.map-inner i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
  display: block;
}
.map-inner span {
  font-size: 0.85rem;
}
.contact-form-wrap {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.2rem;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}
.req {
  color: var(--accent);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
  color: var(--text);
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-group select {
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-faint);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  background: rgba(99, 102, 241, 0.06);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-group select option {
  background: #0b1120;
  color: var(--text);
}
.form-success[hidden],
.form-error[hidden] {
  display: none;
}
.form-success {
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.4);
  border-radius: var(--radius-sm);
  color: #22c55e;
  font-size: 0.92rem;
  font-weight: 600;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  animation: fadeInUp 0.4s ease;
}
.form-success i {
  margin-top: 0.15rem;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.form-error {
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.35);
  border-radius: var(--radius-sm);
  color: #f87171;
  font-size: 0.92rem;
  font-weight: 600;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  animation: fadeInUp 0.4s ease;
}
.form-error i {
  margin-top: 0.15rem;
  font-size: 1.1rem;
  flex-shrink: 0;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #030810;
  border-top: 1px solid var(--card-border);
  padding-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--card-border);
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.social-links {
  display: flex;
  gap: 0.6rem;
}
.social-links a {
  width: 38px;
  height: 38px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-3px);
}
.footer-col h5 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--text);
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col ul li a {
  font-size: 0.87rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col ul li a:hover {
  color: var(--accent);
}
.footer-contact-list li {
  display: flex;
  gap: 0.7rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  align-items: flex-start;
  line-height: 1.5;
}
.footer-contact-list li i {
  color: var(--accent);
  margin-top: 0.15rem;
  flex-shrink: 0;
  width: 14px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 1.5rem;
  font-size: 0.83rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 0.8rem;
}
.footer-links {
  display: flex;
  gap: 1.2rem;
}
.footer-links a {
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--accent);
}

/* ============================================================
   CLIENT LOGOS SLIDER
   ============================================================ */
.clients-section {
  background: var(--bg2);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding-block: 4rem 5rem;
  overflow: hidden;
}
.clients-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.clients-title-wrap {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.clients-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--card-border);
}
.clients-title-text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-faint);
  text-transform: uppercase;
}
.clients-inner {
  /* fade edges */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
  overflow: hidden;
}
.clients-track {
  display: flex;
  align-items: center;
  gap: 5rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.clients-track:hover {
  animation-play-state: paused;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  color: var(--text-faint);
  transition:
    color 0.3s ease,
    transform 0.3s ease;
  flex-shrink: 0;
  user-select: none;
  padding: 0 2rem;
}
.client-logo img {
  height: 100px;
  width: 200px;
  object-fit: contain;
  transition:
    filter 0.3s ease,
    transform 0.3s ease;
}
.client-logo:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.1);
}

/* ============================================================
   PORTFOLIO LIGHTBOX
   ============================================================ */
.pf-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pf-lightbox[hidden] {
  display: none;
}
.pf-lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 16, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.pf-lightbox.open .pf-lb-backdrop {
  opacity: 1;
}
.pf-lb-wrap {
  position: relative;
  z-index: 1;
  width: min(92vw, 760px);
  transform: translateY(30px) scale(0.95);
  opacity: 0;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease;
}
.pf-lightbox.open .pf-lb-wrap {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.pf-lb-content {
  background: var(--bg2);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}
.pf-lb-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  width: 38px;
  height: 38px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #fff;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(6px);
}
.pf-lb-close:hover {
  background: rgba(239, 68, 68, 0.7);
  border-color: transparent;
}
.pf-lb-thumb {
  height: 300px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  background-color: var(--bg3);
  background-size: cover;
  background-position: center top;
}
.pf-lb-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 8, 16, 0.45) 0%, transparent 60%);
  pointer-events: none;
}
.pf-lb-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.18);
}
.pf-lb-body {
  padding: 2rem 2.2rem 2.2rem;
}
.pf-lb-cat {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.pf-lb-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
  line-height: 1.3;
}
.pf-lb-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.pf-lb-cta {
  display: inline-flex;
}

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ── Tablet ── */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-block: 2rem 2rem;
  }
  .hero-left {
    text-align: center;
    align-items: center;
  }
  .hero-subtitle {
    max-width: 100%;
  }
  .hero-right {
    display: none;
  } /* hide visual on tablet */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-track {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-vis-wrap {
    height: 420px;
    max-width: 480px;
    margin-inline: auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* ── Mobile ── */
@media (max-width: 768px) {
  :root {
    --nav-h: 70px;
  }
  .section {
    padding-block: 70px;
  }

  /* Navbar */
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(85vw, 320px);
    height: 100dvh;
    background: #0b1120;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    padding: 2rem 1.5rem;
    border-left: 1px solid var(--card-border);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
  }
  .nav-menu.open {
    transform: translateX(0);
  }
  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }
  .nav-link {
    display: block;
    padding: 0.8rem 1rem;
    font-size: 1rem;
  }
  .nav-cta {
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
    margin-left: 0;
  }
  .hamburger {
    display: flex;
  }

  /* Portfolio */
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-filters {
    gap: 0.5rem;
  }
  .filter-btn {
    font-size: 0.82rem;
    padding: 0.45rem 0.9rem;
  }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-card {
    grid-column: span 1 !important;
  }
  .pricing-card.featured {
    order: -1;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-wrap {
    padding: 1.5rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Process */
  .process-track {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Why */
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* About */
  .about-vis-wrap {
    height: 360px;
  }
  .aoc-3,
  .aoc-6 {
    display: none;
  } /* fewer orbit cards on small screens */

  /* VM grid */
  .vm-grid {
    grid-template-columns: 1fr;
  }

  /* About highlights */
  .about-highlights {
    grid-template-columns: 1fr;
  }

  /* About badge pills */
  .av-badge-pill.ab1 {
    right: 0;
  }
  .av-badge-pill.ab2 {
    left: 0;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    gap: 0;
  }
  .stat-item {
    padding-inline: 1rem;
  }
  .stat-number {
    font-size: 1.5rem;
  }
  .hero-tech {
    justify-content: center;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta-btns {
    flex-direction: column;
    align-items: center;
  }
}
