.site-nav {
  background: var(--nav-bg);
  border-bottom: 1px solid rgba(255,255,255,0.045);
}

.logo-brand {
  color: var(--primary-color);
  letter-spacing: -0.02em;
}

.logo-light {
  color: var(--text-color);
}

.logo-dot {
  color: var(--secondary-color);
}

.mobile-menu-btn {
  color: var(--text-color);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.mobile-contact-link {
  color: var(--primary-color);
  font-weight: 600;
}

/* ── MOBILE MENU DRAWER ───────────────────────────── */

.mobile-menu-drawer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-menu-drawer.open {
  max-height: 400px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

@media (min-width: 768px) {
  .mobile-menu-drawer {
    display: none !important;
  }
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0.75rem 1.25rem 1.25rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.18s ease, padding-left 0.18s ease;
}

.mobile-nav-link:last-of-type {
  border-bottom: none;
}

.mobile-nav-link:hover {
  color: var(--text-color);
  padding-left: 0.85rem;
}

.mobile-nav-cta {
  display: block;
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-color) 0%, #7c5cf6 100%);
  box-shadow: 0 4px 14px rgba(99,62,248,0.25);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.mobile-nav-cta:hover {
  box-shadow: 0 6px 20px rgba(99,62,248,0.35);
  transform: translateY(-1px);
}

.nav-link {
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: width 0.25s ease;
  border-radius: 2px;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link-hover {
  font-size: 0.8125rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link-hover:hover {
  color: var(--text-color);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.45rem 1.15rem;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-color) 0%, #7c5cf6 100%);
  box-shadow: 0 0 0 1px rgba(99,62,248,0.45), 0 4px 14px rgba(99,62,248,0.25);
  transition: box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  background: linear-gradient(135deg, #7c5cf6 0%, var(--primary-color) 100%);
  box-shadow: 0 0 0 1px rgba(99,62,248,0.6), 0 6px 22px rgba(99,62,248,0.35);
  transform: translateY(-1px);
}

.nav-cta-arrow {
  font-style: normal;
  transition: transform 0.2s ease;
}

.nav-cta:hover .nav-cta-arrow {
  transform: translateX(3px);
}

.gradient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: float 8s ease-in-out infinite;
}

.blob-left {
  width: 500px;
  height: 500px;
  background: var(--primary-color);
  top: -100px;
  left: -150px;
}

.blob-right {
  width: 400px;
  height: 400px;
  background: var(--secondary-color);
  top: 100px;
  right: -100px;
  animation-delay: 2s;
}

.badge-soft {
  background: rgba(99, 62, 248, 0.1);
  color: var(--secondary-color);
  border: 1px solid rgba(99, 62, 248, 0.3);
}

.hero-title {
  color: #ffffff;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-shadow: 0 2px 60px rgba(167, 139, 250, 0.2);
}

.btn-primary {
  background: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover,
.btn-light:hover,
.whatsapp-btn:hover {
  transform: translateY(-1px);
}

.btn-shadow:hover {
  box-shadow: 0 12px 30px rgba(99, 62, 248, 0.25);
}

.btn-outline {
  border-color: rgba(99, 62, 248, 0.4);
  color: var(--secondary-color);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
}

.btn-light {
  background: var(--white);
  color: var(--primary-color);
}

.hero-card-wrap {
  background: rgba(99, 62, 248, 0.05);
  border-color: rgba(99, 62, 248, 0.15);
}

.hero-browser {
  background: linear-gradient(135deg, #0d0b1a 0%, #1a1430 100%);
  border: 1px solid rgba(99, 62, 248, 0.2);
}

.hero-browser-top,
.portfolio-browser-top {
  border-color: var(--border-soft);
}

.dot-red {
  background: #ff5f57;
}

.dot-yellow {
  background: #febc2e;
}

.dot-green {
  background: #28c840;
}

.floating-badge {
  background: rgba(6, 6, 14, 0.9);
  animation: float 5s ease-in-out infinite;
}

.floating-badge-seo {
  border: 1px solid rgba(99, 62, 248, 0.3);
  color: var(--secondary-color);
}

.floating-badge-speed {
  border: 1px solid rgba(40, 200, 64, 0.3);
  color: var(--success-color);
  animation-duration: 6s;
  animation-delay: 1s;
}

.service-card,
.contact-card {
  background: rgba(255, 255, 255, 0.02);
  border-color: var(--border-primary-soft);
}

/* ── TESTIMONIAL CARDS ───────────────────────────── */

.testimonial-card {
  background: rgba(255, 255, 255, 0.022);
  border-color: rgba(255, 255, 255, 0.08);
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.testimonial-card:hover {
  border-color: rgba(99, 62, 248, 0.3);
  background: rgba(99, 62, 248, 0.03);
  box-shadow: 0 16px 40px rgba(99, 62, 248, 0.1);
  transform: translateY(-4px);
}

.testimonial-body {
  padding: 1.75rem 1.75rem 1.5rem;
  flex: 1;
  position: relative;
}

.testimonial-quote-icon {
  width: 20px;
  height: 20px;
  color: rgba(99, 62, 248, 0.5);
  margin-bottom: 0.875rem;
  flex-shrink: 0;
}

.testimonial-text {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.75;
  letter-spacing: 0.005em;
  transition: color 0.25s ease;
}

.testimonial-card:hover .testimonial-text {
  color: rgba(255, 255, 255, 0.88);
}

.testimonial-footer {
  padding: 1.125rem 1.75rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading, sans-serif);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.03em;
  flex-shrink: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
}

.testimonial-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: -0.01em;
}

.testimonial-role {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 1px;
}

.portfolio-card {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.portfolio-card:hover {
  border-color: rgba(99, 62, 248, 0.35);
  box-shadow: 0 20px 48px rgba(99, 62, 248, 0.14);
  transform: translateY(-5px);
}

.portfolio-thumb {
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-thumb-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  transition: transform 0.4s ease;
}

.portfolio-card:hover .portfolio-thumb-inner {
  transform: scale(1.04);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 6, 30, 0.62);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-cta-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #fff;
  background: rgba(99, 62, 248, 0.75);
  border: 1px solid rgba(99, 62, 248, 0.6);
  backdrop-filter: blur(4px);
  transform: translateY(6px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.2s ease;
}

.portfolio-card:hover .portfolio-cta-label {
  transform: translateY(0);
}

.portfolio-info {
  padding: 1.25rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.portfolio-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(99, 62, 248, 0.85);
  margin-bottom: 2px;
}

.portfolio-title {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  letter-spacing: -0.015em;
  transition: color 0.22s ease;
}

.portfolio-card:hover .portfolio-title {
  color: #fff;
}

.portfolio-desc {
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.55;
  transition: color 0.22s ease;
}

.portfolio-card:hover .portfolio-desc {
  color: rgba(255, 255, 255, 0.6);
}

.featured-card {
  background: rgba(99, 62, 248, 0.06);
  border-color: var(--border-primary-medium);
}

.tag-popular {
  background: var(--primary-color);
  color: var(--white);
}

.icon-box,
.icon-box-strong,
.icon-box-whatsapp {
  background: rgba(99, 62, 248, 0.12);
}

.icon-box-strong {
  background: rgba(99, 62, 248, 0.2);
}

.icon-box-whatsapp {
  background: rgba(40, 200, 64, 0.12);
}

.benefit-card {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.022);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.benefit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(99, 62, 248, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.benefit-card:hover {
  border-color: rgba(99, 62, 248, 0.38);
  background: rgba(99, 62, 248, 0.055);
  box-shadow: 0 20px 48px rgba(99, 62, 248, 0.14), 0 1px 0 rgba(99, 62, 248, 0.18) inset;
  transform: translateY(-5px);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(99, 62, 248, 0.11);
  border: 1px solid rgba(99, 62, 248, 0.2);
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.benefit-card:hover .benefit-icon-wrap {
  background: rgba(99, 62, 248, 0.22);
  border-color: rgba(99, 62, 248, 0.42);
  box-shadow: 0 0 18px rgba(99, 62, 248, 0.24);
  transform: scale(1.1) rotate(-4deg);
}

.benefit-icon-wrap svg {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.25s ease;
}

.benefit-card:hover .benefit-icon-wrap svg {
  transform: scale(1.15);
  color: #c4b5fd;
}

.benefit-title {
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: -0.018em;
  transition: color 0.25s ease;
}

.benefit-card:hover .benefit-title {
  color: #ffffff;
}

.benefit-desc {
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.65;
  transition: color 0.25s ease;
}

.benefit-card:hover .benefit-desc {
  color: rgba(255, 255, 255, 0.62);
}

.portfolio-bg-1 {
  background: linear-gradient(135deg, #1a1040, #2a1860);
}

.portfolio-bg-2 {
  background: linear-gradient(135deg, #0f2027, #203a43);
}

.portfolio-bg-3 {
  background: linear-gradient(135deg, #1a0a2e, #2d1b4e);
}

.portfolio-browser,
.mini-social-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.bar-soft-1 {
  background: rgba(99, 62, 248, 0.3);
}

.bar-soft-2 {
  background: rgba(99, 62, 248, 0.5);
}

.bar-soft-3 {
  background: rgba(99, 62, 248, 0.4);
}

.star-icon {
  color: var(--star-color);
}

.avatar-primary {
  background: var(--primary-color);
  color: var(--white);
}

.avatar-secondary {
  background: var(--secondary-color);
  color: var(--white);
}

.cta-banner {
  background: linear-gradient(135deg, var(--primary-color), #4318b0);
  border: 1px solid rgba(167, 139, 250, 0.3);
}

.cta-overlay {
  background: radial-gradient(circle at 30% 50%, rgba(167, 139, 250, 0.2) 0%, transparent 60%);
}

.cta-text {
  color: rgba(255, 255, 255, 0.75);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  outline: none;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(99, 62, 248, 0.15);
  color: var(--text-color);
}

.form-control:focus {
  border-color: rgba(99, 62, 248, 0.5);
  box-shadow: 0 0 0 2px rgba(99, 62, 248, 0.25);
}

.success-box {
  background: rgba(40, 200, 64, 0.1);
  color: var(--success-color);
  border: 1px solid rgba(40, 200, 64, 0.2);
}

.whatsapp-btn {
  background: var(--whatsapp-color);
  color: var(--white);
}

.footer-border {
  border-color: var(--border-soft);
}

.social-link {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.05);
}

.social-icon {
  color: var(--soft-muted);
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: var(--whatsapp-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px var(--shadow-whatsapp);
  transition: transform 0.3s;
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.card-hover {
  transition: transform 0.3s, box-shadow 0.3s;
}

.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px var(--shadow-primary);
}

/* ── SERVICE CARDS ───────────────────────────────── */

.svc-card {
  background: rgba(255, 255, 255, 0.018);
  border-color: rgba(99, 62, 248, 0.1);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.svc-card:hover {
  transform: translateY(-6px);
  background: rgba(99, 62, 248, 0.06);
  border-color: rgba(99, 62, 248, 0.28);
  box-shadow: 0 20px 48px rgba(99, 62, 248, 0.13), 0 1px 0 rgba(99, 62, 248, 0.2) inset;
}

.svc-card--featured {
  background: rgba(99, 62, 248, 0.07);
  border-color: rgba(99, 62, 248, 0.22);
  box-shadow: 0 8px 32px rgba(99, 62, 248, 0.1);
}

.svc-card--featured:hover {
  background: rgba(99, 62, 248, 0.12);
  border-color: rgba(99, 62, 248, 0.4);
  box-shadow: 0 24px 56px rgba(99, 62, 248, 0.2), 0 1px 0 rgba(99, 62, 248, 0.3) inset;
}

.svc-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(99, 62, 248, 0.1);
  border: 1px solid rgba(99, 62, 248, 0.16);
  transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.svc-card:hover .svc-icon-wrap {
  background: rgba(99, 62, 248, 0.2);
  border-color: rgba(99, 62, 248, 0.35);
  box-shadow: 0 0 16px rgba(99, 62, 248, 0.2);
  transform: scale(1.08) rotate(-4deg);
}

.svc-icon-wrap svg {
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.22s ease;
}

.svc-card:hover .svc-icon-wrap svg {
  transform: scale(1.12);
}

.svc-icon-wrap--featured {
  background: rgba(99, 62, 248, 0.18);
  border-color: rgba(99, 62, 248, 0.28);
}

.svc-card--featured:hover .svc-icon-wrap--featured {
  background: rgba(99, 62, 248, 0.3);
  border-color: rgba(99, 62, 248, 0.5);
  box-shadow: 0 0 20px rgba(99, 62, 248, 0.28);
}

.svc-title {
  color: var(--white);
  letter-spacing: -0.02em;
  transition: color 0.22s ease, letter-spacing 0.28s ease;
}

.svc-card:hover .svc-title {
  color: #f0ecff;
  letter-spacing: -0.015em;
}

.svc-text {
  color: var(--soft-muted);
  line-height: 1.7;
  transition: color 0.22s ease;
}

.svc-card:hover .svc-text {
  color: #8a879f;
}

/* ── BULLET POINT MICRO-INTERACTIONS ───────────────── */

.svc-card ul li {
  transition: transform 0.22s ease, color 0.22s ease;
  will-change: transform;
}

.svc-card:hover ul li {
  color: rgba(255, 255, 255, 0.72);
}

.svc-card:hover ul li:nth-child(1) { transform: translateX(3px); transition-delay: 0.02s; }
.svc-card:hover ul li:nth-child(2) { transform: translateX(3px); transition-delay: 0.06s; }
.svc-card:hover ul li:nth-child(3) { transform: translateX(3px); transition-delay: 0.1s; }
.svc-card:hover ul li:nth-child(4) { transform: translateX(3px); transition-delay: 0.14s; }
.svc-card:hover ul li:nth-child(5) { transform: translateX(3px); transition-delay: 0.18s; }

.svc-card ul li svg {
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.22s ease;
}

.svc-card:hover ul li svg {
  transform: scale(1.2);
}

/* ── HERO ENHANCEMENTS ────────────────────────────── */

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(99, 62, 248, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 62, 248, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 30%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 30%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(40, 200, 64, 0.5); }
  50% { box-shadow: 0 0 0 5px rgba(40, 200, 64, 0); }
}

.badge-pulse-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success-color);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

.hero-title-gradient {
  background: linear-gradient(135deg, #a78bfa 0%, #ddd6fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle-highlight {
  color: #c4b5fd;
  font-weight: 500;
}

.hero-stars-inline {
  color: var(--star-color);
}

@keyframes cta-glow-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(109, 78, 247, 0), 0 6px 28px rgba(99, 62, 248, 0.5), 0 1px 0 rgba(255,255,255,0.16) inset; }
  50%       { box-shadow: 0 0 0 6px rgba(109, 78, 247, 0.12), 0 8px 36px rgba(99, 62, 248, 0.65), 0 1px 0 rgba(255,255,255,0.16) inset; }
}

/* Hero primary CTA */
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 1.0625rem 1.125rem 1.0625rem 1.75rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  background: linear-gradient(160deg, #7c5cf6 0%, #5b3ee8 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: cta-glow-pulse 3s ease-in-out infinite;
  transition: transform 0.22s ease, filter 0.22s ease;
  white-space: nowrap;
}

.btn-hero-primary:hover {
  filter: brightness(1.14) saturate(1.1);
  transform: translateY(-2px);
  animation-play-state: paused;
  box-shadow: 0 16px 48px rgba(99, 62, 248, 0.7), 0 1px 0 rgba(255,255,255,0.18) inset;
}

.btn-hero-spacer {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  visibility: hidden;
}

.btn-hero-label {
  display: inline-block;
  line-height: 1;
}

.btn-hero-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  font-size: 0.8125rem;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.22s ease, background 0.22s ease;
}

.btn-hero-primary:hover .btn-hero-arrow {
  transform: translateX(3px);
  background: rgba(255, 255, 255, 0.25);
}

/* Hero secondary CTA */
.btn-outline-hero {
  border-color: rgba(255, 255, 255, 0.08);
  color: #6b6880;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  transition: border-color 0.22s ease, color 0.22s ease, transform 0.22s ease, background 0.22s ease;
}

.btn-outline-hero:hover {
  border-color: rgba(167, 139, 250, 0.35);
  color: #c4b5fd;
  background: rgba(99, 62, 248, 0.06);
  transform: translateY(-1px);
}

/* Hero card glow ring */
.hero-card-glow-ring {
  position: absolute;
  inset: -12px;
  border-radius: 1.75rem;
  background: radial-gradient(ellipse at 50% 50%, rgba(99, 62, 248, 0.14) 0%, transparent 68%);
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

/* Browser URL bar */
.hero-url-bar {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  padding: 2px 10px;
  font-size: 0.7rem;
}

/* Browser title shimmer bar */
@keyframes shimmer-slide {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.hero-title-bar {
  background: linear-gradient(
    90deg,
    var(--primary-color) 0%,
    var(--secondary-color) 40%,
    var(--primary-color) 80%
  );
  background-size: 200% auto;
  animation: shimmer-slide 3s linear infinite;
}

/* Browser chart bars */
.hero-bar {
  background: rgba(99, 62, 248, 0.22);
  border-radius: 3px 3px 0 0;
}

.hero-bar-mid {
  background: rgba(99, 62, 248, 0.45);
  border-radius: 3px 3px 0 0;
}

.hero-bar-accent {
  background: linear-gradient(to top, var(--primary-color), var(--secondary-color));
  border-radius: 3px 3px 0 0;
  box-shadow: 0 0 10px rgba(99, 62, 248, 0.4);
}

/* Floating badge shadows */
.floating-badge-seo-shadow {
  box-shadow: 0 4px 20px rgba(99, 62, 248, 0.22);
}

.floating-badge-speed-shadow {
  box-shadow: 0 4px 20px rgba(40, 200, 64, 0.18);
}

.floating-badge-clients {
  border: 1px solid rgba(251, 191, 36, 0.3);
  color: var(--star-color);
  animation-duration: 7s;
  animation-delay: 0.7s;
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.12);
}