/* Premium Corporate Theme for LaunchMyPortfolio */
:root {
  --bg: #060a16;
  --card: rgba(255, 255, 255, 0.08);
  --glass: rgba(255, 255, 255, 0.06);
  --text: #e8f1ff;
  --muted: #b8c5e5;
  --accent: #d4af37;
  --accent-2: #4dd0e1;
  --border: rgba(255, 255, 255, 0.18);
  --shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', 'Space Grotesk', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

h1, h2 {
  font-family: 'Playfair Display', 'Space Grotesk', serif;
}

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

section {
  padding: 96px min(7vw, 72px);
  position: relative;
  z-index: 1;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

h1 {
  font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 12px 0 14px;
}

h2 {
  font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  letter-spacing: -0.02em;
}

p {
  color: var(--muted);
}

/* Background elements */
.page-bg {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(77, 208, 225, 0.08), transparent 35%),
              radial-gradient(circle at 80% 10%, rgba(212, 175, 55, 0.08), transparent 40%),
              linear-gradient(135deg, #050814 0%, #0a1328 50%, #0d1d35 100%);
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  filter: blur(80px);
  opacity: 0.55;
  animation: drift 16s ease-in-out infinite;
}

.orb-1 { width: 360px; height: 360px; background: #4dd0e1; top: 8%; left: -6%; animation-delay: 0s; }
.orb-2 { width: 320px; height: 320px; background: #d4af37; bottom: 10%; right: -4%; animation-delay: 4s; }
.orb-3 { width: 280px; height: 280px; background: #7c4dff; top: 60%; left: 30%; animation-delay: 8s; }

@keyframes drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(10px, -20px, 0) scale(1.05); }
}

.grain {
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIwIiBoZWlnaHQ9IjEyMCIgdmlld0JveD0iMCAwIDEyMCAxMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHJlY3Qgd2lkdGg9IjEyMCIgaGVpZ2h0PSIxMjAiIGZpbGw9Im5vbmUiIHN0cm9rZT0ibm9uZSIvPjxmaWx0ZXIgaWQ9Im4iIHg9IjAiIHk9IjAiIHdpZHRoPSIxMjAiIGhlaWdodD0iMTIwIiBmaWx0ZXJVbml0cz0idXNlclNwYWNlT25Vc2UiPjxmZUdhdXNzaWFuQmx1ciBzdGREZXZpYXRpb249IjEiPj9oZWF2eTwvZmVHYXVzc2lhbkJsdXI+PC9maWx0ZXI+PHJlY3Qgd2lkdGg9IjEyMCIgaGVpZ2h0PSIxMjAiIGZpbHRlcj0idXJsKCNuKSIgZmlsbD0iIzAwMCIgZmlsbC1vcGFjaXR5PSIwLjA1Ii8+PC9zdmc+');
  mix-blend-mode: soft-light;
  opacity: 0.35;
  pointer-events: none;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 32px);
  margin: 12px auto;
  max-width: 1200px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(7, 12, 24, 0.8);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.navbar.scrolled {
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.35);
  background: rgba(7, 12, 24, 0.95);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  height: 42px;
  width: auto;
  object-fit: contain;
  border-radius: 12px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-weight: 700;
  letter-spacing: -0.01em;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.85rem;
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-menu a {
  position: relative;
  padding: 10px 14px;
  color: var(--text);
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  opacity: 0.85;
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after {
  transform: scaleX(1);
}

.nav-menu .pill {
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--accent), #f8d67a);
  color: #0c0f1c;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.35);
}

.menu-icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Hero */
.hero {
  padding: 140px min(7vw, 72px) 120px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: -20%;
  background: radial-gradient(50% 50% at 20% 30%, rgba(77, 208, 225, 0.15), transparent 45%),
              radial-gradient(60% 60% at 80% 10%, rgba(212, 175, 55, 0.18), transparent 50%),
              radial-gradient(40% 40% at 50% 70%, rgba(124, 77, 255, 0.18), transparent 55%);
  filter: blur(40px);
  animation: gradientDrift 16s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes gradientDrift {
  0% { transform: scale(1) translate3d(0,0,0); }
  50% { transform: scale(1.05) translate3d(-14px, 10px, 0); }
  100% { transform: scale(1.02) translate3d(10px, -12px, 0); }
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.hero-copy p {
  max-width: 640px;
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.hero-copy {
  position: relative;
  z-index: 1;
  transition: transform 0.35s ease;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
}

.hero-meta span {
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.hero-seq { opacity: 0; transform: translateY(18px); animation: heroRise 1s ease forwards; }
.hero-seq.item-1 { animation-delay: 0.2s; }
.hero-seq.item-2 { animation-delay: 0.35s; }
.hero-seq.item-3 { animation-delay: 0.5s; }
.hero-seq.item-4 { animation-delay: 0.65s; }
.hero-seq.item-5 { animation-delay: 0.8s; }

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

.hero-card {
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  align-content: start;
  transform-style: preserve-3d;
}

.hero-badge {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(77, 208, 225, 0.18);
  color: #dff8ff;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-stat {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
}

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

.stat-label {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-cta {
  display: flex;
  justify-content: flex-start;
}

.hero-showcase {
  position: relative;
  perspective: 1000px;
  min-height: 360px;
  z-index: 1;
}

.parallax-layer {
  transition: transform 0.4s ease;
}

.hero-floating {
  position: absolute;
  inset: auto;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--text);
  padding: 12px 14px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.badge-pill {
  top: 14px;
  right: -6px;
  padding: 10px 16px;
  background: linear-gradient(120deg, #4dd0e1, #7c4dff);
  color: #050914;
  font-weight: 700;
}

.card-mini {
  bottom: 24px;
  left: -10px;
  width: 180px;
}

.mini-title { font-weight: 700; font-size: 0.9rem; }

.mini-bars {
  margin-top: 8px;
  display: grid;
  gap: 6px;
}

.mini-bars span {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--accent), #4dd0e1);
}

.stripe {
  bottom: 120px;
  right: -12px;
  padding: 12px 18px;
  background: rgba(212, 175, 55, 0.16);
  color: var(--accent);
  font-weight: 700;
}

.fast { transition-duration: 0.25s; }
.mid { transition-duration: 0.35s; }
.slow { transition-duration: 0.5s; }

.hero-aura {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.mesh-gradient {
  position: absolute;
  inset: -20% -10% 10% -10%;
  background: radial-gradient(35% 35% at 15% 20%, rgba(255,255,255,0.08), transparent),
              radial-gradient(45% 45% at 80% 30%, rgba(212,175,55,0.12), transparent),
              radial-gradient(40% 40% at 50% 80%, rgba(77,208,225,0.12), transparent);
  filter: blur(40px);
  mix-blend-mode: screen;
  animation: meshFloat 18s ease-in-out infinite;
}

@keyframes meshFloat {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-12px) scale(1.04); }
  100% { transform: translateY(0) scale(1); }
}

.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particles span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 12px rgba(255,255,255,0.8);
  animation: floatParticle 12s linear infinite;
}

.particles span:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.particles span:nth-child(2) { top: 40%; left: 70%; animation-delay: 2s; }
.particles span:nth-child(3) { top: 65%; left: 30%; animation-delay: 4s; }
.particles span:nth-child(4) { top: 25%; left: 85%; animation-delay: 6s; }
.particles span:nth-child(5) { top: 55%; left: 55%; animation-delay: 8s; }

@keyframes floatParticle {
  0% { transform: translateY(0) scale(1); opacity: 0.6; }
  50% { transform: translateY(-18px) scale(1.1); opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 0.6; }
}

.aura-ring {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  filter: blur(1px);
  animation: pulseRing 9s ease-in-out infinite;
}

.ring-1 { top: -60px; left: 18%; animation-delay: 0s; }
.ring-2 { bottom: -80px; right: 12%; animation-delay: 2.5s; }

.aura-spot {
  position: absolute;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(77, 208, 225, 0.25) 0%, transparent 65%);
  top: -120px;
  right: -140px;
  filter: blur(30px);
  animation: glide 10s ease-in-out infinite;
}

@keyframes pulseRing {
  0%, 100% { transform: scale(1); opacity: 0.45; }
  50% { transform: scale(1.08); opacity: 0.2; }
}

@keyframes glide {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-20px, 24px, 0); }
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  width: 28px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 999px;
  display: grid;
  place-items: center;
  opacity: 0.75;
}

.scroll-cue span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: scrollDot 1.6s ease-in-out infinite;
}

@keyframes scrollDot {
  0% { transform: translateY(-6px); opacity: 0.3; }
  50% { transform: translateY(8px); opacity: 1; }
  100% { transform: translateY(-6px); opacity: 0.3; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 700;
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn.primary {
  background: linear-gradient(120deg, var(--accent), #f3d06a);
  color: #0b0f1d;
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.35);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.btn.slim {
  width: 100%;
  background: linear-gradient(120deg, #4dd0e1, #7c4dff);
  color: #04101c;
}

.btn:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(255,255,255,0.06);
}

/* Cards & grids */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.cards .card {
  padding: 22px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transform: translateX(-100%);
  transition: transform 0.9s ease;
}

.card:hover::after { transform: translateX(100%); }
.card:hover { transform: translateY(-6px); }

.templates .template-image-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.template-image-card img { width: 100%; display: block; }
.template-image-card img { transition: transform 0.6s ease; }

.template-image-card:hover img { transform: scale(1.04); }

.work-thumb.placeholder {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, rgba(77,208,225,0.18), rgba(212,175,55,0.18));
  border-bottom: 1px solid var(--border);
}

.work-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--border);
}

.badge-pill.small {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  color: var(--accent);
  font-size: 0.8rem;
  margin-bottom: 6px;
}

.template-content {
  padding: 18px;
  display: grid;
  gap: 8px;
  align-content: start;
}

.template-content h3 { font-size: 1.05rem; }

.template-content p { font-size: 0.95rem; }

.template-content .btn {
  justify-self: start;
  padding: 10px 16px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.16);
  color: var(--accent);
  border-color: rgba(212, 175, 55, 0.3);
}

.template-image-card:hover { transform: translateY(-6px); }

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

.pricing-card {
  position: relative;
  padding: 28px;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pricing-card.popular {
  border: 1.5px solid rgba(212, 175, 55, 0.7);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.pricing-card:hover { transform: translateY(-8px); }

.price {
  font-size: 2rem;
  color: var(--accent);
  margin: 10px 0 16px;
}

.features {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.badge-popular {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 12px;
  border-radius: 12px;
  background: linear-gradient(120deg, var(--accent), #f8d67a);
  color: #0c0f1c;
  font-weight: 700;
}

/* About */
.about-container {
  padding: 48px;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  max-width: 1000px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: center;
}

.about-title { margin-bottom: 14px; }

.about-text { font-size: 1rem; margin-bottom: 12px; }

.about-btn {
  display: inline-flex;
  margin-top: 16px;
  padding: 12px 20px;
  border-radius: 14px;
  background: linear-gradient(120deg, #4dd0e1, #7c4dff);
  color: #050914;
  font-weight: 700;
  border: none;
  box-shadow: 0 12px 26px rgba(124, 77, 255, 0.24);
}

.about-visual {
  position: relative;
  min-height: 260px;
  display: grid;
  gap: 14px;
  align-content: center;
}

.about-orb {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: radial-gradient(circle at 20% 30%, rgba(77,208,225,0.25), transparent 55%), radial-gradient(circle at 80% 60%, rgba(212,175,55,0.2), transparent 55%);
  filter: blur(18px);
  opacity: 0.8;
}

.about-card {
  position: relative;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.about-card.alt {
  background: rgba(255, 255, 255, 0.06);
}

/* Stats */
.stats-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.stat-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}

.stat-box:hover { transform: translateY(-6px); }

.stat-box h2 { color: var(--accent); font-size: 2rem; }

/* Contact */
.contact-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 18px;
  flex-wrap: wrap;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-weight: 700;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.contact-btn svg { width: 20px; height: 20px; fill: currentColor; }

.contact-btn:hover { transform: translateY(-4px); background: rgba(255, 255, 255, 0.15); }

.contact-btn.insta:hover { color: #ff9ff3; }
.contact-btn.mail:hover { color: #9adfff; }
.contact-btn.linkedin:hover { color: #4dd0e1; }

.contact-form-wrap {
  margin: 28px auto 0;
  max-width: 960px;
  padding: 28px;
  border-radius: 20px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full { grid-column: 1 / -1; }

.field label {
  font-weight: 600;
  color: var(--text);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  transition: border 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.field textarea { resize: vertical; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
  transform: translateY(-1px);
}

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

.form-status {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(120%);
  background: rgba(7, 12, 24, 0.92);
  color: #e8f1ff;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 20;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Floating CTAs */
.call, .whatsapp {
  position: fixed;
  right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow);
  z-index: 9;
}

.call {
  bottom: 96px;
  background: linear-gradient(120deg, var(--accent), #f3d06a);
  color: #0b0f1d;
}

.whatsapp {
  bottom: 32px;
  background: #25d366;
  color: #02150a;
}

/* Footer */
footer {
  text-align: center;
  padding: 48px 20px 64px;
  background: rgba(255, 255, 255, 0.04);
  border-top: 1px solid var(--border);
}

.glass {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

/* Animations */
[data-animate] { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-animate].in-view { opacity: 1; transform: translateY(0); }
[data-animate="fade-down"] { transform: translateY(-10px); }
[data-animate="zoom-in"] { transform: scale(0.96); }
[data-animate="zoom-in"].in-view { transform: scale(1); }

/* Responsive */
@media (max-width: 900px) {
  .navbar { border-radius: 16px; }
  .hero { padding-top: 110px; }
  .scroll-cue { display: none; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 80px;
    right: 16px;
    flex-direction: column;
    width: 220px;
    padding: 16px;
    border-radius: 16px;
    background: rgba(5, 8, 20, 0.92);
    border: 1px solid var(--border);
    display: none;
    transform-origin: top right;
  }
  .nav-menu.show { display: flex; animation: menuReveal 0.28s ease; }
  .menu-icon { display: block; }
  .hero-actions { width: 100%; }
  .hero-card { order: -1; }
}

@keyframes menuReveal {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 540px) {
  section { padding: 76px 20px; }
  .navbar { padding: 14px 16px; }
  .hero { padding: 110px 20px 90px; }
}
