/* ========================================
   AiteitAI — Premium Dark Cinema Styles
   ======================================== */

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Brand Colors */
  --clr-magenta: #E24AAE;
  --clr-purple: #7C3AED;
  --clr-blue: #3B82F6;
  --clr-cyan: #06B6D4;

  /* Backgrounds */
  --bg-primary: #050508;
  --bg-elevated: #0a0a10;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --bg-surface: #0f0f18;

  /* Text */
  --text-primary: #EDEDEF;
  --text-secondary: #8A8F98;
  --text-muted: #555961;

  /* Gradients */
  --gradient-brand: linear-gradient(135deg, #E24AAE, #7C3AED, #3B82F6, #06B6D4);
  --gradient-magenta-purple: linear-gradient(135deg, #E24AAE, #7C3AED);
  --gradient-blue-cyan: linear-gradient(135deg, #3B82F6, #06B6D4);
  --gradient-glow: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.15), transparent 70%);

  /* Typography */
  --font-heading: 'Syne', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --container-max: 1200px;
  --section-py: clamp(5rem, 12vw, 9rem);

  /* Borders */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  /* Effects */
  --glow-magenta: 0 0 60px rgba(226, 74, 174, 0.12), 0 0 120px rgba(226, 74, 174, 0.06);
  --glow-purple: 0 0 60px rgba(124, 58, 237, 0.12), 0 0 120px rgba(124, 58, 237, 0.06);
  --glow-blue: 0 0 60px rgba(59, 130, 246, 0.12), 0 0 120px rgba(59, 130, 246, 0.06);
  --border-subtle: 1px solid rgba(255, 255, 255, 0.06);
  --border-glow: 1px solid rgba(255, 255, 255, 0.08);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 200ms;
  --duration-med: 350ms;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Grain overlay for cinematic feel */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

/* --- Utilities --- */
.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-muted {
  color: var(--text-muted);
}

/* Section divider glow */
.section {
  padding: var(--section-py) 0;
  position: relative;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(80%, 600px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.3), rgba(226, 74, 174, 0.2), transparent);
}

.section__header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.section__subtitle {
  color: var(--text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all var(--duration-med) var(--ease-out);
  border: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn--primary {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3), inset 0 1px 0 rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}

.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent 50%);
  opacity: 0;
  transition: opacity var(--duration-med) var(--ease-out);
}

.btn--primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 35px rgba(124, 58, 237, 0.45), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn--primary:hover::before {
  opacity: 1;
}

.btn--outline {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn--outline:hover {
  border-color: var(--clr-purple);
  background: rgba(124, 58, 237, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.15);
}

.btn--sm {
  padding: 0.65rem 1.35rem;
  font-size: 0.8rem;
}

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

/* ========================================
   Navigation
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.15rem 0;
  transition: all var(--duration-med) var(--ease-out);
}

.nav--scrolled {
  background: rgba(5, 5, 8, 0.8);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding: 0.75rem 0;
}

.nav__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo-img {
  height: 42px;
  width: 42px;
  object-fit: cover;
  border-radius: 50%;
  transition: transform var(--duration-med) var(--ease-out);
}

.nav__logo:hover .nav__logo-img {
  transform: scale(1.05);
}

.nav__links {
  display: none;
  gap: 2.25rem;
}

.nav__link {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--duration-fast);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.nav__link:hover {
  color: var(--text-primary);
}

.nav__cta {
  display: none;
}

.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 8, 0.96);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

.mobile-menu__link {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-secondary);
  transition: color var(--duration-fast), transform var(--duration-med) var(--ease-out);
  letter-spacing: -0.02em;
}

.mobile-menu__link:hover {
  color: var(--text-primary);
  transform: scale(1.05);
}

.mobile-menu__cta {
  margin-top: 1rem;
}

/* ========================================
   Hero
   ======================================== */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0 4rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

/* Ambient light orbs — larger, more diffuse */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  will-change: transform;
}

.hero__orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--clr-magenta) 0%, transparent 70%);
  top: -15%;
  left: -15%;
  opacity: 0.35;
  animation: float1 10s ease-in-out infinite alternate;
}

.hero__orb--2 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, var(--clr-purple) 0%, transparent 70%);
  bottom: -15%;
  right: -10%;
  opacity: 0.3;
  animation: float2 12s ease-in-out infinite alternate;
}

.hero__orb--3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--clr-cyan) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.2;
  animation: float3 14s ease-in-out infinite alternate;
}

@keyframes float1 {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(80px, 50px) scale(1.15); }
}

@keyframes float2 {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-60px, -40px) scale(1.2); }
}

@keyframes float3 {
  from { transform: translate(-50%, -50%) scale(1); }
  to { transform: translate(-35%, -65%) scale(0.85); }
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 850px;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

.hero__badge {
  display: inline-block;
  padding: 0.45rem 1.15rem;
  border-radius: 50px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.25);
  color: var(--clr-purple);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero__subtitle {
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  max-width: 550px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   Services
   ======================================== */
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.service-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: var(--border-glow);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all var(--duration-med) var(--ease-out);
  cursor: pointer;
}

.service-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(124, 58, 237, 0.15);
  box-shadow: var(--glow-purple);
  transform: translateY(-6px);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--gradient-magenta-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  padding: 12px;
  box-shadow: 0 4px 20px rgba(226, 74, 174, 0.2);
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
  color: #fff;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.service-card__desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ========================================
   Portfolio / Work
   ======================================== */

/* Filter tabs */
.work__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.work__filter {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.55rem 1.25rem;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
  letter-spacing: 0.02em;
}

.work__filter:hover {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.25);
}

.work__filter.active {
  background: linear-gradient(135deg, var(--clr-magenta), var(--clr-purple));
  border-color: transparent;
  color: #fff;
}

/* Grid */
.work__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.work-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  display: block;
  background: var(--bg-card);
  transition: transform var(--duration-med) var(--ease-out), opacity 0.4s ease;
}

.work-card.hidden {
  display: none;
}

.work-card:hover {
  transform: scale(1.02);
}

.work-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Video play badge */
.work-card__badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
}

.work-card__badge--video {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.work-card__badge--video svg {
  margin-left: 2px;
}

/* Overlay on hover */
.work-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 5, 8, 0.9) 0%, rgba(5, 5, 8, 0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity var(--duration-med) var(--ease-out);
}

.work-card:hover .work-card__overlay {
  opacity: 1;
}

.work-card__category {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-cyan);
  margin-bottom: 0.25rem;
}

.work-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.work__cta {
  text-align: center;
}

/* ========================================
   Pricing / Services Cards
   ======================================== */
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.pricing-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: var(--border-glow);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all var(--duration-med) var(--ease-out);
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.pricing-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(124, 58, 237, 0.15);
  transform: translateY(-6px);
  box-shadow: var(--glow-blue);
}

.pricing-card--featured {
  border-color: rgba(124, 58, 237, 0.2);
  background: rgba(124, 58, 237, 0.05);
}

.pricing-card--featured::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-md);
  padding: 1px;
  background: var(--gradient-brand);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.3;
  pointer-events: none;
}

.pricing-card--featured:hover {
  border-color: rgba(124, 58, 237, 0.4);
  box-shadow: var(--glow-magenta);
}

.pricing-card__badge {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--gradient-brand);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.35rem 0.85rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  padding: 12px;
}

.pricing-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--clr-purple);
}

.pricing-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.pricing-card__desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
  flex: 1;
}

.pricing__note {
  text-align: center;
  margin-top: 3rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ========================================
   Process
   ======================================== */
.process__timeline {
  position: relative;
  padding: 2rem 0;
}

.process__line {
  display: none;
}

.process__steps {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.process__step {
  text-align: center;
  position: relative;
}

.process__circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid transparent;
  background-image: linear-gradient(var(--bg-primary), var(--bg-primary)), var(--gradient-brand);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text-primary);
  box-shadow: 0 0 30px rgba(124, 58, 237, 0.1);
}

.process__step-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  background: var(--gradient-magenta-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.process__step-desc {
  color: var(--text-secondary);
  font-size: 0.85rem;
  max-width: 170px;
  margin: 0 auto;
  line-height: 1.55;
}

/* ========================================
   Team
   ======================================== */
.team__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.team-card {
  text-align: center;
  transition: transform var(--duration-med) var(--ease-out);
}

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

.team-card__photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  overflow: hidden;
  padding: 3px;
  background: var(--gradient-brand);
  position: relative;
  box-shadow: 0 0 40px rgba(124, 58, 237, 0.15);
  transition: box-shadow var(--duration-med) var(--ease-out);
}

.team-card:hover .team-card__photo {
  box-shadow: 0 0 60px rgba(124, 58, 237, 0.25);
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.team-card__photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card__initials {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border-radius: 50%;
  background: var(--bg-elevated);
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
}

.team-card__name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}

.team-card__role {
  color: var(--clr-purple);
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
}

/* ========================================
   Contact
   ======================================== */
.contact__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact__text {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact__email {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--clr-cyan);
  font-size: 1.05rem;
  font-weight: 600;
  transition: all var(--duration-fast);
  font-family: var(--font-heading);
}

.contact__email:hover {
  color: var(--clr-blue);
  transform: translateX(2px);
}

.contact__email svg {
  flex-shrink: 0;
}

.contact__quote {
  margin-top: 2.5rem;
  padding-left: 1.25rem;
  border-left: 3px solid var(--clr-magenta);
  color: var(--text-secondary);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.65;
}

.contact__form {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: var(--border-glow);
  border-radius: var(--radius-md);
  padding: 2.25rem;
}

.form-group {
  margin-bottom: 1.35rem;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.form-input {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--duration-fast);
  outline: none;
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-input:focus {
  border-color: var(--clr-purple);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.08), 0 0 20px rgba(124, 58, 237, 0.06);
  background: rgba(255, 255, 255, 0.04);
}

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

/* ========================================
   Footer
   ======================================== */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 3.5rem 0 1.75rem;
  background: rgba(5, 5, 8, 0.6);
}

.footer__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer__logo {
  height: 40px;
  width: 40px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 0.75rem;
}

.footer__tagline {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.footer__links a {
  color: var(--text-secondary);
  font-size: 0.875rem;
  transition: color var(--duration-fast);
}

.footer__links a:hover {
  color: var(--text-primary);
}

.footer__email {
  color: var(--clr-cyan);
  font-size: 0.875rem;
  transition: color var(--duration-fast);
}

.footer__email:hover {
  color: var(--clr-blue);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ========================================
   Responsive — Tablet (768px+)
   ======================================== */
@media (min-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .contact__wrapper {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .footer__content {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .process__steps {
    flex-direction: row;
    justify-content: space-between;
  }

  .process__line {
    display: block;
    position: absolute;
    top: calc(2rem + 30px);
    left: 10%;
    right: 10%;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    z-index: 0;
  }

  .process__line-fill {
    height: 100%;
    width: 0%;
    background: var(--gradient-brand);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(124, 58, 237, 0.3);
  }

  .process__step {
    flex: 1;
    position: relative;
    z-index: 1;
  }
}

/* ========================================
   Responsive — Desktop (1024px+)
   ======================================== */
@media (min-width: 1024px) {
  .nav__links {
    display: flex;
  }

  .nav__cta {
    display: inline-flex;
  }

  .nav__hamburger {
    display: none;
  }

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

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

/* ========================================
   Animations — Initial States
   ======================================== */
.hero__badge,
.hero__title,
.hero__subtitle,
.hero__ctas {
  opacity: 0;
}

.service-card,
.work-card,
.pricing-card,
.team-card,
.process__step {
  opacity: 0;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero__badge,
  .hero__title,
  .hero__subtitle,
  .hero__ctas,
  .service-card,
  .work-card,
  .pricing-card,
  .team-card,
  .process__step {
    opacity: 1 !important;
  }
}

/* Toast notification */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--bg-elevated);
  border: var(--border-glow);
  border-radius: var(--radius-sm);
  padding: 1rem 1.5rem;
  color: var(--text-primary);
  font-size: 0.9rem;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast--success {
  border-left: 3px solid #10b981;
}

.toast--error {
  border-left: 3px solid #ef4444;
}

/* ========================================
   Lightbox Modal
   ======================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox__close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.75rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: background 0.2s ease;
  line-height: 1;
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox__content {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__content video {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
  outline: none;
}

.lightbox__content img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
  object-fit: contain;
}
