/* ═══ RESET & BASE ═══ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --indigo-500: #6366f1;
  --cyan-400: #22d3ee;
  --neutral-50: #fafafa;
  --neutral-300: #d4d4d4;
  --neutral-400: #a3a3a3;
  --neutral-500: #737373;
  --neutral-600: #525252;
  --neutral-900: #171717;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #000;
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ═══ NAV ═══ */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(0,0,0,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  transition: opacity 0.3s;
}
.nav-logo:hover { opacity: 0.8; }

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-title {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
}
.nav-logo-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--neutral-500);
}

.nav-links {
  display: none;
  gap: 2rem;
  font-size: 0.875rem;
  color: var(--neutral-400);
}
.nav-links a { transition: color 0.3s; }
.nav-links a:hover { color: #fff; }

.nav-cta {
  font-size: 0.875rem;
  background: var(--blue-500);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: background 0.3s;
}
.nav-cta:hover { background: var(--blue-400); }

@media (min-width: 768px) {
  .nav-links { display: flex; }
}

/* ═══ HERO ═══ */
/* Hide Spline watermark — bulletproof overlay method */
spline-viewer::part(logo) {
  display: none !important;
}

.spline-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.spline-wrapper spline-viewer {
  width: 100%;
  height: 100%;
  display: block;
}

/* Overlay that subtly covers the Spline watermark at bottom-right */
.spline-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 160px;
  height: 50px;
  background: radial-gradient(ellipse at 100% 100%, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 40%, transparent 70%);
  z-index: 10;
  pointer-events: none;
}

/* ═══ ANIMATED DOT GRID BACKGROUND ═══ */
.dot-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(59,130,246,0.15) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 20%, transparent 100%);
  opacity: 0.5;
}


/* ═══ AURORA GLOW ═══ */
.aurora {
  position: absolute;
  top: -40%;
  left: -20%;
  width: 140%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.3;
  filter: blur(80px);
  background:
    radial-gradient(ellipse 40% 60% at 30% 50%, rgba(59,130,246,0.3), transparent),
    radial-gradient(ellipse 30% 50% at 70% 30%, rgba(99,102,241,0.25), transparent),
    radial-gradient(ellipse 50% 40% at 50% 80%, rgba(34,211,238,0.15), transparent);
  animation: auroraShift 12s ease-in-out infinite alternate;
}

@keyframes auroraShift {
  0% {
    transform: translateX(-5%) translateY(0) scale(1);
  }
  50% {
    transform: translateX(5%) translateY(-3%) scale(1.05);
  }
  100% {
    transform: translateX(-3%) translateY(2%) scale(0.98);
  }
}

/* ═══ ANIMATED GRADIENT TEXT ═══ */
.text-shimmer {
  background: linear-gradient(
    90deg,
    var(--neutral-50) 0%,
    var(--blue-400) 25%,
    var(--neutral-50) 50%,
    var(--cyan-400) 75%,
    var(--neutral-50) 100%
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShimmer 6s ease-in-out infinite;
}

@keyframes textShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ═══ SHIMMER BUTTON ═══ */
.btn-shimmer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn-shimmer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 25%,
    rgba(255,255,255,0.3) 50%,
    transparent 75%
  );
  background-size: 250% 100%;
  animation: shimmerSlide 3s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes shimmerSlide {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ═══ ANIMATED BORDER GRADIENT ═══ */
.border-glow {
  position: relative;
}

.border-glow::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    var(--border-angle, 0deg),
    rgba(59,130,246,0.5),
    rgba(99,102,241,0.3),
    rgba(34,211,238,0.5),
    rgba(59,130,246,0.3)
  );
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  animation: borderRotate 4s linear infinite;
  z-index: -1;
}

@keyframes borderRotate {
  to { --border-angle: 360deg; }
}

@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

/* ═══ MARQUEE ═══ */
.marquee-section {
  padding: 3rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
  gap: 2rem;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 9999px;
  background: rgba(255,255,255,0.02);
  white-space: nowrap;
  font-size: 0.875rem;
  color: var(--neutral-400);
  font-family: 'JetBrains Mono', monospace;
  transition: border-color 0.3s, color 0.3s;
}

.marquee-item:hover {
  border-color: rgba(59,130,246,0.3);
  color: var(--neutral-300);
}

.marquee-item svg {
  width: 18px;
  height: 18px;
  opacity: 0.6;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-fade-left,
.marquee-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 10;
  pointer-events: none;
}
.marquee-fade-left {
  left: 0;
  background: linear-gradient(to right, #000, transparent);
}
.marquee-fade-right {
  right: 0;
  background: linear-gradient(to left, #000, transparent);
}

/* ═══ FLOATING PARTICLES ═══ */
.particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(96,165,250,0.5);
  border-radius: 50%;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
    transform: translateY(90vh) scale(1);
  }
  90% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(-10vh) scale(0.5);
    opacity: 0;
  }
}


.hero {
  padding-top: 4rem;
  position: relative;
  background: rgba(0,0,0,0.96);
  overflow: hidden;
  min-height: 100vh;
}

.spotlight {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  height: 169%;
  width: 138%;
  top: -10rem;
  left: 0;
  opacity: 0;
  animation: spotlightFade 2s ease forwards 0.5s;
}

@keyframes spotlightFade {
  to { opacity: 1; }
}

@media (min-width: 1024px) {
  .spotlight { width: 84%; left: 15rem; top: -5rem; }
}

.hero-flex {
  display: flex;
  min-height: 100vh;
}

.hero-content {
  flex: 1;
  padding: 2rem;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .hero-content { padding: 4rem; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--blue-400);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  background: rgba(59,130,246,0.1);
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  width: fit-content;
  border: 1px solid rgba(59,130,246,0.2);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--blue-400);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
}

.hero-title:not(.text-shimmer) {
  background: linear-gradient(to bottom, var(--neutral-50), var(--neutral-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  margin-top: 1.5rem;
  color: var(--neutral-400);
  max-width: 32rem;
  font-size: 1.125rem;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: #000;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}
.btn-primary:hover { background: #e5e5e5; }
.btn-primary.btn-full { width: 100%; justify-content: center; }

.btn-primary.btn-blue {
  background: var(--blue-500);
  color: #fff;
}
.btn-primary.btn-blue:hover {
  background: var(--blue-400);
  box-shadow: 0 0 40px rgba(59,130,246,0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: background 0.3s;
  font-size: 1rem;
}
.btn-outline:hover { background: rgba(255,255,255,0.05); }

.hero-3d {
  flex: 1;
  position: relative;
  display: none;
}

@media (min-width: 768px) {
  .hero-3d { display: block; }
}

/* ═══ SECTION LABELS ═══ */
.section-label {
  color: var(--blue-400);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--neutral-400);
  max-width: 36rem;
  margin-bottom: 4rem;
}

/* ═══ SERVICES ═══ */
.services {
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.bg-orb-1 {
  top: 5rem;
  left: 25%;
  width: 500px;
  height: 500px;
  background: rgba(59,130,246,0.03);
  filter: blur(120px);
}
.bg-orb-2 {
  bottom: 5rem;
  right: 25%;
  width: 400px;
  height: 400px;
  background: rgba(99,102,241,0.04);
  filter: blur(100px);
}
.bg-orb-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: rgba(59,130,246,0.05);
  filter: blur(120px);
}

.services-grid-top {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .services-grid-top { grid-template-columns: 1fr 1fr; }
}

.services-grid-bottom {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .services-grid-bottom { grid-template-columns: 1fr 1fr 1fr; }
}

/* ═══ GLOW CARD ═══ */
.glow-card {
  position: relative;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  overflow: hidden;
  transition: border-color 0.5s;
}
.glow-card:hover { border-color: rgba(255,255,255,0.15); }

.glow-overlay {
  position: absolute;
  inset: -1px;
  border-radius: 1rem;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.glow-border {
  position: absolute;
  inset: -1px;
  border-radius: 1rem;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
  padding: 1px;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
}

.glow-card:hover .glow-overlay,
.glow-card:hover .glow-border { opacity: 1; }

.glow-card-inner {
  position: relative;
  z-index: 10;
}
.glow-card-inner.p8 { padding: 2rem; }
.glow-card-inner.p6 { padding: 1.5rem; }
.glow-card-inner.flex-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.glow-card-inner.text-center { text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; }

.card-orb {
  position: absolute;
  top: -5rem;
  right: -5rem;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  filter: blur(48px);
  transition: transform 0.7s;
  pointer-events: none;
}
.glow-card:hover .card-orb { transform: scale(1.5); }
.card-orb-blue { background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(99,102,241,0.05)); }
.card-orb-cyan { background: linear-gradient(135deg, rgba(34,211,238,0.1), rgba(59,130,246,0.05)); }

.card-content { position: relative; }

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.5s;
}

.icon-blue {
  background: linear-gradient(135deg, rgba(59,130,246,0.2), rgba(59,130,246,0.05));
  border: 1px solid rgba(59,130,246,0.1);
  color: var(--blue-400);
}
.glow-card:hover .icon-blue { box-shadow: 0 0 20px rgba(59,130,246,0.2); }

.icon-cyan {
  background: linear-gradient(135deg, rgba(34,211,238,0.2), rgba(34,211,238,0.05));
  border: 1px solid rgba(34,211,238,0.1);
  color: var(--cyan-400);
  margin-bottom: 1.5rem;
}
.glow-card:hover .icon-cyan { box-shadow: 0 0 20px rgba(34,211,238,0.15); }

.card-badge {
  font-size: 10px;
  font-family: 'JetBrains Mono', monospace;
  color: rgba(96,165,250,0.6);
  letter-spacing: 0.2em;
  background: rgba(59,130,246,0.05);
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  border: 1px solid rgba(59,130,246,0.1);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.card-desc {
  color: var(--neutral-400);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.card-features {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--neutral-500);
}

.feature-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
}
.dot-blue { background: var(--blue-400); }

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.tag {
  font-size: 10px;
  padding: 0.125rem 0.5rem;
  border-radius: 0.375rem;
  background: rgba(255,255,255,0.03);
  color: var(--neutral-600);
  border: 1px solid rgba(255,255,255,0.06);
  font-family: 'JetBrains Mono', monospace;
  transition: color 0.3s, border-color 0.3s;
}
.glow-card:hover .tag {
  color: var(--neutral-400);
  border-color: rgba(255,255,255,0.1);
}

.price-inline {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.price-value {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(to bottom, #fff, var(--neutral-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-label { display: flex; flex-direction: column; }
.price-currency { color: var(--neutral-400); font-size: 1.125rem; }
.price-period { color: var(--neutral-600); font-size: 0.75rem; font-family: 'JetBrains Mono', monospace; }

.link-cyan {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--cyan-400);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s;
}
.link-cyan:hover { color: #67e8f9; }

/* Mini feature cards */
.mini-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-400);
  margin-bottom: 0.75rem;
  transition: transform 0.3s;
}
.glow-card:hover .mini-icon { transform: scale(1.1); }

.mini-title {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.mini-desc {
  color: var(--neutral-600);
  font-size: 0.75rem;
  line-height: 1.6;
}

/* ═══ PROJECTS ═══ */
.projects {
  background: #000;
}
.projects .container { padding-top: 6rem; }

.scroll-container {
  height: 60rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0.5rem;
}
@media (min-width: 768px) {
  .scroll-container { height: 80rem; padding: 5rem; }
}

.scroll-inner {
  padding: 2.5rem 0;
  width: 100%;
  position: relative;
  perspective: 1000px;
}
@media (min-width: 768px) {
  .scroll-inner { padding: 10rem 0; }
}

.scroll-header {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 1.5rem;
  transition: transform 0.1s linear;
}

.project-tag {
  display: inline-block;
  color: var(--blue-400);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  background: rgba(59,130,246,0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(59,130,246,0.2);
}

.project-title {
  font-size: clamp(1.875rem, 5vw, 3rem);
  font-weight: 700;
  margin-top: 1rem;
}

.project-desc {
  color: var(--neutral-400);
  margin-top: 0.5rem;
  font-size: 1.125rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  color: var(--blue-400);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s;
}
.project-link:hover { color: #93c5fd; }

.scroll-card {
  max-width: 64rem;
  margin: -3rem auto 0;
  width: 100%;
  border: 4px solid #6C6C6C;
  padding: 0.5rem;
  background: #222;
  border-radius: 30px;
  box-shadow: 0 0 #0000004d, 0 9px 20px #0000004a, 0 37px 37px #00000042, 0 84px 50px #00000026, 0 149px 60px #0000000a, 0 233px 65px #00000003;
  transition: transform 0.1s linear;
  transform-origin: center center;
}
@media (min-width: 768px) {
  .scroll-card { padding: 1.5rem; }
}

.scroll-card-content {
  height: 30rem;
  width: 100%;
  overflow: hidden;
  border-radius: 1rem;
  background: #18181b;
}
@media (min-width: 768px) {
  .scroll-card-content { height: 40rem; }
}

.scroll-card-content iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 1rem;
}

.scroll-card-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
  border-radius: 1rem;
}

/* ═══ PRICING ═══ */
.pricing {
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.pricing-card-wrapper {
  max-width: 56rem;
  margin: 0 auto;
  position: relative;
  border-radius: 1.5rem;
  border: 1px solid rgba(59,130,246,0.2);
  background: linear-gradient(to bottom, rgba(59,130,246,0.06), transparent);
  padding: 4px;
}

.pricing-glow {
  position: absolute;
  inset: -1px;
  border-radius: 1.5rem;
  background: linear-gradient(to bottom, rgba(59,130,246,0.2), transparent, transparent);
  opacity: 0.5;
  filter: blur(4px);
  pointer-events: none;
}

.pricing-card {
  position: relative;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border-radius: calc(1.5rem - 2px);
  padding: 2rem;
}
@media (min-width: 768px) {
  .pricing-card { padding: 3rem; }
}

.pricing-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.icon-blue-inline { color: var(--blue-400); }

.pricing-label {
  font-size: 0.75rem;
  font-family: 'JetBrains Mono', monospace;
  color: var(--blue-400);
  letter-spacing: 0.1em;
}

.pricing-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.pricing-price-block { margin-bottom: 2rem; }

.pricing-sub-label {
  color: var(--neutral-400);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.pricing-amount {
  font-size: clamp(3.5rem, 8vw, 4.5rem);
  font-weight: 700;
  background: linear-gradient(to bottom, #fff, var(--neutral-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-unit { display: flex; flex-direction: column; }
.pricing-currency { color: var(--neutral-400); font-size: 1.125rem; }
.pricing-period { color: var(--neutral-600); font-size: 0.75rem; font-family: 'JetBrains Mono', monospace; }

.pricing-info-box {
  padding: 1rem;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 2rem;
}
.pricing-info-box p {
  color: var(--neutral-500);
  font-size: 0.875rem;
  line-height: 1.6;
}

.pricing-card .btn-primary {
  background: var(--blue-500);
  color: #fff;
  width: 100%;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  transition: all 0.3s;
}
.pricing-card .btn-primary:hover {
  background: var(--blue-400);
  box-shadow: 0 0 40px rgba(59,130,246,0.3);
}

.pricing-features-title {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.pricing-feature-icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.5rem;
  background: rgba(59,130,246,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-400);
  flex-shrink: 0;
}

.pricing-feature span {
  color: var(--neutral-300);
}

.pricing-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  font-size: 0.75rem;
  color: var(--neutral-500);
}

.pricing-badge {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.icon-blue-sm-inline { color: rgba(96,165,250,0.6); }

/* ═══ CONTACT ═══ */
.contact {
  padding: 6rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.contact-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 42rem;
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: border-color 0.3s;
}
.contact-card:hover { border-color: rgba(59,130,246,0.3); }

.contact-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(59,130,246,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-400);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.contact-card:hover .contact-icon { transform: scale(1.1); }

.contact-label {
  font-size: 0.75rem;
  color: var(--neutral-500);
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 0.25rem;
}

.contact-value {
  font-weight: 500;
}

/* ═══ FOOTER ═══ */
.footer {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 2rem 1.5rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--neutral-500);
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .footer-inner { flex-direction: row; justify-content: space-between; }
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-copy {
  font-family: 'JetBrains Mono', monospace;
}

.footer-tagline {
  color: var(--neutral-600);
  font-size: 0.75rem;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.15em;
}

/* ═══ SCROLL REVEAL ═══ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
