/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(0, 212, 255, .08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(249, 115, 22, .05) 0%, transparent 50%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, .03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  line-height: 1.15;
  animation: heroFadeIn .8s ease both;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--cyan), #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-typing {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  min-height: 1.8em;
  animation: heroFadeIn .8s ease .3s both;
}

.typing-cursor {
  color: var(--cyan);
  font-weight: 300;
  animation: blink .7s step-end infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroFadeIn .8s ease .6s both;
}

/* ── Floating Particles ── */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  opacity: .6;
}

.particle--1 {
  width: 4px; height: 4px;
  background: var(--cyan);
  top: 15%; left: 10%;
  animation: particleFloat 8s ease-in-out infinite, particlePulse 3s ease-in-out infinite;
}

.particle--2 {
  width: 6px; height: 6px;
  background: var(--orange);
  top: 25%; right: 15%;
  animation: particleFloat 10s ease-in-out infinite reverse, particlePulse 4s ease-in-out infinite;
}

.particle--3 {
  width: 3px; height: 3px;
  background: var(--cyan);
  bottom: 30%; left: 20%;
  animation: particleFloat 7s ease-in-out 1s infinite, particlePulse 2.5s ease-in-out infinite;
}

.particle--4 {
  width: 5px; height: 5px;
  background: var(--green);
  top: 40%; right: 25%;
  animation: particleFloat 9s ease-in-out .5s infinite, particlePulse 3.5s ease-in-out infinite;
}

.particle--5 {
  width: 3px; height: 3px;
  background: var(--cyan);
  bottom: 20%; right: 10%;
  animation: particleFloat 11s ease-in-out 2s infinite reverse, particlePulse 3s ease-in-out infinite;
}

.particle--6 {
  width: 4px; height: 4px;
  background: var(--orange);
  top: 60%; left: 8%;
  animation: particleFloat 8.5s ease-in-out 1.5s infinite, particlePulse 4s ease-in-out infinite;
}

.particle--7 {
  width: 5px; height: 5px;
  background: var(--cyan);
  top: 10%; left: 50%;
  animation: particleFloat 12s ease-in-out 3s infinite reverse, particlePulse 2s ease-in-out infinite;
}

.particle--8 {
  width: 3px; height: 3px;
  background: var(--green);
  bottom: 15%; left: 40%;
  animation: particleFloat 9.5s ease-in-out .8s infinite, particlePulse 3s ease-in-out infinite;
}

@keyframes particleFloat {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(30px, -40px); }
  50% { transform: translate(-20px, -80px); }
  75% { transform: translate(40px, -30px); }
}

@keyframes particlePulse {
  0%, 100% { opacity: .3; transform: scale(1); }
  50% { opacity: .8; transform: scale(1.8); }
}

/* ── Glowing Orbs ── */
.hero-orbs {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .12;
}

.orb--cyan {
  width: 400px; height: 400px;
  background: var(--cyan);
  top: -10%; left: -5%;
  animation: orbDrift 15s ease-in-out infinite;
}

.orb--orange {
  width: 300px; height: 300px;
  background: var(--orange);
  bottom: -10%; right: -5%;
  animation: orbDrift 18s ease-in-out 3s infinite reverse;
}

.orb--green {
  width: 250px; height: 250px;
  background: var(--green);
  top: 50%; left: 60%;
  animation: orbDrift 20s ease-in-out 6s infinite;
  opacity: .06;
}

@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(60px, -40px) scale(1.1); }
  66% { transform: translate(-40px, 30px) scale(.9); }
}

/* ── Floating Code Symbols ── */
.hero-symbols {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.symbol {
  position: absolute;
  font-family: 'Inter', monospace;
  font-weight: 700;
  opacity: .08;
  color: var(--cyan);
}

.symbol--1 {
  font-size: 2.5rem;
  top: 18%; left: 6%;
  animation: symbolFloat 12s ease-in-out infinite, symbolFade 6s ease-in-out infinite;
}

.symbol--2 {
  font-size: 3rem;
  top: 12%; right: 8%;
  animation: symbolFloat 14s ease-in-out 2s infinite reverse, symbolFade 7s ease-in-out 1s infinite;
}

.symbol--3 {
  font-size: 1.8rem;
  bottom: 25%; left: 12%;
  animation: symbolFloat 10s ease-in-out 1s infinite, symbolFade 5s ease-in-out 2s infinite;
}

.symbol--4 {
  font-size: 2rem;
  bottom: 18%; right: 15%;
  animation: symbolFloat 11s ease-in-out 3s infinite reverse, symbolFade 8s ease-in-out infinite;
}

.symbol--5 {
  font-size: 1.5rem;
  top: 55%; left: 3%;
  animation: symbolFloat 13s ease-in-out 4s infinite, symbolFade 6s ease-in-out 3s infinite;
}

.symbol--6 {
  font-size: 2.2rem;
  top: 65%; right: 5%;
  animation: symbolFloat 15s ease-in-out 1.5s infinite reverse, symbolFade 7s ease-in-out 2s infinite;
}

@keyframes symbolFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(10deg); }
}

@keyframes symbolFade {
  0%, 100% { opacity: .05; }
  50% { opacity: .15; }
}

@media (max-width: 768px) {
  .symbol { display: none; }
  .orb { filter: blur(60px); }
  .orb--cyan { width: 250px; height: 250px; }
  .orb--orange { width: 200px; height: 200px; }
  .orb--green { display: none; }
}

/* ══════════════════════════════════════
   SERVICES
   ══════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-secondary);
  border: 1px solid var(--cyan-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}

.service-card:hover {
  border-color: rgba(0, 212, 255, .3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.service-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  background: var(--cyan-subtle);
  color: var(--cyan);
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.service-card p {
  color: var(--text-secondary);
  font-size: .95rem;
}

.service-card--coming {
  border-style: dashed;
  opacity: .7;
  position: relative;
}

.service-card--coming:hover {
  opacity: .85;
}

.service-icon--coming {
  background: rgba(249, 115, 22, .1);
  color: var(--orange);
}

.coming-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--bg-primary);
  font-size: .7rem;
  font-weight: 700;
  padding: .2rem .7rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .75rem;
}

/* ══════════════════════════════════════
   WHY US
   ══════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}

.why-item {
  padding: 1.5rem;
}

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  background: rgba(0, 212, 255, .08);
  color: var(--cyan);
  border: 1px solid var(--cyan-border);
}

.why-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .35rem;
}

.why-item p {
  color: var(--text-secondary);
  font-size: .9rem;
}

/* ══════════════════════════════════════
   PROCESS
   ══════════════════════════════════════ */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
  padding: 2rem 1.5rem;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.25rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--cyan), #0ea5e9);
  color: var(--bg-primary);
  box-shadow: 0 0 20px rgba(0, 212, 255, .25);
}

.process-step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: .35rem;
}

.process-step p {
  color: var(--text-secondary);
  font-size: .9rem;
}

@media (min-width: 769px) {
  .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 2rem;
    right: -1rem;
    width: calc(100% - 56px);
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 212, 255, .3), rgba(0, 212, 255, .05));
    transform: translateX(50%);
    margin-top: 27px;
  }
}

/* ══════════════════════════════════════
   PRICING
   ══════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: start;
}

.pricing-card {
  background: var(--bg-secondary);
  border: 1px solid var(--cyan-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: all var(--transition);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.pricing-card.featured {
  border-color: var(--cyan);
  box-shadow: 0 0 30px rgba(0, 212, 255, .12);
  transform: scale(1.03);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cyan);
  color: var(--bg-primary);
  font-size: .75rem;
  font-weight: 700;
  padding: .3rem 1rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.pricing-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.pricing-card .price {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--cyan);
  margin-bottom: .25rem;
}

.pricing-card .price-note {
  font-size: .85rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: .5rem 0;
  font-size: .9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.pricing-features li .fa-check {
  color: var(--green);
  font-size: .8rem;
}

/* ══════════════════════════════════════
   PORTFOLIO
   ══════════════════════════════════════ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-secondary);
  border: 1px solid var(--cyan-subtle);
  transition: all var(--transition);
}

.portfolio-card:hover {
  border-color: rgba(0, 212, 255, .3);
  transform: translateY(-4px);
}

.portfolio-thumb {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .7);
}

.portfolio-card:nth-child(1) .portfolio-thumb {
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
}

.portfolio-card:nth-child(2) .portfolio-thumb {
  background: linear-gradient(135deg, #f97316, #ef4444);
}

.portfolio-card:nth-child(3) .portfolio-thumb {
  background: linear-gradient(135deg, #22c55e, #06b6d4);
}

.portfolio-info {
  padding: 1.25rem 1.5rem;
}

.portfolio-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .25rem;
}

.portfolio-info p {
  color: var(--text-secondary);
  font-size: .85rem;
}

/* ══════════════════════════════════════
   CTA
   ══════════════════════════════════════ */
.cta-section {
  position: relative;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0, 212, 255, .1) 0%, transparent 60%);
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
