/* ===== SOURCE: cta-footer-fix.css ===== */
/* Correção para a seção CTA "Pronto para liderar o futuro?" */
.cta-section {
  background-color: rgba(17, 24, 39, 0.5);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
  text-align: center; /* Garantir que tudo esteja centralizado */
}

.cta-container {
  background: linear-gradient(145deg, var(--card-bg) 0%, rgba(17, 24, 39, 0.8) 100%);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  border: 1px solid var(--card-border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto; /* Centralizar o container */
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.1;
  background: radial-gradient(circle at center, var(--primary) 0%, transparent 70%);
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 30px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  text-align: center; /* Garantir que o título esteja centralizado */
}

.cta-text {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  text-align: center; /* Garantir que o texto esteja centralizado */
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Correção para o rodapé */
.footer {
  background-color: rgba(5, 8, 15, 0.95);
  padding: 80px 0 30px;
  position: relative;
  border-top: 1px solid rgba(59,130,246,0.4);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  font-family: 'Inter';
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--light), var(--accent), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.footer-about {
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(59,130,246,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--primary);
  color: var(--light);
  transform: translateY(-5px);
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-primary);
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 1.5px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-link {
  margin-bottom: 12px;
}

.footer-link a {
  color: var(--text-secondary);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-link a:hover {
  color: var(--accent);
  transform: translateX(5px);
}

.footer-link a i {
  font-size: 0.8rem;
  color: var(--primary);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--text-secondary);
}

.footer-contact-item i {
  color: var(--accent);
  font-size: 1.2rem;
  margin-top: 3px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(59,130,246,0.4);
  text-align: center; /* Centralizar o copyright */
}

.footer-copyright {
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-align: center; /* Garantir que o copyright esteja centralizado */
  width: 100%; /* Ocupar toda a largura disponível */
  margin: 0 auto; /* Centralizar */
}

.footer-bottom-links {
  display: flex;
  justify-content: center; /* Centralizar os links */
  gap: 20px;
  margin-top: 15px; /* Espaço entre o copyright e os links */
}

.footer-bottom-link {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-bottom-link:hover {
  color: var(--accent);
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
  }

  .cta-container {
    padding: 40px 20px;
  }
}


/* ===== SOURCE: cta-section-fix.css ===== */
/* Estilos específicos para a seção CTA */
.cta-section {
  background-color: rgba(5, 8, 15, 0.95);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
  text-align: center;
}

.cta-section .container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 30px;
}

.cta-container {
  background: linear-gradient(145deg, #111827 0%, rgba(17, 24, 39, 0.8) 100%);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  border: 1px solid rgba(59,130,246,0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.1;
  background: radial-gradient(circle at center, #6a00ff 0%, transparent 70%);
}

/* Efeitos visuais para a seção CTA */
.cta-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, #6a00ff 0%, transparent 70%);
  opacity: 0.1;
  z-index: 0;
}

.cta-glow-1 {
  top: -100px;
  left: -100px;
}

.cta-glow-2 {
  bottom: -100px;
  right: -100px;
  background: radial-gradient(circle, #34D399 0%, transparent 70%);
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 30px;
  background: linear-gradient(90deg, #6a00ff, #34D399, #ff8c00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  text-align: center;
  position: relative;
  font-family: 'Inter';
  font-weight: 700;
}

.cta-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #6a00ff, #34D399);
  border-radius: 2px;
}

.cta-text {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(240, 248, 255, 0.75);
  text-align: center;
}

/* Cards para as opções de CTA */
.cta-options {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.cta-card {
  background: rgba(17, 24, 39, 0.7);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(59,130,246,0.4);
  width: 100%;
  max-width: 350px;
  text-align: center;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.cta-card:hover {
  transform: translateY(-10px);
  border-color: rgba(52,211,153,0.3);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.cta-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(59,130,246,0.4), rgba(52,211,153,0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 1px solid rgba(59,130,246,0.4);
  transition: all 0.5s ease;
}

.cta-card:hover .cta-card-icon {
  transform: scale(1.1) rotate(-10deg);
  box-shadow: 0 0 20px rgba(59,130,246,0.4);
}

.cta-card-icon i {
  font-size: 24px;
  color: #34D399;
}

.cta-card h2,
.cta-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #f0f8ff;
  font-family: 'Inter';
  font-weight: 700;
}

.cta-card p,
.cta-card-description {
  color: rgba(240, 248, 255, 0.75);
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.cta-card .btn-primary,
.cta-card .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
  gap: 10px;
  letter-spacing: 0.5px;
  width: 100%;
  text-decoration: none;
  margin-bottom: 15px;
}

.cta-card .btn-primary {
  background: linear-gradient(95deg, #6a00ff, #34D399);
  color: #f0f8ff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  box-shadow: 0 5px 15px rgba(59,130,246,0.4);
}

.cta-card .btn-secondary {
  background-color: transparent;
  color: #f0f8ff;
  border: 2px solid #6a00ff;
  box-shadow: 0 5px 15px rgba(52,211,153,0.3);
}

.cta-card .btn-primary:hover,
.cta-card .btn-primary:focus {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 25px rgba(59,130,246,0.4);
  color: #f0f8ff;
}

.cta-card .btn-secondary:hover,
.cta-card .btn-secondary:focus {
  transform: translateY(-5px) scale(1.05);
  border-color: #34D399;
  color: #f0f8ff;
  box-shadow: 0 12px 25px rgba(52,211,153,0.3);
  background-color: rgba(59,130,246,0.4);
}

.cta-limited {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #34D399;
  font-size: 0.9rem;
}

.cta-limited i {
  font-size: 1.1rem;
}

.cta-highlight {
  color: #34D399;
  font-weight: 600;
  margin-top: 10px;
  font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 768px) {
  .cta-container {
    padding: 40px 20px;
  }

  .cta-options {
    flex-direction: column;
    align-items: center;
  }

  .cta-card {
    max-width: 100%;
  }
}


/* ===== SOURCE: cta-premium.css ===== */
/* Premium CTA Section Redesign */

/* Main CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(10, 12, 20, 0.95) 0%, rgba(17, 24, 39, 0.9) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(59,130,246,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(16,185,129,0.3) 0%, transparent 50%);
    pointer-events: none;
}

/* CTA Content Container */
.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ffffff 0%, #34D399 50%, #3B82F6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradient-flow 4s ease infinite;
}

.cta-content>p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 50px;
}

/* CTA Options Grid - Side by Side */
.cta-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

/* Individual CTA Option Card */
.cta-option {
    background: linear-gradient(145deg, rgba(30, 35, 50, 0.8) 0%, rgba(20, 25, 40, 0.9) 100%);
    border: 1px solid rgba(59,130,246,0.15);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cta-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3B82F6, #10B981);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-option:hover {
    transform: translateY(-10px);
    border-color: rgba(16,185,129,0.3);
    box-shadow:
        0 20px 60px rgba(59,130,246,0.15),
        0 0 40px rgba(16,185,129,0.3);
}

.cta-option:hover::before {
    opacity: 1;
}

/* CTA Option Icon */
.cta-option-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, rgba(59,130,246,0.15) 0%, rgba(16,185,129,0.3) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(59,130,246,0.15);
    transition: all 0.3s ease;
}

.cta-option:hover .cta-option-icon {
    background: linear-gradient(135deg, #3B82F6 0%, #10B981 100%);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(59,130,246,0.15);
}

.cta-option-icon i {
    font-size: 2.5rem;
    background: linear-gradient(90deg, #3B82F6, #34D399);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.cta-option:hover .cta-option-icon i {
    -webkit-text-fill-color: #ffffff;
    background: none;
}

/* CTA Option Title */
.cta-option h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    font-family: 'Inter';
}

/* CTA Option Description */
.cta-option>p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 30px;
    min-height: 50px;
}

/* CTA Buttons styling override */
.cta-option .btn-primary,
.cta-option .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 16px 30px;
    font-size: 1rem;
    border-radius: 12px;
}

.cta-option .btn-primary {
    background: linear-gradient(135deg, #3B82F6 0%, #10B981 100%);
    box-shadow: 0 8px 25px rgba(59,130,246,0.15);
}

.cta-option .btn-primary:hover {
    box-shadow: 0 12px 35px rgba(16,185,129,0.3);
    transform: translateY(-3px);
}

.cta-option .btn-secondary {
    background: transparent;
    border: 2px solid rgba(59,130,246,0.15);
    color: #ffffff;
}

.cta-option .btn-secondary:hover {
    background: linear-gradient(135deg, rgba(59,130,246,0.15) 0%, rgba(16,185,129,0.3) 100%);
    border-color: #10B981;
}

/* First option special accent */
.cta-option:first-child {
    border-color: rgba(59,130,246,0.15);
}

.cta-option:first-child::before {
    background: linear-gradient(90deg, #3B82F6, #a855f7);
}

/* Second option special accent */
.cta-option:last-child {
    border-color: rgba(16,185,129,0.3);
}

.cta-option:last-child::before {
    background: linear-gradient(90deg, #10B981, #22d3ee);
}

/* Responsive */
@media (max-width: 768px) {
    .cta-options {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px;
    }

    .cta-option {
        padding: 40px 30px;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content>p {
        font-size: 1rem;
        padding: 0 20px;
    }
}

/* Light theme adjustments */
[data-theme="light"] .cta-section {
    background: linear-gradient(135deg, rgba(244, 247, 252, 0.98) 0%, rgba(230, 235, 245, 0.95) 100%);
}

[data-theme="light"] .cta-option {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 255, 0.9) 100%);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .cta-option h3 {
    color: #1a1a2e;
}

[data-theme="light"] .cta-option>p {
    color: rgba(30, 30, 50, 0.7);
}

[data-theme="light"] .cta-content>p {
    color: rgba(30, 30, 50, 0.8);
}

/* Footer tagline style */
.footer-tagline {
    font-size: 0.9rem;
    color: #10B981;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

/* ===== SOURCE: tech-visual.css ===== */
/* ==============================================
   TECH VISUAL ELEMENTS - BYTNEX Software Identity
   ============================================== */

/* Monospace styling for technical elements */
.mono,
.tech-label,
.code-text {
    font-family: 'JetBrains Mono', 'Fira Code', 'Source Code Pro', 'Consolas', monospace;
    font-size: 0.9em;
    background: rgba(59,130,246,0.15);
    padding: 2px 8px;
    border-radius: 4px;
    color: #10B981;
    letter-spacing: -0.02em;
}

[data-theme="light"] .mono,
[data-theme="light"] .tech-label,
[data-theme="light"] .code-text {
    background: rgba(59,130,246,0.15);
    color: #3B82F6;
}

/* Tech badges for stack/versions */
.tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    background: linear-gradient(135deg, rgba(59,130,246,0.15) 0%, rgba(16,185,129,0.3) 100%);
    border: 1px solid rgba(59,130,246,0.15);
    padding: 4px 12px;
    border-radius: 20px;
    color: #10B981;
    font-weight: 500;
}

.tech-badge i {
    font-size: 1rem;
}

/* Code snippet container */
.code-snippet {
    background: #1e1e2e;
    border-radius: 8px;
    padding: 16px 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    color: #cdd6f4;
    overflow-x: auto;
    border: 1px solid rgba(59,130,246,0.15);
    position: relative;
}

.code-snippet::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 12px;
    width: 12px;
    height: 12px;
    background: #ff5f56;
    border-radius: 50%;
    box-shadow: 18px 0 0 #ffbd2e, 36px 0 0 #27ca40;
}

.code-snippet code {
    display: block;
    padding-top: 20px;
}

/* Terminal style */
.terminal-text {
    font-family: 'JetBrains Mono', monospace;
    color: #a6e3a1;
    background: #1e1e2e;
    padding: 2px 8px;
    border-radius: 4px;
}

.terminal-text::before {
    content: '$ ';
    color: #89b4fa;
}

/* Subtle grid pattern background */
.tech-pattern {
    position: relative;
}

.tech-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(59,130,246,0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59,130,246,0.15) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

/* Dots pattern (alternative) */
.dots-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(59,130,246,0.15) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 0;
}

/* Circuit pattern for hero/tech sections */
.circuit-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg stroke='%237c3aed' stroke-width='0.5' stroke-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

/* Enhanced service card hover with tech feel */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #10B981, transparent);
    transition: left 0.5s ease;
}

.service-card:hover::after {
    left: 100%;
}

/* Icon animations for tech feel */
.service-icon i {
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.15) rotate(5deg);
    text-shadow: 0 0 20px rgba(16,185,129,0.3);
}

/* Typing cursor animation */
@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.typing-cursor::after {
    content: '|';
    animation: blink 1s infinite;
    color: #10B981;
    font-weight: 100;
}

/* Data visualization feel */
.data-point {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    animation: pulse-data 2s infinite;
}

@keyframes pulse-data {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(16,185,129,0.3);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 8px rgba(16,185,129,0.3);
    }
}

/* Progress bar tech style */
.tech-progress {
    height: 4px;
    background: rgba(59,130,246,0.15);
    border-radius: 2px;
    overflow: hidden;
}

.tech-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #3B82F6, #10B981);
    border-radius: 2px;
    transition: width 1s ease;
}

/* API/Endpoint styling */
.endpoint {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    background: #1e1e2e;
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid rgba(59,130,246,0.15);
}

.endpoint-method {
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.7rem;
}

.endpoint-method.get {
    background: #10b981;
    color: white;
}

.endpoint-method.post {
    background: #3b82f6;
    color: white;
}

.endpoint-method.put {
    background: #f59e0b;
    color: white;
}

.endpoint-method.delete {
    background: #ef4444;
    color: white;
}

.endpoint-path {
    color: #cdd6f4;
}

/* Status indicators */
.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-dot.online {
    background: #10b981;
    box-shadow: 0 0 8px #10b981;
}

.status-dot.offline {
    background: #ef4444;
}

.status-dot.pending {
    background: #f59e0b;
    animation: blink 1s infinite;
}

/* Command prompt style */
.command-prompt {
    font-family: 'JetBrains Mono', monospace;
    background: #0d0d0d;
    color: #00ff00;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
}

.command-prompt .prompt-symbol {
    color: #10B981;
    margin-right: 8px;
}

/* Keyboard shortcut styling */
kbd {
    display: inline-block;
    padding: 3px 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    background: linear-gradient(180deg, #3a3a3a 0%, #252525 100%);
    border: 1px solid #4a4a4a;
    border-radius: 4px;
    box-shadow: 0 2px 0 #1a1a1a;
    color: #e0e0e0;
}

/* Light theme adjustments */
[data-theme="light"] .code-snippet,
[data-theme="light"] .terminal-text,
[data-theme="light"] .command-prompt {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

[data-theme="light"] .code-snippet {
    color: #1e293b;
}

[data-theme="light"] .terminal-text {
    color: #059669;
}

[data-theme="light"] .command-prompt {
    background: #f1f5f9;
    color: #0f172a;
}

[data-theme="light"] .endpoint {
    background: #f8fafc;
    border-color: #e2e8f0;
}

[data-theme="light"] .endpoint-path {
    color: #334155;
}

/* ===== SOURCE: technologies.css ===== */
/* ===== Tecnologias que Dominamos (Premium Design) ===== */
.technologies {
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

/* Efeito de fundo sutil para a seção */
.technologies::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.technologies::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16,185,129,0.3) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.tech-category {
    background: rgba(17, 24, 39, 0.6);
    /* Transparência para glassmorphism */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Borda gradiente animada no hover */
.tech-category::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    /* Espessura da borda */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: all 0.4s ease;
}

.tech-category:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(59,130,246,0.15);
    /* Glow externo roxo */
    background: rgba(17, 24, 39, 0.8);
}

.tech-category:hover::before {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    opacity: 1;
}

/* Título da Categoria com gradiente */
.tech-category-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    letter-spacing: 0.5px;
}

.tech-category-title i {
    font-size: 1.4rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 5px rgba(59,130,246,0.15));
}

.tech-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Item de tecnologia */
.tech-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.tech-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(59,130,246,0.15);
    color: var(--text-primary);
    transform: translateX(5px) scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tech-item i {
    font-size: 1.2rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.tech-item:hover i {
    color: var(--accent);
    /* Ciano no hover */
    filter: drop-shadow(0 0 5px rgba(16,185,129,0.3));
    /* Glow ciano */
    transform: scale(1.1);
}

.tech-item span {
    font-weight: 500;
}

/* Tema Claro overrides */
[data-theme="light"] .tech-category {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .tech-category:hover {
    box-shadow: 0 20px 40px rgba(59,130,246,0.15);
    background: #ffffff;
}

[data-theme="light"] .tech-item {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .tech-item:hover {
    background: rgba(59,130,246,0.15);
    border-color: rgba(59,130,246,0.15);
}

/* Responsividade */
@media (max-width: 991px) {
    .tech-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tech-category {
        padding: 1.5rem;
    }
}

/* ===== SOURCE: about-terminal.css ===== */
/* ==============================================
   ABOUT TERMINAL ANIMATION
   ============================================== */

.about-terminal-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.terminal-window {
    background: #0d1117;
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(16,185,129,0.3),
        0 0 100px rgba(59,130,246,0.15);
    border: 1px solid rgba(16,185,129,0.3);
    font-family: 'JetBrains Mono', 'Fira Code', 'Source Code Pro', monospace;
    transition: all 0.4s ease;
}

.terminal-window:hover {
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(16,185,129,0.3),
        0 0 120px rgba(59,130,246,0.15);
    transform: translateY(-5px);
}

.terminal-header {
    background: linear-gradient(180deg, #161b22 0%, #0d1117 100%);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(16,185,129,0.3);
}

.terminal-title {
    margin-left: auto;
    font-size: 0.75rem;
    color: rgba(139, 233, 253, 0.6);
    font-family: 'JetBrains Mono', monospace;
}

.terminal-body {
    padding: 20px;
    font-size: 0.82rem;
    line-height: 1.7;
    color: #c9d1d9;
    min-height: 300px;
    max-height: 350px;
    overflow-y: auto;
}

/* Terminal line styles */
.term-line {
    opacity: 0;
    transform: translateY(5px);
    animation: termLineIn 0.3s ease forwards;
    margin-bottom: 4px;
    white-space: pre-wrap;
    word-break: break-all;
}

@keyframes termLineIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.term-prompt {
    color: #8be9fd;
}

.term-prompt::before {
    content: '❯ ';
    color: #50fa7b;
}

.term-cmd {
    color: #f8f8f2;
}

.term-comment {
    color: #6272a4;
    font-style: italic;
}

.term-success {
    color: #50fa7b;
}

.term-info {
    color: #8be9fd;
}

.term-warning {
    color: #f1fa8c;
}

.term-highlight {
    color: #bd93f9;
    font-weight: 600;
}

.term-accent {
    color: #ff79c6;
}

/* Progress bar inside terminal */
.term-progress {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 6px 0;
}

.term-progress-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.term-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #bd93f9, #8be9fd, #50fa7b);
    border-radius: 4px;
    width: 0%;
    transition: width 1.5s ease-in-out;
}

.term-progress-text {
    color: #50fa7b;
    font-weight: 600;
    font-size: 0.8rem;
    min-width: 45px;
    text-align: right;
}

/* Blinking cursor at the end */
.term-cursor {
    display: inline-block;
    width: 8px;
    height: 16px;
    background: #8be9fd;
    animation: termBlink 1s infinite;
    vertical-align: text-bottom;
    margin-left: 4px;
}

@keyframes termBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Floating tech badges */
.floating-badges {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.float-badge {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    background: rgba(13, 17, 23, 0.85);
    border: 1px solid rgba(139, 233, 253, 0.3);
    color: #8be9fd;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: floatBadgeIn 0.5s ease forwards, floatBadge 6s ease-in-out infinite;
}

.float-badge i {
    font-size: 0.9rem;
}

.fb-1 {
    top: -15px;
    right: 10%;
    animation-delay: 1.5s, 1.5s;
    color: #61dafb;
    border-color: rgba(97, 218, 251, 0.3);
}

.fb-2 {
    top: 15%;
    right: -10%;
    animation-delay: 2s, 2s;
    color: #68a063;
    border-color: rgba(104, 160, 99, 0.3);
}

.fb-3 {
    bottom: 30%;
    right: -5%;
    animation-delay: 2.5s, 2.5s;
    color: #f1fa8c;
    border-color: rgba(241, 250, 140, 0.3);
}

.fb-4 {
    bottom: 10%;
    left: -5%;
    animation-delay: 3s, 3s;
    color: #bd93f9;
    border-color: rgba(189, 147, 249, 0.3);
}

.fb-5 {
    top: 40%;
    left: -10%;
    animation-delay: 3.5s, 3.5s;
    color: #54c5f8;
    border-color: rgba(84, 197, 248, 0.3);
}

.fb-6 {
    top: -15px;
    left: 10%;
    animation-delay: 4s, 4s;
    color: #ff79c6;
    border-color: rgba(255, 121, 198, 0.3);
}

@keyframes floatBadgeIn {
    to {
        opacity: 1;
    }
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Light theme */
[data-theme="light"] .terminal-window {
    background: #fafbfc;
    border-color: #d0d7de;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
}

[data-theme="light"] .terminal-header {
    background: linear-gradient(180deg, #f6f8fa 0%, #eaeef2 100%);
    border-color: #d0d7de;
}

[data-theme="light"] .terminal-body {
    color: #24292f;
}

[data-theme="light"] .term-prompt {
    color: #0969da;
}

[data-theme="light"] .term-prompt::before {
    color: #1a7f37;
}

[data-theme="light"] .term-success {
    color: #1a7f37;
}

[data-theme="light"] .term-info {
    color: #0969da;
}

[data-theme="light"] .term-highlight {
    color: #8250df;
}

[data-theme="light"] .term-accent {
    color: #cf222e;
}

[data-theme="light"] .term-comment {
    color: #6e7781;
}

[data-theme="light"] .terminal-title {
    color: rgba(36, 41, 46, 0.5);
}

[data-theme="light"] .float-badge {
    background: rgba(255, 255, 255, 0.9);
    border-color: #d0d7de;
    color: #0969da;
}

/* Responsivo */
@media (max-width: 768px) {
    .about-terminal-container {
        max-width: 100%;
    }

    .terminal-body {
        font-size: 0.72rem;
        padding: 15px;
        min-height: 250px;
    }

    .floating-badges {
        display: none;
    }
}

/* ===== SOURCE: toast-notification.css ===== */
/* Estilos para a Notificação Toast */
.offer-toast {
  position: fixed;
  bottom: 20px;
  right: -400px; /* Começa fora da tela */
  width: auto;
  max-width: 380px;
  background-color: var(--dark-card); /* Cor de fundo para tema escuro */
  color: var(--light);
  border-radius: 10px;
  padding: 15px 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  z-index: 1005; /* Acima de outros elementos */
  transition: right 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55), opacity 0.5s ease; /* Animação de entrada/saída */
  opacity: 0;
  display: flex;
  align-items: flex-start;
  border: 1px solid var(--card-border-color);
}

.offer-toast.show {
  right: 20px; /* Posição final na tela */
  opacity: 1;
}

.offer-toast.hide {
  right: -400px; /* Desliza para fora da tela */
  opacity: 0;
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-grow: 1;
}

.toast-icon {
  font-size: 1.8rem;
  color: var(--accent);
}

.toast-message {
  font-size: 0.9rem;
  line-height: 1.5;
}

.toast-message strong {
  font-weight: 600;
  color: var(--accent);
  display: block;
  margin-bottom: 3px;
}

.toast-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  display: inline-block; /* Para o ícone ficar na mesma linha */
  margin-top: 5px;
}

.toast-link i {
  vertical-align: middle;
  font-size: 1em;
}

.toast-link:hover {
  text-decoration: underline;
  color: var(--primary-dark);
}

.close-toast-btn {
  background: transparent;
  border: none;
  color: var(--light-secondary);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 0 0 10px; /* Padding à esquerda para separar do conteúdo */
  opacity: 0.7;
}

.close-toast-btn:hover {
  opacity: 1;
  color: var(--light);
}

/* Ajustes para o Tema Claro */
[data-theme="light"] .offer-toast {
  background-color: var(--bg-secondary); /* Fundo branco no tema claro */
  color: var(--text-primary);
  border: 1px solid var(--card-border);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .toast-icon {
  color: var(--primary); /* Ícone roxo no tema claro */
}

[data-theme="light"] .toast-message strong {
  color: var(--primary);
}

[data-theme="light"] .toast-link {
  color: var(--link-color-light); /* Link roxo escuro no tema claro */
}
[data-theme="light"] .toast-link:hover {
  color: var(--primary-dark);
}

[data-theme="light"] .close-toast-btn {
  color: var(--text-secondary);
}
[data-theme="light"] .close-toast-btn:hover {
  color: var(--text-primary);
}

/* Responsividade para o Toast */
@media (max-width: 480px) {
  .offer-toast {
    left: 10px;
    right: 10px;
    bottom: 10px;
    max-width: none; /* Ocupa a largura disponível menos os paddings */
    /* Para animação em telas pequenas, pode ser melhor slide-up */
    transform: translateY(150%);
    opacity: 0;
  }
  .offer-toast.show {
    transform: translateY(0);
    right: 10px; /* Mantém o alinhamento original se não usar transform */
    opacity: 1;
  }
   .offer-toast.hide {
    transform: translateY(150%);
    opacity: 0;
  }
}

/* ===== SOURCE: cookie-consent-responsive-fix.css ===== */
/*
 * Arquivo: cookie-consent-responsive-fix.css
 * Corrige problemas de responsividade no popup de consentimento de cookies em dispositivos móveis.
 */

/* Aplica as correções em telas menores (celulares) */
@media (max-width: 480px) {

  /* Ajusta o container principal do popup */
  .cookie-consent {
    /* Posiciona o popup na parte inferior da tela, ocupando toda a largura */
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    
    /* Remove transformações que podem causar desalinhamento */
    transform: none;

    /* Arredonda apenas os cantos superiores */
    border-radius: 20px 20px 0 0;

    /* Adiciona um limite de altura para evitar que o popup seja maior que a tela */
    max-height: 80vh; /* Ocupará no máximo 80% da altura da tela */
    
    /* Organiza o conteúdo em coluna para melhor aproveitamento do espaço */
    display: flex;
    flex-direction: column;
  }

  /* Garante que a animação de entrada para o popup funcione corretamente */
  .cookie-consent.show {
    transform: translateY(0);
  }

  /* A correção mais importante: permite a rolagem interna do conteúdo */
  .cookie-content {
    overflow-y: auto; /* Adiciona uma barra de rolagem vertical se o conteúdo for muito grande */
    padding-right: 15px; /* Cria um pequeno espaço para a barra de rolagem não sobrepor o texto */
  }

  /* Empilha os botões verticalmente para facilitar o clique */
  .cookie-actions {
    flex-direction: column; 
    width: 100%;
  }

  /* Faz os botões ocuparem toda a largura disponível */
  .cookie-accept-btn,
  .cookie-settings-btn {
    width: 100%; 
  }
}

/* Ajustes adicionais para telas muito estreitas (ex: iPhone 5/SE) */
@media (max-width: 360px) {
  .cookie-header h3 {
    font-size: 1.1rem; /* Diminui um pouco o título */
  }

  .cookie-content p {
    font-size: 0.85rem; /* Diminui o texto para caber melhor */
  }
}

/* ===== SOURCE: fix-result-numbers.css ===== */
/*
 * BYTNEX — Result Card Numbers
 * Gradiente Tech Blue → Code Green, clean & premium
 */

.result-card h3.count-up,
.result-card h3 {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  margin: 14px 0;
  letter-spacing: -0.03em;

  /* Gradiente azul → verde — identidade BYTNEX */
  background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 40%, #10B981 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;

  /* Glow sutil azul */
  filter: drop-shadow(0 0 12px rgba(59,130,246,0.35));

  /* Sem stroke preto */
  text-shadow: none;
  opacity: 1;
}

/* Ícone proporcional */
.result-card .result-icon {
  margin-bottom: 12px;
  transform: scale(0.95);
}

/* Descrição */
.result-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 12px;
}

/* Light mode */
[data-theme="light"] .result-card h3.count-up,
[data-theme="light"] .result-card h3 {
  background: linear-gradient(135deg, #2563EB 0%, #1E40AF 40%, #059669 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 8px rgba(37,99,235,0.25));
}

/* ===== SOURCE: advanced-effects.css ===== */
/*
 * BYTNEX — Advanced Visual Effects
 * WebGL shader bg, glassmorphism, glow, noise, dot grid
 */

/* ============================================
   HERO — WebGL Shader Container
   ============================================ */
.hero {
  position: relative;
  overflow: hidden;
}

/* Shader canvas container — fullscreen fixed */
#shader-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  animation: shaderFadeIn 2s ease-out 0.5s forwards;
}

#shader-bg canvas {
  display: block;
  width: 100%;
  height: 100%;
}

@keyframes shaderFadeIn {
  to { opacity: 1; }
}

/* Hide old parallax layers — shader replaces them */
.parallax-layer {
  display: none !important;
}

/* No CSS aurora ::before needed — shader handles it */

/* ============================================
   GLASSMORPHISM — SERVICE CARDS
   ============================================ */
.service-card {
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background: rgba(17, 24, 39, 0.65) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative; /* For spotlight */
  overflow: hidden; /* For spotlight */
}

/* Spotlight Hover Effect */
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(59, 130, 246, 0.12),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  background: rgba(17, 24, 39, 0.8) !important;
  border-color: rgba(59, 130, 246, 0.25) !important;
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(59, 130, 246, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 160px;
  right: 20px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 32px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1ebe57;
  color: #FFF;
}

@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============================================
   PAGE LOADER
   ============================================ */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background-color: #0b0f19;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.loader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(59, 130, 246, 0.2);
  border-top-color: #3B82F6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #3B82F6, #10B981);
  z-index: 99998; /* Below loader, above everything else */
  width: 0%;
  transition: width 0.1s ease;
  pointer-events: none;
}

/* ============================================
   DARK/LIGHT TOGGLE POLISH
   ============================================ */
html {
  transition: background-color 0.4s ease, color 0.4s ease;
}

.theme-toggle {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.theme-toggle:hover {
  transform: scale(1.1) rotate(5deg);
}

/* Glassmorphism — Tech cards */
.tech-category {
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  background: rgba(17, 24, 39, 0.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-category:hover {
  background: rgba(17, 24, 39, 0.75) !important;
  border-color: rgba(16, 185, 129, 0.2) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* Glassmorphism — MVV Cards */
.mvv-card {
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  background: rgba(17, 24, 39, 0.55) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
}

/* Glassmorphism — CTA options */
.cta-option {
  backdrop-filter: blur(14px) saturate(170%);
  -webkit-backdrop-filter: blur(14px) saturate(170%);
  background: rgba(17, 24, 39, 0.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  transition: all 0.35s ease;
}

.cta-option:hover {
  border-color: rgba(59, 130, 246, 0.3) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Light mode adjustments */
[data-theme="light"] .service-card {
  background: rgba(255, 255, 255, 0.7) !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
}
[data-theme="light"] .service-card:hover {
  background: rgba(255, 255, 255, 0.85) !important;
  border-color: rgba(59, 130, 246, 0.2) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
[data-theme="light"] .tech-category {
  background: rgba(255, 255, 255, 0.65) !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
}
[data-theme="light"] .mvv-card {
  background: rgba(255, 255, 255, 0.6) !important;
}
[data-theme="light"] .cta-option {
  background: rgba(255, 255, 255, 0.65) !important;
}

/* ============================================
   GLOW EFFECTS — SERVICE ICONS
   ============================================ */
.service-icon i {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon i {
  filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.5));
  transform: scale(1.15);
}

/* Tech items glow */
.tech-item {
  transition: all 0.3s ease;
}
.tech-item:hover {
  transform: translateY(-3px);
}
.tech-item:hover i {
  filter: drop-shadow(0 0 12px rgba(16, 185, 129, 0.45));
  color: var(--brand-green, #10B981);
}

/* MVV icon glow */
.mvv-icon {
  transition: all 0.3s ease;
}
.mvv-card:hover .mvv-icon {
  filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.4));
}

/* CTA option icon glow */
.cta-option-icon i {
  transition: all 0.35s ease;
}
.cta-option:hover .cta-option-icon i {
  filter: drop-shadow(0 0 18px rgba(59, 130, 246, 0.5));
  transform: scale(1.1);
}

/* ============================================
   NOISE TEXTURE OVERLAY
   ============================================ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ============================================
   DOT GRID PATTERN — SECTION BACKGROUNDS
   ============================================ */
.section.services,
.section.technologies,
.section[id="differentials"],
.section.data-viz {
  position: relative;
}

.section.services::before,
.section.technologies::before,
.section[id="differentials"]::before,
.section.data-viz::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 80%);
}

[data-theme="light"] .section.services::before,
[data-theme="light"] .section.technologies::before,
[data-theme="light"] .section[id="differentials"]::before,
[data-theme="light"] .section.data-viz::before {
  background-image: radial-gradient(circle, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
}

/* ============================================
   GRADIENT BORDERS — HIGHLIGHT CARDS
   ============================================ */
@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.mvv-card.mission,
.mvv-card.vision {
  position: relative;
  border: none !important;
  background-clip: padding-box !important;
}

.mvv-card.mission::before,
.mvv-card.vision::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(from var(--border-angle), #3B82F6, #10B981, #3B82F6);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: borderSpin 4s linear infinite;
  pointer-events: none;
}

@keyframes borderSpin {
  to { --border-angle: 360deg; }
}

/* ============================================
   MAGNETIC BUTTONS
   ============================================ */
.btn-primary,
.btn-secondary {
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  box-shadow:
    0 8px 25px rgba(59, 130, 246, 0.4),
    0 0 40px rgba(59, 130, 246, 0.15);
  transform: translateY(-2px);
}

.btn-secondary:hover {
  box-shadow:
    0 8px 25px rgba(16, 185, 129, 0.2),
    0 0 30px rgba(16, 185, 129, 0.1);
  transform: translateY(-2px);
}

/* ============================================
   SMOOTH SCROLL EASING
   ============================================ */
html {
  scroll-behavior: smooth;
}

/* ============================================
   MARQUEE — CLIENT LOGOS
   ============================================ */
.client-logos-track {
  display: flex;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.client-logos-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   REDUCED MOTION — ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .mvv-card.mission::before,
  .mvv-card.vision::before,
  .client-logos-track,
  .partners-carousel-track {
    animation: none !important;
  }
  .service-card,
  .tech-category,
  .tech-item,
  .btn-primary,
  .btn-secondary,
  .cta-option {
    transition: none !important;
  }
  body::after {
    display: none;
  }
}

/* ============================================
   LANG SWITCHER — FLAGS
   ============================================ */
.lang-switcher-flags {
  display: flex;
  gap: 6px;
  align-items: center;
}
.lang-flag-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  text-decoration: none;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.25s ease;
  letter-spacing: 0.02em;
}
.lang-flag-btn.active {
  color: #fff;
  background: rgba(59,130,246,0.15);
  border-color: rgba(59,130,246,0.4);
}
.lang-flag-btn:hover {
  color: #fff;
  background: rgba(59,130,246,0.2);
  transform: translateY(-1px);
}
.flag-emoji { font-size: 1rem; line-height: 1; }
@media (max-width: 768px) {
  .lang-switcher-flags:not(.mobile-lang-flags) { display: none; }
  .mobile-lang-flags { display: flex; justify-content: center; }
}
@media (min-width: 769px) {
  .mobile-lang-flags { display: none !important; }
}

/* ============================================
   ISO CERTIFICATION BADGES
   ============================================ */
.certifications-section {
  padding: 3rem 0 2rem;
  background: transparent;
}
.iso-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.iso-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(17, 24, 39, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.iso-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(212,175,55,0.05), transparent 30%);
  animation: isoSpin 6s linear infinite;
  pointer-events: none;
}
@keyframes isoSpin { to { transform: rotate(360deg); } }
.iso-card:hover {
  border-color: rgba(212,175,55,0.4);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(212,175,55,0.1), 0 0 20px rgba(212,175,55,0.05);
}
.iso-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: #d4af37;
  font-weight: 700;
  text-transform: uppercase;
}
.iso-number {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #d4af37, #f5d76e, #d4af37);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0.5rem 0;
  filter: drop-shadow(0 0 8px rgba(212,175,55,0.3));
}
.iso-icon {
  font-size: 2rem;
  color: #d4af37;
  margin: 0.5rem 0;
  filter: drop-shadow(0 0 10px rgba(212,175,55,0.25));
}
.iso-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 768px) {
  .iso-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .iso-number { font-size: 1.4rem; }
  .iso-card { padding: 1.5rem 1rem; }
}

/* ============================================
   COMPETENCE SEALS
   ============================================ */
.competence-seals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.seal-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  background: rgba(17, 24, 39, 0.6);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  flex-shrink: 0;
  white-space: nowrap;
}
.seal-item i {
  font-size: 1.2rem;
  color: #10B981;
}
.seal-item img {
  height: 22px;
  width: auto;
  object-fit: contain;
}
.seal-item:hover {
  border-color: rgba(16,185,129,0.3);
  background: rgba(16,185,129,0.08);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(16,185,129,0.1);
  color: #fff;
}
@media (max-width: 768px) {
  .seal-item { padding: 8px 16px; font-size: 0.75rem; }
}

/* ============================================
   PARTNERS — INFINITE SCROLL CAROUSEL
   ============================================ */
.partners-section {
  padding: 4rem 0;
  background: rgba(11, 15, 25, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.partners-carousel {
  overflow: hidden;
  position: relative;
  margin-top: 3rem;
  padding: 1rem 0;
}
/* Edge fade masks */
.partners-carousel::before,
.partners-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.partners-carousel::before {
  left: 0;
  background: linear-gradient(to right, rgba(11,15,25,1) 0%, transparent 100%);
}
.partners-carousel::after {
  right: 0;
  background: linear-gradient(to left, rgba(11,15,25,1) 0%, transparent 100%);
}
.partners-carousel-track {
  display: flex;
  width: max-content;
  animation: partnersMarquee 30s linear infinite;
  gap: 1.5rem;
}
.partners-carousel-track:hover {
  animation-play-state: paused;
}
@keyframes partnersMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.partner-card {
  background: rgba(255,255,255,0.95);
  padding: 16px 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  min-width: 165px;
  flex-shrink: 0;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  filter: grayscale(100%) opacity(0.7);
  border: 1px solid transparent;
}
.partner-card img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.partner-card:hover {
  filter: grayscale(0%) opacity(1);
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 12px 30px rgba(59,130,246,0.15);
  border-color: rgba(59,130,246,0.2);
}
.partner-card-svg {
  flex-direction: column;
  gap: 4px;
  padding: 12px 20px;
}
.partner-card-svg svg {
  flex-shrink: 0;
}
.partner-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.03em;
}
@media (max-width: 768px) {
  .partners-carousel::before,
  .partners-carousel::after { width: 40px; }
  .partner-card { height: 55px; min-width: 130px; padding: 10px 16px; }
  .partners-carousel-track { gap: 1rem; }
}

/* ============================================
   CONTACT FORM — MULTI-STEP
   ============================================ */
.contact-form-section {
  padding: 5rem 0;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.contact-left h2 {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.contact-left > p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  margin-bottom: 2rem;
}
.contact-terminal {
  background: rgba(17,24,39,0.7);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
}
.terminal-header-mini {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.terminal-title-mini {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  margin-left: auto;
  font-family: 'JetBrains Mono', monospace;
}
.terminal-body-mini {
  padding: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  line-height: 1.8;
}
.code-keyword { color: #c792ea; }
.code-function { color: #82aaff; }
.code-string { color: #c3e88d; }
.code-comment { color: #546e7a; }
.typing-cursor {
  display: inline-block;
  width: 8px;
  height: 14px;
  background: #82aaff;
  animation: blink 1s step-end infinite;
  vertical-align: text-bottom;
  margin-left: 2px;
}
@keyframes blink { 50% { opacity: 0; } }

/* Form Steps Indicator */
.form-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 2rem;
}
.step-indicator {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.3);
  border: 2px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}
.step-indicator.active {
  background: linear-gradient(135deg, #3B82F6, #10B981);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 0 15px rgba(59,130,246,0.3);
}
.step-line {
  width: 40px;
  height: 2px;
  background: rgba(255,255,255,0.1);
}

/* Form Steps */
.form-step { display: none; }
.form-step.active { display: block; animation: fadeSlide 0.3s ease; }
@keyframes fadeSlide {
  from { opacity: 0; transform: translateX(15px); }
  to { opacity: 1; transform: translateX(0); }
}
.form-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
  font-weight: 700;
  margin-bottom: 6px;
  display: block;
  text-transform: uppercase;
}
.form-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: #fff;
  font-size: 0.92rem;
  font-family: inherit;
  margin-bottom: 1rem;
  outline: none;
  transition: all 0.25s ease;
  box-sizing: border-box;
}
.form-input:focus {
  border-color: rgba(59,130,246,0.5);
  background: rgba(59,130,246,0.05);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}
.form-input::placeholder { color: rgba(255,255,255,0.25); }
.form-select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff80' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-select option { background: #111827; color: #fff; padding: 10px; }
.form-textarea { resize: vertical; min-height: 100px; }
.phone-input-group {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 1rem;
}
.phone-country {
  padding: 10px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}
.phone-input-group .form-input { margin-bottom: 0; }
.form-nav-btns {
  display: flex;
  gap: 12px;
  margin-top: 0.5rem;
}
.btn-form-next, .btn-form-prev, .btn-form-submit {
  padding: 12px 24px;
  border: none;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-form-next {
  background: linear-gradient(135deg, #3B82F6, #2563EB);
  color: #fff;
  width: 100%;
  justify-content: center;
}
.btn-form-next:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(59,130,246,0.3); }
.btn-form-prev {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-form-prev:hover { background: rgba(255,255,255,0.1); color: #fff; }
.btn-form-submit {
  background: linear-gradient(135deg, #10B981, #059669);
  color: #fff;
  flex: 1;
  justify-content: center;
}
.btn-form-submit:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(16,185,129,0.3); }
@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
  .contact-left h2 { font-size: 1.6rem; }
  .contact-terminal { display: none; }
}

/* ============================================
   COOKIE CONSENT BANNER (moved from inline)
   ============================================ */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(10, 14, 26, 0.98);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 16px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 99999 !important;
  border-top: 1px solid rgba(124, 58, 237, 0.2);
  color: #e5e7eb;
  opacity: 0;
  transform: translateY(100%);
  visibility: hidden;
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
  font-family: 'Inter', sans-serif;
}
.cookie-consent-banner.show {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.cookie-consent-banner a {
  color: #06b6d4;
  text-decoration: underline;
  transition: color 0.2s;
}
.cookie-consent-banner a:hover { color: #7c3aed; }
.cookie-consent-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-consent-text {
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
  flex: 1;
  min-width: 250px;
}
.cookie-consent-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-consent-actions button {
  padding: 8px 20px;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
}
.cookie-accept-btn {
  background: linear-gradient(90deg, #7c3aed, #06b6d4);
  color: white;
}
.cookie-accept-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
}
.cookie-settings-btn {
  background: rgba(255, 255, 255, 0.08);
  color: #e5e7eb;
  border: 1px solid rgba(124, 58, 237, 0.3);
}
.cookie-settings-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(6, 182, 212, 0.4);
}
@media (max-width: 768px) {
  .cookie-consent-wrapper { flex-direction: column; text-align: center; }
  .cookie-consent-actions { width: 100%; justify-content: center; }
  .cookie-consent-actions button { flex: 1; }
}

/* ============================================
   CUSTOM CURSOR — DESKTOP ONLY
   ============================================ */
@media (hover: none), (pointer: coarse) {
  .cursor-outer,
  .cursor-inner { display: none !important; }
}


