/* =====================================================
   PRAJNA WORLD TECH — Futuristic Minimal Dark Theme
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Orbitron:wght@400;600;700;900&display=swap');

:root {
  --clr-bg: #070c18;
  --clr-bg2: #0b1120;
  --clr-surface: #0f1a2e;
  --clr-border: rgba(0, 200, 200, .12);
  --clr-cyan: #00e5cc;
  --clr-blue: #4e9eff;
  --clr-purple: #7c5cfc;
  --clr-text: #cdd8f0;
  --clr-muted: #5a7090;
  --clr-white: #ffffff;
  --gradient-main: linear-gradient(135deg, #00e5cc, #4e9eff);
  --gradient-dark: linear-gradient(135deg, #070c18 0%, #0b1120 100%);
  --glow-cyan: 0 0 24px rgba(0, 229, 204, .35), 0 0 60px rgba(0, 229, 204, .10);
  --glow-blue: 0 0 24px rgba(78, 158, 255, .35);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --transition: 0.35s cubic-bezier(.4, 0, .2, 1);
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--clr-bg);
  color: var(--clr-text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--clr-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--clr-cyan);
  border-radius: 3px;
}

/* ── Utility ── */
.section-pad {
  padding: 100px 0;
}

.section-pad-sm {
  padding: 60px 0;
}

.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tag-pill {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(0, 229, 204, .10);
  border: 1px solid rgba(0, 229, 204, .25);
  color: var(--clr-cyan);
  margin-bottom: 18px;
}

/* ── Preloader ── */
#pwt-preloader {
  position: fixed;
  inset: 0;
  background: var(--clr-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity .6s ease;
}

#pwt-preloader.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader-ring {
  width: 60px;
  height: 60px;
  border: 3px solid rgba(0, 229, 204, .15);
  border-top-color: var(--clr-cyan);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ── Navigation ── */
#pwt-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(7, 12, 24, .80);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--clr-border);
  transition: var(--transition);
}

#pwt-nav.scrolled {
  background: rgba(7, 12, 24, .96);
  box-shadow: 0 4px 30px rgba(0, 0, 0, .4);
}

.nav-logo img {
  height: 44px;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--clr-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .5px;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-main);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--clr-white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px;
  background: var(--gradient-main);
  border: none;
  border-radius: 50px;
  color: var(--clr-bg);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--glow-cyan);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(0, 229, 204, .55);
  color: var(--clr-bg);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--clr-cyan);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Hero ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--clr-bg);
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('../custom/hero_bg_futuristic.png');
  background-size: cover;
  background-position: center;
  opacity: .35;
  z-index: 0;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 204, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 204, .04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
  animation: grid-move 30s linear infinite;
}

@keyframes grid-move {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(60px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 72px;
}

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--clr-white);
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--clr-muted);
  max-width: 500px;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 14px 32px;
  background: var(--gradient-main);
  border: none;
  border-radius: 50px;
  color: var(--clr-bg);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--glow-cyan);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(0, 229, 204, .55);
  color: var(--clr-bg);
}

.btn-outline {
  padding: 13px 32px;
  background: transparent;
  border: 1.5px solid var(--clr-cyan);
  border-radius: 50px;
  color: var(--clr-cyan);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover {
  background: var(--clr-cyan);
  color: var(--clr-bg);
  transform: translateY(-3px);
}

.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrap img {
  width: 100%;
  max-width: 560px;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 0 40px rgba(0, 229, 204, .25));
  animation: float 5s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-18px)
  }
}

/* Orb glows behind hero image */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(0, 229, 204, .12);
  top: 10%;
  right: -100px;
}

.hero-orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(78, 158, 255, .12);
  bottom: 10%;
  right: 100px;
}

/* Video play btn */
.video-play-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}

.play-circle {
  width: 52px;
  height: 52px;
  border: 2px solid var(--clr-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.play-circle::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(0, 229, 204, .25);
  animation: pulse-ring 2s linear infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: .8
  }

  100% {
    transform: scale(1.4);
    opacity: 0
  }
}

.play-circle svg {
  margin-left: 3px;
}

.play-circle:hover {
  background: var(--clr-cyan);
}

.play-circle:hover svg path {
  fill: var(--clr-bg);
}

.play-label {
  font-size: 14px;
  color: var(--clr-muted);
  font-weight: 500;
}

/* ── Marquee / Trusted By ── */
#trusted {
  padding: 40px 0;
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  overflow: hidden;
}

.marquee-label {
  text-align: center;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: 24px;
}

.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 25s linear infinite;
}

.marquee-track img {
  height: 36px;
  opacity: .45;
  filter: grayscale(1) brightness(2);
  transition: var(--transition);
}

.marquee-track img:hover {
  opacity: 1;
  filter: none;
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.brand-icon-sim {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--clr-muted);
  opacity: 0.45;
  white-space: nowrap;
  transition: var(--transition);
}

.brand-icon-sim:hover {
  opacity: 1;
  color: var(--clr-cyan);
  filter: drop-shadow(0 0 8px rgba(0, 229, 204, 0.4));
}

.brand-icon-sim i {
  font-size: 24px;
}

/* ── Stats ── */
#stats {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.stats-bg {
  position: absolute;
  inset: 0;
  background-image: url('../custom/stats_bg_particles.png');
  background-size: cover;
  opacity: .18;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  position: relative;
}

.stat-card {
  background: rgba(15, 26, 46, .7);
  border: 1px solid var(--clr-border);
  padding: 48px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.stat-card:hover {
  background: rgba(15, 26, 46, .9);
  border-color: rgba(0, 229, 204, .3);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-main);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-icon {
  font-size: 28px;
  color: var(--clr-cyan);
  margin-bottom: 16px;
}

.stat-number {
  font-family: 'Orbitron', sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 14px;
  color: var(--clr-muted);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── Services ── */
#services {
  padding: 100px 0;
  background: var(--clr-bg2);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 16px;
}

.section-desc {
  color: var(--clr-muted);
  max-width: 520px;
  margin: 0 auto;
  font-size: 16px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 229, 204, .06), transparent);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 229, 204, .35);
  box-shadow: var(--glow-cyan);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(0, 229, 204, .10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: rgba(0, 229, 204, .2);
  transform: scale(1.1);
}

.service-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--clr-white);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 14px;
  color: var(--clr-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-cyan);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.service-link:hover {
  gap: 12px;
}

/* ── About / Why Us ── */
#about {
  padding: 100px 0;
}

.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  filter: brightness(.85);
}

.about-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(0, 229, 204, .2);
  border-radius: var(--radius-lg);
}

.about-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(7, 12, 24, .85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.badge-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 32px;
  font-weight: 700;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge-text {
  font-size: 12px;
  color: var(--clr-muted);
  line-height: 1.4;
}

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 32px 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 229, 204, .12);
  border: 1px solid rgba(0, 229, 204, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 11px;
  color: var(--clr-cyan);
}

.feature-text {
  font-size: 15px;
  color: var(--clr-text);
}

/* ── Testimonial ── */
#testimonial {
  padding: 100px 0;
  background: var(--clr-bg2);
}

.testi-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}

.testi-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 28px;
  font-family: 'Orbitron', sans-serif;
  font-size: 100px;
  line-height: 1;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: .1;
}

.testi-video-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.testi-video-wrap img {
  width: 100%;
  display: block;
}

.testi-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(7, 12, 24, .45);
  transition: var(--transition);
}

.testi-video-wrap:hover .testi-play-overlay {
  background: rgba(7, 12, 24, .6);
}

.testi-play-btn {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--glow-cyan);
  transition: var(--transition);
}

.testi-video-wrap:hover .testi-play-btn {
  transform: scale(1.1);
}

.testi-quote {
  font-size: 18px;
  line-height: 1.75;
  color: var(--clr-text);
  margin-bottom: 28px;
  font-style: italic;
}

.testi-author h6 {
  font-size: 16px;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 4px;
}

.testi-author p {
  font-size: 13px;
  color: var(--clr-cyan);
}

.stars {
  color: #ffd700;
  font-size: 14px;
  margin-bottom: 20px;
}

/* ── Portfolio ── */
#portfolio {
  padding: 100px 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.portfolio-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}

.portfolio-item:hover img {
  transform: scale(1.08);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 12, 24, .9) 0%, transparent 55%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-caption h5 {
  font-size: 16px;
  color: var(--clr-white);
  font-weight: 600;
}

.portfolio-caption span {
  font-size: 12px;
  color: var(--clr-cyan);
}

/* ── CTA Banner ── */
#cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(0, 229, 204, .06) 0%, rgba(78, 158, 255, .06) 100%);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  text-align: center;
}

.cta-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(24px, 3vw, 40px);
  color: var(--clr-white);
  margin-bottom: 16px;
}

.cta-desc {
  color: var(--clr-muted);
  font-size: 16px;
  margin-bottom: 36px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: #25D366;
  border-radius: 50px;
  color: #fff;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 0 30px rgba(37, 211, 102, .3);
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 45px rgba(37, 211, 102, .5);
  color: #fff;
}

/* ── Footer ── */
#footer {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  padding: 80px 0 32px;
}

.footer-logo img {
  height: 48px;
  margin-bottom: 20px;
}

.footer-desc {
  color: var(--clr-muted);
  font-size: 14px;
  max-width: 280px;
  line-height: 1.7;
}

.footer-heading {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--clr-cyan);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--clr-muted);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--clr-white);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--clr-muted);
  font-size: 14px;
  margin-bottom: 12px;
}

.footer-contact-item i {
  color: var(--clr-cyan);
  width: 16px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-muted);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.social-link:hover {
  border-color: var(--clr-cyan);
  color: var(--clr-cyan);
  transform: translateY(-3px);
}

.footer-divider {
  border-color: var(--clr-border);
  margin: 40px 0 28px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 13px;
  color: var(--clr-muted);
}

/* ── Floating WhatsApp ── */
.floating-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  z-index: 900;
  transition: var(--transition);
  text-decoration: none;
}

.floating-wa:hover {
  transform: scale(1.15) translateY(-3px);
  box-shadow: 0 6px 30px rgba(37, 211, 102, .6);
}

.floating-wa svg {
  width: 28px;
  height: 28px;
}

/* ── Pricing ── */
.pricing-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card.popular {
  border-color: var(--clr-cyan);
  box-shadow: 0 0 30px rgba(0, 229, 204, .15);
  transform: scale(1.05);
  z-index: 2;
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-main);
  color: var(--clr-bg);
  padding: 4px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.package-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 20px;
  color: var(--clr-white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price {
  margin-bottom: 12px;
}

.currency {
  font-size: 14px;
  vertical-align: top;
  color: var(--clr-cyan);
  font-weight: 700;
  margin-right: 2px;
}

.amount {
  font-family: 'Orbitron', sans-serif;
  font-size: 44px;
  font-weight: 900;
  color: var(--clr-white);
}

.period {
  font-size: 14px;
  color: var(--clr-muted);
}

.package-for {
  font-size: 14px;
  color: var(--clr-muted);
  margin-bottom: 30px;
  border-bottom: 1px solid var(--clr-border);
  padding-bottom: 24px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 40px;
  text-align: left;
  flex-grow: 1;
}

.pricing-features li {
  font-size: 15px;
  color: var(--clr-text);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-features li i {
  font-size: 14px;
}

.pricing-features li i.fa-check {
  color: var(--clr-cyan);
}

.pricing-features li i.fa-times {
  color: var(--clr-muted);
}

.pricing-features li.disabled {
  color: var(--clr-muted);
  opacity: .6;
}

.pricing-footer {
  margin-top: auto;
}

/* ── Modal ── */
.video-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .85);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}

.video-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.video-modal {
  width: 90%;
  max-width: 840px;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.video-modal video {
  width: 100%;
  display: block;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, .15);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-close:hover {
  background: rgba(255, 255, 255, .3);
}

/* ── Scroll Reveal Animation ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: none;
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* ── Advanced Animations ── */
.glow-on-hover {
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.glow-on-hover:hover {
  box-shadow: var(--glow-cyan);
  transform: translateY(-5px);
}

.float-animation {
  animation: float-soft 4s ease-in-out infinite;
}

@keyframes float-soft {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.portfolio-video-backdrop {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at center, rgba(0, 229, 204, 0.15) 0%, transparent 70%);
  z-index: -1;
  filter: blur(20px);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.portfolio-card:hover .portfolio-video-backdrop {
  opacity: 1;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  #pwt-nav {
    padding: 0 20px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .hero-btns {
    flex-direction: column;
  }
}

/* Mobile nav open */
#pwt-nav.mobile-open .nav-links {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(7, 12, 24, .97);
  backdrop-filter: blur(18px);
  padding: 24px 20px;
  border-bottom: 1px solid var(--clr-border);
  gap: 20px;
}

#pwt-nav.mobile-open .nav-cta {
  display: inline-flex;
  margin: 12px 20px;
}