/* ============================================
   PREMIUM DARK PORTFOLIO - STYLES
   ============================================ */

:root {
  --black: #0a0a0a;
  --black-soft: #111111;
  --dark: #161616;
  --dark-muted: #1a1a1a;
  --grey: #2a2a2a;
  --grey-light: #404040;
  --grey-muted: #8a8a8a;
  --white: #fafafa;
  --white-dim: #e5e5e5;
  --accent: #5865F2;
  --glow: rgba(255, 255, 255, 0.08);
  --glow-strong: rgba(255, 255, 255, 0.15);
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ========== ANIMATED GRADIENT BACKGROUND ========== */
.bg-gradient {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: var(--black);
  overflow: hidden;
}

.bg-gradient::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: 
    radial-gradient(ellipse 70% 60% at 30% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 70% 80%, rgba(255,255,255,0.06) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(255,255,255,0.04) 0%, transparent 60%),
    linear-gradient(135deg, rgba(20,20,20,0.9) 0%, rgba(10,10,10,1) 50%, rgba(30,30,30,0.95) 100%);
  animation: gradientMove 18s ease-in-out infinite;
}

.bg-gradient::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.05) 0%, transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.04) 0%, transparent 35%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.02) 0%, transparent 50%);
  animation: gradientFloat 25s ease-in-out infinite reverse;
}

@keyframes gradientMove {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(3%, -2%) scale(1.03); }
  50% { transform: translate(-2%, 3%) scale(0.98); }
  75% { transform: translate(-3%, -1%) scale(1.02); }
}

@keyframes gradientFloat {
  0%, 100% { opacity: 1; transform: translate(0, 0); }
  50% { opacity: 0.8; transform: translate(-5%, 5%); }
}

/* ========== NAVIGATION ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 3rem;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  color: var(--grey-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--white);
  transition: width var(--transition);
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-discord {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--accent), #4752c4);
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 10px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.nav-discord:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(88, 101, 242, 0.4);
}

.nav-discord svg {
  width: 18px;
  height: 18px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
}

/* ========== SECTIONS COMMON ========== */
section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-muted);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
}

/* ========== HERO SECTION ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  padding-top: 8rem;
  position: relative;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-badge {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--grey-muted);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease;
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.1s backwards;
}

.gradient-text {
  background: linear-gradient(135deg, var(--white) 0%, var(--grey-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--grey-muted);
  margin-bottom: 2rem;
  max-width: 560px;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.3s backwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn svg {
  width: 20px;
  height: 20px;
}

.btn-primary {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.hero-visual {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  width: 100%;
  max-width: 700px;
  height: 480px;
  object-fit: cover;
  display: block;
  animation: fadeInUp 1s ease 0.4s backwards, heroImageFloat 6s ease-in-out infinite 1.4s;
}

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

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: var(--grey-muted);
  font-size: 0.75rem;
  animation: bounce 2s ease-in-out infinite;
}

.hero-scroll svg {
  width: 24px;
  height: 24px;
}

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== ABOUT SECTION ========== */
.about-full {
  position: relative;
  padding: 2rem 0 4rem;
}

.about-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.about-name {
  display: inline-block;
  font-size: 1.1rem;
  color: var(--grey-muted);
  margin-bottom: 1rem;
}

.about-name strong {
  color: var(--white);
  font-weight: 600;
}

.about-text-large {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--white-dim);
  line-height: 1.9;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.highlight-card {
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  transition: var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition);
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.highlight-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.highlight-icon svg {
  width: 26px;
  height: 26px;
}

/* Highlight color variants */
.highlight-blue {
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.2);
}
.highlight-blue .highlight-icon { background: rgba(59, 130, 246, 0.25); color: #60a5fa; }
.highlight-blue:hover { border-color: rgba(59, 130, 246, 0.4); box-shadow: 0 20px 50px rgba(59, 130, 246, 0.15); }

.highlight-purple {
  background: rgba(139, 92, 246, 0.08);
  border-color: rgba(139, 92, 246, 0.2);
}
.highlight-purple .highlight-icon { background: rgba(139, 92, 246, 0.25); color: #a78bfa; }
.highlight-purple:hover { border-color: rgba(139, 92, 246, 0.4); box-shadow: 0 20px 50px rgba(139, 92, 246, 0.15); }

.highlight-cyan {
  background: rgba(6, 182, 212, 0.08);
  border-color: rgba(6, 182, 212, 0.2);
}
.highlight-cyan .highlight-icon { background: rgba(6, 182, 212, 0.25); color: #22d3ee; }
.highlight-cyan:hover { border-color: rgba(6, 182, 212, 0.4); box-shadow: 0 20px 50px rgba(6, 182, 212, 0.15); }

.highlight-orange {
  background: rgba(249, 115, 22, 0.08);
  border-color: rgba(249, 115, 22, 0.2);
}
.highlight-orange .highlight-icon { background: rgba(249, 115, 22, 0.25); color: #fb923c; }
.highlight-orange:hover { border-color: rgba(249, 115, 22, 0.4); box-shadow: 0 20px 50px rgba(249, 115, 22, 0.15); }

.highlight-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--white);
}

.highlight-card p {
  font-size: 0.9rem;
  color: var(--grey-muted);
}

/* ========== PROJECTS SECTION ========== */
.project-grid-large {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.project-card-large {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.project-card-large:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.project-image-large {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.project-image-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card-large:hover .project-image-large img {
  transform: scale(1.08);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.9) 100%);
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
  align-items: flex-end;
  opacity: 0;
  transition: var(--transition);
}

.project-card-large:hover .project-overlay {
  opacity: 1;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 8px;
  transition: var(--transition);
}

.project-link:hover {
  background: var(--white);
  color: var(--black);
}

.project-link svg {
  width: 16px;
  height: 16px;
}

.project-info {
  padding: 1.75rem;
}

.project-info h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.project-info p {
  font-size: 0.9rem;
  color: var(--grey-muted);
  margin-bottom: 1rem;
}

.project-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.project-tags span {
  padding: 0.25rem 0.6rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  font-size: 0.75rem;
  color: var(--grey-muted);
}

.project-note {
  font-size: 0.85rem;
  color: var(--grey-muted);
  font-style: italic;
  margin-bottom: 0.5rem;
}

.project-badge-unavailable {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 6px;
  font-size: 0.75rem;
  color: #f87171;
  margin-bottom: 0.75rem;
}

.project-unavailable {
  padding: 0.5rem 1rem;
  background: rgba(0, 0, 0, 0.8);
  color: var(--grey-muted);
  font-size: 0.9rem;
  border-radius: 8px;
}

.project-overlay-center {
  align-items: center;
  justify-content: center;
}

/* ========== SKILLS SECTION ========== */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}

.skill-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
}

.skill-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.skill-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  color: var(--white);
  transition: var(--transition);
}

.skill-card:hover .skill-icon {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.skill-icon svg {
  width: 28px;
  height: 28px;
}

.skill-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.skill-card p {
  font-size: 0.85rem;
  color: var(--grey-muted);
}

/* Skill card color variants */
.skill-card-blue { --skill-color: #3b82f6; --skill-bg: rgba(59, 130, 246, 0.12); }
.skill-card-purple { --skill-color: #8b5cf6; --skill-bg: rgba(139, 92, 246, 0.12); }
.skill-card-cyan { --skill-color: #06b6d4; --skill-bg: rgba(6, 182, 212, 0.12); }
.skill-card-orange { --skill-color: #f97316; --skill-bg: rgba(249, 115, 22, 0.12); }
.skill-card-green { --skill-color: #22c55e; --skill-bg: rgba(34, 197, 94, 0.12); }
.skill-card-pink { --skill-color: #ec4899; --skill-bg: rgba(236, 72, 153, 0.12); }
.skill-card-discord { --skill-color: #5865F2; --skill-bg: rgba(88, 101, 242, 0.12); }

.skill-card-blue .skill-icon,
.skill-card-purple .skill-icon,
.skill-card-cyan .skill-icon,
.skill-card-orange .skill-icon,
.skill-card-green .skill-icon,
.skill-card-pink .skill-icon,
.skill-card-discord .skill-icon {
  background: var(--skill-bg);
  color: var(--skill-color);
}

.skill-card-blue:hover,
.skill-card-purple:hover,
.skill-card-cyan:hover,
.skill-card-orange:hover,
.skill-card-green:hover,
.skill-card-pink:hover,
.skill-card-discord:hover {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.skill-card-blue:hover .skill-icon { box-shadow: 0 0 25px rgba(59, 130, 246, 0.3); }
.skill-card-purple:hover .skill-icon { box-shadow: 0 0 25px rgba(139, 92, 246, 0.3); }
.skill-card-cyan:hover .skill-icon { box-shadow: 0 0 25px rgba(6, 182, 212, 0.3); }
.skill-card-orange:hover .skill-icon { box-shadow: 0 0 25px rgba(249, 115, 22, 0.3); }
.skill-card-green:hover .skill-icon { box-shadow: 0 0 25px rgba(34, 197, 94, 0.3); }
.skill-card-pink:hover .skill-icon { box-shadow: 0 0 25px rgba(236, 72, 153, 0.3); }
.skill-card-discord:hover .skill-icon { box-shadow: 0 0 25px rgba(88, 101, 242, 0.3); }

/* ========== TESTIMONIALS SECTION (removed, keep for fallback) ========== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
}

.testimonial-quote {
  color: var(--grey-muted);
  margin-bottom: 1rem;
}

.testimonial-quote svg {
  width: 32px;
  height: 32px;
}

.testimonial-card p {
  font-size: 1rem;
  color: var(--white-dim);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
}

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

/* ========== PRICING SECTION ========== */
.pricing {
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/money.png') center 42% / min(1040px, 96%) no-repeat;
  opacity: 0.28;
  pointer-events: none;
  z-index: 0;
}

.pricing-header,
.pricing-grid,
.pricing-disclaimer {
  position: relative;
  z-index: 1;
}

.pricing-lead {
  max-width: 42rem;
  margin: 0.85rem auto 0;
  color: var(--grey-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 1120px;
  margin: 0 auto;
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.pricing-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
}

.pricing-card--featured {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  transform: scale(1.02);
}

.pricing-badge {
  align-self: flex-start;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white-dim);
  margin-bottom: 1rem;
}

.pricing-tier {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--grey-muted);
  margin-bottom: 0.5rem;
}

.pricing-range {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.25rem;
}

.pricing-currency {
  font-size: 0.55em;
  font-weight: 600;
  opacity: 0.88;
  margin-right: 0.06em;
}

.pricing-range--custom {
  font-size: clamp(1.45rem, 3.5vw, 1.95rem);
}

.pricing-range-note {
  font-size: 0.82rem;
  color: var(--grey-muted);
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  flex: 1;
  margin-bottom: 1.75rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--white-dim);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.pricing-features li:last-child {
  margin-bottom: 0;
}

.pricing-features svg {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.62);
  margin-top: 0.12rem;
}

.pricing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: auto;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
}

.pricing-btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.pricing-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.32);
}

.pricing-btn--solid {
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--white);
}

.pricing-btn--solid:hover {
  background: var(--white-dim);
  border-color: var(--white-dim);
  color: var(--black);
}

.pricing-disclaimer {
  max-width: 52rem;
  margin: 2.5rem auto 0;
  padding: 1.15rem 1.35rem;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--grey-muted);
  text-align: center;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.pricing-disclaimer strong {
  color: var(--white-dim);
}

@media (max-width: 960px) {
  .pricing-card--featured {
    transform: none;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .pricing::before {
    background-size: min(560px, 94%);
    opacity: 0.22;
  }

  .pricing-bg-title {
    font-size: clamp(3.5rem, 22vw, 8rem);
    top: 35%;
  }
}

/* ========== FAQ SECTION ========== */
.faq {
  position: relative;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 330px) 1fr;
  gap: 2rem;
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
}

.faq-intro-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 28px;
  padding: 2rem 1.9rem;
  min-height: 360px;
  overflow: hidden;
}

.faq-intro-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(88, 101, 242, 0.38);
  background: rgba(88, 101, 242, 0.14);
  color: #b9c1ff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.faq-intro-title {
  margin-top: 1.4rem;
  max-width: 12ch;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.02em;
}

.faq-intro-mark {
  position: absolute;
  right: 1rem;
  bottom: -0.5rem;
  font-size: clamp(5rem, 10vw, 7rem);
  color: rgba(255, 255, 255, 0.06);
  font-weight: 700;
  line-height: 1;
  user-select: none;
}

.faq-grid {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32);
}

.faq-item.active {
  border-color: rgba(88, 101, 242, 0.45);
  box-shadow: 0 0 32px rgba(88, 101, 242, 0.16);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.25rem 1.35rem;
  background: transparent;
  border: none;
  color: var(--white-dim);
  font-size: 1.1rem;
  font-weight: 600;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.faq-trigger:hover {
  background: rgba(255, 255, 255, 0.03);
}

.faq-trigger span:last-of-type {
  flex: 1;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  color: var(--white-dim);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.faq-item.active .faq-chevron {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-content {
  max-height: 360px;
}

.faq-content p {
  padding: 0 1.35rem 1.25rem;
  font-size: 0.95rem;
  color: var(--grey-muted);
  line-height: 1.65;
}

.faq-content a {
  color: var(--white-dim);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-content a:hover {
  color: var(--white);
}

@media (max-width: 960px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .faq-intro-card {
    min-height: 230px;
  }

  .faq-intro-title {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .faq-content p {
    padding: 0 1.25rem 1rem 1.25rem;
  }

  .faq-trigger {
    padding: 1rem 1.25rem;
    font-size: 1rem;
  }
}

/* ========== VENOX STUDIOS — text wordmark only (no logo image) ========== */
.nav-logo-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
}

.nav-logo-main {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
}

.nav-logo-sub {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 0.95em;
  color: var(--grey-muted);
  letter-spacing: 0.02em;
}

.hero-title-studios .hero-studios-line {
  display: inline-block;
}

.contact-form-brand-row {
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-form-wordmark {
  font-size: 1.2rem;
}

.footer-logo .nav-logo-wordmark {
  transition: opacity var(--transition);
}

.footer-logo:hover .nav-logo-main {
  color: var(--white);
}

.footer-logo:hover .nav-logo-sub {
  color: var(--grey-light);
}

@media (max-width: 480px) {
  .nav-logo-wordmark .nav-logo-sub {
    display: none;
  }
}

/* ========== CONTACT SECTION ========== */
.contact-lead-simple {
  max-width: 640px;
  margin: 0.75rem auto 0;
  color: var(--grey-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.contact-simple {
  max-width: 780px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2.5rem;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  padding: 1.75rem;
  border-radius: var(--radius);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.contact-discord-card {
  background: linear-gradient(145deg, rgba(88, 101, 242, 0.15), rgba(88, 101, 242, 0.05));
  border-color: rgba(88, 101, 242, 0.3);
}

.contact-discord-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(88, 101, 242, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.contact-discord-card:hover {
  border-color: rgba(88, 101, 242, 0.5);
  box-shadow: 0 15px 45px rgba(88, 101, 242, 0.2);
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.03);
}

.contact-info-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: white;
  margin-bottom: 1rem;
}

.contact-discord-card .contact-card-icon {
  background: rgba(88, 101, 242, 0.4);
  color: white;
}

.contact-card-icon svg,
.contact-info-card > svg {
  width: 24px;
  height: 24px;
}

.contact-info-card > svg {
  color: var(--accent);
  margin-bottom: 1rem;
}

.contact-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.contact-card p {
  color: var(--grey-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.contact-card .btn-discord {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.25rem;
  background: #5865F2;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 10px;
  transition: var(--transition);
}

.contact-card .btn-discord:hover {
  background: #4752c4;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(88, 101, 242, 0.4);
}

.contact-card .btn-discord svg {
  width: 18px;
  height: 18px;
}

.contact-form-wrapper {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.contact-form-wrapper:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

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

.contact-form-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  align-items: stretch;
  min-height: 320px;
}

.contact-form-shell > .contact-form {
  grid-area: 1 / 1;
  align-self: start;
  transition:
    opacity 0.38s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0s linear 0.38s;
}

.contact-form-shell > .contact-form.contact-form--hide {
  opacity: 0;
  transform: translateY(-10px) scale(0.985);
  visibility: hidden;
  pointer-events: none;
}

.contact-form-shell > .contact-success {
  grid-area: 1 / 1;
  place-self: center;
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem 0.5rem;
  position: relative;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0.12s,
    visibility 0s linear 0.57s;
}

.contact-form-shell > .contact-success.contact-success--show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.08s,
    visibility 0s;
}

.contact-form-shell > .contact-success[hidden] {
  display: none !important;
}

.contact-success-glow {
  position: absolute;
  inset: auto;
  top: 50%;
  left: 50%;
  width: 140px;
  height: 140px;
  margin: -70px 0 0 -70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.22) 0%, transparent 68%);
  opacity: 0;
  transform: scale(0.5);
  pointer-events: none;
  z-index: 0;
}

.contact-success--show .contact-success-glow {
  animation: contactSuccessGlow 0.85s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
}

@keyframes contactSuccessGlow {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.contact-success-icon-wrap {
  position: relative;
  z-index: 1;
  width: 88px;
  height: 88px;
  margin-bottom: 1.25rem;
  transform: scale(0.6);
  opacity: 0;
}

.contact-success--show .contact-success-icon-wrap {
  animation: contactSuccessIconPop 0.55s cubic-bezier(0.34, 1.45, 0.64, 1) 0.1s forwards;
}

@keyframes contactSuccessIconPop {
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.contact-success-svg {
  width: 88px;
  height: 88px;
  display: block;
  filter: drop-shadow(0 0 14px rgba(34, 197, 94, 0.45));
}

.contact-success-ring {
  fill: none;
  stroke: rgba(74, 222, 128, 0.45);
  stroke-width: 2;
  stroke-dasharray: 226;
  stroke-dashoffset: 226;
  transform-origin: 44px 44px;
  transform: rotate(-90deg);
}

.contact-success--show .contact-success-ring {
  animation: contactSuccessRingDraw 0.55s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@keyframes contactSuccessRingDraw {
  to {
    stroke-dashoffset: 0;
  }
}

.contact-success-check {
  fill: none;
  stroke: #4ade80;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 64;
  stroke-dashoffset: 64;
}

.contact-success--show .contact-success-check {
  animation: contactSuccessCheckDraw 0.75s cubic-bezier(0.65, 0, 0.35, 1) 0.35s forwards;
}

@keyframes contactSuccessCheckDraw {
  to {
    stroke-dashoffset: 0;
  }
}

.contact-success-title {
  position: relative;
  z-index: 1;
  margin: 0 0 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(8px);
}

.contact-success--show .contact-success-title {
  animation: contactSuccessFadeUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.55s forwards;
}

.contact-success-text {
  position: relative;
  z-index: 1;
  margin: 0 0 1.35rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--grey-muted);
  max-width: 28ch;
  opacity: 0;
  transform: translateY(8px);
}

.contact-success--show .contact-success-text {
  animation: contactSuccessFadeUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.68s forwards;
}

@keyframes contactSuccessFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-success-reset {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(6px);
}

.contact-success--show .contact-success-reset {
  animation: contactSuccessFadeUp 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0.85s forwards;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white-dim);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--white);
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--grey-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(88, 101, 242, 0.2);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-color: rgba(26, 26, 26, 0.95);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%238a8a8a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: #161616;
  color: #e5e5e5;
}

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

.btn-submit {
  margin-top: 0.5rem;
  padding: 1rem 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-submit:hover:not(:disabled) {
  transform: translateY(-2px);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Discord (lila) – Standard */
.btn-submit-discord {
  background: linear-gradient(135deg, #5865F2, #4752c4);
  color: white;
  box-shadow: 0 4px 20px rgba(88, 101, 242, 0.35);
}
.btn-submit-discord:hover:not(:disabled) {
  box-shadow: 0 6px 30px rgba(88, 101, 242, 0.45);
}

/* Email (yellow) */
.btn-submit-email {
  background: linear-gradient(135deg, #eab308, #ca8a04);
  color: #0a0a0a;
  box-shadow: 0 4px 20px rgba(234, 179, 8, 0.35);
}
.btn-submit-email:hover:not(:disabled) {
  box-shadow: 0 6px 30px rgba(234, 179, 8, 0.45);
}

/* WhatsApp (green) */
.btn-submit-whatsapp {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.35);
}
.btn-submit-whatsapp:hover:not(:disabled) {
  box-shadow: 0 6px 30px rgba(34, 197, 94, 0.45);
}

.form-status {
  font-size: 0.9rem;
  margin-top: 0.5rem;
  min-height: 1.5em;
}

.form-status.success { color: #22c55e; }
.form-status.error { color: #ef4444; }

/* ========== FOOTER ========== */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2.5rem 2rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}

.footer-nav {
  display: flex;
  gap: 2rem;
}

.footer-nav a {
  color: var(--grey-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--grey-muted);
}

/* ========== SCROLL REVEAL (for JS) ========== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 6rem;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
    max-width: 550px;
  }

  .hero-image {
    max-width: 100%;
    height: 380px;
  }

  .about-highlights {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 2rem;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    gap: 1.5rem;
  }

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

  .nav-discord {
    display: none;
  }

  .nav-discord.mobile-open {
    display: flex;
    position: fixed;
    top: 280px;
    left: 50%;
    transform: translateX(-50%);
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

.nav-toggle {
  padding: 0.5rem;
}

.nav-toggle span {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
}

  .nav {
    padding: 1rem 1.5rem;
  }

  section {
    padding: 4rem 1.5rem;
  }

  .project-grid-large {
    grid-template-columns: 1fr;
  }

  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-side {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .contact-card {
    flex: 1;
    min-width: 200px;
  }

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

  .footer-content {
    flex-direction: column;
  }

  .footer-nav {
    gap: 1.5rem;
  }
}

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

@media (max-width: 500px) {
  .contact-side {
    flex-direction: column;
  }

  .contact-card {
    min-width: 100%;
  }
}

@media (max-width: 640px) {
  .about-highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-btns {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .skills-grid {
    grid-template-columns: 1fr;
  }
}
