:root {
  --background: 240 38% 7%;
  --foreground: 220 20% 96%;
  --primary: 285 96% 68%;
  --secondary: 196 100% 63%;
  --muted: 240 18% 16%;
  --muted-foreground: 228 16% 72%;
  --destructive: 0 82% 61%;
  --border: 236 33% 28%;
  --card: 237 31% 12%;
  --shadow-sm: 0 12px 30px rgba(20, 16, 46, 0.18);
  --shadow-md: 0 22px 60px rgba(88, 61, 255, 0.24);
  --shadow-lg: 0 40px 120px rgba(83, 33, 255, 0.35);
  --transition-fast: 180ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 420ms cubic-bezier(0.22, 1, 0.36, 1);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
}

.dark {
  --background: 240 38% 7%;
  --foreground: 220 20% 96%;
  --primary: 285 96% 68%;
  --secondary: 196 100% 63%;
  --muted: 240 18% 16%;
  --muted-foreground: 228 16% 72%;
  --destructive: 0 82% 61%;
  --border: 236 33% 28%;
  --card: 237 31% 12%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background:
    radial-gradient(circle at 15% 15%, rgba(160, 64, 255, 0.22), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(0, 214, 255, 0.15), transparent 24%),
    radial-gradient(circle at 50% 80%, rgba(255, 0, 153, 0.12), transparent 28%),
    hsl(var(--background));
  color: hsl(var(--foreground));
  overflow-x: hidden;
}

.font-display {
  font-family: 'Outfit', sans-serif;
}

.mesh-bg {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 20% 20%, rgba(154, 68, 255, 0.2), transparent 18%),
    radial-gradient(circle at 80% 10%, rgba(0, 221, 255, 0.18), transparent 18%),
    radial-gradient(circle at 70% 70%, rgba(255, 63, 194, 0.16), transparent 20%),
    linear-gradient(135deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  filter: blur(30px);
}

.noise-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image: radial-gradient(rgba(255,255,255,0.06) 0.7px, transparent 0.7px);
  background-size: 12px 12px;
  mix-blend-mode: soft-light;
}

.glass-panel,
.glass-nav,
.feature-card,
.pricing-card,
.portfolio-card,
.testimonial-card,
.contact-card,
.cta-banner,
.hero-visual-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.13), rgba(255,255,255,0.06));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow-md);
}

.glass-panel,
.hero-visual-card,
.cta-banner {
  border-radius: var(--radius-lg);
}

.glass-nav {
  background: linear-gradient(180deg, rgba(18,18,35,0.85), rgba(16,16,28,0.7));
  box-shadow: 0 10px 40px rgba(0,0,0,0.22), 0 0 0 1px rgba(255,255,255,0.06) inset;
}

.logo-chip {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(194,80,255,1), rgba(0,214,255,1));
  box-shadow: 0 0 0 1px rgba(255,255,255,0.15) inset, 0 12px 30px rgba(131, 84, 255, 0.4);
}

.nav-link,
.mobile-nav-link {
  color: hsl(var(--foreground));
  text-decoration: none;
  border-radius: 999px;
  transition: var(--transition-fast);
}

.nav-link {
  padding: 0.72rem 1rem;
  font-size: 0.95rem;
}

.nav-link:hover,
.mobile-nav-link:hover {
  background: rgba(255,255,255,0.08);
  color: white;
}

.mobile-nav-link {
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.03);
}

.btn-primary,
.btn-secondary,
.btn-ghost {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border-radius: 999px;
  padding: 0.95rem 1.35rem;
  text-decoration: none;
  font-weight: 700;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast);
  min-height: 52px;
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--secondary)));
  box-shadow: 0 14px 32px rgba(169, 84, 255, 0.35), 0 0 30px rgba(0, 214, 255, 0.18);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 45px rgba(169, 84, 255, 0.42), 0 0 40px rgba(0, 214, 255, 0.24);
}

.btn-secondary {
  color: hsl(var(--foreground));
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
}

.btn-secondary:hover,
.btn-ghost:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.09);
}

.btn-ghost {
  color: hsl(var(--foreground));
  border: 1px solid rgba(255,255,255,0.12);
  background: transparent;
}

.offer-pill,
.section-pill,
.badge-glow,
.offer-ribbon,
.hero-chip,
.platform-chip,
.bubble-card {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.08);
  color: hsl(var(--primary));
}

.offer-pill,
.section-pill,
.badge-glow,
.offer-ribbon,
.hero-chip {
  padding: 0.55rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.badge-glow {
  box-shadow: 0 0 30px rgba(199, 89, 255, 0.18);
}

.offer-ribbon {
  color: hsl(var(--secondary));
  background: linear-gradient(90deg, rgba(179,71,255,0.15), rgba(0,214,255,0.15));
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, hsl(var(--secondary)), hsl(var(--primary)));
  box-shadow: 0 0 0 0 rgba(0,214,255,0.6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0,214,255,0.55); }
  70% { box-shadow: 0 0 0 12px rgba(0,214,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,214,255,0); }
}

.gradient-text {
  background: linear-gradient(135deg, #ff68d2 0%, #bd7bff 40%, #6ddcff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-card {
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(14px);
}

.stat-number {
  font-size: 1.35rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: white;
}

.stat-label {
  margin-top: 0.2rem;
  color: hsl(var(--muted-foreground));
  font-size: 0.9rem;
}

.hero-visual-card {
  min-height: 420px;
  padding: 1.1rem;
  overflow: hidden;
  transform-style: preserve-3d;
  background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.05));
}

.browser-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.browser-top span {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.35);
}

.hero-dashboard {
  margin-top: 1rem;
  height: calc(100% - 1.8rem);
  border-radius: 28px;
  padding: 1rem;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.12), transparent 30%), linear-gradient(180deg, rgba(25,25,48,0.85), rgba(15,15,28,0.75));
  border: 1px solid rgba(255,255,255,0.06);
}

.hero-preview-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0.9rem;
}

.preview-panel,
.preview-side {
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}

.preview-main {
  min-height: 290px;
  padding: 1.1rem;
  background: linear-gradient(160deg, rgba(144,74,255,0.38), rgba(22,22,40,0.95));
}

.preview-shine {
  position: absolute;
  inset: -30% auto auto -20%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255,255,255,0.25), transparent 68%);
  filter: blur(10px);
}

.mini-title {
  position: relative;
  z-index: 1;
  color: hsl(var(--secondary));
  font-size: 0.82rem;
  font-weight: 700;
}

.mini-heading {
  position: relative;
  z-index: 1;
  color: white;
  font-size: 1.55rem;
  line-height: 1.15;
  font-weight: 800;
  margin-top: 1rem;
  max-width: 14rem;
}

.mini-bars {
  position: relative;
  z-index: 1;
  margin-top: 1.25rem;
  display: grid;
  gap: 0.55rem;
}

.mini-bars span {
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
}

.mini-bars span:nth-child(1) { width: 88%; }
.mini-bars span:nth-child(2) { width: 76%; }
.mini-bars span:nth-child(3) { width: 64%; }

.mini-cta-row {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.mini-button {
  height: 42px;
  border-radius: 999px;
  width: 116px;
}

.mini-button.solid {
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--secondary)));
}

.mini-button.outline {
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.05);
}

.stack-top,
.stack-bottom {
  padding: 1rem;
  background: linear-gradient(160deg, rgba(18,18,35,0.88), rgba(31,31,60,0.75));
}

.stack-top {
  min-height: 150px;
}

.stack-bottom {
  min-height: 130px;
}

.side-metric {
  font-size: 2rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: white;
}

.side-copy {
  margin-top: 0.4rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.45;
}

.bubble-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.bubble-card,
.platform-chip {
  padding: 0.55rem 0.8rem;
  color: hsl(var(--secondary));
}

.floating-card {
  position: absolute;
  border-radius: 24px;
  padding: 1rem 1.15rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.07));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
  animation: floatY 6s ease-in-out infinite;
}

.card-one {
  left: -10px;
  bottom: 48px;
  width: 190px;
}

.card-two {
  right: -8px;
  top: 50px;
  width: 160px;
  animation-delay: 1.2s;
}

.floating-tag {
  display: inline-flex;
  font-size: 0.72rem;
  color: hsl(var(--secondary));
  background: rgba(0,214,255,0.08);
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
}

.floating-title,
.tiny-heading {
  color: white;
  font-weight: 800;
  margin-top: 0.65rem;
}

.floating-price {
  margin-top: 0.3rem;
  color: hsl(var(--primary));
  font-size: 1.2rem;
  font-weight: 800;
}

.tiny-kicker {
  color: hsl(var(--muted-foreground));
  font-size: 0.78rem;
}

.hero-sphere,
.floating-orb,
.floating-shape {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero-sphere {
  filter: blur(6px);
  opacity: 0.85;
}

.sphere-a {
  width: 80px;
  height: 80px;
  left: 5%;
  top: 12%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.8), rgba(255,67,199,0.35));
  animation: floatY 6.6s ease-in-out infinite;
}

.sphere-b {
  width: 60px;
  height: 60px;
  right: 16%;
  bottom: 8%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.8), rgba(0,214,255,0.35));
  animation: floatY 5.3s ease-in-out infinite reverse;
}

.sphere-c {
  width: 46px;
  height: 46px;
  right: 30%;
  top: 12%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.8), rgba(178, 72, 255, 0.35));
  animation: floatY 5.8s ease-in-out infinite;
}

.floating-orb {
  filter: blur(40px);
  opacity: 0.5;
}

.orb-one {
  width: 320px;
  height: 320px;
  background: rgba(179, 77, 255, 0.28);
  top: 10%;
  left: -80px;
  animation: slowDrift 18s ease-in-out infinite;
}

.orb-two {
  width: 260px;
  height: 260px;
  background: rgba(0, 209, 255, 0.2);
  right: -80px;
  top: 18%;
  animation: slowDrift 20s ease-in-out infinite reverse;
}

.orb-three {
  width: 240px;
  height: 240px;
  background: rgba(255, 60, 184, 0.16);
  bottom: 10%;
  left: 40%;
  animation: slowDrift 22s ease-in-out infinite;
}

.cube-shape,
.ring-shape,
.prism-shape {
  opacity: 0.4;
  animation: floatY 8s ease-in-out infinite;
}

.cube-shape {
  width: 120px;
  height: 120px;
  border-radius: 28px;
  right: 7%;
  top: 22%;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.12);
  transform: rotate(28deg);
}

.ring-shape {
  width: 140px;
  height: 140px;
  left: 8%;
  bottom: 20%;
  border: 18px solid rgba(0,214,255,0.08);
}

.prism-shape {
  width: 90px;
  height: 90px;
  right: 22%;
  bottom: 14%;
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  background: linear-gradient(180deg, rgba(255,80,202,0.18), rgba(130,64,255,0.08));
}

@keyframes slowDrift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(30px, -22px, 0) scale(1.08); }
}

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

.section-head {
  margin-bottom: 2rem;
}

.section-title {
  margin: 0.9rem 0 0;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  line-height: 1.08;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: white;
}

.section-copy {
  margin-top: 0.9rem;
  color: hsl(var(--muted-foreground));
  font-size: 1rem;
  line-height: 1.7;
}

.feature-card,
.pricing-card,
.portfolio-card,
.contact-card,
.testimonial-card {
  border-radius: var(--radius-md);
}

.feature-card,
.pricing-card {
  padding: 1.4rem;
  overflow: hidden;
}

.tilt-card {
  transform-style: preserve-3d;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-fast);
}

.tilt-card:hover {
  transform: translateY(-8px) rotateX(6deg) rotateY(-6deg);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255,255,255,0.2);
}

.feature-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-size: 1.6rem;
  background: linear-gradient(135deg, rgba(189,123,255,0.24), rgba(0,220,255,0.22));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

.feature-title {
  color: white;
  font-size: 1.2rem;
  font-weight: 800;
  margin-top: 1rem;
  font-family: 'Outfit', sans-serif;
}

.feature-text {
  color: hsl(var(--muted-foreground));
  line-height: 1.65;
  margin-top: 0.55rem;
}

.feature-glow-line {
  height: 4px;
  width: 90px;
  border-radius: 999px;
  margin-top: 1rem;
  background: linear-gradient(90deg, hsl(var(--primary)), hsl(var(--secondary)));
}

.pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
}

.pricing-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.24), rgba(255,255,255,0.03));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.popular-card {
  transform: translateY(-6px);
  box-shadow: 0 26px 80px rgba(179, 77, 255, 0.3);
}

.popular-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  color: white;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--secondary)));
}

.pricing-name {
  color: white;
  font-size: 1.2rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  padding-right: 70px;
}

.pricing-price {
  margin-top: 0.8rem;
  font-size: 2rem;
  font-weight: 800;
  color: hsl(var(--primary));
  font-family: 'Outfit', sans-serif;
}

.pricing-desc {
  margin-top: 0.6rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.55;
  min-height: 72px;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 1.15rem 0 0;
  display: grid;
  gap: 0.72rem;
}

.pricing-item {
  color: hsl(var(--foreground));
  font-size: 0.94rem;
}

.portfolio-card {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.portfolio-preview {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 1rem;
  transition: transform var(--transition-smooth);
}

.portfolio-card:hover .portfolio-preview {
  transform: scale(1.04);
}

.preview-salon {
  background: radial-gradient(circle at top left, rgba(255,140,214,0.28), transparent 34%), linear-gradient(135deg, rgba(48,19,72,0.95), rgba(16,14,35,0.98));
}

.preview-beauty {
  background: radial-gradient(circle at top left, rgba(255,104,210,0.24), transparent 34%), linear-gradient(135deg, rgba(62,24,78,0.95), rgba(20,14,34,0.98));
}

.preview-shop {
  background: radial-gradient(circle at top left, rgba(0,214,255,0.24), transparent 34%), linear-gradient(135deg, rgba(18,38,78,0.95), rgba(14,18,34,0.98));
}

.preview-gym {
  background: radial-gradient(circle at top left, rgba(132,95,255,0.24), transparent 34%), linear-gradient(135deg, rgba(26,25,74,0.95), rgba(15,16,30,0.98));
}

.preview-business {
  background: radial-gradient(circle at top left, rgba(104,181,255,0.24), transparent 34%), linear-gradient(135deg, rgba(18,34,72,0.95), rgba(14,16,28,0.98));
}

.portfolio-screen {
  margin-top: 1rem;
  border-radius: 22px;
  padding: 1rem;
  min-height: 180px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}

.portfolio-kicker {
  color: hsl(var(--secondary));
  font-size: 0.78rem;
  font-weight: 700;
}

.portfolio-heading {
  color: white;
  font-size: 1.15rem;
  margin-top: 0.4rem;
  font-weight: 800;
}

.portfolio-lines {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.portfolio-lines span,
.portfolio-mini-grid div {
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
}

.portfolio-lines span:nth-child(1) { height: 9px; width: 78%; }
.portfolio-lines span:nth-child(2) { height: 9px; width: 63%; }
.portfolio-lines span:nth-child(3) { height: 9px; width: 88%; }

.portfolio-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  margin-top: 1rem;
}

.portfolio-mini-grid div {
  height: 52px;
  border-radius: 16px;
}

.testimonial-wrap {
  overflow: hidden;
}

.testimonial-slider {
  display: flex;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-card {
  min-width: 100%;
  padding: 1.6rem;
}

.testimonial-stars {
  color: hsl(var(--secondary));
  letter-spacing: 0.15rem;
  font-size: 1.2rem;
}

.testimonial-copy {
  color: white;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.75;
  margin-top: 1rem;
  max-width: 55rem;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.avatar-badge {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: white;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--secondary)));
}

.testimonial-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.dot-button {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.dot-button.active {
  transform: scale(1.45);
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--secondary)));
}

.sticky-card {
  top: 96px;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: hsl(var(--foreground));
}

.info-row span {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: hsl(var(--secondary));
  flex-shrink: 0;
}

.form-shell {
  box-shadow: var(--shadow-lg);
}

.form-field {
  display: grid;
  gap: 0.55rem;
}

.form-field span {
  color: hsl(var(--foreground));
  font-size: 0.92rem;
  font-weight: 700;
}

.input-style {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: white;
  border-radius: 18px;
  padding: 0.95rem 1rem;
  font: inherit;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.input-style::placeholder {
  color: hsl(var(--muted-foreground));
}

.input-style:focus {
  border-color: rgba(182, 102, 255, 0.8);
  box-shadow: 0 0 0 4px rgba(182, 102, 255, 0.14);
  background: rgba(255,255,255,0.07);
}

select.input-style option {
  color: black;
}

.platform-chip-row {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  min-height: 52px;
  align-items: center;
}

.error-box {
  border-radius: 18px;
  padding: 0.95rem 1rem;
  color: white;
  border: 1px solid rgba(255, 94, 94, 0.35);
  background: rgba(255, 94, 94, 0.1);
}

.cta-banner {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 112, 221, 0.2), transparent 22%),
    radial-gradient(circle at right, rgba(0, 214, 255, 0.15), transparent 24%),
    linear-gradient(135deg, rgba(33, 20, 71, 0.96), rgba(20, 20, 44, 0.92));
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  padding: 1.25rem;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.08));
}

.contact-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-size: 1.4rem;
  background: linear-gradient(135deg, rgba(189,123,255,0.24), rgba(0,220,255,0.22));
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 92px;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.7rem;
  color: white;
  z-index: 60;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--secondary)));
  box-shadow: 0 18px 45px rgba(169, 84, 255, 0.42), 0 0 40px rgba(0, 214, 255, 0.24);
  animation: pulseFloat 2.8s ease-in-out infinite;
}

@keyframes pulseFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-5px) scale(1.04); }
}

.mobile-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  padding: 0.8rem 1rem calc(0.8rem + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(15,15,28,0), rgba(15,15,28,0.92) 28%, rgba(15,15,28,0.98));
  backdrop-filter: blur(14px);
}

.loader-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at center, black 25%, transparent 80%);
}

.loader-ring {
  width: 74px;
  height: 74px;
  border-radius: 999px;
  border: 3px solid rgba(255,255,255,0.1);
  border-top-color: hsl(var(--secondary));
  border-right-color: hsl(var(--primary));
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.skeleton {
  background: linear-gradient(90deg, rgba(255,255,255,0.06), rgba(255,255,255,0.12), rgba(255,255,255,0.06));
  background-size: 200% 100%;
  animation: shimmer 1.2s linear infinite;
}

@keyframes shimmer {
  from { background-position: 200% 0; }
  to { background-position: -200% 0; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms cubic-bezier(0.22, 1, 0.36, 1), transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.menu-button {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.menu-line {
  display: block;
  width: 20px;
  height: 2px;
  background: white;
  transition: all var(--transition-fast);
}

@media (min-width: 768px) {
  .mobile-sticky-cta {
    display: none;
  }

  .cta-banner {
    padding: 2.4rem;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (max-width: 1023px) {
  .sticky-card {
    position: relative;
    top: auto;
  }
}

@media (max-width: 767px) {
  .floating-whatsapp {
    width: 58px;
    height: 58px;
    right: 14px;
    bottom: 86px;
  }

  .hero-preview-grid {
    grid-template-columns: 1fr;
  }

  .card-one {
    left: 8px;
    bottom: -8px;
    width: 165px;
  }

  .card-two {
    right: 0;
    top: 18px;
  }

  .hero-visual-card {
    min-height: 380px;
  }
}

@media (min-width: 1024px) {
  .parallax-zone {
    transform: translateY(-8px);
  }
}