/* ===== VARIABLES ===== */
:root {
  --primary: #7535C8;
  --primary-light: #9A55DC;
  --primary-dark: #5A20A8;
  --accent: #00D4FF;
  --accent-2: #FF6B6B;
  --bg-dark: #090914;
  --bg-section: #0D0D22;
  --bg-card: #131328;
  --bg-card-hover: #191938;
  --text-primary: #FFFFFF;
  --text-secondary: #A0A0C0;
  --text-muted: #6B6B90;
  --border: rgba(117, 53, 200, 0.2);
  --border-light: rgba(255, 255, 255, 0.06);
  --gradient-primary: linear-gradient(135deg, #7535C8, #00D4FF);
  --gradient-accent: linear-gradient(135deg, #FF6B6B, #7535C8);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px rgba(117, 53, 200, 0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-primary);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul { list-style: none; }

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

/* ===== UTILITY ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(108, 60, 225, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(108, 60, 225, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--primary-light);
  background: rgba(108, 60, 225, 0.1);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-block {
  width: 100%;
}

.btn-nav {
  background: var(--gradient-primary);
  color: #fff;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
}

.btn-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(108, 60, 225, 0.4);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 26, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  padding: 12px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
}

.logo-emblem {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 0;
  transition: var(--transition);
}

.logo:hover .logo-emblem {
  transform: scale(1.05);
  filter: drop-shadow(0 0 8px rgba(117, 53, 200, 0.6));
}

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

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

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-primary);
}

.nav-links a:not(.btn):hover {
  color: var(--accent);
}

.nav-links .btn-primary {
  color: #fff !important;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

/* Background */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117, 53, 200, 0.16) 0%, transparent 65%);
  top: -200px;
  right: -150px;
}

.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(117, 53, 200, 0.22) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(to right, transparent 0%, black 25%, black 75%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 25%, black 75%, transparent 100%);
  opacity: 0.55;
}

.hero-slash {
  position: absolute;
  top: 0;
  right: 0;
  width: 52%;
  height: 100%;
  background: linear-gradient(150deg, transparent 45%, rgba(117, 53, 200, 0.05) 100%);
  border-left: 1px solid rgba(117, 53, 200, 0.07);
}

/* Split grid */
.hero-split {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* LEFT */
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
  animation: fadeInUp 0.7s ease both;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent);
  flex-shrink: 0;
  animation: dotPulse 2.5s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 14px var(--accent); opacity: 1; }
  50% { box-shadow: 0 0 6px var(--accent); opacity: 0.65; }
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  animation: fadeInUp 0.7s ease 0.1s both;
}

.hl-1, .hl-2, .hl-3 {
  display: block;
}

.hl-1 {
  font-size: clamp(2.6rem, 4.8vw, 4.4rem);
  color: var(--text-primary);
  font-weight: 700;
}

.hl-2 {
  font-size: clamp(2.6rem, 4.8vw, 4.4rem);
  color: var(--text-primary);
  font-weight: 800;
}

.hl-3 {
  font-size: clamp(2.8rem, 5.2vw, 4.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.hero-sub {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 36px;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp 0.7s ease 0.3s both;
}

/* Proof stats */
.hero-proof {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeInUp 0.7s ease 0.4s both;
}

.proof-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.proof-item strong {
  font-size: 1.3rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--text-primary);
  line-height: 1;
}

.proof-item span {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.proof-divider {
  width: 1px;
  height: 34px;
  background: var(--border-light);
  flex-shrink: 0;
}

/* RIGHT — Cards */
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 0.7s ease 0.25s both;
}

.hero-cards {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 30px 0;
}

/* Main dashboard card */
.hc-main {
  background: rgba(19, 19, 40, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(117, 53, 200, 0.28);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255,255,255,0.03);
}

.hc-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.025);
}

.hc-dots {
  display: flex;
  gap: 5px;
}

.hc-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.hc-dots span:nth-child(1) { background: rgba(255, 95, 87, 0.8); }
.hc-dots span:nth-child(2) { background: rgba(255, 189, 46, 0.8); }
.hc-dots span:nth-child(3) { background: rgba(39, 201, 63, 0.8); }

.hc-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  flex: 1;
}

.hc-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #4ade80;
}

.hc-live span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  animation: dotPulse 2s ease infinite;
}

.hc-body {
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hc-metric {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hc-metric-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hc-metric-name {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.hc-metric-val {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
}

.hc-bar {
  height: 5px;
  background: rgba(255,255,255,0.07);
  border-radius: 999px;
  overflow: hidden;
}

.hc-bar-fill {
  height: 100%;
  width: var(--w);
  background: var(--gradient-primary);
  border-radius: 999px;
}

.hc-sparkline {
  height: 52px;
  margin-top: 2px;
  opacity: 0.75;
}

.hc-sparkline svg {
  width: 100%;
  height: 100%;
}

/* Floating mini-cards */
.hc-float {
  position: absolute;
  background: rgba(13, 13, 34, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(117, 53, 200, 0.35);
  border-radius: var(--radius-lg);
  padding: 11px 15px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  z-index: 10;
}

.hc-float-spots {
  top: -22px;
  right: -24px;
  animation: cardFloat 4s ease-in-out infinite;
}

.hc-float-icon {
  font-size: 1.1rem;
}

.hc-float strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.hc-float span {
  display: block;
  font-size: 0.68rem;
  color: var(--text-muted);
}

.hc-float-price {
  bottom: -22px;
  left: -24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  animation: cardFloat 5s ease-in-out infinite reverse;
}

.hc-price-from {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hc-price-num {
  font-size: 1.5rem;
  font-weight: 900;
  font-family: var(--font-display);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

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

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

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

.hero-scroll a:hover {
  color: var(--primary-light);
}

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

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

/* Hero responsive */
@media (max-width: 960px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-left {
    align-items: center;
    order: 1;
  }

  .hero-right {
    order: 2;
  }

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

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

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

  .hero-cards {
    max-width: 340px;
    margin: 30px auto;
  }

  .hero-slash {
    display: none;
  }
}

@media (max-width: 480px) {
  .hl-1, .hl-2 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .hl-3 {
    font-size: clamp(2.2rem, 9.5vw, 3rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 300px;
  }

  .hc-float-spots {
    right: -12px;
  }

  .hc-float-price {
    left: -12px;
  }
}

/* ===== SERVICES ===== */
.services {
  padding: 120px 0;
  background: var(--bg-section);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

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

.service-card.featured {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(108, 60, 225, 0.1), rgba(0, 212, 255, 0.05));
}

.service-card.featured::before {
  opacity: 1;
}

.service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(108, 60, 225, 0.1);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  color: var(--primary-light);
}

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

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

.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-features li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
}

.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--primary-light);
  border-radius: 50%;
}

/* ===== PACKAGES ===== */
.packages {
  padding: 120px 0;
  background: var(--bg-dark);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  align-items: start;
}

.package-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.package-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.package-card.popular {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
  transform: scale(1.02);
}

.package-card.popular:hover {
  transform: scale(1.02) translateY(-4px);
}

.popular-badge {
  background: var(--gradient-primary);
  color: #fff;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px;
  letter-spacing: 0.05em;
}

.package-header {
  padding: 32px 32px 0;
}

.package-header h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.package-desc {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.package-body {
  padding: 24px 32px 32px;
}

.package-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.package-features li strong {
  color: var(--accent);
}

.package-features .check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  fill: var(--primary-light);
  margin-top: 1px;
}

.packages-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 48px;
}

.packages-note a {
  color: var(--primary-light);
  font-weight: 500;
}

.packages-note a:hover {
  color: var(--accent);
}

/* ===== WHY US ===== */
.why-us {
  padding: 120px 0;
  background: var(--bg-section);
  position: relative;
}

.why-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.why-card {
  padding: 40px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.why-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.5;
  margin-bottom: 16px;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.why-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ===== PROCESS ===== */
.process {
  padding: 120px 0;
  background: var(--bg-dark);
}

.process-timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
  opacity: 0.3;
}

.process-step {
  display: flex;
  gap: 24px;
  margin-bottom: 48px;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.step-marker {
  width: 56px;
  height: 56px;
  min-width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 2px solid var(--primary);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-light);
  position: relative;
  z-index: 1;
}

.step-content {
  padding-top: 8px;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ===== VIDEO BANNER ===== */
.video-banner {
  padding: 120px 0;
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}

.video-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.video-banner-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.video-text .section-tag {
  margin-bottom: 16px;
}

.video-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.video-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.video-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.video-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
}

.video-highlight svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.video-mockups {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: flex-start;
}

.phone-mockup {
  width: 200px;
  background: #16162c;
  border-radius: 28px;
  padding: 8px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
}

.phone-mockup.phone-2 {
  margin-top: 40px;
}

.phone-screen {
  border-radius: 20px;
  overflow: hidden;
  background: #090914;
}

.phone-content {
  aspect-ratio: 9/16;
  display: flex;
  flex-direction: column;
}

.phone-header-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
}

.phone-content.ig {
  background: linear-gradient(180deg, #833AB4 0%, #C13584 50%, #E1306C 100%);
}

.phone-content.tiktok {
  background: linear-gradient(180deg, #010101 0%, #25F4EE 50%, #FE2C55 100%);
}

.reel-icon, .tiktok-note {
  display: flex;
  align-items: center;
}

.reel-icon svg, .tiktok-note svg {
  width: 14px;
  height: 14px;
}

.phone-body-placeholder {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.play-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-circle svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  margin-left: 2px;
}

.phone-engagement {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 14px;
  background: rgba(0, 0, 0, 0.3);
}

.engagement-icon {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #fff;
}

.engagement-icon svg {
  width: 16px;
  height: 16px;
}

/* ===== CONTACT ===== */
.contact {
  padding: 120px 0;
  background: var(--bg-dark);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item svg {
  width: 24px;
  height: 24px;
  min-width: 24px;
  color: var(--primary-light);
  margin-top: 2px;
}

.contact-item strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-item span {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--text-primary);
  border-color: var(--primary);
  background: rgba(108, 60, 225, 0.1);
}

.social-links a svg {
  width: 20px;
  height: 20px;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-dark);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: var(--transition);
  outline: none;
}

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236B6B90' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--bg-card);
  color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(108, 60, 225, 0.15);
}

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

.contact-form .btn {
  margin-top: 8px;
}

/* ===== FOOTER ===== */
.footer {
  padding: 64px 0 32px;
  background: var(--bg-section);
  border-top: 1px solid var(--border-light);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo-link {
  display: inline-block;
}

.footer-logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.footer-logo-link:hover .footer-logo-img {
  transform: scale(1.05);
  filter: drop-shadow(0 0 10px rgba(117, 53, 200, 0.6));
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-top: 16px;
  max-width: 320px;
}

.footer-links h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.88rem;
}

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

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

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

/* ===== PORTFOLIO PAGE ===== */
.portfolio-hero {
  position: relative;
  padding: 160px 0 80px;
  text-align: center;
  overflow: hidden;
}

.portfolio-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}

.portfolio-hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
}

.portfolio-filter {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  font-family: var(--font-primary);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 10px 24px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover {
  border-color: var(--border);
  color: var(--text-primary);
}

.filter-btn.active {
  background: var(--gradient-primary);
  border-color: transparent;
  color: #fff;
}

/* Portfolio Sections */
.portfolio-section {
  padding: 80px 0;
  background: var(--bg-dark);
}

.portfolio-section-alt {
  background: var(--bg-section);
  position: relative;
}

.portfolio-section-alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.portfolio-section-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 48px;
}

.portfolio-section-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(108, 60, 225, 0.1);
  border-radius: var(--radius-md);
  color: var(--primary-light);
}

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

.portfolio-section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 4px;
}

.portfolio-section-header p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  gap: 24px;
}

.social-grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.video-grid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.website-grid {
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
}

.logo-grid {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo Portfolio Items */
.portfolio-logo-wrap {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 50%, #16162c 0%, #090914 100%);
  border-bottom: 1px solid var(--border-light);
  padding: 40px;
  overflow: hidden;
  position: relative;
}

.portfolio-logo-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(108, 60, 225, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(0, 212, 255, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.portfolio-logo-img {
  width: 75%;
  height: 75%;
  object-fit: contain;
  border-radius: 12px;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.4));
}

.portfolio-item:hover .portfolio-logo-img {
  transform: scale(1.08);
}

/* Portfolio Items */
.portfolio-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.portfolio-item:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* Placeholders */
.portfolio-placeholder {
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(108, 60, 225, 0.04);
  border-bottom: 1px solid var(--border-light);
  color: var(--text-muted);
  position: relative;
}

.portfolio-placeholder.portrait {
  aspect-ratio: 9 / 14;
}

/* Instagram Reel embed */
.ig-reel-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: #000;
}

.ig-reel-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.portfolio-placeholder.landscape {
  aspect-ratio: 16 / 10;
  padding-top: 32px;
}

.portfolio-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.3;
}

.portfolio-placeholder span {
  font-size: 0.82rem;
  font-weight: 500;
  opacity: 0.5;
}

/* Video play overlay */
.video-play-overlay {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(108, 60, 225, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: var(--transition);
}

.video-play-overlay svg {
  width: 22px;
  height: 22px;
  opacity: 0.7;
  fill: #fff;
  margin-left: 3px;
}

.portfolio-item:hover .video-play-overlay {
  background: rgba(108, 60, 225, 0.5);
  transform: scale(1.1);
}

/* Video Production & Testimonials */
.production-grid {
  grid-template-columns: repeat(3, 1fr);
}

.production-placeholder {
  min-height: 260px;
  background: radial-gradient(ellipse at 50% 50%, #16162c 0%, #090914 100%);
  position: relative;
}

.production-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(108, 60, 225, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(0, 212, 255, 0.07) 0%, transparent 50%);
  pointer-events: none;
}

.production-play {
  width: 64px;
  height: 64px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.production-play svg {
  width: 28px;
  height: 28px;
}

.production-tag {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
}

.testimonial-tag {
  background: linear-gradient(135deg, var(--accent), #00b8d9);
  color: #0A0A1A;
  font-weight: 700;
}

/* Browser mockup bar */
.browser-mockup-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--border-light);
}

.browser-mockup-bar .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.4;
}

.browser-mockup-bar .url-bar {
  flex: 1;
  font-size: 0.68rem;
  color: var(--text-muted);
  opacity: 0.5;
  margin-left: 8px;
}

/* Live website preview */
.website-preview-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.website-live-preview {
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
  background: #090914;
}

.website-live-preview .browser-mockup-bar {
  z-index: 2;
  background: rgba(13, 13, 26, 0.9);
  backdrop-filter: blur(8px);
}

.website-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  transform: scale(0.5);
  transform-origin: top left;
  border: none;
  pointer-events: none;
}

/* Jeff's Junk Removal — iframe-blocked site styled preview */
.jjr-preview {
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.jjr-preview-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px;
  background: linear-gradient(135deg, #0f1a2e 0%, #0a1520 100%);
}

.jjr-preview-icon {
  color: #f59e0b;
  opacity: 0.9;
}

.jjr-preview-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.jjr-preview-text strong {
  font-size: 1rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: #fff;
  letter-spacing: -0.01em;
}

.jjr-preview-text span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}

.jjr-preview-cta {
  font-size: 0.75rem;
  font-weight: 700;
  color: #f59e0b;
  padding: 5px 14px;
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 50px;
  letter-spacing: 0.04em;
}

.website-preview-link:hover .jjr-preview-cta {
  background: rgba(245, 158, 11, 0.12);
}

.coming-soon-badge {
  margin-left: auto;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
}

/* Captions */
.portfolio-caption {
  padding: 20px;
}

.portfolio-caption h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

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

.video-meta {
  margin-bottom: 8px;
}

.platform-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.03em;
}

.ig-tag {
  background: linear-gradient(135deg, rgba(131, 58, 180, 0.2), rgba(225, 48, 108, 0.2));
  color: #E1306C;
}

.tt-tag {
  background: rgba(37, 244, 238, 0.1);
  color: #25F4EE;
}

.portfolio-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary-light);
  margin-top: 10px;
}

.portfolio-link:hover {
  color: var(--accent);
}

/* CTA Section */
.portfolio-cta {
  padding: 80px 0;
  background: var(--bg-section);
}

.cta-card {
  text-align: center;
  background: linear-gradient(135deg, rgba(108, 60, 225, 0.12), rgba(0, 212, 255, 0.06));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 64px 40px;
}

.cta-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-card p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 32px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Portfolio responsive */
@media (max-width: 768px) {
  .portfolio-hero {
    padding: 130px 0 60px;
  }

  .portfolio-section-header {
    flex-direction: column;
    gap: 12px;
  }

  .logo-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .social-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }

  .video-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }

  .production-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

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

  .cta-card {
    padding: 48px 24px;
  }
}

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

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

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

  .cta-actions .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* ===== SCROLL ANIMATIONS ===== */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== PREMIUM VIDEO PRODUCTION ===== */
.video-production {
  padding: 64px 0;
  background: var(--bg-dark);
}

.premium-tag {
  background: linear-gradient(135deg, #9B55DC, #00D4FF) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  border: 1px solid rgba(155, 85, 220, 0.3) !important;
  background-color: transparent !important;
  padding: 4px 16px;
  border-radius: 50px;
  display: inline-block;
}

.service-card.premium-video {
  border-color: rgba(155, 85, 220, 0.4);
  background: linear-gradient(135deg, rgba(117, 53, 200, 0.12), rgba(0, 212, 255, 0.04));
}

.premium-badge {
  background: linear-gradient(135deg, #9B55DC, #00D4FF) !important;
}

.service-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.service-link:hover { color: var(--primary-light); }

/* Spotlight card */
.video-spotlight {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  background: linear-gradient(135deg, rgba(117, 53, 200, 0.1), rgba(0, 212, 255, 0.05));
  border: 1px solid rgba(117, 53, 200, 0.25);
  border-radius: var(--radius-xl);
  padding: 48px;
}

.video-spotlight-left .section-tag {
  margin-bottom: 16px;
  display: inline-block;
}

.video-spotlight-left h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 14px;
}

.video-spotlight-left p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 520px;
  font-size: 0.95rem;
}

.video-format-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.video-pill {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(117, 53, 200, 0.15);
  border: 1px solid rgba(117, 53, 200, 0.3);
  color: var(--text-secondary);
}

.video-spotlight-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.video-spotlight-icon {
  width: 100px;
  height: 100px;
  background: rgba(117, 53, 200, 0.12);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.video-spotlight-icon svg { width: 56px; height: 56px; }

.video-spotlight-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.video-stat span {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.video-stat p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .video-banner-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .video-highlights {
    align-items: center;
  }

  .video-mockups {
    justify-content: center;
  }

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

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1024px) {
  .video-spotlight {
    grid-template-columns: 1fr;
  }

  .video-spotlight-right {
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-card);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    transition: right 0.4s ease;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.5);
    border-left: 1px solid var(--border-light);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .mobile-toggle {
    display: flex;
    z-index: 1001;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

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

  .mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }


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

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

  .package-card.popular {
    transform: none;
  }

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

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

  .process-timeline::before {
    left: 22px;
  }

  .step-marker {
    width: 44px;
    height: 44px;
    min-width: 44px;
    font-size: 0.95rem;
  }

  .phone-mockup {
    width: 160px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .contact-form {
    padding: 28px;
  }
}

@media (max-width: 480px) {
  .video-mockups {
    gap: 12px;
  }

  .phone-mockup {
    width: 140px;
  }
}
