:root {
  --bg-deep: #0a0e27;
  --bg-surface: #161b33;
  --bg-card: #1e2442;
  --primary: #3b82f6;
  --primary-dark: #2563eb;
  --primary-light: #60a5fa;
  --accent: #8b5cf6;
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --border: #334155;
  --success: #10b981;
  --warning: #f59e0b;
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 40px;
  --spacing-xl: 60px;
  --spacing-2xl: 100px;
  --font-display: "Plus Jakarta Sans", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.3);
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
  --container-max: 1200px;
  --header-height: 80px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}
ul {
  list-style: none;
}
button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
section[id] {
  scroll-margin-top: 100px;
}
section {
  padding: var(--spacing-2xl) 0;
}
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}
.section {
  padding: var(--spacing-2xl) 0;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--spacing-lg);
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--spacing-lg);
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--spacing-lg);
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.mb-1 {
  margin-bottom: 0.5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
.mb-4 {
  margin-bottom: 2rem;
}
.mb-large {
  margin-bottom: var(--spacing-xl);
}
.hidden {
  display: none !important;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--primary);
  color: #ffffff !important;
  box-shadow: var(--shadow-glow);
  padding: 12px 28px;
  font-size: 0.95rem;
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: #ffffff !important;
}
.btn-outline {
  border: 1px solid var(--border);
  color: var(--text-primary);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--text-primary);
}
.btn-ghost {
  border: 1px solid transparent;
  color: var(--text-secondary);
}
.btn-ghost:hover {
  color: var(--text-primary);
}
.card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: var(--spacing-lg);
  transition: all 0.3s ease;
  contain: layout;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(59, 130, 246, 0.15);
  color: var(--primary-light);
}
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgba(10, 14, 39, 0.8);
  backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.2rem;
}
.logo img {
  height: 48px;
  width: auto;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-menu a {
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.nav-menu a:hover {
  color: var(--text-primary);
}
.mobile-menu-btn {
  display: none;
  color: var(--text-primary);
}
.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 75%;
  height: 100%;
  background: radial-gradient(
    circle at top right,
    rgba(59, 130, 246, 0.15) 0%,
    transparent 70%
  );
  z-index: 0;
  pointer-events: none;
  filter: blur(60px);
}
.hero .container {
  position: relative;
  z-index: 1;
}
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(59, 130, 246, 0.4);
  background: rgba(59, 130, 246, 0.15);
  color: var(--primary-light);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--spacing-sm);
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-light);
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.8);
}
.hero h1 {
  font-size: 3.2rem;
  line-height: 1.1;
  margin-bottom: var(--spacing-sm);
}
.hero p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: var(--spacing-lg);
}
.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 32px;
}
.hero-content {
  max-width: 680px;
  margin-right: auto;
}
.hero-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: var(--spacing-xl);
  max-width: var(--container-max);
  margin-left: 0;
}
.hero-portfolio-grid img {
  border-radius: 18px;
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: var(--shadow-sm);
}
.why-perfaze {
  background: var(--bg-deep);
}
.why-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}
.why-header h2 {
  font-size: 2.4rem;
}
.why-header p {
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--spacing-lg);
}
.why-card {
  background: rgba(22, 27, 51, 0.8);
  border: 1px solid rgba(51, 65, 85, 0.4);
  border-radius: 20px;
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: var(--spacing-sm);
}
.why-card h3 {
  font-size: 1.3rem;
}
.why-card p {
  color: var(--text-secondary);
}
.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.15);
  color: var(--primary-light);
}
.why-icon svg {
  width: 24px;
  height: 24px;
}
.portfolio-header {
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
}
.portfolio-header h2 {
  font-size: 2.5rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.portfolio-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}
@media (max-width: 768px) {
  .portfolio-header h2 {
    font-size: 2rem;
  }
}
.portfolio-filters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1000px;
  margin: 0 auto var(--spacing-lg);
  padding: 0 8px;
}
.filter-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  padding: 14px 10px;
  min-height: 70px;
  background: rgba(30, 36, 66, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  overflow: hidden;
}
.filter-btn small {
  display: block;
  font-size: 0.7em;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.5;
  margin-top: 4px;
  transition: opacity 0.3s ease;
}
.filter-btn:hover {
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.3);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.3);
}
.filter-btn:hover small {
  opacity: 0.8;
  color: var(--primary-light);
}
.filter-btn.active {
  background: rgba(59, 130, 246, 0.15);
  border-color: var(--primary);
  color: #fff;
  box-shadow:
    0 0 0 1px rgba(59, 130, 246, 0.3),
    0 4px 20px rgba(59, 130, 246, 0.25);
  z-index: 2;
}
.filter-btn.active small {
  opacity: 1;
  color: var(--primary-light);
  font-weight: 600;
}
.filter-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background: radial-gradient(
    100px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(255, 255, 255, 0.1),
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 1;
}
.filter-btn:hover::before {
  opacity: 1;
}
@media (max-width: 992px) {
  .portfolio-filters {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .portfolio-filters {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .filter-btn {
    min-height: 60px;
    padding: 10px 4px;
    font-size: 0.85rem;
  }
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--spacing-lg);
}
.portfolio-grid.is-filtering {
  opacity: 0.4;
}
.portfolio-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition-slow);
}
.portfolio-item::before {
  content: none;
}
.portfolio-item:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
}
.portfolio-item img {
  width: 100%;
  height: auto;
  transition: transform var(--transition-slow);
}
.portfolio-item:hover img {
  transform: scale(1.05);
}
.portfolio-overlay {
  display: none !important;
}
.portfolio-item:hover .portfolio-overlay {
  display: none !important;
}
.portfolio-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.portfolio-modal.is-open {
  display: flex;
  opacity: 1;
}
.portfolio-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(8px);
}
.portfolio-modal-content {
  position: relative;
  z-index: 1;
  background: var(--bg-card);
  border-radius: 16px;
  padding: 24px;
  width: min(92vw, 900px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.modal-image-wrapper {
  position: relative;
  border-radius: 12px;
  max-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
}
.modal-image-wrapper img {
  max-width: 100%;
  max-height: 65vh;
  object-fit: contain;
  border-radius: 8px;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}
.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.1);
}
.modal-close span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: white;
}
.modal-close span:first-child {
  transform: rotate(45deg);
}
.modal-close span:last-child {
  transform: rotate(-45deg);
}

.modal-nav {
  position: absolute;
  top: 50%;

  margin-top: -28px;

  width: 56px;
  height: 56px;
  border-radius: 50%;

  background: rgba(10, 14, 39, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);

  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;

  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;

  transform: translateY(0) scale(1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);

  opacity: 0;
}

.modal-image-wrapper:hover .modal-nav {
  opacity: 1;
}

@media (max-width: 768px) {
  .modal-nav {
    opacity: 1;
  }
}

.modal-nav:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);

  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);

  transform: translateY(-5px) scale(1.1);
}

.modal-prev {
  left: 24px;
}
.modal-next {
  right: 24px;
}

@media (max-width: 768px) {
  .modal-prev {
    left: 12px;
  }
  .modal-next {
    right: 12px;
  }
}

.modal-nav span {
  width: 12px;
  height: 12px;
  border-right: 2px solid rgba(255, 255, 255, 0.9);
  border-bottom: 2px solid rgba(255, 255, 255, 0.9);
  display: block;
  transition: border-color 0.3s ease;
}

.modal-nav:hover span {
  border-color: #ffffff;
}

.modal-prev span {
  transform: rotate(135deg);
  margin-left: 4px;
}

.modal-next span {
  transform: rotate(-45deg);
  margin-right: 4px;
}

.modal-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-md);
}
.modal-info p {
  color: var(--text-secondary);
}
.modal-meta {
  color: var(--text-muted);
  text-align: right;
  font-size: 0.85rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.process-section {
  padding: 100px 0;
  background: var(--bg-surface);
}
.section-header {
  text-align: center;
  margin-bottom: 80px;
}
.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 60px;
  margin-bottom: 60px;
}
.process-card {
  text-align: center;
  padding: 40px 30px;
}
.process-number {
  width: 60px;
  height: 60px;
  background: var(--bg-deep);
  border: 2px solid var(--primary);
  color: var(--primary);
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.process-card h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.process-card p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.process-cta {
  text-align: center;
  margin-top: 60px;
}
.pricing {
  padding: var(--spacing-2xl) 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pricing-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  align-items: start;
}
.price-card {
  position: relative;
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 32px;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.price-card.featured {
  border: 2px solid var(--primary);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.1);
  transform: scale(1.05);
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.price-card:not(.featured):hover {
  border-color: var(--primary);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.price-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.3);
}
.plan-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.plan-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 24px;
  min-height: 40px;
}
.price-card h3 {
  margin-bottom: 0.5rem;
}
.price {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  color: var(--text-primary);
}
.price span {
  font-size: 1rem;
  color: var(--text-secondary);
}
.feature-list {
  margin-bottom: 32px;
  flex-grow: 1;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #cbd5e1;
  font-size: 0.95rem;
}
.feature-list li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 600;
}
.price-badge {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 1rem;
}
.badge-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}
.price-compare {
  margin-top: var(--spacing-lg);
  padding: var(--spacing-md);
  border-radius: 16px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  text-align: center;
}
.price-guarantee {
  margin-top: var(--spacing-md);
  padding: var(--spacing-md);
  border-radius: 16px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.price-pilot {
  margin-bottom: var(--spacing-lg);
  padding: var(--spacing-md);
  border-radius: 16px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.3);
  text-align: center;
}
.testimonials {
  padding: var(--spacing-2xl) 0;
}
.testimonial-carousel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--spacing-lg);
  position: relative;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--spacing-lg);
  border-radius: 20px;
  transition: var(--transition-base);
}
.testimonial-card:hover {
  transform: translateY(-4px);
}
.testimonial-stars {
  color: var(--warning);
  margin-bottom: 0.75rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.2);
}
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: var(--spacing-md);
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}
.carousel-dot.active {
  background: var(--primary);
}
.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}
.faq {
  padding: var(--spacing-2xl) 0;
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
}
.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}
.faq-tab {
  padding: 10px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.faq-tab:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}
.faq-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}
.faq-search {
  max-width: 520px;
  margin: 0 auto 50px;
  position: relative;
}
.faq-search input {
  width: 100%;
  padding: 16px 24px;
  padding-left: 50px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 14, 39, 0.6);
  backdrop-filter: blur(10px);
  color: var(--text-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}
.faq-search input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
  background: rgba(10, 14, 39, 0.9);
}
.faq-list.grid-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .faq-list.grid-layout {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
    padding: 0;
  }
}
@media (max-width: 640px) {
  .faq-question {
    padding: 18px 16px;
    gap: 12px;
  }
  .faq-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }
  .q-text {
    font-size: 0.95rem;
  }
  .faq-answer {
    padding: 0 16px;
  }
  .faq-item.active .faq-answer {
    padding-bottom: 18px;
    padding-top: 12px;
  }
}
.faq-item {
  background: rgba(30, 36, 66, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}
.faq-item:hover {
  transform: translateY(-4px);
  background: rgba(30, 36, 66, 0.8);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.faq-item.active {
  background: rgba(30, 36, 66, 1);
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary);
}
.faq-question {
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  width: 100%;
}
.faq-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.faq-item:hover .faq-icon-box,
.faq-item.active .faq-icon-box {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1) rotate(-5deg);
}
.q-text {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-primary);
  flex-grow: 1;
  line-height: 1.4;
}
.faq-toggle {
  color: var(--text-muted);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.faq-item.active .faq-toggle {
  transform: rotate(180deg);
  color: var(--primary);
}
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  border-top: 1px solid transparent;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.active .faq-answer {
  padding-bottom: 24px;
  max-height: 400px;
  opacity: 1;
  border-top-color: rgba(255, 255, 255, 0.05);
  margin-top: -8px;
  padding-top: 16px;
}
.faq-item.featured-question {
  background: linear-gradient(
    145deg,
    rgba(30, 36, 66, 0.6),
    rgba(59, 130, 246, 0.1)
  );
  border-color: rgba(59, 130, 246, 0.3);
}
.status-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.1);
  padding: 4px 8px;
  border-radius: 6px;
  margin-left: auto;
  display: none;
}
@media (min-width: 400px) {
  .status-tag {
    display: inline-block;
  }
}
.faq-human-support {
  margin-top: 60px;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.support-avatars {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
  width: fit-content;
  margin: 0 auto 16px;
}
.avatar-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid var(--bg-surface);
  overflow: hidden;
  margin-left: -15px;
  position: relative;
  background: #334155;
}
.avatar-circle:first-child {
  margin-left: 0;
  z-index: 1;
}
.avatar-circle:nth-child(2) {
  z-index: 2;
}
.avatar-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.status-indicator-online {
  position: absolute;
  bottom: 2px;
  right: 0;
  width: 12px;
  height: 12px;
  background: #10b981;
  border: 2px solid var(--bg-surface);
  border-radius: 50%;
  z-index: 3;
  animation: pulse-green 2s infinite;
}
.support-text p {
  color: var(--text-secondary);
  margin-bottom: 4px;
}
.support-text .sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.support-text strong {
  color: #fff;
}
.btn-glass-glow {
  background: rgba(59, 130, 246, 0.15);
  color: var(--primary-light);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 10px 24px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.btn-glass-glow:hover {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
  transform: translateY(-2px);
}
.cta-final {
  padding: var(--spacing-2xl) 0;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.12),
    rgba(139, 92, 246, 0.12)
  );
  text-align: center;
}
.cta-final p {
  color: var(--text-secondary);
}
.urgency {
  margin-top: var(--spacing-sm);
  color: var(--warning);
  font-weight: 600;
}
.footer {
  padding: var(--spacing-2xl) 0 var(--spacing-lg);
  background: #0b102c;
  text-align: center;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  font-weight: 600;
  margin-bottom: var(--spacing-lg);
}
.footer-brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: var(--spacing-lg);
}
.footer-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  transition: all 0.3s ease;
}
.footer-social-btn:hover {
  border-color: var(--primary);
  color: var(--text-primary);
}
.footer-social-btn svg {
  width: 18px;
  height: 18px;
  display: block;
}
.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: var(--spacing-lg) 0;
}
.footer-bottom {
  color: var(--text-muted);
  font-size: 0.85rem;
  display: grid;
  gap: 8px;
}
.footer-bottom a {
  color: var(--text-muted);
}
.footer-legal-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.pilot-project {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    var(--bg-surface) 0%,
    var(--bg-deep) 100%
  );
}
.pilot-hero {
  text-align: center;
  margin-bottom: 48px;
}
.pilot-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 50px;
  margin-bottom: 24px;
}
.badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.badge-text {
  color: var(--primary-light);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pilot-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pilot-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}
.pilot-card-main {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
  box-shadow: var(--shadow-lg);
}
.pilot-offer-box {
  display: grid;
  gap: 32px;
  margin-bottom: 32px;
}
.pilot-price-box {
  text-align: center;
}
.price-big {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}
.price-big .currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.price-big .value {
  font-size: 4rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.price-detail {
  color: var(--text-muted);
  font-size: 0.875rem;
}
.pilot-divider {
  height: 1px;
  background: var(--border);
}
.pilot-includes h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}
.pilot-checklist {
  list-style: none;
  display: grid;
  gap: 12px;
}
.pilot-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.check-icon {
  width: 20px;
  height: 20px;
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
}
.icon-svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--primary);
}
.icon-svg-large {
  width: 24px;
  height: 24px;
}
.check-icon.icon-svg {
  color: var(--success);
}
.price-guarantee .icon-svg {
  color: var(--success);
}
.pilot-condition {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 8px;
  margin-bottom: 24px;
}
.condition-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.condition-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.pilot-cta {
  width: 100%;
  font-size: 1.125rem;
  padding: 16px 32px;
  margin-bottom: 24px;
}
.pilot-ideal-for {
  text-align: center;
  color: var(--text-secondary);
}
.ideal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
}
.tag {
  padding: 6px 12px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.875rem;
  color: var(--text-primary);
}
.pilot-faq-mini {
  max-width: 900px;
  margin: 48px auto 0;
}
.pilot-faq-mini h3 {
  text-align: center;
  margin-bottom: 24px;
}
.faq-mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.faq-mini-item {
  padding: 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.faq-mini-item strong {
  display: block;
  color: var(--primary-light);
  margin-bottom: 8px;
}
.faq-mini-item p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
}
.guarantees-section {
  padding: 80px 0;
  background: var(--bg-deep);
}
.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 60px;
}
@media (min-width: 992px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
  }
  .card-featured {
    grid-column: span 2;
    grid-row: span 1;
  }
  .card-wide {
    grid-column: span 2;
  }
}
.bento-card {
  background: rgba(30, 36, 66, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(10px);
}
.bento-card:hover {
  transform: translateY(-6px);
  background: rgba(30, 36, 66, 0.7);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
}
.card-featured {
  background: linear-gradient(
    135deg,
    rgba(30, 36, 66, 0.9) 0%,
    rgba(10, 14, 39, 0.95) 100%
  );
  border: 1px solid rgba(59, 130, 246, 0.2);
}
.card-featured:hover {
  border-color: var(--primary);
  box-shadow: 0 20px 50px -10px rgba(59, 130, 246, 0.15);
}
.card-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.25) 0%,
    transparent 70%
  );
  filter: blur(60px);
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.card-featured:hover .card-glow {
  opacity: 0.8;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.4) 0%,
    transparent 70%
  );
}
.bento-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.bento-icon-wrapper {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}
.bento-card:hover .bento-icon-wrapper {
  background: var(--primary);
  color: white;
  transform: scale(1.1) rotate(-5deg);
}
.card-featured .bento-icon-wrapper {
  width: 56px;
  height: 56px;
  background: rgba(59, 130, 246, 0.15);
  color: var(--primary-light);
}
.bento-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.bento-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex-grow: 1;
}
.btn-text-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--primary-light);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
}
.btn-text-arrow svg {
  transition: transform 0.3s ease;
}
.btn-text-arrow:hover {
  color: #fff;
}
.btn-text-arrow:hover svg {
  transform: translateX(4px);
}
.bento-header-flex {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.bento-header-flex .bento-icon-wrapper {
  margin-bottom: 0;
  width: 40px;
  height: 40px;
}
.bento-header-flex h3 {
  margin-bottom: 0;
}
.pulse-animation {
  animation: soft-pulse 3s infinite;
}
@keyframes soft-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
  }
}
@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .bento-card {
    padding: 24px;
  }
  .card-glow {
    width: 200px;
    height: 200px;
    right: -50px;
    top: -50px;
  }
}
.portfolio-note {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: rgba(59, 130, 246, 0.05);
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  margin-top: 30px;
}
.portfolio-cta {
  margin-top: 50px;
  text-align: center;
}
.note-icon {
  flex-shrink: 0;
  color: var(--primary);
}
.note-content strong {
  display: block;
  color: var(--primary-light);
  margin-bottom: 8px;
}
.note-content p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 8px;
}
.contact-section {
  padding: 80px 0;
  background: var(--bg-surface);
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}
.contact-info h2 {
  margin-bottom: 16px;
}
.contact-info p {
  color: var(--text-secondary);
  margin-bottom: 32px;
}
.contact-details {
  display: grid;
  gap: 16px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
}
.contact-icon {
  width: 20px;
  height: 20px;
  color: var(--primary);
}
.contact-icon.icon-svg-large {
  width: 24px;
  height: 24px;
}
.contact-form-wrapper {
  background: var(--bg-card);
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 12px;
}
.contact-form {
  display: grid;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: grid;
  gap: 8px;
}
.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-primary);
  font-size: 1rem;
  transition: var(--transition-base);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.form-privacy {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
}
.form-privacy input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.form-privacy a {
  color: var(--primary);
  text-decoration: underline;
}
.btn-block {
  width: 100%;
}
.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: -8px;
}
@media (max-width: 1024px) {
  .hero-portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-carousel {
    grid-template-columns: 1fr;
  }
  .mini-stats {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .credibility-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .nav-menu {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    z-index: 999;
  }
  .nav-menu.active {
    display: flex;
  }
  .nav-menu a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    text-align: center;
    font-size: 1rem;
  }
  .nav-menu a:last-child {
    border-bottom: none;
  }
  .nav-menu .nav-cta {
    margin-top: 16px;
    width: 100%;
  }
  .mobile-menu-btn {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  .mobile-menu-btn svg {
    width: 24px;
    height: 24px;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .modal-info {
    flex-direction: column;
    text-align: center;
  }
  .hero-portfolio-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  .process-grid {
    gap: 40px;
  }
  .process-card {
    padding: 30px 20px;
  }
  .hero {
    padding: 120px 0 60px;
    min-height: 80vh;
  }
  .hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  .pilot-card-main {
    padding: 32px 24px;
  }
  .price-big .value {
    font-size: 3rem;
  }
  .faq-mini-grid {
    grid-template-columns: 1fr;
  }
  .guarantees-grid {
    grid-template-columns: 1fr;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 900;
}
.tooltip[data-show]::after {
  opacity: 1;
}
#scrollTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  padding: 0;
  padding-bottom: 4px;
  line-height: normal;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
  z-index: 1200;
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
#scrollTop.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
#scrollTop:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
  background: var(--primary-dark);
}
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  color: #fff;
  text-decoration: none;
  --whatsapp-shift: 0px;
  transform: translateY(var(--whatsapp-shift));
}
body.scroll-top-visible .whatsapp-float {
  --whatsapp-shift: -70px;
}
.whatsapp-float:hover {
  transform: translateY(var(--whatsapp-shift)) scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
  background: #20ba5a;
}
.whatsapp-float svg {
  width: 26px;
  height: 26px;
  display: block;
}
@media (max-width: 768px) {
  #scrollTop {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    font-size: 18px;
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  #scrollTop.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  body.scroll-top-visible .whatsapp-float {
    --whatsapp-shift: -60px;
  }
  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}
.price-card:hover .feature-list li {
  opacity: 1;
}
.faq-extra h3 {
  margin-bottom: 24px !important;
}
.faq-arrow {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
  flex-shrink: 0;
}
.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}
.btn {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.btn:hover {
  transform: translateY(-3px);
}
.portfolio-item {
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.portfolio-item img {
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.portfolio-item:hover img {
  transform: scale(1.08) !important;
}
.price-card,
.guarantee-card {
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.price-card:hover,
.guarantee-card:hover {
  transform: translateY(-8px);
}
.faq-answer {
  transition:
    max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    padding 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s ease !important;
}
.faq-item {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
a {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.step-item {
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.step-item:hover {
  transform: translateY(-6px);
}
.diff-card {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.trial-card {
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.trial-card:hover {
  transform: translateY(-4px);
}
.guarantees-section .subtitle,
.pricing .subtitle {
  margin-bottom: 48px !important;
}
.guarantee-grid {
  margin-top: 48px !important;
}
.faq-input,
.faq-textarea,
input,
select,
textarea {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.faq-input:focus,
.faq-textarea:focus {
  transform: scale(1.01);
}
.dropdown-menu {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.dropdown-item {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.dropdown-item:hover {
  transform: translateX(4px);
}
.status-dot {
  animation: pulse-smooth 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse-smooth {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.1);
  }
}
.pilot-glass-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  background: rgba(30, 36, 66, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  margin-bottom: 32px;
  position: relative;
}
.pilot-content-col {
  padding: 48px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.pilot-card-title {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.pilot-card-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent);
}
.pilot-check-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pilot-check-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.icon-box-check {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-box-check svg {
  width: 24px;
  height: 24px;
}
.pilot-check-list .text {
  display: flex;
  flex-direction: column;
}
.pilot-check-list strong {
  color: var(--text-primary);
  font-size: 1.05rem;
}
.pilot-check-list span {
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.pilot-action-col {
  padding: 48px;
  background: rgba(10, 14, 39, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
.pilot-price-tag {
  background: var(--primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.pilot-price-display {
  margin-bottom: 24px;
}
.pilot-price-display .currency {
  font-size: 1.5rem;
  color: var(--text-secondary);
  vertical-align: top;
  position: relative;
  top: 8px;
}
.pilot-price-display .amount {
  font-size: 4.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -2px;
  text-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
}
.pilot-price-display .period {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: -8px;
}
.btn-glow {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: white;
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.btn-glow:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.6);
}
.pilot-guarantee-text {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.pilot-header {
  text-align: center;
  margin-bottom: 40px;
}
.pilot-badge-pulse {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 59, 48, 0.1);
  border: 1px solid rgba(255, 59, 48, 0.3);
  border-radius: 50px;
  color: #ff6b6b;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  background: #ff6b6b;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
  animation: pulse-red 2s infinite;
}
@keyframes pulse-red {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(255, 107, 107, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
  }
}
.pilot-condition-bar {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  max-width: 600px;
  margin: 0 auto;
}
.comparison-section {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.comparison-title {
  text-align: center;
  margin-bottom: 32px;
  font-size: 1.5rem;
  color: var(--text-secondary);
}
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.compare-card {
  padding: 32px;
  border-radius: 16px;
  position: relative;
}
.compare-card.freelancer-mode {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
}
.compare-card.freelancer-mode .icon {
  filter: grayscale(100%);
  opacity: 0.5;
}
.compare-card.perfaze-mode {
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid var(--primary);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.1);
  transform: scale(1.02);
  z-index: 2;
}
.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.card-header .icon {
  font-size: 1.5rem;
}
.card-header h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}
.math-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.9rem;
}
.math-total-line {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 16px 0;
}
.math-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
}
.strikethrough-red {
  text-decoration: line-through;
  color: #ff6b6b;
  font-weight: 400;
  font-size: 1rem;
}
.highlight-green {
  color: #34d399;
  font-size: 1.4rem;
  font-weight: 700;
}
.highlight-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #34d399;
  color: #064e3b;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 12px;
  text-transform: uppercase;
}
.card-obs {
  margin-top: 20px;
  font-size: 0.8rem;
  text-align: center;
  opacity: 0.7;
}
@media (max-width: 768px) {
  .pilot-glass-card {
    grid-template-columns: 1fr;
    margin: 0 16px;
  }
  .pilot-content-col {
    padding: 32px 24px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .pilot-action-col {
    padding: 32px 24px;
  }
  .pilot-price-display .amount {
    font-size: 3.5rem;
  }
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .compare-card.perfaze-mode {
    transform: scale(1);
    border-width: 2px;
  }
}
.pricing-selector-bridge {
  text-align: center;
  margin: 0 auto 80px auto;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 800px;
}
.bridge-text {
  font-size: 1.1rem;
  color: #cbd5e1;
  margin-bottom: 12px;
}
.bridge-text .highlight {
  color: #3b82f6;
  font-weight: 700;
}
.bridge-link {
  font-size: 0.9rem;
  color: #94a3b8;
  text-decoration: underline;
  transition: all 0.3s ease;
}
.bridge-link:hover {
  color: #3b82f6;
}
.process-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 60px auto;
  padding: 20px 0;
}
.process-line {
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 0;
}
.process-line .line-fill {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--primary) 50%,
    transparent 100%
  );
  opacity: 0.5;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}
.step-item:hover {
  transform: translateY(-5px);
}
.step-visual {
  position: relative;
  margin-bottom: 24px;
}
.step-icon-box {
  width: 80px;
  height: 80px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  color: var(--text-secondary);
}
.step-item:hover .step-icon-box {
  border-color: var(--primary);
  color: var(--primary);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}
.step-icon-box svg {
  width: 32px;
  height: 32px;
}
.step-number {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  background: var(--bg-surface);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: all 0.3s;
}
.step-item:hover .step-number {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--bg-deep);
}
.step-content h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.step-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.step-item.final-step .step-icon-box {
  background: #1e2442;
  background-image: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.2),
    rgba(59, 130, 246, 0.1)
  );
  border-color: rgba(59, 130, 246, 0.4);
  color: var(--primary-light);
}
.step-item.final-step .step-icon-box.glow-icon {
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.15);
}
.step-item.final-step:hover .step-icon-box {
  background: var(--primary);
  color: white;
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.5);
}
@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .process-line {
    top: 0;
    bottom: 0;
    left: 40px;
    right: auto;
    width: 2px;
    height: 100%;
  }
  .process-line .line-fill {
    background: linear-gradient(
      180deg,
      transparent 0%,
      var(--primary) 50%,
      transparent 100%
    );
  }
  .step-item {
    flex-direction: row;
    text-align: left;
    gap: 24px;
  }
  .step-visual {
    margin-bottom: 0;
  }
}
.contact-section-premium {
  padding: 100px 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(59, 130, 246, 0.08) 0%,
    transparent 70%
  );
}
.contact-glass-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  background: rgba(30, 36, 66, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}
.contact-info-col {
  background: rgba(10, 14, 39, 0.6);
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.info-header h2 {
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 16px;
  background: linear-gradient(90deg, #fff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.info-header p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}
.contact-direct-links {
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.direct-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.direct-text {
  display: flex;
  flex-direction: column;
}
.direct-text .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}
.direct-text .value {
  color: var(--text-primary);
  font-weight: 600;
}
.response-status {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}
.status-indicator {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.response-status p {
  font-size: 0.85rem;
  color: #34d399;
  margin: 0;
}
.contact-form-col {
  padding: 48px;
  background: rgba(255, 255, 255, 0.01);
}
.modern-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.input-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-left: 4px;
}
.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  background: rgba(10, 14, 39, 0.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 10px !important;
  padding: 14px 16px !important;
  color: #fff !important;
  font-size: 0.95rem !important;
  transition: all 0.3s ease !important;
}
.input-group .select-wrapper {
  width: 100%;
  display: block;
}
.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  border-color: var(--primary) !important;
  background: rgba(10, 14, 39, 0.9) !important;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1) !important;
  transform: translateY(-2px);
}
.input-group input::placeholder,
.input-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}
.form-footer {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.btn-submit-wide {
  padding: 14px 32px;
  font-size: 1rem;
  white-space: nowrap;
}
.custom-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.custom-checkbox input {
  display: none;
}
.checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border);
  border-radius: 4px;
  position: relative;
  transition: 0.2s;
}
.custom-checkbox input:checked ~ .checkmark {
  background: var(--primary);
  border-color: var(--primary);
}
.custom-checkbox input:checked ~ .checkmark::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 4px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
@media (max-width: 900px) {
  .contact-glass-panel {
    grid-template-columns: 1fr;
  }
  .contact-info-col {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 32px;
  }
  .contact-form-col {
    padding: 32px;
  }
}
@media (max-width: 600px) {
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
  .form-footer {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-submit-wide {
    width: 100%;
  }
}
.footer-premium {
  position: relative;
  background: #050814;
  padding: 80px 0 40px;
  overflow: hidden;
  margin-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-logo img {
  width: auto;
  height: 40px;
  max-width: 180px;
  object-fit: contain;
  filter: brightness(1.1);
}
.footer-glow {
  position: absolute;
  bottom: -50%;
  left: 20%;
  right: 20%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 100%,
    rgba(59, 130, 246, 0.15) 0%,
    transparent 70%
  );
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.footer-premium .container {
  position: relative;
  z-index: 1;
}
.footer-main-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-bio {
  margin-top: 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 320px;
}
.footer-social-group {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}
.social-glass-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--text-secondary);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.social-glass-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}
.social-glass-btn svg {
  width: 20px;
  height: 20px;
}
.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  display: inline-block;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}
.footer-links a:hover {
  color: var(--primary-light);
  transform: translateX(6px);
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}
.footer-contact-item:hover {
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.3);
}
.footer-contact-item .icon-box {
  color: var(--primary);
  display: flex;
  align-items: center;
}
.footer-contact-item span {
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 500;
}
.footer-legal-data p {
  color: rgba(148, 163, 184, 0.6);
  font-size: 0.8rem;
  line-height: 1.5;
  margin-bottom: 4px;
}
.footer-legal-data strong {
  color: rgba(148, 163, 184, 0.9);
}
.footer-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  margin-bottom: 32px;
}
.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.legal-links {
  display: flex;
  align-items: center;
  gap: 16px;
}
.legal-links a {
  color: var(--text-muted);
  opacity: 0.8;
}
.legal-links a:hover {
  opacity: 1;
  color: var(--primary);
  text-decoration: underline;
}
.legal-links .dot {
  font-size: 0.6rem;
  opacity: 0.5;
}
@media (max-width: 900px) {
  .footer-main-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .footer-bio {
    margin: 24px auto 0;
  }
  .footer-social-group {
    justify-content: center;
  }
  .footer-links a:hover {
    transform: translateX(0);
    color: var(--primary);
  }
  .footer-contact-item {
    justify-content: center;
  }
  .footer-bottom-bar {
    flex-direction: column-reverse;
    text-align: center;
  }
}
#hero.hero {
  min-height: auto;
  height: auto;
  max-height: 860px;
  display: flex;
  align-items: center;
  padding: 142px 0 60px 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-deep);
}
.hero-split-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
  gap: 60px;
  position: relative;
  z-index: 10;
}
.hero-bg-glow-left {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.15) 0%,
    transparent 70%
  );
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}
.hero-bg-glow-right {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(74, 144, 226, 0.1) 0%,
    transparent 70%
  );
  filter: blur(100px);
  z-index: 0;
  pointer-events: none;
}
.hero-text-col {
  position: relative;
  z-index: 2;
}
.status-badge {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 50px;
  color: var(--primary-light);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}
.badge-shimmer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(74, 144, 226, 0.4) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: shimmer-premium 3s ease-in-out infinite;
  opacity: 0.6;
}
@keyframes shimmer-premium {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}
@keyframes shimmer-slide {
  0% {
    left: -100%;
  }
  20% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
.status-dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--primary);
}
.hero-text-col h1 {
  font-size: 52px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero-text-col h1 span {
  background: none;
  -webkit-text-fill-color: initial;
  background-clip: border-box;
  -webkit-background-clip: border-box;
  display: inline;
}
.word-authority {
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0.02em;
  display: inline-block;
  text-shadow:
    0 0 15px rgba(255, 255, 255, 0.3),
    0 0 40px rgba(255, 255, 255, 0.1);
}
.hero-text-col p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-cta-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-glow-effect {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  padding: 14px 32px;
  font-size: 1rem;
}
.btn-glow-effect::before {
  content: "";
  position: absolute;
  inset: -60px;
  background: radial-gradient(
    circle,
    rgba(74, 144, 226, 0.2) 0%,
    transparent 70%
  );
  filter: blur(80px);
  z-index: -1;
  pointer-events: none;
}
.btn-glow-effect::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2) 0%,
    transparent 60%
  );
  opacity: 0;
  transform: scale(0.5);
  transition:
    opacity 0.3s,
    transform 0.3s;
  z-index: -1;
}
.btn-glow-effect:hover::after {
  opacity: 1;
  transform: scale(1);
}
.btn-glow-effect:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}
.cta-note {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-left: 4px;
  opacity: 0.85;
}
.hero-visual-col {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-self: flex-start;
  perspective: 1000px;
}
.tablet-perspective-wrapper {
  position: relative;
  width: 340px;
  max-width: 100%;
  transform-style: preserve-3d;
  transform: translateX(0) translateY(0) rotateY(-12deg) rotateX(3deg);
  transition: transform 0.1s ease-out;
}
.tablet-body {
  background: #0f111a;
  border-radius: 24px;
  padding: 12px;
  box-shadow:
    -20px 20px 60px rgba(0, 0, 0, 0.5),
    inset 0 0 0 2px rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}
.tablet-screen {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  background: var(--bg-surface);
}
.screen-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.screen-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 20%,
    rgba(0, 0, 0, 0.2) 100%
  );
  pointer-events: none;
}
.tablet-back-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.25) 0%,
    transparent 70%
  );
  filter: blur(60px);
  z-index: 1;
}
.fade-in-element {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUpEntrada 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.delay-1 {
  animation-delay: 0.2s;
}
.delay-2 {
  animation-delay: 0.4s;
}
.delay-3 {
  animation-delay: 0.6s;
}
.delay-4 {
  animation-delay: 0.8s;
}
.delay-5 {
  animation-delay: 1.2s;
}
@keyframes fadeUpEntrada {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 992px) {
  #hero.hero {
    padding: calc(var(--header-height) + 120px + env(safe-area-inset-top)) 0
      60px 0;
    overflow: visible;
  }
  .hero-split-layout {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-text-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-text-col h1 {
    font-size: 2.8rem;
  }
  .hero-text-col p {
    margin: 0 auto 32px;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-cta-wrapper {
    align-items: center;
  }
  .tablet-perspective-wrapper {
    transform: rotateY(-8deg) rotateX(2deg);
    width: 280px;
    max-width: 90%;
    margin: 0 auto;
  }
  .hero-visual-col {
    justify-content: center;
    align-self: center;
    overflow: visible;
    padding: 20px 0;
  }
  .hero-bg-glow-right {
    opacity: 0.3;
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 480px) {
  #hero.hero {
    padding: calc(var(--header-height) + 170px + env(safe-area-inset-top)) 0
      40px 0;
  }
  .hero-text-col h1 {
    font-size: 2.2rem;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .btn {
    width: 100%;
  }
  .status-badge {
    font-size: 0.7rem;
  }
  .tablet-perspective-wrapper {
    width: 240px;
    max-width: 85%;
    transform: rotateY(-5deg) rotateX(2deg);
  }
  .tablet-body {
    padding: 8px;
    border-radius: 18px;
  }
  .tablet-screen {
    border-radius: 12px;
  }
  .hero-visual-col {
    margin-top: 20px;
    padding: 10px 0;
  }
}
.cta-premium {
  position: relative;
  background-color: #050814;
  overflow: hidden;
  padding: 120px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.cta-bg-mesh {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 15% 50%,
      rgba(59, 130, 246, 0.15),
      transparent 50%
    ),
    radial-gradient(
      circle at 85% 30%,
      rgba(139, 92, 246, 0.15),
      transparent 50%
    );
  filter: blur(60px);
  z-index: 1;
  animation: mesh-pulse 8s ease-in-out infinite alternate;
}
@keyframes mesh-pulse {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.1);
  }
}
.cta-noise-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-floating-shape {
  position: absolute;
  z-index: 3;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  animation: float-shape 8s infinite ease-in-out;
  pointer-events: none;
}
.shape-1 {
  width: 300px;
  height: 300px;
  background: var(--primary);
  top: -10%;
  left: -5%;
  animation-delay: 0s;
}
.shape-2 {
  width: 250px;
  height: 250px;
  background: var(--accent);
  bottom: -10%;
  right: -5%;
  animation-delay: -5s;
}
@keyframes float-shape {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translate(15px, -20px) scale(1.1);
    opacity: 0.6;
  }
}
.cta-premium .relative-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
}
.scarcity-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 50px;
  margin-bottom: 32px;
  backdrop-filter: blur(4px);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.1);
}
.pulse-dot-online {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  position: relative;
}
.pulse-dot-online::after {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 1px solid #10b981;
  animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
@keyframes pulse-ring {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
.scarcity-badge .badge-text {
  color: #34d399;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.cta-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
  color: #ffffff;
}
.text-gradient-highlight {
  background: linear-gradient(135deg, #fff 30%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 48px;
  line-height: 1.6;
}
.cta-buttons-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-glow-intense {
  padding: 16px 40px;
  font-size: 1.1rem;
  background: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.btn-glow-intense:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 0 50px rgba(59, 130, 246, 0.6);
  background: var(--primary-dark);
}
.btn-glass-outline {
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.btn-glass-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-4px);
}
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.delay-1 {
  animation-delay: 0.2s;
}
.delay-2 {
  animation-delay: 0.4s;
}
.delay-3 {
  animation-delay: 0.6s;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .cta-title {
    font-size: 2.2rem;
  }
  .cta-subtitle {
    font-size: 1.1rem;
    padding: 0 20px;
  }
  .cta-buttons-wrapper {
    flex-direction: column;
    width: 100%;
    padding: 0 20px;
  }
  .btn-glow-intense,
  .btn-glass-outline {
    width: 100%;
  }
  .shape-1,
  .shape-2 {
    opacity: 0.2;
  }
}
.why-perfaze-premium {
  padding: 100px 0;
  position: relative;
  background: var(--bg-deep);
  overflow: hidden;
}
.why-header .text-highlight {
  color: #fff;
  position: relative;
  display: inline-block;
  font-weight: 700;
}
.why-header .text-highlight::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(59, 130, 246, 0.3);
  z-index: -1;
  transform: skewX(-12deg);
}
.bento-grid-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .bento-grid-wrapper {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, minmax(280px, auto));
  }
  .card-tall {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
  }
  .card-standard {
    grid-column: span 1;
    grid-row: span 1;
  }
  .card-wide {
    grid-column: 2 / 4;
    grid-row: 2 / 3;
  }
}
.bento-card {
  position: relative;
  background: rgba(30, 36, 66, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 32px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
}
.bento-card:hover {
  transform: translateY(-8px);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.4);
  background: rgba(30, 36, 66, 0.7);
}
.card-bg-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(59, 130, 246, 0.15),
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 0;
}
.bento-card:hover .card-bg-glow {
  opacity: 1;
}
.bento-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.bento-icon-3d {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: white;
  font-size: 24px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 0 20px rgba(255, 255, 255, 0.05),
    0 10px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}
.bento-card:hover .bento-icon-3d {
  transform: scale(1.1) rotate(-5deg);
  border-color: var(--primary);
  background: rgba(59, 130, 246, 0.2);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
}
.bento-icon-3d svg {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
.bento-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.bento-card p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  opacity: 0.9;
}
.card-wide .flex-row {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.card-wide .icon-side-large {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(59, 130, 246, 0.1);
}
.card-wide .icon-side-large svg {
  width: 100%;
  height: 100%;
}
.card-wide:hover .icon-side-large {
  color: rgba(59, 130, 246, 0.2);
  transform: scale(1.05);
  transition: all 0.5s ease;
}
@media (max-width: 768px) {
  .card-wide .flex-row {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  .card-wide .icon-side-large {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
    color: var(--primary);
  }
}
.trust-banner-section {
  padding: 60px 0 100px;
  background: var(--bg-deep);
}
.trust-banner-wrapper {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  padding: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.trust-banner-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
}
@media (min-width: 992px) {
  .trust-banner-wrapper {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
  }
}
.trust-header-area {
  position: relative;
  z-index: 2;
}
.trust-icon-badge {
  width: 64px;
  height: 64px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #34d399;
  margin-bottom: 24px;
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.15);
}
.trust-header-area h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  color: #fff;
}
.trust-header-area p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.trust-pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.trust-pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  transition: transform 0.3s ease;
}
.trust-pillar:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(6px);
}
.trust-pillar .check-icon {
  width: 24px;
  height: 24px;
  color: #34d399;
  flex-shrink: 0;
  background: rgba(16, 185, 129, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-pillar .check-icon svg {
  width: 16px;
  height: 16px;
  stroke-width: 3;
}
.trust-pillar h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.trust-pillar p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}
.trust-footer-note {
  position: absolute;
  bottom: 24px;
  left: 60px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 992px) {
  .trust-banner-wrapper {
    padding: 40px;
  }
  .trust-header-area {
    margin-bottom: 40px;
    text-align: center;
  }
  .trust-icon-badge {
    margin: 0 auto 24px;
  }
  .trust-footer-note {
    position: static;
    justify-content: center;
    margin-top: 32px;
  }
}
#slots-remaining {
  display: inline-block;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  transition: all 0.3s ease;
  min-width: 0.8em;
  text-align: center;
}
.slot-change-pop {
  animation: numberPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  color: #ef4444 !important;
}
@keyframes numberPop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}
.hidden-on-load {
  display: none !important;
}
@keyframes revealItemFlow {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes hideItemFlow {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
}
.reveal-visible {
  display: block !important;
  animation: revealItemFlow 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.is-hiding {
  display: block !important;
  animation: hideItemFlow 0.3s ease forwards;
}
.view-more-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  padding-bottom: 20px;
  position: relative;
  z-index: 10;
}
.view-more-container .btn svg {
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.view-more-container .btn.is-toggling {
  animation: viewMorePulse 0.4s ease;
}
@keyframes viewMorePulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.97);
  }
  100% {
    transform: scale(1);
  }
}
.tablet-screen {
  position: relative;
  background: #050505;
}
.hero-gallery-stack {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 1000px;
  transform-style: preserve-3d;
}
.gallery-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
  transition:
    transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1),
    opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1),
    filter 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  will-change: transform, opacity, filter;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}
.gallery-card.card-front {
  z-index: 3;
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: brightness(1);
}
.gallery-card.card-middle {
  z-index: 2;
  opacity: 0.85;
  transform: translateY(-12px) scale(0.96);
  filter: brightness(0.6);
}
.gallery-card.card-back {
  z-index: 1;
  opacity: 0.5;
  transform: translateY(-24px) scale(0.92);
  filter: brightness(0.4);
}
.gallery-card.card-out {
  z-index: 4;
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  pointer-events: none;
}
.screen-reflection {
  position: absolute;
  top: 0;
  left: -150%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transform: skewX(-25deg);
  animation: glassShine 6s infinite ease-in-out;
  pointer-events: none;
  z-index: 10;
}

.exit-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s linear 0.4s;
}

.exit-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.exit-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 20, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s ease;
}

.exit-content {
  position: relative;
  width: 100%;
  max-width: 850px;
  background: rgba(30, 36, 66, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
  overflow: hidden;

  transform: translateY(50px) scale(0.92);
  opacity: 0;

  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.exit-modal.active .exit-content {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.exit-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
}

.exit-visual {
  background: linear-gradient(
    135deg,
    var(--bg-surface) 0%,
    var(--bg-deep) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.exit-visual::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.15) 0%,
    transparent 60%
  );
  animation: rotateGlow 10s linear infinite;
}

@keyframes rotateGlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.book-mockup {
  position: relative;
  width: 200px;
  height: 280px;
  perspective: 1000px;
  z-index: 2;
  transform: rotateY(-15deg) rotateX(5deg);
  transition: transform 0.5s ease;
}

.exit-visual:hover .book-mockup {
  transform: rotateY(0deg) rotateX(0deg) scale(1.05);
}

.book-cover {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-radius: 4px 12px 12px 4px;
  box-shadow:
    -2px 0 0 rgba(255, 255, 255, 0.1) inset,
    15px 15px 40px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
}

.book-badge {
  display: none !important;
}

.book-skin {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  padding: 40px 24px 40px;

  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px 12px 12px 4px;
  background: radial-gradient(
    circle at 50% 30%,
    rgba(255, 255, 255, 0.03),
    transparent 70%
  );
}

.book-logo {
  width: 40%;
  height: auto;
  filter: brightness(1.2);
  position: relative;
  z-index: 1;
}

.book-title {
  margin-top: auto;

  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 4px;
  color: #fff;
  position: relative;
  z-index: 2;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
}

.book-subtitle {
  margin-bottom: auto;

  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.book-footer {
  width: 100%;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);

  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0;
}

.book-pages {
  position: absolute;
  top: 5px;
  right: -10px;
  width: 100%;
  height: calc(100% - 10px);
  background: #fff;
  border-radius: 4px 12px 12px 4px;
  z-index: 1;
  background: linear-gradient(90deg, #e2e8f0 0%, #fff 20%, #e2e8f0 100%);
}

.exit-text-side {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.exit-tag {
  color: #f59e0b;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: block;
}
.exit-header h2 {
  font-size: 1.8rem;
  line-height: 1.1;
  margin-bottom: 16px;
  color: #fff;
}
.exit-header p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.exit-form {
  display: grid;
  gap: 16px;
}
.glass-input {
  width: 100%;
  background: rgba(10, 14, 39, 0.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding: 12px 16px !important;
  border-radius: 8px !important;
  color: #fff !important;
  font-size: 0.9rem !important;
}
.glass-input:focus {
  border-color: var(--primary) !important;
  background: rgba(10, 14, 39, 0.9) !important;
}

.privacy-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}

.exit-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.exit-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}
.exit-close span {
  position: absolute;
  width: 14px;
  height: 2px;
  background: var(--text-secondary);
}
.exit-close span:first-child {
  transform: rotate(45deg);
}
.exit-close span:last-child {
  transform: rotate(-45deg);
}

@media (max-width: 768px) {
  .exit-grid {
    grid-template-columns: 1fr;
  }
  .exit-visual {
    display: none;
  }
  .exit-text-side {
    padding: 32px 24px;
  }
  .exit-header h2 {
    font-size: 1.5rem;
  }
}

.btn-primary::after,
.btn-glow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
  pointer-events: none;
}

.btn-primary:active::after,
.btn-glow:active::after {
  width: 300px;
  height: 300px;
  transition: 0s;
}


.cookie-toast-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  left: auto;
  z-index: 99999;
  width: 100%;
  max-width: 380px;

  display: none;
  opacity: 0;
}

.cookie-toast-container.active {
  display: block;
  animation: toastSpringEntrada 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275)
    forwards;
}

@keyframes toastSpringEntrada {
  0% {
    opacity: 0;
    transform: translateY(100px) scale(0.8);
  }
  60% {
    opacity: 1;
    transform: translateY(-10px) scale(1.02);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

.cookie-glass-card {
  background: rgba(11, 17, 33, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 20px 60px -10px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.3s ease;
}

.cookie-content-wrapper {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.cookie-icon-box {
  width: 40px;
  height: 40px;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.2),
    rgba(59, 130, 246, 0.1)
  );
  color: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(59, 130, 246, 0.3);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.15);
}

.cookie-text-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cookie-text-group h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.3px;
}

.cookie-text-group p {
  color: #94a3b8;
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

.cookie-link {
  color: var(--primary-light);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  display: inline-block;
}

.cookie-link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-light);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

.cookie-link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.cookie-actions-row {
  display: flex;
  gap: 12px;
  padding-left: 56px;
}

.btn-cookie-primary {
  position: relative;
  overflow: hidden;
  background: var(--primary);
  color: #fff;
  padding: 10px 24px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  flex-grow: 1;
  white-space: nowrap;
  z-index: 1;
}

.btn-cookie-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.5s ease;
  z-index: -1;
}

.btn-cookie-primary:hover {
  transform: translateY(-2px);
  background: var(--primary-dark);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.5);
  border-color: #fff;
}

.btn-cookie-primary:hover::after {
  left: 120%;
  transition: left 0.6s ease;
}

.btn-cookie-ghost {
  background: transparent;
  color: #64748b;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-cookie-ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 480px) {
  .cookie-toast-container {
    bottom: 0;
    right: 0;
    max-width: 100%;
    padding: 16px;

    animation: toastSlideUpMobile 0.5s ease forwards;
  }

  @keyframes toastSlideUpMobile {
    from {
      transform: translateY(100%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  .cookie-glass-card {
    padding: 20px;
  }

  .cookie-actions-row {
    padding-left: 0;
    flex-direction: column-reverse;
    gap: 8px;
  }

  .btn-cookie-primary,
  .btn-cookie-ghost {
    width: 100%;
    text-align: center;
    padding: 12px;
  }
}
