/* =============================================
         DARK THEME (DEFAULT)
         ============================================= */
:root {
  --bg-primary: #06060e;
  --bg-secondary: #0b0b16;
  --bg-card: rgba(12, 12, 24, 0.7);
  --bg-card-hover: rgba(18, 18, 36, 0.88);
  --bg-glass: rgba(10, 10, 20, 0.65);
  --bg-menu: #06060e;
  --bg-dash: rgba(14, 14, 28, 0.85);
  --bg-dash-sidebar: rgba(8, 8, 18, 0.6);
  --bg-dash-stat: rgba(20, 20, 40, 0.6);
  --bg-dash-topbar: rgba(10, 10, 22, 0.8);
  --dash-text: #c8c8da;
  --dash-text-dim: #5a5a72;
  --dash-border: rgba(255, 255, 255, 0.06);
  --accent: #00e5a0;
  --accent-dim: rgba(0, 229, 160, 0.12);
  --accent-glow: rgba(0, 229, 160, 0.4);
  --accent-secondary: #00c9db;
  --accent-purple: #a78bfa;
  --text-primary: #eaeaf2;
  --text-secondary: #a0a0b8;
  --text-muted: #6a6a82;
  --border: rgba(255, 255, 255, 0.06);
  --border-accent: rgba(0, 229, 160, 0.2);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-card-hover:
    0 12px 48px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 229, 160, 0.1);
  --shadow-glow: 0 0 40px rgba(0, 229, 160, 0.12);
  --orb-1: rgba(0, 229, 160, 0.12);
  --orb-2: rgba(0, 201, 219, 0.1);
  --grid-line: rgba(255, 255, 255, 0.015);
  --particle-r: 0;
  --particle-g: 229;
  --particle-b: 160;
  --font-heading: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* =============================================
         LIGHT THEME (AUTO SYSTEM)
         ============================================= */
@media (prefers-color-scheme: light) {
  :root {
    --bg-primary: #ffffff;
    --bg-secondary: #f5f6f8;
    --bg-card: rgba(255, 255, 255, 0.85);
    --bg-card-hover: rgba(255, 255, 255, 0.98);
    --bg-glass: rgba(255, 255, 255, 0.82);
    --bg-menu: #ffffff;
    --bg-dash: rgba(255, 255, 255, 0.9);
    --bg-dash-sidebar: rgba(245, 246, 248, 0.8);
    --bg-dash-stat: rgba(245, 246, 248, 0.7);
    --bg-dash-topbar: rgba(248, 249, 250, 0.9);
    --dash-text: #3a3a50;
    --dash-text-dim: #9a9ab0;
    --dash-border: rgba(0, 0, 0, 0.07);
    --accent: #00a876;
    --accent-dim: rgba(0, 168, 118, 0.08);
    --accent-glow: rgba(0, 168, 118, 0.3);
    --accent-secondary: #0097a7;
    --accent-purple: #7c5cbf;
    --text-primary: #0a0a14;
    --text-secondary: #4a4a5e;
    --text-muted: #8a8a9e;
    --border: rgba(0, 0, 0, 0.07);
    --border-accent: rgba(0, 168, 118, 0.2);
    --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.06);
    --shadow-card-hover:
      0 8px 32px rgba(0, 0, 0, 0.1), 0 0 30px rgba(0, 168, 118, 0.08);
    --shadow-glow: 0 0 30px rgba(0, 168, 118, 0.08);
    --orb-1: rgba(0, 168, 118, 0.07);
    --orb-2: rgba(0, 151, 167, 0.05);
    --grid-line: rgba(0, 0, 0, 0.025);
    --particle-r: 0;
    --particle-g: 148;
    --particle-b: 106;
  }
}

/* =============================================
         RESET
         ============================================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

::-webkit-scrollbar {
  width: 7px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: rgba(0, 229, 160, 0.2);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 229, 160, 0.4);
}

::selection {
  background: var(--accent-dim);
  color: var(--accent);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}
img {
  max-width: 100%;
  display: block;
}
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    var(--accent-secondary) 50%,
    var(--accent-purple) 100%
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradShift 6s ease infinite;
}

@keyframes gradShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* =============================================
         PARTICLE CANVAS
         ============================================= */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}

/* =============================================
         NAVBAR
         ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  padding: 10px 0;
  background: var(--bg-glass);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo .logo {
  height: 70px;
  width: auto;
  transition: var(--transition-fast);
}
.nav-logo:hover .logo {
  filter: drop-shadow(0 0 8px var(--accent-glow));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  position: relative;
  padding: 8px 18px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-primary);
  background: rgba(128, 128, 128, 0.06);
}
.nav-link.active {
  color: var(--accent);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--accent-glow);
}

/* =============================================
         HAMBURGER
         ============================================= */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  position: relative;
  z-index: 3001;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.hamburger:hover {
  border-color: var(--border-accent);
  background: var(--accent-dim);
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.hamburger span:nth-child(1) {
  top: 14px;
}
.hamburger span:nth-child(2) {
  top: 21px;
}
.hamburger span:nth-child(3) {
  top: 28px;
}

.hamburger.active span:nth-child(1) {
  top: 21px;
  transform: translateX(-50%) rotate(45deg);
  background: var(--accent);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-50%) scaleX(0);
}
.hamburger.active span:nth-child(3) {
  top: 21px;
  transform: translateX(-50%) rotate(-45deg);
  background: var(--accent);
}

/* =============================================
         MOBILE MENU
         ============================================= */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: var(--bg-menu);
  clip-path: circle(0% at calc(100% - 46px) 28px);
  transition: clip-path 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  pointer-events: none;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-menu.open {
  clip-path: circle(150% at calc(100% - 46px) 28px);
  pointer-events: auto;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.mobile-menu-header .logo {
  height: 70px;
}

.menu-close-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-sm);
  color: var(--accent);
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.menu-close-btn:hover {
  background: var(--accent);
  color: var(--bg-primary);
  transform: rotate(90deg);
}

.mobile-menu-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 28px;
}

.mobile-nav-link {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 20px 0;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border);
  transform: translateY(40px);
  opacity: 0;
  transition:
    transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    color 0.2s ease,
    padding-left 0.3s ease;
}

.mobile-menu.open .mobile-nav-link {
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu.open .mobile-nav-link:nth-child(1) {
  transition-delay: 0.15s;
}
.mobile-menu.open .mobile-nav-link:nth-child(2) {
  transition-delay: 0.21s;
}
.mobile-menu.open .mobile-nav-link:nth-child(3) {
  transition-delay: 0.27s;
}
.mobile-menu.open .mobile-nav-link:nth-child(4) {
  transition-delay: 0.33s;
}
.mobile-menu.open .mobile-nav-link:nth-child(5) {
  transition-delay: 0.39s;
}

.mobile-nav-link:hover {
  color: var(--accent);
  padding-left: 8px;
}

.mobile-nav-link .link-num {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  font-family: var(--font-body);
  letter-spacing: 0.04em;
  min-width: 22px;
}

.mobile-menu-bottom {
  padding: 24px 28px 36px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease 0.42s,
    transform 0.5s ease 0.42s;
}

.mobile-menu.open .mobile-menu-bottom {
  opacity: 1;
  transform: translateY(0);
}

.mobile-social {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.mobile-social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-sm);
  color: var(--accent);
  font-size: 16px;
  transition: var(--transition-smooth);
}

.mobile-social a:hover {
  background: var(--accent);
  color: var(--bg-primary);
  transform: translateY(-3px);
  box-shadow: 0 4px 16px var(--accent-glow);
}

.mobile-contact-line {
  font-size: 14px;
  color: var(--text-muted);
}
.mobile-contact-line a {
  color: var(--accent);
  font-weight: 600;
}

/* =============================================
         HERO — SPLIT LAYOUT
         ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 1;
  padding: 110px 0 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg::before {
  content: "";
  position: absolute;
  top: -15%;
  left: 20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--orb-1) 0%, transparent 65%);
  border-radius: 50%;
  animation: hOrb1 20s ease-in-out infinite;
}

.hero-bg::after {
  content: "";
  position: absolute;
  bottom: -10%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--orb-2) 0%, transparent 65%);
  border-radius: 50%;
  animation: hOrb2 24s ease-in-out infinite;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(
    ellipse 80% 60% at 50% 50%,
    black 10%,
    transparent 100%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 80% 60% at 50% 50%,
    black 10%,
    transparent 100%
  );
}

.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-grid-layout {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* Left — Text */
.hero-text {
  flex: 1;
  min-width: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px 7px 10px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-glow);
  animation: pulse 2s ease-in-out infinite;
}

.badge-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroIn 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
}

.hero-description {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroIn 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.7s forwards;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroIn 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: var(--accent);
  color: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 40%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 60%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-primary:hover::before {
  transform: translateX(100%);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-primary i {
  font-size: 12px;
  transition: transform var(--transition-fast);
}
.btn-primary:hover i {
  transform: translateX(3px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  border-color: var(--border-accent);
  background: var(--accent-dim);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}
.btn-secondary i {
  font-size: 11px;
  transition: var(--transition-fast);
}
.btn-secondary:hover i {
  transform: scale(1.2);
}

/* Hero Stats inline */
.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroIn 0.8s ease 1.1s forwards;
}

.stat-item {
  display: flex;
  align-items: baseline;
  gap: 5px;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* =============================================
         HERO RIGHT — DASHBOARD VISUAL
         ============================================= */
.hero-visual {
  flex: 1;
  min-width: 0;
  position: relative;
  opacity: 0;
  transform: translateX(60px);
  animation: heroInRight 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s forwards;
}

.visual-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, var(--orb-1) 0%, transparent 65%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
  animation: glowPulse 5s ease-in-out infinite;
}

@keyframes glowPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }
}

/* Dashboard Card */
.dashboard {
  position: relative;
  z-index: 1;
  background: var(--bg-dash);
  border: 1px solid var(--dash-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 80px rgba(0, 229, 160, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.dash-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--bg-dash-topbar);
  border-bottom: 1px solid var(--dash-border);
}

.topbar-dots {
  display: flex;
  gap: 6px;
}

.topbar-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.topbar-dots span:nth-child(1) {
  background: #ff5f57;
}
.topbar-dots span:nth-child(2) {
  background: #febc2e;
}
.topbar-dots span:nth-child(3) {
  background: #28c840;
}

.topbar-url {
  font-size: 11px;
  color: var(--dash-text-dim);
  background: rgba(128, 128, 128, 0.08);
  padding: 4px 14px;
  border-radius: 100px;
  font-family: "Inter", monospace;
  letter-spacing: 0.02em;
}

.topbar-actions {
  display: flex;
  gap: 8px;
}

.topbar-actions span {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background: rgba(128, 128, 128, 0.12);
}

.dash-body {
  display: flex;
  min-height: 280px;
}

.dash-sidebar {
  width: 52px;
  border-right: 1px solid var(--dash-border);
  background: var(--bg-dash-sidebar);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 0;
  gap: 6px;
  flex-shrink: 0;
}

.sidebar-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--dash-text-dim);
  transition: var(--transition-fast);
  cursor: default;
}

.sidebar-icon.active {
  background: var(--accent-dim);
  color: var(--accent);
}

.sidebar-spacer {
  flex: 1;
}

.dash-main {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dash-header-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dash-line {
  height: 8px;
  border-radius: 4px;
  background: rgba(128, 128, 128, 0.1);
}

.dash-line.l1 {
  width: 120px;
  background: var(--dash-text);
  opacity: 0.7;
}
.dash-line.l2 {
  width: 80px;
  background: var(--dash-text);
  opacity: 0.35;
}

.dash-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  flex-shrink: 0;
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.dash-stat {
  background: var(--bg-dash-stat);
  border: 1px solid var(--dash-border);
  border-radius: var(--radius-sm);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dash-stat-val {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--dash-text);
  line-height: 1.2;
}

.dash-stat-lbl {
  font-size: 10px;
  color: var(--dash-text-dim);
  letter-spacing: 0.02em;
}

.dash-stat-bar {
  height: 3px;
  background: rgba(128, 128, 128, 0.1);
  border-radius: 2px;
  margin-top: 4px;
  overflow: hidden;
}

.dash-stat-fill {
  height: 100%;
  border-radius: 2px;
  background: var(--accent);
  animation: barGrow 2s ease 1.2s forwards;
  transform-origin: left;
  transform: scaleX(0);
}

.dash-stat-fill.c2 {
  background: var(--accent-secondary);
}
.dash-stat-fill.c3 {
  background: var(--accent-purple);
}

@keyframes barGrow {
  to {
    transform: scaleX(1);
  }
}

.dash-chart {
  flex: 1;
  background: var(--bg-dash-stat);
  border: 1px solid var(--dash-border);
  border-radius: var(--radius-sm);
  padding: 12px;
  display: flex;
  align-items: flex-end;
  gap: 5px;
  min-height: 90px;
}

.chart-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: var(--accent-dim);
  position: relative;
  transition: var(--transition-fast);
  animation: barHeight 1.5s ease 1.4s forwards;
  transform-origin: bottom;
  transform: scaleY(0);
  min-height: 4px;
}

.chart-bar:hover {
  background: var(--accent);
}
.chart-bar:nth-child(odd) {
  animation-delay: 1.5s;
}

@keyframes barHeight {
  to {
    transform: scaleY(1);
  }
}

/* Floating badges */
.float-badge {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--bg-dash);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-md);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
}

.float-badge i {
  color: var(--accent);
  font-size: 14px;
}

.float-badge.b1 {
  top: -12px;
  right: -10px;
  animation: badgeIn 0.6s ease 1.4s forwards;
}

.float-badge.b2 {
  bottom: 40px;
  left: -20px;
  animation: badgeIn 0.6s ease 1.6s forwards;
}

.float-badge.b3 {
  bottom: -8px;
  right: 30px;
  animation: badgeIn 0.6s ease 1.8s forwards;
}

@keyframes badgeIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.float-badge.b1 {
  animation: badgeFloat1 4s ease-in-out 2s infinite;
}
.float-badge.b2 {
  animation: badgeFloat2 5s ease-in-out 2.2s infinite;
}
.float-badge.b3 {
  animation: badgeFloat3 4.5s ease-in-out 2.4s infinite;
}

@keyframes badgeFloat1 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes badgeFloat2 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

@keyframes badgeFloat3 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* =============================================
         HERO KEYFRAMES
         ============================================= */
@keyframes heroIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes hOrb1 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(40px, -25px) scale(1.05);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}

@keyframes hOrb2 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(-30px, 20px) scale(1.08);
  }
  66% {
    transform: translate(25px, -35px) scale(0.92);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 10px var(--accent-glow);
  }
  50% {
    opacity: 0.4;
    box-shadow: 0 0 4px var(--accent-glow);
  }
}

/* =============================================
         SECTION COMMONS
         ============================================= */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.section-description {
  font-size: 16.5px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* =============================================
         SERVICES
         ============================================= */
.services-preview {
  position: relative;
  z-index: 1;
  padding: 120px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  padding: 34px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition-smooth);
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-glow),
    transparent
  );
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.service-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at var(--mx, 50%) var(--my, 50%),
    rgba(0, 229, 160, 0.04) 0%,
    transparent 50%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.service-card:hover::before {
  opacity: 1;
}
.service-card:hover::after {
  opacity: 1;
}
.service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.service-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  font-size: 19px;
  color: var(--accent);
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  background: var(--accent);
  color: var(--bg-primary);
  border-color: var(--accent);
  box-shadow: 0 4px 20px var(--accent-glow);
  transform: scale(1.06);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 18px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.service-link i {
  font-size: 11px;
  transition: transform var(--transition-fast);
}
.service-card:hover .service-link {
  color: var(--accent);
}
.service-card:hover .service-link i {
  transform: translateX(4px);
}

/* =============================================
         WHY CHOOSE
         ============================================= */
.why-choose {
  position: relative;
  z-index: 1;
  padding: 120px 0;
}

.why-choose::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--border-accent),
    transparent
  );
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  position: relative;
  padding: 34px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition-smooth);
  opacity: 0;
  transform: translateY(40px);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  font-size: 22px;
  color: var(--accent);
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
  background: var(--accent);
  color: var(--bg-primary);
  border-color: var(--accent);
  box-shadow: 0 6px 24px var(--accent-glow);
  transform: scale(1.08) rotate(-3deg);
}
.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* =============================================
         CTA
         ============================================= */
.cta-section {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

.cta-content {
  position: relative;
  padding: 68px 56px;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl);
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cta-content.visible {
  opacity: 1;
  transform: translateY(0);
}

.cta-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 30% 0%,
      rgba(0, 229, 160, 0.07) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 70% 100%,
      rgba(0, 201, 219, 0.05) 0%,
      transparent 60%
    );
  pointer-events: none;
}

.cta-content::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 20px var(--accent-glow);
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  position: relative;
}

.cta-content p {
  font-size: 16.5px;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.7;
  position: relative;
}

.cta-content .btn-primary {
  position: relative;
}

/* =============================================
         FOOTER
         ============================================= */
.footer {
  position: relative;
  z-index: 1;
  padding: 80px 0 0;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-section:first-child .footer-logo {
  height: px;
  filter: brightness(1.1);
  margin-bottom: 16px;
}
.footer-section:first-child p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-top: -30px;
  margin-bottom: 22px;
  max-width: 270px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-sm);
  color: var(--accent);
  font-size: 14px;
  transition: var(--transition-smooth);
}

.social-links a:hover {
  background: var(--accent);
  color: var(--bg-primary);
  transform: translateY(-3px);
  box-shadow: 0 4px 16px var(--accent-glow);
}

.footer-section h4 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.footer-section ul {
  list-style: none;
}
.footer-section ul li {
  margin-bottom: 11px;
}
.footer-section ul a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}
.footer-section ul a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}
.contact-info li i {
  width: 16px;
  text-align: center;
  color: var(--accent);
  font-size: 13px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}

/* =============================================
         RESPONSIVE
         ============================================= */
@media (max-width: 1024px) {
  .hero-grid-layout {
    gap: 40px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .hero-grid-layout {
    flex-direction: column;
    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }

  .float-badge.b2 {
    left: 0;
  }
  .float-badge.b1 {
    right: 0;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero {
    padding: 90px 0 50px;
    min-height: auto;
  }
  .hero-title {
    font-size: clamp(1.7rem, 6vw, 2.4rem);
  }

  .hero-visual {
    max-width: 100%;
  }
  .dash-body {
    min-height: 220px;
  }
  .dash-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
  .dash-stat {
    padding: 8px 6px;
  }
  .dash-stat-val {
    font-size: 13px;
  }
  .dash-stat-lbl {
    font-size: 9px;
  }
  .dash-sidebar {
    width: 40px;
  }
  .sidebar-icon {
    width: 26px;
    height: 26px;
    font-size: 10px;
  }
  .dash-main {
    padding: 12px;
    gap: 10px;
  }
  .dash-chart {
    min-height: 70px;
    padding: 10px;
  }

  .float-badge {
    padding: 8px 12px;
    font-size: 11px;
    gap: 6px;
  }
  .float-badge i {
    font-size: 12px;
  }
  .float-badge.b1 {
    top: -8px;
    right: -4px;
  }
  .float-badge.b2 {
    bottom: 30px;
    left: -6px;
  }
  .float-badge.b3 {
    bottom: -4px;
    right: 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .cta-content {
    padding: 44px 22px;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .mobile-nav-link {
    font-size: 26px;
    padding: 18px 0;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 80px 0 40px;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-primary,
  .btn-secondary {
    justify-content: center;
    width: 100%;
  }
  .hero-stats {
    flex-direction: column;
    gap: 14px;
    align-items: center;
  }
  .stat-number {
    font-size: 26px;
  }

  .dash-topbar {
    padding: 10px 12px;
  }
  .topbar-url {
    font-size: 10px;
    padding: 3px 10px;
  }
  .dash-body {
    min-height: 180px;
  }
  .dash-chart {
    min-height: 55px;
  }
  .dash-stat-val {
    font-size: 12px;
  }

  .float-badge.b2 {
    display: none;
  }
  .float-badge.b3 {
    display: none;
  }

  .mobile-nav-link {
    font-size: 22px;
    gap: 14px;
  }
  .mobile-menu-nav {
    padding: 0 20px;
  }
  .mobile-menu-bottom {
    padding: 20px 20px 30px;
  }
}

@media (max-width: 360px) {
  .container {
    padding: 0 16px;
  }
  .hero-visual {
    transform: scale(0.9);
    margin: 0 auto;
  }
  .float-badge.b1 {
    display: none;
  }
}

/* =============================================
         REDUCED MOTION
         ============================================= */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-text > *,
  .hero-visual,
  .float-badge,
  .service-card,
  .feature-card,
  .cta-content {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
         NEW SECTIONS STYLES — TRUST BAR, PROCESS, PORTFOLIO,
         TESTIMONIALS, TECH STACK
         ============================================================ */

/* ---- TRUST BAR ---- */
.trust-bar {
  position: relative;
  z-index: 1;
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.trust-bar-label {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.trust-bar-label span {
  color: var(--accent);
}

.marquee-wrapper {
  position: relative;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
}

.marquee-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  white-space: nowrap;
  padding: 14px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
  cursor: default;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.trust-item:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.trust-item i {
  font-size: 22px;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.trust-item:hover i {
  color: var(--accent);
}

.trust-item-text {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: -0.01em;
}

.trust-item:hover .trust-item-text {
  color: var(--text-primary);
}

/* ---- HOW WE WORK / PROCESS ---- */
.process-section {
  position: relative;
  z-index: 1;
  padding: 120px 0;
}

.process-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--border-accent),
    transparent
  );
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 52px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--border-accent) 20%,
    var(--accent) 50%,
    var(--border-accent) 80%,
    transparent
  );
  z-index: 0;
}

.process-card {
  position: relative;
  z-index: 1;
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
}

.process-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.process-step-num {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  background: var(--bg-primary);
  border: 2px solid var(--accent);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--accent);
  box-shadow:
    0 0 24px var(--accent-dim),
    inset 0 0 12px var(--accent-dim);
  transition: var(--transition-smooth);
  position: relative;
}

.process-card:hover .process-step-num {
  background: var(--accent);
  color: var(--bg-primary);
  box-shadow: 0 0 36px var(--accent-glow);
  transform: scale(1.1);
}

.process-step-num::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--border-accent);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.process-card:hover .process-step-num::after {
  opacity: 1;
}

.process-card h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.process-card p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 220px;
  margin: 0 auto;
}

/* ---- PORTFOLIO SHOWCASE ---- */
.portfolio-section {
  position: relative;
  z-index: 1;
  padding: 120px 0;
}

.portfolio-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--border-accent),
    transparent
  );
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: var(--transition-smooth);
  opacity: 0;
  transform: translateY(40px);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.portfolio-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
}

.portfolio-thumb {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--bg-secondary);
}

.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-card:hover .portfolio-thumb img {
  transform: scale(1.08);
}

.portfolio-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(6, 6, 14, 0.85) 100%
  );
  pointer-events: none;
}

.portfolio-tags {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.portfolio-tag {
  padding: 4px 10px;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 229, 160, 0.2);
  border-radius: 100px;
}

.portfolio-info {
  padding: 22px 24px 26px;
}

.portfolio-info h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  transition: color var(--transition-fast);
}

.portfolio-card:hover .portfolio-info h3 {
  color: var(--accent);
}

.portfolio-info p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.portfolio-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.portfolio-link i {
  font-size: 11px;
  transition: transform var(--transition-fast);
}

.portfolio-card:hover .portfolio-link {
  color: var(--accent);
}

.portfolio-card:hover .portfolio-link i {
  transform: translateX(4px);
}

/* ---- TESTIMONIALS ---- */
.testimonials-section {
  position: relative;
  z-index: 1;
  padding: 120px 0;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--border-accent),
    transparent
  );
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  position: relative;
  padding: 32px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition-smooth);
  opacity: 0;
  transform: translateY(40px);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.testimonial-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}

.testimonial-stars i {
  font-size: 14px;
  color: #fbbf24;
}

.testimonial-text {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-text::before {
  content: "\201C";
  font-size: 32px;
  font-family: Georgia, serif;
  color: var(--accent);
  line-height: 0;
  vertical-align: -8px;
  margin-right: 4px;
  font-style: normal;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: var(--bg-primary);
  flex-shrink: 0;
}

.testimonial-author-info h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}

.testimonial-author-info span {
  font-size: 12.5px;
  color: var(--text-muted);
}

/* ---- TECH STACK ---- */
.tech-stack-section {
  position: relative;
  z-index: 1;
  padding: 120px 0;
}

.tech-stack-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--border-accent),
    transparent
  );
}

.tech-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.tech-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: default;
}

.tech-item.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.tech-item:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
  transform: translateY(-4px) scale(1.03);
  box-shadow: var(--shadow-glow);
}

.tech-item i {
  font-size: 20px;
  color: var(--text-muted);
  transition: color var(--transition-fast);
  width: 24px;
  text-align: center;
}

.tech-item:hover i {
  color: var(--accent);
}

.tech-item span {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.tech-item:hover span {
  color: var(--text-primary);
}

/* ---- RESULTS / IMPACT NUMBERS ---- */
.impact-section {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

.impact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--border-accent),
    transparent
  );
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.impact-card {
  position: relative;
  padding: 36px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition-smooth);
  opacity: 0;
  transform: translateY(40px);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
}

.impact-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.impact-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.impact-card:hover::before {
  opacity: 1;
}

.impact-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.impact-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-md);
  font-size: 20px;
  color: var(--accent);
  transition: var(--transition-smooth);
}

.impact-card:hover .impact-icon {
  background: var(--accent);
  color: var(--bg-primary);
  border-color: var(--accent);
  box-shadow: 0 4px 20px var(--accent-glow);
  transform: scale(1.08);
}

.impact-number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 6px;
}

.impact-number .impact-suffix {
  font-size: 22px;
  color: var(--accent);
}

.impact-label {
  font-size: 13.5px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ---- RESPONSIVE FOR NEW SECTIONS ---- */
@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
  .process-grid::before {
    display: none;
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .trust-bar {
    padding: 40px 0;
  }
  .process-section,
  .portfolio-section,
  .testimonials-section,
  .tech-stack-section,
  .impact-section {
    padding: 80px 0;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .impact-card {
    padding: 24px 16px;
  }
  .impact-number {
    font-size: 28px;
  }
  .tech-grid {
    gap: 10px;
  }
  .tech-item {
    padding: 10px 16px;
    gap: 8px;
  }
  .tech-item i {
    font-size: 16px;
    width: 20px;
  }
  .tech-item span {
    font-size: 12.5px;
  }
  .portfolio-thumb {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .impact-grid {
    grid-template-columns: 1fr;
  }
  .marquee-track {
    gap: 16px;
  }
  .trust-item {
    padding: 10px 18px;
    gap: 10px;
  }
  .trust-item i {
    font-size: 18px;
  }
  .trust-item-text {
    font-size: 13px;
  }
}

.lt {
  fill: #001e3c;
}
.ld {
  fill: url(#gA-mob);
}
.ls {
  fill: #001e3c;
}
.hf {
  fill: #001e3c;
  stroke: url(#gA-mob);
  stroke-width: 2.5;
}
.zp {
  stroke: url(#gA-mob);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.na,
.nb {
  fill: #00ffc3;
}
.nc {
  fill: #00bfff;
}
.tg {
  fill: #001e3c;
}
.ts {
  fill: #00bfff;
}
.qt {
  fill: #003366;
}
.ml {
  stroke: rgba(0, 191, 255, 0.15);
  stroke-width: 1.2;
  stroke-dasharray: 4, 4;
}
.db .lt {
  fill: #fff;
}
.db .ld {
  fill: #00ffc3;
}
.db .ls {
  fill: #fff;
}
.db .hf {
  fill: rgba(0, 30, 60, 0.6);
  stroke: #00ffc3;
  stroke-width: 3;
}
.db .zp {
  stroke: #00ffc3;
}
.db .na,
.db .nb {
  fill: #00ffc3;
  filter: url(#nG-mob);
}
.db .nc {
  fill: #00bfff;
  filter: url(#nG-mob);
}
.db .tg {
  fill: #fff;
}
.db .ts {
  fill: #00ffc3;
}
.db .qt {
  fill: rgba(255, 255, 255, 0.7);
}
.db .ml {
  stroke: rgba(0, 255, 195, 0.25);
}

.lt {
  fill: #001e3c;
}
.ld {
  fill: url(#gA-nav);
}
.ls {
  fill: #001e3c;
}
.hf {
  fill: #001e3c;
  stroke: url(#gA-nav);
  stroke-width: 2.5;
}
.zp {
  stroke: url(#gA-nav);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.na,
.nb {
  fill: #00ffc3;
}
.nc {
  fill: #00bfff;
}
.tg {
  fill: #001e3c;
}
.ts {
  fill: #00bfff;
}
.qt {
  fill: #003366;
}
.ml {
  stroke: rgba(0, 191, 255, 0.15);
  stroke-width: 1.2;
  stroke-dasharray: 4, 4;
}
.db .lt {
  fill: #fff;
}
.db .ld {
  fill: #00ffc3;
}
.db .ls {
  fill: #fff;
}
.db .hf {
  fill: rgba(0, 30, 60, 0.6);
  stroke: #00ffc3;
  stroke-width: 3;
}
.db .zp {
  stroke: #00ffc3;
}
.db .na,
.db .nb {
  fill: #00ffc3;
  filter: url(#nG-nav);
}
.db .nc {
  fill: #00bfff;
  filter: url(#nG-nav);
}
.db .tg {
  fill: #fff;
}
.db .ts {
  fill: #00ffc3;
}
.db .qt {
  fill: rgba(255, 255, 255, 0.7);
}
.db .ml {
  stroke: rgba(0, 255, 195, 0.25);
}

.lt {
  fill: #001e3c;
}
.ld {
  fill: url(#gA-ft);
}
.ls {
  fill: #001e3c;
}
.hf {
  fill: #001e3c;
  stroke: url(#gA-ft);
  stroke-width: 2.5;
}
.zp {
  stroke: url(#gA-ft);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.na,
.nb {
  fill: #00ffc3;
}
.nc {
  fill: #00bfff;
}
.tg {
  fill: #001e3c;
}
.ts {
  fill: #00bfff;
}
.qt {
  fill: #003366;
}
.ml {
  stroke: rgba(0, 191, 255, 0.15);
  stroke-width: 1.2;
  stroke-dasharray: 4, 4;
}
.db .lt {
  fill: #fff;
}
.db .ld {
  fill: #00ffc3;
}
.db .ls {
  fill: #fff;
}
.db .hf {
  fill: rgba(0, 30, 60, 0.6);
  stroke: #00ffc3;
  stroke-width: 3;
}
.db .zp {
  stroke: #00ffc3;
}
.db .na,
.db .nb {
  fill: #00ffc3;
  filter: url(#nG-ft);
}
.db .nc {
  fill: #00bfff;
  filter: url(#nG-ft);
}
.db .tg {
  fill: #fff;
}
.db .ts {
  fill: #00ffc3;
}
.db .qt {
  fill: rgba(255, 255, 255, 0.7);
}
.db .ml {
  stroke: rgba(0, 255, 195, 0.25);
}
