@charset "UTF-8";

/*  GLOBAL VARIABLES & PRODUCTION BASE */
:root {
  --bg-dark: #020D08;
  --surface-dark: #07120D;
  --accent-orange: #FF5722;
  --amber-glow: rgba(211, 84, 0, 0.4);
  --text-main: #ffffff;
  --text-muted: #8892b0;
  --error-red: #ff4d4d;
  --success-green: #4CAF50;
  --transition: cubic-bezier(0.165, 0.84, 0.44, 1);
  --radius: 12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
  background-image: radial-gradient(circle at 50% 120%, var(--amber-glow) 0%, rgba(2, 13, 8, 0) 60%);
  background-attachment: fixed;
}

body.no-scroll {
  overflow: hidden;
}

/*  SCROLL REVEAL SYSTEM */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}

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

/*  LOADING SCREEN */
#loader {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  font-size: clamp(2rem, 8vw, 4rem);
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 2rem;
  animation: loaderPulse 1s ease-in-out infinite alternate;
}

.loader-logo span {
  color: var(--accent-orange);
}

@keyframes loaderPulse {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin: 0 auto;
  overflow: hidden;
}

.loader-fill {
  height: 100%;
  background: var(--accent-orange);
  animation: loaderSlide 0.8s var(--transition) forwards;
}

@keyframes loaderSlide {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

/*  TOAST NOTIFICATION */
#toast {
  position: fixed;
  bottom: -80px;
  right: 1.5rem;
  background: var(--surface-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 9000;
  transition: bottom 0.4s var(--transition);
  max-width: 90vw;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

#toast.show {
  bottom: 1.5rem;
}

#toast.success {
  border-color: rgba(76, 175, 80, 0.4);
}

#toast.error {
  border-color: rgba(255, 77, 77, 0.4);
}

/*  NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(2, 13, 8, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.3s var(--transition);
}

.logo {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.logo span {
  color: var(--accent-orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 8px;
  transition: 0.3s;
}

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

.nav-links a.active {
  color: var(--accent-orange);
}

.btn-primary {
  background: var(--accent-orange) !important;
  color: #fff !important;
  padding: 0.6rem 1.25rem !important;
  border-radius: 8px;
}

.btn-primary:hover {
  opacity: 0.85;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  border-radius: 8px;
  transition: background 0.3s;
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.05);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: 0.3s var(--transition);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 13, 8, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.mobile-nav-link {
  color: var(--text-main);
  text-decoration: none;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -1px;
  transition: color 0.3s;
}

.mobile-nav-link:hover {
  color: var(--accent-orange);
}

.mobile-cta {
  background: var(--accent-orange);
  padding: 0.75rem 2rem;
  border-radius: 10px;
  font-size: clamp(1rem, 3.5vw, 1.5rem) !important;
  margin-top: 1rem;
}

/*  HERO SECTION */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.hero-text-background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 1;
  text-align: center;
  opacity: 0.07;
  pointer-events: none;
}

.massive-text {
  font-size: clamp(4rem, 14vw, 14vw);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.hero-foreground {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1400px;
  padding-top: 5vh;
}

/* Avatar with CSS variable parallax */
.hero-avatar {
  height: 70vh;
  max-height: 600px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 100px var(--amber-glow));
  animation: gentleFloat 6s ease-in-out infinite;
  transform-origin: center center;
  --scroll-offset: 0px;
}

@keyframes gentleFloat {

  0%,
  100% {
    transform: perspective(1000px) translateY(var(--scroll-offset));
  }

  50% {
    transform: perspective(1000px) translateY(calc(var(--scroll-offset) - 15px));
  }
}

.hero-copy {
  max-width: 600px;
  margin-top: -4vh;
  text-align: center;
}

.hero-copy p {
  color: var(--text-muted);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-secondary {
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
  transition: 0.3s var(--transition);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

.btn-primary-outline {
  color: var(--accent-orange);
  border: 1px solid rgba(255, 87, 34, 0.5);
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
  transition: 0.3s var(--transition);
}

.btn-primary-outline:hover {
  background: rgba(255, 87, 34, 0.1);
  border-color: var(--accent-orange);
}

/*  STATS SECTION */
.stats-section {
  padding: 80px 5%;
  max-width: 1100px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--surface-dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  transition: border-color 0.3s, transform 0.3s;
}

.stat-item:hover {
  border-color: rgba(255, 87, 34, 0.3);
  transform: translateY(-4px);
}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--text-main);
  letter-spacing: -2px;
  line-height: 1;
}

.stat-suffix {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--accent-orange);
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/*  WORK SECTION & CAROUSEL */
.work-section {
  padding: 100px 0;
  position: relative;
  z-index: 3;
  overflow: hidden;
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 50px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -1px;
  padding: 0 5%;
}

.section-title span {
  color: var(--accent-orange);
}

.projects-container {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 20px 5vw 60px 5vw;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.projects-container::-webkit-scrollbar {
  display: none;
}

.carousel-card {
  flex: 0 0 85vw;
  max-width: 900px;
  background: var(--surface-dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 3rem;
  scroll-snap-align: center;
  display: flex;
  align-items: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: border-color 0.4s, box-shadow 0.4s;
}

.carousel-card:hover {
  border-color: rgba(255, 87, 34, 0.3);
  box-shadow: 0 30px 60px rgba(255, 87, 34, 0.1);
}

.card-content {
  flex: 1;
  padding-right: 3rem;
}

.card-content h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 1.25rem;
  letter-spacing: -1px;
}

.card-content p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.6;
}

.card-tag {
  display: inline-block;
  background: rgba(255, 87, 34, 0.1);
  color: var(--accent-orange);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.card-image-wrapper {
  flex: 1.2;
  height: 360px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}

.carousel-card:hover .card-image-wrapper img {
  transform: scale(1.05);
}

.project-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 5vw 2rem 5vw;
}

.filter-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-pill:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.filter-pill.active {
  background: rgba(255, 87, 34, 0.15);
  border-color: var(--accent-orange);
  color: var(--accent-orange);
}

/*  TECH STACK MARQUEE */
.marquee-section {
  padding: 2rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.marquee-label {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.marquee-wrapper {
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  width: max-content;
  animation: marqueeScroll 25s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-track span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color 0.3s;
}

.marquee-track span:not(:nth-child(even)):hover {
  color: var(--accent-orange);
}

.marquee-track span:nth-child(even) {
  color: var(--accent-orange);
  font-size: 0.6rem;
  opacity: 0.5;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/*  BUILD PROCESS TIMELINE */
.process-section {
  padding: 80px 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  padding-left: 1rem;
}

.process-card {
  display: flex;
  gap: 1.5rem;
  align-items: stretch;
  background: var(--surface-dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 20px;
  transition: 0.4s var(--transition);
  position: relative;
  overflow: hidden;
}

.process-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent-orange), transparent);
  opacity: 0;
  transition: 0.4s var(--transition);
}

.process-card:hover {
  transform: translateX(10px);
  border-color: rgba(255, 87, 34, 0.2);
  box-shadow: 0 15px 40px rgba(255, 87, 34, 0.08);
}

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

.process-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
  transition: 0.4s var(--transition);
  min-width: 60px;
  line-height: 1;
}

.process-card:hover .process-number {
  color: var(--accent-orange);
  -webkit-text-stroke: 0;
  text-shadow: 0 0 20px rgba(255, 87, 34, 0.4);
}

.process-content h3 {
  color: var(--text-main);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

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

/*  WHY ME SECTION */
.why-section {
  padding: 80px 5%;
  max-width: 1200px;
  margin: 0 auto;
}

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

.why-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 0, 0, 0) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: 0.4s var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 87, 34, 0.1), transparent 50%);
  opacity: 0;
  transition: 0.4s;
}

.why-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 87, 34, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.why-card:hover::after {
  opacity: 1;
}

.why-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(255, 87, 34, 0.1);
  margin-bottom: 1.5rem;
  color: var(--accent-orange);
  transition: 0.4s;
}

.why-card:hover .why-icon-wrapper {
  background: var(--accent-orange);
  color: white;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 20px rgba(255, 87, 34, 0.3);
}

.modern-icon {
  width: 32px;
  height: 32px;
}

.why-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}

.why-card p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.9rem;
}

/*  CONTACT FORM */
.contact-section {
  padding: 100px 5% 160px;
  position: relative;
}

.contact-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-image: radial-gradient(circle at 50% 100%, var(--amber-glow) 0%, rgba(2, 13, 8, 0) 60%);
  opacity: 0.5;
  z-index: -1;
}

.contact-container {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.availability-text {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.95rem;
}

/* Pulsing live badge */
.live-badge {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--success-green);
  border-radius: 50%;
  flex-shrink: 0;
  animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.6);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(76, 175, 80, 0);
  }
}

.premium-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
  text-align: left;
}

.input-group input,
.input-group textarea,
.split-group select {
  width: 100%;
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--text-main);
  font-size: 1rem;
  outline: none;
  transition: 0.3s;
  min-height: 52px;
  /* Better mobile tap target */
}

.input-group input:focus,
.input-group textarea:focus,
.split-group select:focus {
  border-color: var(--accent-orange);
  background: rgba(255, 255, 255, 0.04);
}

.input-group input.error,
.input-group textarea.error,
.split-group select.error {
  border-color: var(--error-red);
}

.field-error {
  display: block;
  font-size: 0.8rem;
  color: var(--error-red);
  margin-top: 0.4rem;
  height: 0;
  overflow: hidden;
  transition: height 0.2s ease, opacity 0.2s;
  opacity: 0;
}

.field-error.visible {
  height: 1.2em;
  opacity: 1;
}

.select-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.split-group {
  display: flex;
  gap: 1.25rem;
}

.split-group select {
  appearance: none;
  cursor: pointer;
  color: var(--text-muted);
}

.split-group select option {
  background: var(--bg-dark);
  color: var(--text-main);
}

.btn-submit {
  background: var(--accent-orange);
  color: white;
  border: none;
  padding: 1.25rem;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s, transform 0.2s;
  text-transform: uppercase;
  min-height: 56px;
}

.btn-submit:hover:not(:disabled) {
  background: white;
  color: var(--bg-dark);
  transform: translateY(-3px);
}

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

/* Live Project Button */
.btn-live {
  display: inline-block;
  color: var(--accent-orange);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 87, 34, 0.5);
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  transition: 0.3s var(--transition);
  text-transform: uppercase;
}

.btn-live:hover {
  background: rgba(255, 87, 34, 0.1);
  border-color: var(--accent-orange);
  transform: translateY(-2px);
}

/*  FOOTER */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem 5%;
  background: var(--surface-dark);
}

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

.footer-logo {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.footer-logo span {
  color: var(--accent-orange);
}

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

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.3s;
}

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

/*  RESPONSIVE — TABLET (max 1024px) */
@media screen and (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .carousel-card {
    padding: 2rem;
  }

  .card-content {
    padding-right: 2rem;
  }
}

/*  RESPONSIVE — MOBILE (max 768px) */
@media screen and (max-width: 768px) {

  /* Navbar */
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .logo {
    font-size: 1.1rem;
  }

  /* Hero — reduce from 100vh to auto so it's not a full screen on mobile */
  .hero-section {
    height: auto;
    min-height: 100svh;
    align-items: flex-end;
    padding-bottom: 4vh;
  }

  .hero-text-background {
    top: 20%;
    transform: translate(-50%, -20%);
  }

  .massive-text {
    font-size: clamp(3rem, 16vw, 5rem);
  }

  .hero-foreground {
    width: 100%;
    align-items: center;
    justify-content: flex-end;
    height: auto;
    padding-top: 80px;
  }

  .hero-avatar {
    width: 85%;
    height: auto;
    max-width: 380px;
    margin-top: 0;
    filter: drop-shadow(0 0 60px var(--amber-glow));
  }

  .hero-copy {
    margin-top: -3vh;
    width: 90%;
    max-width: 420px;
    position: relative;
    z-index: 5;
  }

  .hero-copy p {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }

  .hero-cta-group {
    gap: 0.6rem;
  }

  .btn-secondary,
  .btn-primary-outline {
    font-size: 0.82rem;
    padding: 0.65rem 1rem;
  }

  /* Stats — tighter padding */
  .stats-section {
    padding: 40px 5%;
  }

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

  .stat-item {
    padding: 1.25rem 0.75rem;
    border-radius: 14px;
  }

  .stat-label {
    font-size: 0.75rem;
    margin-top: 0.5rem;
  }

  /* Work */
  .work-section {
    padding: 50px 0 30px;
  }

  .section-title {
    font-size: 1.4rem;
    margin-bottom: 24px;
  }

  .carousel-card {
    flex-direction: column-reverse;
    padding: 1.25rem;
    flex: 0 0 90vw;
    border-radius: 18px;
  }

  .card-content {
    width: 100%;
    padding-right: 0;
    margin-top: 1rem;
  }

  .card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
  }

  .card-content p {
    font-size: 0.88rem;
    margin-bottom: 1.25rem;
  }

  .card-image-wrapper {
    width: 100%;
    height: 180px;
    flex: none;
  }

  .projects-container {
    gap: 14px;
    padding: 8px 5vw 30px 5vw;
  }

  /* Marquee */
  .marquee-section {
    padding: 1.25rem 0;
  }

  .marquee-label {
    margin-bottom: 0.75rem;
  }

  /* Process — Horizontal scrolling on mobile to save vertical space */
  .process-section {
    padding: 45px 0 30px;
  }

  .process-section .section-title {
    padding: 0 5%;
  }

  .process-timeline {
    flex-direction: row;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 8px 5vw 30px 5vw;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .process-timeline::-webkit-scrollbar {
    display: none;
  }

  .process-card {
    flex: 0 0 85vw;
    scroll-snap-align: center;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
  }

  .process-card:hover {
    transform: translateY(-4px);
  }

  .process-number {
    font-size: 2rem;
    min-width: 40px;
  }

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

  /* Why Me — Horizontal scrolling on mobile to save vertical space */
  .why-section {
    padding: 45px 0 30px;
  }

  .why-section .section-title {
    padding: 0 5%;
  }

  .why-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 8px 5vw 30px 5vw;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .why-grid::-webkit-scrollbar {
    display: none;
  }

  .why-card {
    flex: 0 0 85vw;
    scroll-snap-align: center;
    padding: 1.75rem 1.25rem;
    text-align: left;
  }

  .why-icon-wrapper {
    width: 56px;
    height: 56px;
    margin-bottom: 1.25rem;
  }

  .modern-icon {
    width: 28px;
    height: 28px;
  }

  .why-card h3 {
    font-size: 1.05rem;
  }

  /* Contact */
  .contact-section {
    padding: 45px 5% 100px;
  }

  .contact-container {
    padding: 0;
  }

  .availability-text {
    font-size: 0.82rem;
    margin-bottom: 1.25rem;
  }

  .premium-form {
    gap: 1rem;
    margin-top: 1.75rem;
  }

  .split-group {
    flex-direction: column;
    gap: 1rem;
  }

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

  .input-group textarea {
    min-height: 90px;
  }

  .btn-submit {
    font-size: 0.95rem;
    padding: 1rem;
  }

  /* Footer */
  .site-footer {
    padding: 1.75rem 5%;
  }

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

  .footer-links {
    justify-content: center;
    gap: 1.25rem;
  }

  .footer-copy {
    font-size: 0.8rem;
  }
}

/*  RESPONSIVE — SMALL PHONES (max 390px) */
@media screen and (max-width: 390px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .stat-item {
    padding: 1rem 0.6rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-suffix {
    font-size: 1rem;
  }

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

  .why-card,
  .process-card {
    padding: 1.25rem 1rem;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .btn-secondary,
  .btn-primary-outline {
    width: 100%;
    text-align: center;
  }

  .carousel-card {
    padding: 1rem;
  }

  .card-image-wrapper {
    height: 160px;
  }
}

/*# sourceMappingURL=style.css.map */