/* =====================================================
   THEME VARIABLES
===================================================== */
:root {
  --bg-main: #020813;
  --bg-surface: #060d1a;
  --bg-card: rgba(255, 255, 255, 0.03);

  --glass-dark: rgba(0, 0, 0, 0.45);
  --glass-light: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.07);

  --text-main: #f0f4ff;
  --text-soft: rgba(240, 244, 255, 0.8);
  --text-muted: rgba(240, 244, 255, 0.5);

  --accent: #00f2ff;
  --accent-secondary: #38bdf8;
  --accent-soft: rgba(0, 242, 255, 0.1);
  --accent-glow: rgba(0, 242, 255, 0.4);

  --border-soft: rgba(255, 255, 255, 0.08);

  --glow-text: 0 0 18px rgba(0, 242, 255, 0.7);
  --glow-soft: 0 0 14px rgba(0, 242, 255, 0.4);
  --glow-medium: 0 0 28px rgba(0, 242, 255, 0.6);
  --glow-strong: 0 0 40px rgba(0, 242, 255, 0.8);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  overflow-x: hidden;
  min-height: 100vh;
}

h1, h2, h3, .logo, .step-number, .pricing-tier, .amount {
  font-family: 'Syne', sans-serif;
}

/* =====================================================
   NAVBAR
===================================================== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 18px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(2, 8, 19, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  z-index: 900;
}

.logo {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--text-main);
}

.logo span {
  color: var(--accent);
  text-shadow: var(--glow-text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  position: relative;
  color: var(--text-soft);
  padding: 6px 14px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  border-radius: 6px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text-main);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 14px;
  bottom: 2px;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: calc(100% - 28px);
}

.nav-links a.nav-cta {
  background: var(--accent);
  color: #000;
  font-weight: 700;
  border-radius: 8px;
  padding: 8px 18px;
  margin-left: 6px;
  transition: all 0.3s;
}

.nav-links a.nav-cta:hover {
  box-shadow: var(--glow-medium);
  transform: translateY(-1px);
}

.nav-links a.nav-cta::after { display: none; }

#menu-icon {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--text-main);
  cursor: pointer;
  display: none;
}

@media (max-width: 1000px) {
  .navbar { padding: 16px 24px; }
  #menu-icon { display: block; z-index: 1200; }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 20px 0 24px;
    background: rgba(2, 8, 19, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1100;
  }

  .nav-links.active { display: flex; }

  .nav-links a {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
  }

  .nav-links a.nav-cta { margin-top: 8px; }
}

/* =====================================================
   SECTION LABELS & HEADINGS
===================================================== */
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.section-label.center { text-align: center; }

.section-heading {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-main);
  margin-bottom: 16px;
}

.section-heading.center { text-align: center; }

.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

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

/* Animated background orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 242, 255, 0.12) 0%, transparent 70%);
  top: -100px;
  left: -150px;
  animation: orbFloat 8s ease-in-out infinite;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.08) 0%, transparent 70%);
  bottom: 0;
  right: -100px;
  animation: orbFloat 10s ease-in-out infinite reverse;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 242, 255, 0.06) 0%, transparent 70%);
  top: 40%;
  left: 50%;
  animation: orbFloat 12s ease-in-out infinite 2s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(20px, -30px); }
  66% { transform: translate(-15px, 20px); }
}

.hero-content {
  max-width: 820px;
  padding: 0 24px;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.9s ease forwards;
}

/* Availability badge */
.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 242, 255, 0.08);
  border: 1px solid rgba(0, 242, 255, 0.25);
  border-radius: 999px;
  padding: 7px 18px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--text-main);
}

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

.hero h2 {
  height: 36px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--accent-secondary);
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin: 36px auto;
  max-width: 420px;
  background: var(--glass-light);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 20px 0;
  backdrop-filter: blur(12px);
}

.stat {
  flex: 1;
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  font-family: 'Syne', sans-serif;
}

.stat span {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--glass-border);
}

/* Buttons */
.buttons { margin-top: 28px; }

.btn {
  display: inline-flex;
  align-items: center;
  padding: 13px 30px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--accent);
  border: 1.5px solid rgba(0, 242, 255, 0.4);
  margin: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  background: transparent;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

.btn:hover {
  border-color: var(--accent);
  box-shadow: var(--glow-soft);
  transform: translateY(-2px);
}

.btn.primary {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}

.btn.primary:hover {
  box-shadow: var(--glow-medium);
  background: #1af5ff;
}

/* Socials */
.hero-socials {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 18px;
}

.hero-socials a {
  font-size: 1.5rem;
  color: var(--text-muted);
  transition: all 0.25s;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  background: var(--glass-light);
}

.hero-socials a:hover {
  color: var(--accent);
  border-color: var(--accent);
  box-shadow: var(--glow-soft);
  transform: translateY(-3px);
}

/* =====================================================
   TRUST BAR
===================================================== */
.trust-bar {
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.02);
  padding: 18px 60px;
  overflow: hidden;
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-inner > span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  white-space: nowrap;
}

.trust-logos {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-logos span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-soft);
  font-weight: 500;
}

.trust-logos i {
  font-size: 1.1rem;
  color: var(--accent);
}

/* =====================================================
   SECTIONS - BASE
===================================================== */
section {
  padding: 100px 10%;
}

@media (max-width: 768px) {
  section { padding: 80px 6%; }
}

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

.about-text {
  max-width: 520px;
}

.about-text .section-heading {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 14px;
  font-size: 1rem;
}

.skills-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skills span {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  border: 1px solid rgba(0, 242, 255, 0.25);
  border-radius: 8px;
  background: var(--accent-soft);
  transition: all 0.25s;
}

.skills span:hover {
  background: var(--accent);
  color: #000;
  transform: translateY(-2px);
}

@media (max-width: 860px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* =====================================================
   SERVICES
===================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
}

.service-card {
  padding: 32px;
  border-radius: 16px;
  background: var(--glass-light);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: rgba(0, 242, 255, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), var(--glow-soft);
  background: rgba(0, 242, 255, 0.04);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-main);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-list li {
  font-size: 0.82rem;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  font-size: 0.75rem;
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   FREELANCE DEMOS
===================================================== */
.freelance {
  padding: 100px 10%;
  text-align: center;
}

.freelance-sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 580px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.demo-card {
  background: var(--glass-light);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.demo-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 242, 255, 0.3);
  box-shadow: var(--glow-medium);
}

.demo-thumb {
  height: 150px;
  position: relative;
  background-size: cover;
  background-position: center;
}

.demo-restaurant { background: linear-gradient(135deg, #1a0c08 0%, #3d2010 100%); }
.demo-restaurant::after { content: '🍽️'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; opacity: 0.3; }

.demo-salon { background: linear-gradient(135deg, #1a0e0c 0%, #3d2020 100%); }
.demo-salon::after { content: '💆'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; opacity: 0.3; }

.demo-gym { background: linear-gradient(135deg, #080808 0%, #1e1e1e 100%); }
.demo-gym::after { content: '🏋️'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; opacity: 0.3; }

.demo-photography { background: linear-gradient(135deg, #0d0d0a 0%, #2a2518 100%); }
.demo-photography::after { content: '📷'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; opacity: 0.3; }

.demo-clinic { background: linear-gradient(135deg, #080f18 0%, #0d2137 100%); }
.demo-clinic::after { content: '🏥'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; opacity: 0.3; }

.demo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent 30%, rgba(0,0,0,0.7));
  display: flex; align-items: flex-end; padding: 1rem;
}

.demo-tag {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,0,0,0.6);
  padding: 0.2rem 0.55rem;
  border: 1px solid rgba(0, 242, 255, 0.25);
  border-radius: 4px;
}

.demo-info { padding: 1.2rem; }
.demo-info h3 { font-size: 0.95rem; color: var(--text-main); margin-bottom: 0.4rem; }
.demo-info p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 0.9rem; }

.demo-stack { display: flex; gap: 0.5rem; margin-bottom: 0.9rem; flex-wrap: wrap; }
.demo-stack span {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.18rem 0.5rem;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(0, 242, 255, 0.15);
  border-radius: 4px;
}

.demo-actions { display: flex; gap: 0.5rem; }

.demo-btn {
  padding: 0.5rem 0.9rem;
  font-size: 0.76rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
}

.demo-btn.open { background: var(--accent); color: #000; }
.demo-btn.open:hover { opacity: 0.85; transform: translateY(-1px); }

.demo-btn.preview {
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
}
.demo-btn.preview:hover { border-color: var(--accent); color: var(--accent); }

.demo-cta-card {
  background: linear-gradient(135deg, rgba(0,242,255,0.06), rgba(0,0,0,0.3));
  border-color: rgba(0, 242, 255, 0.15);
  display: flex; align-items: center; justify-content: center;
}
.demo-cta-inner { padding: 2.2rem; text-align: center; }
.demo-cta-icon { font-size: 2rem; display: block; margin-bottom: 0.8rem; color: var(--accent); }
.demo-cta-inner h3 { font-size: 1.1rem; color: var(--text-main); margin-bottom: 0.6rem; }
.demo-cta-inner p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.2rem; }

@media (max-width: 900px) { .demo-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .demo-grid { grid-template-columns: 1fr; } }

/* =====================================================
   PROCESS
===================================================== */
.process {
  background: linear-gradient(180deg, transparent, rgba(0, 242, 255, 0.02) 50%, transparent);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 200px;
  flex-shrink: 0;
}

.step-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 12px;
  transition: opacity 0.3s;
}

.process-step:hover .step-number {
  opacity: 1;
}

.step-content h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-main);
}

.step-content p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.process-connector {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin-top: 32px;
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .process-steps { flex-direction: column; align-items: center; gap: 20px; }
  .process-connector { width: 1px; height: 30px; background: linear-gradient(180deg, var(--accent), transparent); }
}

/* =====================================================
   TESTIMONIALS
===================================================== */
.testimonials { padding: 100px 10%; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 3rem;
}

.testimonial-card {
  padding: 32px;
  border-radius: 16px;
  background: var(--glass-light);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}

.testimonial-card:hover {
  border-color: rgba(0, 242, 255, 0.2);
  transform: translateY(-4px);
}

.stars {
  color: #fbbf24;
  font-size: 0.9rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

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

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), #38bdf8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #000;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* =====================================================
   PRICING
===================================================== */
.pricing { padding: 100px 10%; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
  align-items: stretch;
}

.pricing-card {
  padding: 36px 28px;
  border-radius: 18px;
  background: var(--glass-light);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  position: relative;
}

.pricing-card:hover {
  border-color: rgba(0, 242, 255, 0.3);
  transform: translateY(-5px);
}

.pricing-card.featured {
  background: linear-gradient(160deg, rgba(0, 242, 255, 0.08), rgba(56, 189, 248, 0.04));
  border-color: rgba(0, 242, 255, 0.4);
  box-shadow: 0 0 40px rgba(0, 242, 255, 0.1), 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(-8px);
}

.pricing-card.featured:hover {
  transform: translateY(-12px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
}

.pricing-tier {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.pricing-price {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  margin-bottom: 6px;
}

.currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 8px;
  font-family: 'Syne', sans-serif;
}

.amount {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
}

.pricing-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  margin-bottom: 28px;
}

.pricing-features li {
  font-size: 0.88rem;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li i {
  font-size: 1rem;
  color: var(--accent);
  flex-shrink: 0;
}

.pricing-features li.disabled {
  color: var(--text-muted);
  opacity: 0.5;
}

.pricing-features li.disabled i {
  color: var(--text-muted);
}

.pricing-btn {
  width: 100%;
  text-align: center;
  justify-content: center;
  padding: 13px;
  border-radius: 10px;
}

.pricing-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pricing-note a {
  color: var(--accent);
  text-decoration: none;
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
}

/* =====================================================
   DEVELOPER PROJECTS
===================================================== */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 0;
}

.project-card {
  padding: 28px;
  border-radius: 16px;
  background: var(--glass-light);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}

.project-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 242, 255, 0.25);
  box-shadow: var(--glow-soft);
}

.project-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.project-card p {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.65;
}

.project-card .tech {
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.project-card .tech strong { color: var(--text-main); }

.project-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
}

.project-btn {
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 0.85rem;
  text-decoration: none;
  border: 1.5px solid rgba(0, 242, 255, 0.4);
  color: var(--accent);
  font-weight: 600;
  transition: all 0.25s;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  background: transparent;
}

.project-btn.code:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
}

.project-btn.preview {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}

.project-btn.preview:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-medium);
}

/* =====================================================
   RESOURCES
===================================================== */
.linktree {
  padding: 100px 10%;
  text-align: center;
}

.linktree h2 {
  font-size: 2.2rem;
  color: var(--text-main);
  margin-bottom: 8px;
}

.linktree > p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

#resourceSearch {
  width: 100%;
  max-width: 400px;
  padding: 13px 20px;
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  outline: none;
  font-size: 0.95rem;
  margin-bottom: 24px;
  background: var(--glass-dark);
  color: var(--text-main);
  font-family: 'DM Sans', sans-serif;
  transition: 0.3s ease;
}

#resourceSearch::placeholder { color: var(--text-muted); }
#resourceSearch:focus { border-color: var(--accent); box-shadow: var(--glow-soft); }

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}

.filter-btn {
  padding: 7px 16px;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
  background: var(--glass-light);
  color: var(--text-soft);
  cursor: pointer;
  font-size: 0.85rem;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.25s;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--text-main);
}

.links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 500px;
  margin: auto;
}

.link-card {
  padding: 16px 20px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-main);
  font-size: 1rem;
  background: var(--glass-light);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  transition: all 0.3s;
  font-weight: 500;
}

.link-card span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 400;
}

.link-card:hover {
  transform: translateY(-3px) scale(1.01);
  border-color: rgba(0, 242, 255, 0.35);
  box-shadow: var(--glow-soft);
  background: rgba(0, 242, 255, 0.04);
}

/* =====================================================
   CONTACT
===================================================== */
.contact { padding: 100px 10%; }

.contact form {
  max-width: 640px;
  margin: 2rem auto 0;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--glass-light);
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
}

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

.contact input,
.contact textarea,
.contact .form-select {
  width: 100%;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  padding: 14px 16px;
  border-radius: 10px;
  outline: none;
  font-size: 0.92rem;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.25s;
  appearance: none;
}

.contact .form-select option {
  background: #060d1a;
  color: var(--text-main);
}

.contact textarea {
  resize: none;
  min-height: 130px;
}

.contact input:focus,
.contact textarea:focus,
.contact .form-select:focus {
  border-color: var(--accent);
  box-shadow: var(--glow-soft);
  background: rgba(0, 0, 0, 0.5);
}

.contact input::placeholder,
.contact textarea::placeholder { color: var(--text-muted); }

.contact button {
  margin-top: 6px;
  padding: 15px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'DM Sans', sans-serif;
  background: linear-gradient(135deg, var(--accent), #38bdf8);
  color: #000;
  transition: all 0.3s;
  position: relative;
}

.contact button:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-strong);
}

@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .contact form { padding: 28px 22px; }
}

/* =====================================================
   FOOTER
===================================================== */
.footer {
  border-top: 1px solid var(--glass-border);
  padding: 60px 10% 30px;
  background: rgba(0, 0, 0, 0.3);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}

.footer-brand .logo { margin-bottom: 10px; }

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--accent); }

.footer-social {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.footer-social a {
  font-size: 1.3rem;
  color: var(--text-muted);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
  background: var(--glass-light);
  transition: all 0.25s;
}

.footer-social a:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

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

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-tagline { color: rgba(0, 242, 255, 0.5); }

@media (max-width: 760px) {
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .footer-social { justify-content: flex-start; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

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

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.nav-links a.active { color: var(--accent); }
.nav-links a.active::after { width: calc(100% - 28px); }

.hidden { display: none !important; }

/* =====================================================
   LOADING SPINNER
===================================================== */
.spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 3px solid rgba(0, 0, 0, 0.3);
  border-top: 3px solid #000;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}

#submit-btn.loading .btn-text { display: none; }
#submit-btn.loading .spinner { display: block; }

@keyframes spin { to { transform: rotate(360deg); } }

/* =====================================================
   TOAST
===================================================== */
#toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: rgba(6, 13, 26, 0.95);
  color: var(--text-main);
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 0.9rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.4s ease;
  z-index: 9999;
  border: 1px solid var(--glass-border);
}

#toast.show { opacity: 1; transform: translateY(0); }
#toast.success { border-left: 3px solid var(--accent); }
#toast.error { border-left: 3px solid #f87171; }

/* =====================================================
   LIVE PREVIEW MODAL
===================================================== */
.preview-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.preview-modal.active { display: flex; }

.preview-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  height: 80vh;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0, 242, 255, 0.3);
  animation: scaleIn 0.3s ease;
}

.preview-content iframe { width: 100%; height: 100%; border: none; }

@keyframes scaleIn {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.preview-controls {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  gap: 8px;
  z-index: 20;
}

.preview-controls button,
.preview-controls a {
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  font-size: 1.1rem;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
}

.preview-controls button:hover,
.preview-controls a:hover { background: var(--accent); color: #000; }

.close-preview {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
}

.preview-modal.fullscreen .preview-content {
  width: 100%;
  height: 100%;
  max-width: none;
  border-radius: 0;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .section-heading { font-size: 1.9rem; }
  .hero-stats { max-width: 100%; }
  .buttons { display: flex; flex-direction: column; align-items: center; }
  .btn { margin: 6px 0; width: 100%; max-width: 280px; text-align: center; justify-content: center; }
  .trust-bar { padding: 14px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}