@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;500;600&display=swap');

:root {
  --blue: #00d4ff;
  --blue-dim: #0099bb;
  --blue-glow: rgba(0,212,255,0.12);
  --blue-pulse: rgba(0,212,255,0.35);
  --dark: #020a0f;
  --dark-2: #040f17;
  --dark-3: #061822;
  --white: #e8f4f8;
  --grey: #5a7a8a;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  overflow-x: hidden;
  cursor: none;
}

/* TRON CANVAS */
#tron {
  position: fixed;
  top:0; left:0;
  width:100%; height:100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.3;
}

/* NOISE */
body::after {
  content:'';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

/* CURSOR */
.cursor {
  width: 10px; height: 10px;
  background: var(--blue);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  box-shadow: 0 0 10px var(--blue), 0 0 20px var(--blue);
  transition: transform 0.08s;
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1px solid rgba(0,212,255,0.4);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform 0.14s, width 0.2s, height 0.2s;
}

/* NAV */
nav {
  position: fixed;
  top:0; left:0; right:0;
  z-index: 500;
  padding: 22px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(2,10,15,0.97) 0%, rgba(2,10,15,0) 100%);
  border-bottom: 1px solid rgba(0,212,255,0.06);
  backdrop-filter: blur(12px);
}
.nav-logo {
  font-family: 'Orbitron', monospace;
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--blue);
  text-decoration: none;
  letter-spacing: 3px;
  text-shadow: 0 0 20px rgba(0,212,255,0.5);
}
.nav-logo span { color: var(--white); }
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: 'Orbitron', monospace;
  font-size: 0.62rem;
  letter-spacing: 2px;
  color: var(--grey);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s, text-shadow 0.3s;
  position: relative;
}
.nav-links a::after {
  content:'';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--blue);
  box-shadow: 0 0 6px var(--blue);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--blue); text-shadow: 0 0 10px rgba(0,212,255,0.4); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-family: 'Orbitron', monospace;
  font-size: 0.6rem;
  letter-spacing: 2px;
  color: var(--blue);
  border: 1px solid var(--blue);
  padding: 10px 22px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.nav-cta:hover {
  background: var(--blue);
  color: var(--dark);
  box-shadow: 0 0 24px var(--blue-pulse);
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  font-family: 'Orbitron', monospace;
  font-size: 0.68rem;
  letter-spacing: 2px;
  color: var(--dark);
  background: var(--blue);
  border: none;
  padding: 16px 36px;
  text-decoration: none;
  text-transform: uppercase;
  cursor: none;
  transition: all 0.3s;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  font-weight: 700;
  box-shadow: 0 0 30px rgba(0,212,255,0.3);
}
.btn-primary:hover {
  box-shadow: 0 0 50px var(--blue), 0 0 100px rgba(0,212,255,0.15);
  transform: translateY(-2px);
}
.btn-secondary {
  display: inline-block;
  font-family: 'Orbitron', monospace;
  font-size: 0.68rem;
  letter-spacing: 2px;
  color: var(--blue);
  background: transparent;
  border: 1px solid rgba(0,212,255,0.35);
  padding: 16px 36px;
  text-decoration: none;
  text-transform: uppercase;
  cursor: none;
  transition: all 0.3s;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
}
.btn-secondary:hover {
  border-color: var(--blue);
  background: var(--blue-glow);
  box-shadow: 0 0 20px rgba(0,212,255,0.15);
}

/* SECTION HEADERS */
section { position: relative; z-index: 2; }
.section-header { margin-bottom: 70px; }
.section-eyebrow {
  font-family: 'Orbitron', monospace;
  font-size: 0.58rem;
  letter-spacing: 5px;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-eyebrow::before {
  content:'';
  width: 36px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue));
}
.section-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(1.7rem, 2.8vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
}
.section-title .accent { color: var(--blue); }

/* FOOTER */
.site-footer {
  border-top: 1px solid rgba(0,212,255,0.08);
  padding: 50px 60px;
  position: relative;
  z-index: 2;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo {
  font-family: 'Orbitron', monospace;
  font-size: 1rem;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: 3px;
  text-shadow: 0 0 15px rgba(0,212,255,0.3);
}
.footer-logo span { color: var(--white); }
.footer-links {
  display: flex;
  gap: 30px;
}
.footer-links a {
  font-family: 'Orbitron', monospace;
  font-size: 0.58rem;
  letter-spacing: 2px;
  color: var(--grey);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--blue); }
.footer-copy {
  font-size: 0.8rem;
  color: var(--grey);
  letter-spacing: 1px;
}

@media (max-width: 900px) {
  nav { padding: 18px 24px; }
  .nav-links { display: none; }
  .site-footer { padding: 40px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* =====================
   MOBILE ENHANCEMENTS
   ===================== */

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
  z-index: 600;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--blue);
  transition: all 0.3s ease;
  box-shadow: 0 0 6px rgba(0,212,255,0.4);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE NAV DROPDOWN */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(2,10,15,0.98);
    backdrop-filter: blur(20px);
    padding: 100px 40px 60px;
    flex-direction: column;
    gap: 28px;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    border-bottom: 1px solid rgba(0,212,255,0.1);
    z-index: 400;
  }
  .nav-links.mobile-open {
    transform: translateY(0);
    display: flex;
  }
  .nav-links a {
    font-size: 1rem;
    letter-spacing: 3px;
    color: var(--white);
  }
  .nav-links a:hover { color: var(--blue); }
  .nav-cta { display: none; }
}

/* STICKY MOBILE CTA BAR */
.mobile-cta-bar {
  display: none;
}
@media (max-width: 900px) {
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 300;
    padding: 14px 20px;
    background: rgba(2,10,15,0.97);
    border-top: 1px solid rgba(0,212,255,0.2);
    backdrop-filter: blur(16px);
    box-shadow: 0 -4px 30px rgba(0,212,255,0.08);
  }
  .mobile-cta-bar a {
    display: block;
    width: 100%;
    font-family: 'Orbitron', monospace;
    font-size: 0.72rem;
    letter-spacing: 2px;
    color: var(--dark);
    background: var(--blue);
    border: none;
    padding: 16px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    box-shadow: 0 0 30px rgba(0,212,255,0.3);
  }
  /* Push footer above sticky bar */
  .site-footer { padding-bottom: 90px; }
  /* Disable custom cursor on touch */
  .cursor, .cursor-ring { display: none; }
  body { cursor: auto; }
  a, button { cursor: pointer; }
}

/* PACKAGES MOBILE — 2 col on tablet, 1 col on phone */
@media (max-width: 1100px) and (min-width: 901px) {
  .pkg-grid { grid-template-columns: repeat(2,1fr); }
  .pkg-card.featured { transform: none; }
}
@media (max-width: 900px) {
  .pkg-grid { grid-template-columns: 1fr; }
  .pkg-card.featured { transform: none; }
}

/* ============================================
   V2 ADDITIONS — built on v1 foundation
   ============================================ */

/* FOOTER REVIEWS BADGE */
.footer-reviews {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Orbitron', monospace;
  font-size: 0.58rem;
  letter-spacing: 2px;
  color: var(--blue);
  text-decoration: none;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid rgba(0,212,255,0.2);
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: all 0.3s;
}
.footer-reviews:hover {
  background: var(--blue-glow);
  border-color: var(--blue);
  box-shadow: 0 0 20px rgba(0,212,255,0.2);
}
.footer-reviews .stars {
  color: var(--blue);
  text-shadow: 0 0 8px rgba(0,212,255,0.5);
  letter-spacing: 1px;
}

/* HERO PHOTO — TWO HALVES SLIDE IN, COLOR THEN TRON */
.hero-photo-split {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.split-half {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  background: transparent;
}
.split-half img {
  position: absolute;
  top: 0;
  width: 200%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.05) saturate(1) brightness(1);
  animation: heroToTron 4s ease-in-out forwards 2.2s;
}
.split-left {
  left: 0;
  transform: translateX(-100%);
  animation: slideInLeft 1.1s cubic-bezier(0.4,0,0.2,1) forwards 0.7s;
}
.split-left img { left: 0; }
.split-right {
  right: 0;
  transform: translateX(100%);
  animation: slideInRight 1.1s cubic-bezier(0.4,0,0.2,1) forwards 0.7s;
}
.split-right img { left: -100%; }
@keyframes slideInLeft {
  0% { transform: translateX(-100%); }
  85% { transform: translateX(2px); }
  90% { transform: translateX(-1px); }
  95% { transform: translateX(1px); }
  100% { transform: translateX(0); }
}
@keyframes slideInRight {
  0% { transform: translateX(100%); }
  85% { transform: translateX(-2px); }
  90% { transform: translateX(1px); }
  95% { transform: translateX(-1px); }
  100% { transform: translateX(0); }
}
@keyframes heroToTron {
  0%   { filter: contrast(1.05) saturate(1) brightness(1); }
  20%  { filter: contrast(1.05) saturate(1) brightness(1) hue-rotate(0deg); }
  35%  { filter: contrast(1.1) saturate(0.9) brightness(0.95) hue-rotate(-30deg); }
  45%  { filter: contrast(1.15) saturate(0.7) brightness(0.92) hue-rotate(45deg); }
  55%  { filter: contrast(1.1) saturate(0.6) brightness(0.9) hue-rotate(-15deg); }
  65%  { filter: contrast(1.08) saturate(0.65) brightness(0.88) sepia(0.1) hue-rotate(120deg); }
  100% { filter: contrast(1.08) saturate(0.65) brightness(0.88) sepia(0.2) hue-rotate(175deg); }
}
.split-seam {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--blue), transparent);
  opacity: 0;
  animation: seamGlow 0.6s ease-out forwards 1.6s;
  z-index: 3;
  pointer-events: none;
}
@keyframes seamGlow {
  0% { opacity: 0; box-shadow: 0 0 0 var(--blue); }
  50% { opacity: 1; box-shadow: 0 0 20px var(--blue), 0 0 40px var(--blue); }
  100% { opacity: 0; box-shadow: 0 0 0 var(--blue); }
}

/* ABOUT PHOTO — TRON THEN COLOR (man behind the machine) — auto-reveals on page load */
.about-photo-stack {
  position: relative;
  width: 100%;
}
.about-photo-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}
.about-photo-color { z-index: 1; }
.about-photo-tinted {
  z-index: 2;
  filter: contrast(1.08) saturate(0.65) brightness(0.88) sepia(0.2) hue-rotate(175deg);
  animation: aboutTintFade 1.4s ease-out forwards 1.2s;
}
@keyframes aboutTintFade {
  0%   { opacity: 1; }
  100% { opacity: 0; }
}
.scan-reveal {
  position: absolute;
  left: 0; right: 0;
  height: 6px;
  top: -10px;
  background: linear-gradient(to bottom, transparent, var(--blue), transparent);
  box-shadow: 0 0 24px var(--blue), 0 0 48px rgba(0,212,255,0.3);
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
  animation: scanSweep 1.4s ease-in-out forwards 1.2s;
}
@keyframes scanSweep {
  0%   { top: -10px; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { top: calc(100% + 10px); opacity: 0; }
}

/* COMING SOON SHOWCASE CARDS — flashy, no names */
.cs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.cs-card {
  background: var(--dark-2);
  border: 1px solid rgba(0,212,255,0.15);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  aspect-ratio: 4/3;
  cursor: none;
}
.cs-card:hover {
  border-color: var(--blue);
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 60px rgba(0,212,255,0.2);
}
.cs-browser-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 32px;
  background: linear-gradient(180deg, rgba(0,212,255,0.08) 0%, transparent 100%);
  border-bottom: 1px solid rgba(0,212,255,0.12);
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 6px;
  z-index: 4;
}
.cs-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(0,212,255,0.3);
  box-shadow: 0 0 6px rgba(0,212,255,0.5);
}
.cs-dot:nth-child(1) { background: rgba(255,80,80,0.5); }
.cs-dot:nth-child(2) { background: rgba(255,200,80,0.5); }
.cs-dot:nth-child(3) { background: rgba(80,255,150,0.5); }
.cs-url-bar {
  flex: 1;
  height: 14px;
  background: rgba(0,212,255,0.05);
  margin-left: 14px;
  border: 1px solid rgba(0,212,255,0.1);
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-family: 'Orbitron', monospace;
  font-size: 0.45rem;
  color: var(--blue);
  letter-spacing: 1.5px;
  opacity: 0.6;
}
.cs-grid-bg {
  position: absolute;
  top: 32px; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  z-index: 1;
}
.cs-scan {
  position: absolute;
  top: 32px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--blue) 50%, transparent 100%);
  box-shadow: 0 0 12px var(--blue);
  animation: csScan 4s linear infinite;
  z-index: 2;
  opacity: 0.7;
}
@keyframes csScan {
  0% { top: 32px; opacity: 0; }
  10% { opacity: 0.8; }
  90% { opacity: 0.8; }
  100% { top: 100%; opacity: 0; }
}
.cs-pulse-ring {
  position: absolute;
  top: 50%; left: 50%;
  width: 120px; height: 120px;
  margin: -60px 0 0 -60px;
  border: 1px solid rgba(0,212,255,0.4);
  border-radius: 50%;
  animation: csPulse 3s ease-out infinite;
  z-index: 2;
}
.cs-pulse-ring::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: 50%;
}
@keyframes csPulse {
  0% { transform: scale(0.6); opacity: 0; }
  20% { opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}
.cs-coming-text {
  position: absolute;
  inset: 32px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
}
.cs-coming-label {
  font-family: 'Orbitron', monospace;
  font-size: 0.55rem;
  letter-spacing: 5px;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 14px;
  opacity: 0.6;
  animation: csFlicker 2.4s linear infinite;
}
@keyframes csFlicker {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; text-shadow: 0 0 12px var(--blue); }
  52% { opacity: 0.3; }
  54% { opacity: 1; }
}
.cs-coming-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: 4px;
  text-shadow: 0 0 30px rgba(0,212,255,0.4);
  line-height: 1.1;
}
.cs-coming-sub {
  font-family: 'Orbitron', monospace;
  font-size: 0.55rem;
  letter-spacing: 3px;
  color: var(--grey);
  margin-top: 12px;
  text-transform: uppercase;
}
.cs-corner {
  position: absolute;
  width: 16px; height: 16px;
  border-color: var(--blue);
  border-style: solid;
  z-index: 4;
}
.cs-corner-tl { top: 38px; left: 8px; border-width: 1px 0 0 1px; }
.cs-corner-tr { top: 38px; right: 8px; border-width: 1px 1px 0 0; }
.cs-corner-bl { bottom: 8px; left: 8px; border-width: 0 0 1px 1px; }
.cs-corner-br { bottom: 8px; right: 8px; border-width: 0 1px 1px 0; }

@media (max-width: 1100px) and (min-width: 901px) {
  .cs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .cs-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* PORTFOLIO CAROUSEL */
.showcase-section, .portfolio-section { padding: 120px 60px; position: relative; z-index: 2; }
.showcase-inner, .portfolio-inner { max-width: 1400px; margin: 0 auto; }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.pf-card {
  background: var(--dark-2);
  border: 1px solid rgba(0,212,255,0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}
.pf-card:hover {
  border-color: rgba(0,212,255,0.45);
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 50px rgba(0,212,255,0.12);
}
.pf-mockup {
  background: linear-gradient(135deg, #0a1820 0%, #051018 100%);
  height: 200px;
  position: relative;
  border-bottom: 1px solid rgba(0,212,255,0.1);
  overflow: hidden;
}
.pf-mockup::before {
  content: '';
  position: absolute;
  top: 12px; left: 12px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,80,80,0.5);
  box-shadow: 14px 0 0 rgba(255,200,80,0.5), 28px 0 0 rgba(80,255,150,0.5);
}
.pf-mockup-bars {
  position: absolute;
  bottom: 30px;
  left: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pf-bar {
  height: 8px;
  background: linear-gradient(90deg, rgba(0,212,255,0.3), transparent);
  border-radius: 1px;
}
.pf-bar:nth-child(1) { width: 70%; }
.pf-bar:nth-child(2) { width: 90%; }
.pf-bar:nth-child(3) { width: 55%; }
.pf-coming-soon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', monospace;
  font-size: 0.7rem;
  letter-spacing: 4px;
  color: var(--blue);
  text-transform: uppercase;
  background: rgba(2,10,15,0.6);
  backdrop-filter: blur(2px);
  text-shadow: 0 0 20px var(--blue);
}
.pf-body { padding: 28px 26px; }
.pf-tier {
  font-family: 'Orbitron', monospace;
  font-size: 0.55rem;
  letter-spacing: 3px;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.pf-name {
  font-family: 'Orbitron', monospace;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}
.pf-meta {
  font-size: 0.85rem;
  color: var(--grey);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 22px;
  font-style: italic;
}
.pf-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pf-btn {
  font-family: 'Orbitron', monospace;
  font-size: 0.55rem;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  padding: 10px 18px;
  transition: all 0.3s;
  cursor: none;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.pf-btn-primary {
  background: var(--blue);
  color: var(--dark);
  font-weight: 700;
  box-shadow: 0 0 16px rgba(0,212,255,0.3);
}
.pf-btn-primary:hover {
  box-shadow: 0 0 32px var(--blue);
  transform: translateY(-1px);
}
.pf-btn-secondary {
  background: transparent;
  color: var(--blue);
  border: 1px solid rgba(0,212,255,0.35);
}
.pf-btn-secondary:hover {
  border-color: var(--blue);
  background: var(--blue-glow);
}

/* VIDEO LIGHTBOX SECTION */
.video-section { padding: 120px 60px; position: relative; z-index: 2; }
.video-inner { max-width: 1400px; margin: 0 auto; }
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.vid-card {
  background: var(--dark-2);
  border: 1px solid rgba(0,212,255,0.1);
  cursor: none;
  transition: all 0.4s ease;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  overflow: hidden;
}
.vid-card:hover {
  border-color: rgba(0,212,255,0.45);
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 50px rgba(0,212,255,0.12);
}
.vid-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0a1820 0%, #020a0f 100%);
  border-bottom: 1px solid rgba(0,212,255,0.1);
  overflow: hidden;
}
.vid-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0,212,255,0.025) 3px, rgba(0,212,255,0.025) 4px);
  pointer-events: none;
}
.vid-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border: 1px solid rgba(0,212,255,0.5);
  border-radius: 50%;
  background: rgba(0,212,255,0.05);
  backdrop-filter: blur(4px);
  box-shadow: 0 0 30px rgba(0,212,255,0.3), inset 0 0 20px rgba(0,212,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.vid-card:hover .vid-play {
  background: var(--blue-glow);
  box-shadow: 0 0 50px var(--blue);
  transform: translate(-50%, -50%) scale(1.08);
}
.vid-play::after {
  content: '';
  width: 0; height: 0;
  border-left: 14px solid var(--blue);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 4px;
  filter: drop-shadow(0 0 6px var(--blue));
}
.vid-body { padding: 24px 26px 28px; }
.vid-eyebrow {
  font-family: 'Orbitron', monospace;
  font-size: 0.55rem;
  letter-spacing: 3px;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.vid-title {
  font-family: 'Orbitron', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  line-height: 1.35;
}
.vid-desc {
  color: var(--grey);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.6;
}

/* VIDEO MODAL */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(2,10,15,0.85);
  backdrop-filter: blur(12px);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.video-modal.open { display: flex; }
.video-modal-inner {
  position: relative;
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16/9;
  background: var(--dark-2);
  border: 1px solid rgba(0,212,255,0.3);
  box-shadow: 0 0 80px rgba(0,212,255,0.2);
}
.video-modal iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.video-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: transparent;
  border: 1px solid rgba(0,212,255,0.4);
  color: var(--blue);
  font-family: 'Orbitron', monospace;
  font-size: 0.6rem;
  letter-spacing: 2px;
  padding: 10px 20px;
  cursor: none;
  text-transform: uppercase;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: all 0.3s;
}
.video-modal-close:hover {
  background: var(--blue);
  color: var(--dark);
  box-shadow: 0 0 20px var(--blue);
}
body.modal-locked { overflow: hidden; }

/* REVIEWS BADGE SECTION */
.reviews-section {
  padding: 100px 60px;
  text-align: center;
  border-top: 1px solid rgba(0,212,255,0.08);
  border-bottom: 1px solid rgba(0,212,255,0.08);
  background: rgba(0,212,255,0.02);
  position: relative;
  z-index: 2;
}
.reviews-inner { max-width: 700px; margin: 0 auto; }
.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 28px 44px;
  margin-top: 40px;
  background: var(--dark-2);
  border: 1px solid rgba(0,212,255,0.25);
  text-decoration: none;
  transition: all 0.3s;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
}
.review-badge:hover {
  border-color: var(--blue);
  box-shadow: 0 0 40px rgba(0,212,255,0.25);
  transform: translateY(-3px);
}
.review-stars {
  font-family: 'Orbitron', monospace;
  font-size: 1.5rem;
  color: var(--blue);
  letter-spacing: 4px;
  text-shadow: 0 0 16px var(--blue);
}
.review-text {
  text-align: left;
  font-family: 'Orbitron', monospace;
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.4;
}
.review-text small {
  display: block;
  font-size: 0.55rem;
  color: var(--grey);
  letter-spacing: 1.5px;
  margin-top: 6px;
}

/* WEB DESIGN PAGE — TIER CARDS (reuse pkg-card class structure) */
.web-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 60px;
}
.web-tier {
  background: var(--dark-2);
  border: 1px solid rgba(0,212,255,0.1);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}
.web-tier:hover {
  border-color: rgba(0,212,255,0.4);
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 50px rgba(0,212,255,0.12);
}
.web-tier.featured {
  border-color: rgba(0,212,255,0.4);
  background: linear-gradient(160deg, rgba(0,212,255,0.06) 0%, var(--dark-2) 50%);
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 60px rgba(0,212,255,0.12);
}

/* FUTURISTIC FLAGSHIP TAG (replaces star) — angular Tron chevron */
.flagship-tag {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dim) 100%);
  color: var(--dark);
  font-family: 'Orbitron', monospace;
  font-size: 0.5rem;
  letter-spacing: 3px;
  padding: 10px 28px 10px 22px;
  text-transform: uppercase;
  font-weight: 900;
  clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
  box-shadow: 0 0 20px var(--blue), inset 0 0 12px rgba(2,10,15,0.2);
  animation: flagshipPulse 2.5s ease-in-out infinite;
  z-index: 4;
}
.flagship-tag::before {
  content: '◆';
  margin-right: 6px;
  font-size: 0.6rem;
  letter-spacing: 0;
  display: inline-block;
}
@keyframes flagshipPulse {
  0%, 100% { box-shadow: 0 0 20px var(--blue), inset 0 0 12px rgba(2,10,15,0.2); }
  50% { box-shadow: 0 0 35px var(--blue), 0 0 60px rgba(0,212,255,0.4), inset 0 0 12px rgba(2,10,15,0.2); }
}

.tier-eyebrow {
  font-family: 'Orbitron', monospace;
  font-size: 0.6rem;
  letter-spacing: 3px;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.tier-name {
  font-family: 'Orbitron', monospace;
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 6px;
  line-height: 1.2;
}
.tier-tagline {
  font-size: 0.85rem;
  color: var(--grey);
  font-style: italic;
  margin-bottom: 28px;
  font-weight: 300;
  line-height: 1.5;
}
.tier-price {
  font-family: 'Orbitron', monospace;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--blue);
  text-shadow: 0 0 20px rgba(0,212,255,0.35);
  line-height: 1;
  margin-bottom: 8px;
}
.tier-delivery {
  font-family: 'Orbitron', monospace;
  font-size: 0.6rem;
  letter-spacing: 2px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0,212,255,0.1);
}
.tier-features {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tier-features li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--grey);
  font-weight: 300;
  line-height: 1.55;
}
.tier-features li::before {
  content: '';
  flex-shrink: 0;
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--blue);
  margin-top: 7px;
}
.tier-cta {
  display: block;
  width: 100%;
  text-align: center;
  font-family: 'Orbitron', monospace;
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  padding: 16px;
  font-weight: 700;
  cursor: none;
  transition: all 0.3s;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
}
.tier-cta-primary {
  background: var(--blue);
  color: var(--dark);
  box-shadow: 0 0 30px rgba(0,212,255,0.3);
}
.tier-cta-primary:hover {
  box-shadow: 0 0 50px var(--blue);
  transform: translateY(-2px);
}
.tier-cta-secondary {
  background: transparent;
  color: var(--blue);
  border: 1px solid rgba(0,212,255,0.35);
}
.tier-cta-secondary:hover {
  border-color: var(--blue);
  background: var(--blue-glow);
}

/* HOSTING STRIP */
.hosting-strip {
  padding: 80px 60px;
  background: linear-gradient(135deg, rgba(0,212,255,0.03) 0%, transparent 60%);
  border-top: 1px solid rgba(0,212,255,0.08);
  border-bottom: 1px solid rgba(0,212,255,0.08);
  position: relative;
  z-index: 2;
}
.hosting-inner { max-width: 1400px; margin: 0 auto; }
.hosting-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.host-card {
  background: var(--dark-2);
  border: 1px solid rgba(0,212,255,0.1);
  padding: 36px 30px;
  text-align: center;
  transition: all 0.3s;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.host-card:hover {
  border-color: rgba(0,212,255,0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(0,212,255,0.08);
}
.host-tier {
  font-family: 'Orbitron', monospace;
  font-size: 0.6rem;
  letter-spacing: 3px;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.host-price {
  font-family: 'Orbitron', monospace;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 4px;
}
.host-price span {
  font-size: 0.9rem;
  color: var(--grey);
  font-weight: 400;
}
.host-desc {
  font-size: 0.85rem;
  color: var(--grey);
  font-weight: 300;
  line-height: 1.6;
  margin-top: 14px;
}

/* BUNDLES PAGE — STACK CARDS */
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.bundle-card {
  background: var(--dark-2);
  border: 1px solid rgba(0,212,255,0.1);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}
.bundle-card:hover {
  border-color: rgba(0,212,255,0.4);
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 50px rgba(0,212,255,0.12);
}
.bundle-card.empire {
  background: linear-gradient(160deg, rgba(0,212,255,0.06) 0%, var(--dark-2) 50%);
  border-color: rgba(0,212,255,0.3);
}
.bundle-savings {
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: 'Orbitron', monospace;
  font-size: 0.55rem;
  letter-spacing: 2px;
  color: var(--dark);
  background: var(--blue);
  padding: 6px 14px;
  text-transform: uppercase;
  font-weight: 700;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  box-shadow: 0 0 16px rgba(0,212,255,0.4);
}
.bundle-name {
  font-family: 'Orbitron', monospace;
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 6px;
  line-height: 1.2;
}
.bundle-includes {
  font-size: 0.9rem;
  color: var(--grey);
  font-style: italic;
  margin-bottom: 28px;
  font-weight: 300;
}
.bundle-price {
  font-family: 'Orbitron', monospace;
  font-size: 3rem;
  font-weight: 900;
  color: var(--blue);
  text-shadow: 0 0 24px rgba(0,212,255,0.4);
  line-height: 1;
  margin-bottom: 10px;
}
.bundle-delivery {
  font-family: 'Orbitron', monospace;
  font-size: 0.6rem;
  letter-spacing: 2px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(0,212,255,0.1);
}

/* SECTION HEADER CENTER VARIANT */
.section-header.center { text-align: center; }
.section-header.center .section-eyebrow { justify-content: center; }
.section-header.center .section-eyebrow::before { display: none; }

/* MOBILE — V2 ADDITIONS */
@media (max-width: 900px) {
  .portfolio-section,
  .video-section,
  .reviews-section,
  .hosting-strip { padding: 80px 24px; }
  .portfolio-grid,
  .video-grid,
  .web-tiers,
  .hosting-grid,
  .bundle-grid { grid-template-columns: 1fr; gap: 20px; }
  .web-tier.featured { transform: none; }
  .footer-reviews { font-size: 0.55rem; }
  .review-badge { padding: 22px 28px; gap: 16px; flex-direction: column; }
  .review-text { text-align: center; }
  .video-modal { padding: 20px; }
  .video-modal-close { top: -42px; }
  .footer-inner { gap: 18px; }
  .footer-links { flex-wrap: wrap; gap: 18px 24px; }
}
@media (max-width: 1100px) and (min-width: 901px) {
  .portfolio-grid,
  .video-grid,
  .web-tiers,
  .hosting-grid { grid-template-columns: repeat(2, 1fr); }
  .web-tier.featured { transform: none; }
}
