@import url('https://fonts.googleapis.com/css2?family=Bungee&family=Nunito:wght@400;600;700;800&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --bg:        #0a1a0d;
  --bg2:       #0f2314;
  --neon:      #c8f135;
  --red:       #e02020;
  --blue:      #1ab8e8;
  --orange:    #f07020;
  --white:     #f0f8f0;
  --gray:      #7a9a7e;
  --card-bg:   rgba(255,255,255,0.04);
  --border:    rgba(200,241,53,0.15);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
}

/* ===== NOISE TEXTURE OVERLAY ===== */
body::before {
  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.9' 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: 9999;
  opacity: 0.4;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 18px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  background: transparent;
}

nav.scrolled {
  background: rgba(10, 26, 13, 0.95);
  box-shadow: 0 2px 30px rgba(200,241,53,0.08);
  backdrop-filter: blur(10px);
}

#logo {
  font-family: 'Bungee', cursive;
  font-size: 26px;
  color: var(--neon);
  cursor: pointer;
  letter-spacing: 1px;
  text-shadow: 0 0 20px rgba(200,241,53,0.5);
}

#logo span { color: var(--red); }

ul.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
  align-items: center;
}

ul.nav-links li a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.2s;
}

ul.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon);
  transition: width 0.3s ease;
}

ul.nav-links li a:hover { color: var(--neon); }
ul.nav-links li a:hover::after { width: 100%; }

ul.nav-links li a.btn-nav {
  background: var(--neon);
  color: var(--bg);
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 800;
}

ul.nav-links li a.btn-nav::after { display: none; }
ul.nav-links li a.btn-nav:hover { background: #d9ff30; color: var(--bg); }

/* MOBILE TOGGLE */
#menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

#menu-toggle .bar {
  width: 28px;
  height: 3px;
  background: var(--neon);
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(200,241,53,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(26,184,232,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 70%, rgba(224,32,32,0.06) 0%, transparent 60%);
}

/* Grid lines */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,241,53,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,241,53,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content { position: relative; z-index: 2; max-width: 800px; }

.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--neon);
  border: 1px solid rgba(200,241,53,0.3);
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}

.hero h1 {
  font-family: 'Bungee', cursive;
  font-size: clamp(48px, 9vw, 96px);
  line-height: 1;
  margin-bottom: 24px;
  animation: fadeUp 0.6s 0.1s ease both;
}

.hero h1 .line-neon { color: var(--neon); display: block; }
.hero h1 .line-red  { color: var(--red);  display: block; }
.hero h1 .line-blue { color: var(--blue); display: block; }

.hero p {
  font-size: 18px;
  color: var(--gray);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--neon);
  color: var(--bg);
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,241,53,0.35);
}

.btn-secondary {
  border: 2px solid rgba(200,241,53,0.4);
  color: var(--neon);
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
}

.btn-secondary:hover {
  border-color: var(--neon);
  background: rgba(200,241,53,0.08);
}

/* ===== HERO LOGO ===== */
.hero-logo {
  margin-bottom: 28px;
  animation: fadeUp 0.6s 0.05s ease both;
}

.hero-logo img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  border-radius: 24px;
  filter: drop-shadow(0 0 40px rgba(200,241,53,0.3));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

/* ===== FLOATING MASCOT ===== */
.hero-mascot {
  position: absolute;
  bottom: 40px;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  z-index: 3;
  animation: fadeUp 1s 0.6s ease both;
}


/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, rgba(200,241,53,0.08), rgba(26,184,232,0.06));
  border-top: 1px solid rgba(200,241,53,0.15);
  border-bottom: 1px solid rgba(200,241,53,0.15);
  padding: 80px 48px;
  text-align: center;
}

.cta-banner-inner {
  max-width: 600px;
  margin: 0 auto;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.4;
  animation: fadeUp 1s 0.8s ease both;
}

.scroll-indicator span {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
}

.scroll-dot {
  width: 6px;
  height: 6px;
  background: var(--neon);
  border-radius: 50%;
  animation: bounce 1.5s ease infinite;
}

/* ===== SECTIONS ===== */
section {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Bungee', cursive;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--gray);
  font-size: 16px;
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 60px;
}

/* ===== SERVICE CARDS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent, var(--neon));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover { transform: translateY(-6px); border-color: rgba(200,241,53,0.3); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  font-size: 40px;
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  font-family: 'Bungee', cursive;
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--white);
}

.service-card p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px;
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.stat { text-align: center; }

.stat-number {
  font-family: 'Bungee', cursive;
  font-size: 48px;
  color: var(--neon);
  display: block;
  line-height: 1;
  text-shadow: 0 0 30px rgba(200,241,53,0.3);
}

.stat-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 8px;
  display: block;
}

/* ===== HOSTING PLANS ===== */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
}

.plan-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px 32px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.plan-card.featured {
  border-color: var(--neon);
  background: rgba(200,241,53,0.05);
  transform: scale(1.03);
}

.plan-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--neon);
  color: var(--bg);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 4px 14px;
  border-radius: 2px;
}

.plan-card:hover { transform: translateY(-4px); box-shadow: 0 16px 50px rgba(0,0,0,0.4); }
.plan-card.featured:hover { transform: scale(1.03) translateY(-4px); }

.plan-name {
  font-family: 'Bungee', cursive;
  font-size: 22px;
  margin-bottom: 8px;
}

.plan-price {
  font-family: 'Bungee', cursive;
  font-size: 48px;
  color: var(--neon);
  line-height: 1;
  margin-bottom: 4px;
}

.plan-price span { font-size: 18px; color: var(--gray); font-family: 'Nunito', sans-serif; font-weight: 600; }

.plan-period {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 32px;
}

.plan-features {
  list-style: none;
  margin-bottom: 32px;
}

.plan-features li {
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: var(--gray);
  display: flex;
  gap: 10px;
  align-items: center;
}

.plan-features li::before {
  content: '✓';
  color: var(--neon);
  font-weight: 800;
  flex-shrink: 0;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.about-logo-wrap::before {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,241,53,0.08) 0%, transparent 70%);
}

.about-logo-wrap img {
  width: 300px;
  border-radius: 16px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 40px rgba(200,241,53,0.2));
}

.about-text .section-title { margin-bottom: 24px; }

.about-text p {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.tag {
  background: rgba(200,241,53,0.08);
  border: 1px solid rgba(200,241,53,0.2);
  color: var(--neon);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Bungee', cursive;
  font-size: 24px;
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(200,241,53,0.08);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item-text span {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  display: block;
}

.contact-item-text strong { font-size: 15px; color: var(--white); }

/* FORM */
.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 12px 16px;
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--neon);
  box-shadow: 0 0 0 3px rgba(200,241,53,0.08);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-group select option { background: var(--bg2); }

/* ===== FOOTER ===== */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 48px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand #logo {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}

.footer-brand p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Bungee', cursive;
  font-size: 14px;
  color: var(--neon);
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--gray);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--neon); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: var(--gray);
  font-size: 13px;
}

.footer-bottom span { color: var(--red); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 180px 48px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(200,241,53,0.06) 0%, transparent 70%);
}

.page-hero .section-label { justify-content: center; display: flex; }
.page-hero .section-title { font-size: clamp(40px, 6vw, 72px); }
.page-hero p { color: var(--gray); font-size: 18px; max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(200,241,53,0.2); }
  50%       { box-shadow: 0 0 40px rgba(200,241,53,0.5); }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  nav { padding: 16px 24px; }

  ul.nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,26,13,0.97);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    font-size: 20px;
  }

  ul.nav-links.open { display: flex; }

  #menu-toggle { display: flex; z-index: 1100; }

  section { padding: 80px 24px; }

  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .footer-top { grid-template-columns: 1fr; gap: 40px; }

  .form-row { grid-template-columns: 1fr; }

  .stats-bar { gap: 40px; }

  .page-hero { padding: 150px 24px 60px; }

  .hero-mascot { display: none; }

  .hero-logo img { width: 140px; height: 140px; }
}

.footer-logo {
  font-family: 'Bungee', cursive;
  font-size: 28px;
  color: var(--neon);
  letter-spacing: 1px;
  text-shadow: 0 0 20px rgba(200,241,53,0.5);
  margin-bottom: 16px;
  display: block;
}
 
.footer-logo span { color: var(--red); }

/* ═══════════════════════════════════════════════════════════════════════════
   ADD THESE STYLES TO THE BOTTOM OF style.css
   ═══════════════════════════════════════════════════════════════════════════ */


/* ─── HOW IT WORKS ──────────────────────────────────────────────────────── */
.how-grid {
  display: flex;
  align-items: center;
  gap: 0;
}

.how-step {
  flex: 1;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px 32px;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}

.how-step:hover {
  transform: translateY(-4px);
  border-color: rgba(200,241,53,0.3);
}

.how-number {
  font-family: 'Bungee', cursive;
  font-size: 56px;
  color: rgba(200,241,53,0.12);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -2px;
}

.how-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

.how-step h3 {
  font-family: 'Bungee', cursive;
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--white);
}

.how-step p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
}

.how-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, rgba(200,241,53,0.3), rgba(200,241,53,0.6), rgba(200,241,53,0.3));
  flex-shrink: 0;
  position: relative;
}

.how-connector::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid rgba(200,241,53,0.6);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}


/* ─── TESTIMONIALS ──────────────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 32px;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,241,53,0.25);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: 'Bungee', cursive;
  font-size: 80px;
  color: rgba(200,241,53,0.08);
  line-height: 1;
}

.testimonial-stars {
  color: var(--neon);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.testimonial-text {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: rgba(200,241,53,0.1);
  border: 1px solid rgba(200,241,53,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bungee', cursive;
  font-size: 13px;
  color: var(--neon);
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 2px;
}

.testimonial-author span {
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.5px;
}


/* ─── MOBILE RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .how-grid {
    flex-direction: column;
    gap: 0;
  }

  .how-connector {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, rgba(200,241,53,0.3), rgba(200,241,53,0.6), rgba(200,241,53,0.3));
  }

  .how-connector::after {
    right: 50%;
    top: auto;
    bottom: -5px;
    transform: translateX(50%) rotate(90deg);
  }
}


/* ═══════════════════════════════════════════════════════════════════════════
   PORTFOLIO WHEEL SLIDER
   ═══════════════════════════════════════════════════════════════════════════ */

body.portfolio-page {
  overflow: hidden;
}

/* ─── Swiper container ──────────────────────────────────────────────────── */
.portfolio-swiper {
  height: 100vh;
  width: 100%;
}

/* ─── Individual slides ─────────────────────────────────────────────────── */
.portfolio-slide {
  display: flex;
  height: 100%;
}

/* ─── Left visual panel ─────────────────────────────────────────────────── */
.slide-visual {
  width: 45%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg2);
}

.slide-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
}

.slide-visual-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  z-index: 1;
}

.slide-visual-number {
  position: absolute;
  bottom: 24px;
  left: 32px;
  font-family: 'Bungee', cursive;
  font-size: 120px;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  z-index: 1;
  user-select: none;
}

/* mock device frame */
.mock-device {
  position: relative;
  z-index: 2;
  width: 300px;
}

.mock-browser-frame {
  background: rgba(15,35,20,0.9);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}

.mock-browser-bar {
  background: rgba(255,255,255,0.05);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mock-browser-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
}

.mock-browser-bar span:nth-child(1) { background: #e02020; }
.mock-browser-bar span:nth-child(2) { background: #f07020; }
.mock-browser-bar span:nth-child(3) { background: #c8f135; }

.mock-browser-url {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border-radius: 3px;
  height: 18px;
  margin-left: 8px;
}

.mock-browser-content {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.mock-site-icon {
  font-size: 56px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4));
}

/* ─── Right info panel ──────────────────────────────────────────────────── */
.slide-info {
  width: 55%;
  padding: 120px 72px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.slide-category {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s 0.1s ease, transform 0.5s 0.1s ease;
}

.slide-title {
  font-family: 'Bungee', cursive;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  margin-bottom: 20px;
  color: var(--white);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s 0.2s ease, transform 0.5s 0.2s ease;
}

.slide-desc {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.75;
  max-width: 400px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s 0.3s ease, transform 0.5s 0.3s ease;
}

.slide-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s 0.4s ease, transform 0.5s 0.4s ease;
}

.slide-tags span {
  background: rgba(200,241,53,0.07);
  border: 1px solid rgba(200,241,53,0.2);
  color: var(--neon);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}

.slide-cta {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s 0.5s ease, transform 0.5s 0.5s ease;
}

/* Animate in when slide is active */
.swiper-slide-active .slide-category,
.swiper-slide-active .slide-title,
.swiper-slide-active .slide-desc,
.swiper-slide-active .slide-tags,
.swiper-slide-active .slide-cta {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Intro slide ───────────────────────────────────────────────────────── */
.slide-intro {
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.slide-intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(200,241,53,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(26,184,232,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 70%, rgba(224,32,32,0.05) 0%, transparent 60%);
}

.slide-intro::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,241,53,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,241,53,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.slide-intro-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 24px;
}

.slide-intro-content .section-label {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.slide-intro-content .section-title {
  font-size: clamp(52px, 9vw, 96px);
  margin-bottom: 20px;
}

.slide-intro-content p {
  color: var(--gray);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.6;
}

.scroll-hint-arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--neon), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50%       { opacity: 1;   transform: scaleY(1); }
}

/* ─── CTA slide ─────────────────────────────────────────────────────────── */
.slide-cta-full {
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background: linear-gradient(135deg, rgba(200,241,53,0.06), rgba(26,184,232,0.04));
  border-top: 1px solid rgba(200,241,53,0.12);
  position: relative;
  overflow: hidden;
}

.slide-cta-full::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,241,53,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,241,53,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

.slide-cta-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 0 24px;
}

.slide-cta-content .section-label {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.slide-cta-content .section-title {
  font-size: clamp(40px, 6vw, 72px);
  margin-bottom: 20px;
}

.slide-cta-content p {
  color: var(--gray);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.slide-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Pagination (vertical dots on right) ───────────────────────────────── */
.portfolio-swiper .swiper-pagination {
  right: 28px;
  left: auto;
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.portfolio-swiper .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: rgba(200,241,53,0.3);
  opacity: 1;
  border-radius: 3px;
  transition: height 0.3s ease, background 0.3s ease;
  margin: 0 !important;
}

.portfolio-swiper .swiper-pagination-bullet-active {
  background: var(--neon);
  height: 24px;
}

/* ─── Slide counter ─────────────────────────────────────────────────────── */
.slide-counter {
  position: fixed;
  bottom: 36px;
  left: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 100;
  font-family: 'Bungee', cursive;
  font-size: 13px;
  letter-spacing: 1px;
}

.counter-current {
  color: var(--neon);
}

.counter-divider {
  width: 32px;
  height: 1px;
  background: rgba(200,241,53,0.3);
}

.counter-total {
  color: var(--gray);
}

/* ─── Mobile ─────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  body.portfolio-page { overflow: hidden; }

  .portfolio-slide {
    flex-direction: column;
  }

  .slide-visual {
    width: 100%;
    height: 40%;
    flex-shrink: 0;
  }

  .slide-info {
    width: 100%;
    padding: 32px 24px;
    overflow-y: auto;
  }

  .slide-intro-content .section-title {
    font-size: clamp(40px, 12vw, 64px);
  }

  .mock-device { width: 220px; }

  .slide-counter { left: 24px; bottom: 24px; }

  .portfolio-swiper .swiper-pagination { right: 12px; }

/* last line of your mobile styles */
  .portfolio-swiper .swiper-pagination { right: 12px; }
}

/* ── CURSOR GLOW ─────────────────────────────────── */
.cursor-glow {
  position: fixed;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,241,53,0.28) 0%, rgba(200,241,53,0.06) 40%, transparent 70%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  mix-blend-mode: screen;
}