/* ============================================================
   RokByte — Global Stylesheet
   ============================================================ */

/* ---- Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background-color: #f8fafc; color: #1e293b; font-family: 'Inter', sans-serif; -webkit-font-smoothing: antialiased; }

/* Theme transition helper (used briefly on toggle for smooth change) */
html.theme-transition, html.theme-transition * {
  transition: background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease !important;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f8fafc; }
::-webkit-scrollbar-thumb { background: #7c3aed; border-radius: 3px; }

/* ---- Selection ---- */
::selection { background: rgba(124, 58, 237, 0.35); color: #fff; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 640px;
  line-height: 1.75;
}
.gradient-text {
  background: linear-gradient(135deg, #7c3aed, #ff6fbf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9b7cff;
  background: rgba(124,58,237,0.10);
  border: 1px solid rgba(124,58,237,0.18);
  padding: 0.35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: linear-gradient(135deg, #7c3aed, #ff6fbf);
  color: #fff;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(124,58,237,0.28);
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.14), transparent);
  transition: left 0.5s ease;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 34px rgba(124,58,237,0.32); }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: transparent;
  color: #1e293b;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(124,58,237,0.38);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-secondary:hover {
  background: rgba(124,58,237,0.08);
  border-color: #7c3aed;
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  background: transparent;
  color: #7c3aed;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 0.625rem;
  border: 1.5px solid #7c3aed;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-outline:hover { background: #7c3aed; color: #fff; transform: translateY(-1px); }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar { background: transparent; transition: all 0.3s ease; }
#navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226,232,240,0.6);
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}
.nav-link {
  color: #94a3b8;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, #7c3aed, #ff6fbf);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.mobile-nav-link {
  color: #94a3b8;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.5rem 0;
  display: block;
  border-bottom: 1px solid rgba(51,65,85,0.3);
  transition: color 0.2s;
}
.mobile-nav-link:hover, .mobile-nav-link.active { color: #fff; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1.25rem;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #7c3aed, #ff6fbf);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.card:hover::before { transform: scaleX(1); }
.card:hover {
  border-color: rgba(124,58,237,0.4);
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08), 0 0 0 1px rgba(124,58,237,0.1);
}

.card-glass {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(226,232,240,0.5);
  border-radius: 1.25rem;
}

/* ============================================================
   ICON BOXES
   ============================================================ */
.icon-box {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(255,111,191,0.1));
  border: 1px solid rgba(124,58,237,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.card:hover .icon-box {
  background: linear-gradient(135deg, #7c3aed, #ff6fbf);
  border-color: transparent;
  box-shadow: 0 8px 25px rgba(124,58,237,0.4);
}
.icon-box svg { color: #818cf8; transition: color 0.3s; }
.card:hover .icon-box svg { color: #fff; }

/* ============================================================
   FORMS
   ============================================================ */
.input-field {
  width: 100%;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 0.875rem 1.125rem;
  color: #1e293b;
  font-size: 0.9375rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.25s ease;
  outline: none;
}
.input-field:focus { border-color: #7c3aed; box-shadow: 0 0 0 3px rgba(124,58,237,0.15); }
.input-field::placeholder { color: #94a3b8; }
.input-field:hover:not(:focus) { border-color: #475569; }

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1e293b;
  margin-bottom: 0.375rem;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-bg {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(124,58,237,0.08) 0%, transparent 60%),
              radial-gradient(ellipse 50% 40% at 80% 50%, rgba(255,111,191,0.06) 0%, transparent 60%),
              #f8fafc;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124,58,237,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 0%, black 0%, transparent 70%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(124,58,237,0.25) 0%, transparent 70%);
  top: -200px; left: -100px;
  animation: float 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,111,191,0.18) 0%, transparent 70%);
  bottom: -100px; right: -50px;
  animation: float 10s ease-in-out infinite reverse;
}

/* ============================================================
   STATS (ENHANCED)
   ============================================================ */
.stat-card-enhanced {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(124,58,237,0.05) 0%, rgba(255,111,191,0.03) 100%);
  border: 1.5px solid rgba(124,58,237,0.15);
  border-radius: 1.5rem;
  backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  position: relative;
  overflow: hidden;
}
.stat-card-enhanced::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(124,58,237,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.stat-card-enhanced:hover::after {
  opacity: 1;
}
.stat-card-enhanced:hover {
  border-color: rgba(124,58,237,0.4);
  background: linear-gradient(135deg, rgba(124,58,237,0.12) 0%, rgba(255,111,191,0.08) 100%);
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(124,58,237,0.25), 0 0 0 1px rgba(124,58,237,0.2);
}

/* ============================================================
   PORTFOLIO CARDS (ENHANCED)
   ============================================================ */
.card-portfolio {
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.9) 100%);
  border: 1.5px solid #e2e8f0;
  border-radius: 1.5rem;
  padding: 1.5rem;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.card-portfolio::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(124,58,237,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: all 0.4s ease;
}
.card-portfolio:hover::before {
  opacity: 1;
  top: -25%;
  right: -25%;
}
.card-portfolio:hover {
  border-color: rgba(124,58,237,0.5);
  background: linear-gradient(135deg, rgba(248,250,252,1) 0%, rgba(124,58,237,0.08) 100%);
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(124,58,237,0.3), 0 0 1px rgba(124,58,237,0.2);
}

/* ============================================================
   BUTTON ENHANCED
   ============================================================ */
.btn-primary-enhanced {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #7c3aed, #ff6fbf);
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: 0.875rem;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(124,58,237,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-primary-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}
.btn-primary-enhanced:hover::before {
  left: 100%;
}
.btn-primary-enhanced:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(124,58,237,0.4), inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-primary-enhanced:active {
  transform: translateY(-1px);
}

/* ============================================================
   TECH BADGE ENHANCED
   ============================================================ */
.tech-badge-enhanced {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(124,58,237,0.08) 0%, rgba(255,111,191,0.05) 100%);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 0.625rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #7c3aed;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}
.tech-badge-enhanced:hover {
  background: linear-gradient(135deg, rgba(124,58,237,0.15) 0%, rgba(255,111,191,0.1) 100%);
  border-color: rgba(124,58,237,0.4);
  color: #6366f1;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124,58,237,0.15);
}

/* ============================================================
   STATS
   ============================================================ */
.stat-card {
  text-align: center;
  padding: 1.5rem;
  background: rgba(248,250,252,0.6);
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}
.stat-card:hover {
  border-color: rgba(124,58,237,0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #7c3aed, #ff6fbf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

/* ============================================================
   PORTFOLIO FILTER
   ============================================================ */
.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid #e2e8f0;
  background: transparent;
  color: #64748b;
  cursor: pointer;
  transition: all 0.25s ease;
}
.filter-btn:hover, .filter-btn.active {
  background: linear-gradient(135deg, #7c3aed, #ff6fbf);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 15px rgba(124,58,237,0.35);
}

/* ============================================================
   BADGE / TAG
   ============================================================ */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(124,58,237,0.15);
  color: #818cf8;
  border: 1px solid rgba(124,58,237,0.25);
}
.badge-cyan {
    background: rgba(255,111,191,0.12);
    color: #22d3ee;
    border-color: rgba(255,111,191,0.25);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 12px;
}
.badge-green {
  background: rgba(16,185,129,0.12);
  color: #34d399;
  border-color: rgba(16,185,129,0.25);
}

/* ============================================================
   PROCESS / STEPS
   ============================================================ */
.step-number {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed, #ff6fbf);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 8px 25px rgba(124,58,237,0.4);
  flex-shrink: 0;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1.25rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -0.5rem;
  right: 1.5rem;
  font-size: 8rem;
  color: rgba(124,58,237,0.1);
  font-family: serif;
  line-height: 1;
  pointer-events: none;
}
.testimonial-card:hover {
  border-color: rgba(124,58,237,0.35);
  box-shadow: 0 15px 50px rgba(0,0,0,0.4);
  transform: translateY(-4px);
}
.star { color: #f59e0b; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer-link { color: #64748b; text-decoration: none; transition: color 0.2s; }
.footer-link:hover { color: #1e293b; }
.social-icon {
  width: 2.25rem; height: 2.25rem;
  border-radius: 0.625rem;
  background: rgba(248,250,252,0.8);
  border: 1px solid #e2e8f0;
  display: flex; align-items: center; justify-content: center;
  color: #64748b;
  text-decoration: none;
  transition: all 0.25s ease;
}
.social-icon:hover {
  background: linear-gradient(135deg, #7c3aed, #ff6fbf);
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(124,58,237,0.4);
}

/* ============================================================
   ADMIN PANEL
   ============================================================ */
.admin-sidebar {
  width: 260px;
  height: 100vh;
  background: #f8fafc;
  border-right: 1px solid #e2e8f0;
  flex-shrink: 0;
  position: fixed;
  top: 0; left: 0;
  overflow-y: scroll;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  z-index: 40;
  transition: transform 0.3s ease;
}
.admin-content {
  margin-left: 260px;
  height: 100vh;
  overflow-y: auto;
  background: #f8fafc;
}
.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.625rem;
  color: #64748b;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
  margin: 0.125rem 0.75rem;
}
.admin-nav-link:hover { background: rgba(124,58,237,0.1); color: #1e293b; }
.admin-nav-link.active {
  background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(255,111,191,0.05));
  color: #7c3aed;
  border: 1px solid rgba(124,58,237,0.2);
}
.admin-nav-link.active svg { color: #7c3aed; }
.admin-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.5rem;
}
.admin-stat-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.25s ease;
}
.admin-stat-card:hover { border-color: rgba(124,58,237,0.35); transform: translateY(-2px); }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th {
  background: rgba(248,250,252,0.5);
  padding: 0.875rem 1rem;
  text-align: left;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  border-bottom: 1px solid #e2e8f0;
}
.admin-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(226,232,240,0.5);
  color: #64748b;
  font-size: 0.9rem;
  vertical-align: middle;
}
.admin-table tr:hover td { background: rgba(124,58,237,0.02); }
.status-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}
.status-new { background: rgba(124,58,237,0.15); color: #818cf8; }
.status-read { background: rgba(255,111,191,0.12); color: #22d3ee; }
.status-replied { background: rgba(16,185,129,0.12); color: #34d399; }
.status-archived { background: rgba(71,85,105,0.3); color: #94a3b8; }
.status-active { background: rgba(16,185,129,0.12); color: #34d399; }
.status-inactive { background: rgba(239,68,68,0.12); color: #f87171; }

/* ============================================================
   ALERTS
   ============================================================ */
.alert { padding: 1rem 1.25rem; border-radius: 0.75rem; font-size: 0.9rem; display: flex; align-items: start; gap: 0.75rem; }
.alert-success { background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.3); color: #34d399; }
.alert-error { background: rgba(239,68,68,0.12); border: 1px solid rgba(239,68,68,0.3); color: #f87171; }
.alert-info { background: rgba(124,58,237,0.12); border: 1px solid rgba(124,58,237,0.3); color: #818cf8; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 8rem 1.5rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(124,58,237,0.15) 0%, transparent 70%);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124,58,237,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 0%, black 0%, transparent 70%);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp  { 0% { opacity: 0; transform: translateY(30px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn  { 0% { opacity: 0; } 100% { opacity: 1; } }
@keyframes float   { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
@keyframes glow    { 0% { box-shadow: 0 0 20px rgba(124,58,237,0.3); } 100% { box-shadow: 0 0 50px rgba(124,58,237,0.7); } }
@keyframes spin    { to { transform: rotate(360deg); } }
@keyframes pulse   { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }

.animate-fade-up  { animation: fadeUp 0.7s ease forwards; }
.animate-fade-in  { animation: fadeIn 0.5s ease forwards; }
.animate-float    { animation: float 6s ease-in-out infinite; }

.delay-100 { animation-delay: 0.1s; opacity: 0; }
.delay-200 { animation-delay: 0.2s; opacity: 0; }
.delay-300 { animation-delay: 0.3s; opacity: 0; }
.delay-400 { animation-delay: 0.4s; opacity: 0; }
.delay-500 { animation-delay: 0.5s; opacity: 0; }
.delay-600 { animation-delay: 0.6s; opacity: 0; }

/* ============================================================
   MISC UTILITIES
   ============================================================ */
.divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(124,58,237,0.3), transparent); margin: 5rem 0; }
.glow-border { box-shadow: 0 0 0 1px rgba(124,58,237,0.3), 0 0 30px rgba(124,58,237,0.15); }
.section-padding { padding: 6rem 1.5rem; }
.container { max-width: 1200px; margin: 0 auto; }
.container-lg { max-width: 1400px; margin: 0 auto; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .admin-sidebar { transform: translateX(-100%); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-content { margin-left: 0; }
  .section-padding { padding: 4rem 1rem; }
  .stat-number { font-size: 2rem; }
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, rgba(124,58,237,0.15) 0%, rgba(255,111,191,0.08) 100%);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 2rem;
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(124,58,237,0.08) 0%, transparent 60%);
  animation: float 10s ease-in-out infinite;
}

/* ============================================================
   TECH STACK BADGES
   ============================================================ */
.tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  border: 1px solid #94a3b8;
  border-radius: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #334155;
  transition: all 0.2s;
}
.tech-badge:hover { border-color: rgba(124,58,237,0.4); color: #c7d2fe; }

/* ============================================================
   PROSE (rich text content)
   ============================================================ */
.prose-custom h2 { font-size: 1.5rem; font-weight: 700; color: #f8fafc; margin: 2rem 0 1rem; }
.prose-custom h3 { font-size: 1.25rem; font-weight: 600; color: #f1f5f9; margin: 1.5rem 0 0.75rem; }
.prose-custom p  { margin-bottom: 1rem; color: #94a3b8; line-height: 1.8; }
.prose-custom ul, .prose-custom ol { margin: 1rem 0 1rem 1.5rem; color: #94a3b8; line-height: 1.8; }
.prose-custom ul { list-style: disc; }
.prose-custom ol { list-style: decimal; }
.prose-custom li { margin-bottom: 0.25rem; }
.prose-custom strong { color: #e2e8f0; font-weight: 600; }
.prose-custom a { color: #7c3aed; text-decoration: underline; }
.prose-custom a:hover { color: #818cf8; }
.prose-custom blockquote { border-left: 3px solid #7c3aed; padding-left: 1rem; color: #64748b; font-style: italic; margin: 1.5rem 0; }

/* ============================================================
   LOADING SPINNER
   ============================================================ */
.spinner {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid rgba(124,58,237,0.3);
  border-top-color: #7c3aed;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}

.tech-stack-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: rgba(124, 58, 237, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
}

.tech-stack-item:hover {
    background: rgba(124, 58, 237, 0.08);
    transform: translateY(-5px);
}

.tech-stack-item i {
    font-size: 32px;
    margin-bottom: 15px;
}

.text-slate-300, .text-slate-400, .text-slate-200 {
    color: #64748b !important;
}

