/* ==========================================================================
   Premium Portfolio CSS — Madan Sharma Dev
   Inspired by WHP Creative — Advanced 3D Portfolio
   ========================================================================== */

:root {
  --bg: #0a0a0a;
  --fg: #ffffff;
  --accent: #c8ff00;
  --accent2: #6c63ff;
  --muted: rgba(255, 255, 255, 0.5);
  --glass: rgba(255, 255, 255, 0.05);
  --card-bg: rgba(255, 255, 255, 0.03);
  --border: rgba(255, 255, 255, 0.08);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Reset & Base
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  cursor: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--accent);
  color: black;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: none; }
input, textarea { font-family: inherit; cursor: none; }

/* Custom Cursor
   ========================================================================== */

.cursor {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}

.cursor-follower {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: difference;
  transition: transform 0.15s ease-out, background 0.3s ease;
}

.cursor-follower.hovering {
  transform: translate(-50%, -50%) scale(1.8);
  background: rgba(200, 255, 0, 0.15);
  border-color: var(--accent);
}

/* Three.js Canvas
   ========================================================================== */

#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
}

/* Snap Sections
   ========================================================================== */

.snap-section {
  height: 100vh;
  width: 100%;
  scroll-snap-align: start;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

/* Shared Components
   ========================================================================== */

.accent { color: var(--accent); }

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  font-weight: 500;
  position: relative;
  padding-left: 2rem;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.2rem;
  height: 1px;
  background: var(--accent);
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
}

/* Hero Section
   ========================================================================== */

.hero-content {
  text-align: center;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(200, 255, 0, 0.3);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 9rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}

.hero-line {
  display: block;
  overflow: hidden;
}

.hero-line .hero-line-inner {
  display: inline-block;
  transform: translateY(110%);
  animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.line-1 .hero-line-inner { animation-delay: 0.3s; }
.line-2 .hero-line-inner { animation-delay: 0.5s; }

.hero-role {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.8s forwards;
  letter-spacing: 0.03em;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 1s forwards;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 1.2s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: var(--accent);
  color: black;
  border: none;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: 0.02em;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(200, 255, 0, 0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: transparent;
  color: var(--fg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: scale(1.05);
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* Marquee Section
   ========================================================================== */

.marquee-section {
  height: auto;
  min-height: auto;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.marquee-track {
  width: 100%;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  gap: 2rem;
  align-items: center;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.marquee-content span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.marquee-content .dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* About Section
   ========================================================================== */

.about-section {
  padding: 0 4rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  max-width: 1400px;
  width: 100%;
}

.about-left, .about-right {
  /* structural wrappers */
}

.about-text {
  margin-top: 1rem;
}

.about-text .large-text {
  font-size: 1.3rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: var(--fg);
}

.about-text p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-weight: 300;
}

.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat-item .stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-item .stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

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

/* Stats Counter Section
   ========================================================================== */

.stats-section {
  padding: 0 4rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  max-width: 1200px;
  width: 100%;
}

.stat-block {
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--card-bg);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-block:hover {
  border-color: rgba(200, 255, 0, 0.3);
  transform: translateY(-5px);
  background: rgba(200, 255, 0, 0.03);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--accent);
  display: inline;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--accent);
}

.stat-desc {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Skills Section
   ========================================================================== */

.skills-section {
  padding: 0 4rem;
  flex-direction: column;
}

.skills-header {
  margin-bottom: 3rem;
  max-width: 1400px;
  width: 100%;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1400px;
  width: 100%;
}

.skill-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.skill-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(200, 255, 0, 0.06), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.skill-card:hover {
  border-color: rgba(200, 255, 0, 0.25);
  transform: translateY(-8px);
}

.skill-card:hover::before { opacity: 1; }

.skill-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
  color: var(--accent);
}

.skill-card-icon svg {
  width: 100%;
  height: 100%;
}

.skill-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 1rem;
  color: var(--fg);
}

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

.skill-card-tags span {
  padding: 0.35rem 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Work/Projects Section
   ========================================================================== */

.work-section {
  padding: 0 4rem;
  flex-direction: column;
}

.work-header {
  margin-bottom: 3rem;
  max-width: 1400px;
  width: 100%;
}

.projects-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 1400px;
  width: 100%;
}

.project-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 3rem;
  align-items: center;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  cursor: none;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.project-card:hover {
  padding-left: 2rem;
  border-color: rgba(200, 255, 0, 0.3);
}

.project-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.08);
  transition: color 0.5s ease;
  min-width: 100px;
}

.project-card:hover .project-number {
  color: var(--accent);
}

.project-card-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: transform 0.5s ease;
}

.project-card:hover .project-card-content h3 {
  transform: translateX(10px);
}

.project-card-content p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

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

.project-tags span {
  font-size: 0.75rem;
  color: var(--muted);
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 100px;
}

.project-arrow {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-arrow svg {
  width: 20px;
  height: 20px;
  transition: all 0.5s ease;
}

.project-card:hover .project-arrow {
  background: var(--accent);
  border-color: var(--accent);
  transform: rotate(-45deg);
}

.project-card:hover .project-arrow svg {
  stroke: black;
}

/* Services Section
   ========================================================================== */

.services-section {
  padding: 0 4rem;
  flex-direction: column;
}

.services-header {
  margin-bottom: 3rem;
  max-width: 1400px;
  width: 100%;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1400px;
  width: 100%;
}

.service-card {
  padding: 2.5rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(200, 255, 0, 0.2);
  transform: translateY(-8px);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(200, 255, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

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

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  font-size: 0.95rem;
}

/* Process Section
   ========================================================================== */

.process-section {
  padding: 0 4rem;
  flex-direction: column;
}

.process-header {
  margin-bottom: 3rem;
  max-width: 1400px;
  width: 100%;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1400px;
  width: 100%;
}

.process-step {
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--card-bg);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.process-step::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step:hover {
  border-color: rgba(200, 255, 0, 0.2);
  transform: translateY(-5px);
}

.process-step:hover::after {
  width: 100%;
}

.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.06);
  display: block;
  margin-bottom: 1rem;
}

.process-step:hover .step-number {
  color: var(--accent);
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.process-step p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
  font-weight: 300;
}

/* Testimonials Section
   ========================================================================== */

.testimonials-section {
  padding: 0 4rem;
  flex-direction: column;
}

.testimonials-header {
  margin-bottom: 3rem;
  max-width: 1400px;
  width: 100%;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1400px;
  width: 100%;
}

.testimonial-card {
  padding: 2.5rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.testimonial-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.author-name {
  font-weight: 600;
  font-size: 0.95rem;
}

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

/* Brands Section
   ========================================================================== */

.brands-section {
  padding: 0 4rem;
  flex-direction: column;
}

.brands-header {
  margin-bottom: 3rem;
  max-width: 1400px;
  width: 100%;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1400px;
  width: 100%;
}

.brand-item {
  padding: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  background: var(--card-bg);
}

.brand-item:hover {
  border-color: var(--accent);
  background: rgba(200, 255, 0, 0.05);
  transform: translateY(-3px);
}

.brand-item span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.3s ease;
}

.brand-item:hover span {
  color: var(--accent);
}

/* FAQ Section
   ========================================================================== */

.faq-section {
  padding: 0 4rem;
  flex-direction: column;
}

.faq-header {
  margin-bottom: 3rem;
  max-width: 900px;
  width: 100%;
}

.faq-list {
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.75rem 0;
  background: none;
  border: none;
  color: var(--fg);
  font-size: 1.1rem;
  font-weight: 500;
  text-align: left;
  cursor: none;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--muted);
}

.faq-item.open .faq-question svg {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), padding 0.5s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 1.75rem;
}

.faq-answer p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  font-weight: 300;
}

/* Contact Section
   ========================================================================== */

.contact-section {
  padding: 0 4rem;
  flex-direction: column;
}

.contact-inner {
  max-width: 1400px;
  width: 100%;
}

.contact-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 3rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-block {
  margin-bottom: 2rem;
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.contact-block p,
.contact-block a {
  color: var(--muted);
  font-size: 1rem;
  transition: color 0.3s ease;
}

.contact-block a:hover {
  color: var(--accent);
}

.contact-socials {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all 0.3s ease;
}

.social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: white;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: rgba(200, 255, 0, 0.03);
}

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

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: var(--accent);
  color: black;
  border: none;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  cursor: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  align-self: flex-start;
  letter-spacing: 0.02em;
}

.btn-submit svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.btn-submit:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(200, 255, 0, 0.3);
}

.btn-submit:hover svg {
  transform: translateX(4px);
}

/* CTA Section
   ========================================================================== */

.cta-section {
  padding: 0 4rem;
}

.cta-content {
  text-align: center;
  max-width: 800px;
}

.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.cta-text {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Footer
   ========================================================================== */

.footer {
  padding: 2rem 4rem;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

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

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

.footer-right a {
  color: var(--muted);
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

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

/* Floating Bottom Nav
   ========================================================================== */

.bottom-nav {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(10, 10, 10, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 0.75rem 2.5rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bottom-nav:hover {
  background: rgba(10, 10, 10, 0.92);
  border-color: rgba(255, 255, 255, 0.15);
}

.nav-link {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
  padding: 0.25rem 0;
  cursor: none;
}

.nav-link:hover,
.nav-link.active {
  color: white;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* Animations
   ========================================================================== */

@keyframes slideUp {
  from { transform: translateY(110%); }
  to { transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

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

/* Reveal Animations (controlled by JS)
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  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; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 768px) {
  html {
    scroll-snap-type: y proximity;
  }

  .bottom-nav {
    width: calc(100% - 2rem);
    padding: 0.6rem 1rem;
    gap: 0.75rem;
    bottom: 0.75rem;
    border-radius: 100px;
  }

  .nav-link {
    font-size: 0.65rem;
    letter-spacing: 0.03em;
  }

  .about-section,
  .stats-section,
  .skills-section,
  .work-section,
  .services-section,
  .process-section,
  .testimonials-section,
  .brands-section,
  .faq-section,
  .contact-section,
  .cta-section {
    padding: 2rem 1.25rem;
  }

  .snap-section {
    min-height: auto;
    height: auto;
    scroll-snap-align: none;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .hero-section {
    min-height: 100vh;
    min-height: 100dvh;
    scroll-snap-align: start;
    padding: 2rem 1.25rem;
  }

  .hero-content {
    width: 100%;
    padding: 0 0.5rem;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 0.4rem 1rem;
  }

  .hero-title {
    font-size: clamp(2.5rem, 13vw, 4.5rem);
    margin-bottom: 1rem;
  }

  .hero-role {
    font-size: 0.95rem;
  }

  .hero-subtitle {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .btn-primary, .btn-outline {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 0.9rem 2rem;
    font-size: 0.9rem;
  }

  .scroll-indicator {
    display: none;
  }

  .section-label {
    font-size: 0.7rem;
    padding-left: 1.5rem;
  }

  .section-label::before {
    width: 1rem;
  }

  .section-heading {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-text .large-text {
    font-size: 1.1rem;
  }

  .about-text p {
    font-size: 0.9rem;
  }

  .about-stats {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .stat-item .stat-value {
    font-size: 1.5rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .stat-block {
    padding: 1.5rem 1rem;
  }

  .stat-number {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .stat-suffix {
    font-size: clamp(1.2rem, 5vw, 1.8rem);
  }

  .stat-desc {
    font-size: 0.7rem;
  }

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

  .skill-card {
    padding: 1.5rem;
  }

  .skill-card h3 {
    font-size: 1rem;
  }

  .projects-grid {
    gap: 0;
  }

  .project-card {
    grid-template-columns: auto 1fr;
    gap: 1rem;
    padding: 1.5rem 0;
  }

  .project-arrow {
    display: none;
  }

  .project-number {
    font-size: 2rem;
    min-width: 50px;
  }

  .project-card-content h3 {
    font-size: 1.1rem;
  }

  .project-card-content p {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
  }

  .project-tags span {
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }

  .service-card p {
    font-size: 0.85rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .process-step {
    padding: 1.5rem;
  }

  .step-number {
    font-size: 2rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-quote {
    font-size: 3rem;
  }

  .testimonial-card p {
    font-size: 0.9rem;
  }

  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .brand-item {
    padding: 1.25rem;
  }

  .brand-item span {
    font-size: 0.85rem;
  }

  .faq-header {
    margin-bottom: 1.5rem;
  }

  .faq-question {
    font-size: 0.95rem;
    padding: 1.25rem 0;
  }

  .faq-answer p {
    font-size: 0.85rem;
  }

  .contact-heading {
    font-size: clamp(2rem, 8vw, 3.5rem);
    margin-bottom: 2rem;
  }

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

  .contact-block {
    margin-bottom: 1.25rem;
  }

  .contact-block p, .contact-block a {
    font-size: 0.9rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
  }

  .btn-submit {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 2rem;
    font-size: 0.9rem;
  }

  .cta-heading {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }

  .cta-text {
    font-size: 0.9rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .cta-buttons .btn-primary,
  .cta-buttons .btn-outline {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .footer {
    padding: 1.5rem 1.25rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .footer-left {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-logo {
    font-size: 1.2rem;
  }

  .footer p {
    font-size: 0.75rem;
  }

  .footer-right {
    gap: 1.25rem;
  }

  .footer-right a {
    font-size: 0.75rem;
  }

  .cursor, .cursor-follower {
    display: none !important;
  }

  body, button, input, textarea, a {
    cursor: auto !important;
  }
}
