:root {
--bg-dark: #020604;
--bg-card: rgba(8, 20, 14, 0.4);
--primary-color: #00e676;
--primary-dark: #00b35c;
--text-main: #ffffff;
--text-muted: #94b8a3;
--border-color: rgba(0, 230, 118, 0.15);
--font-main: 'Outfit', sans-serif;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
scroll-behavior: smooth;
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-webkit-user-drag: none;
}
body {
background-color: var(--bg-dark);
color: var(--text-main);
font-family: var(--font-main);
overflow-x: hidden;
position: relative;
line-height: 1.6;
}
::selection {
background: var(--primary-color);
color: #000;
}
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
background: rgba(0, 230, 118, 0.4);
border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
background: var(--primary-color);
}
.cyber-grid {
position: fixed;
top: 0; left: 0; width: 100vw; height: 100vh;
background-image: 
linear-gradient(rgba(0, 230, 118, 0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(0, 230, 118, 0.03) 1px, transparent 1px);
background-size: 50px 50px;
z-index: -3;
pointer-events: none;
}
.glow-orb {
position: fixed;
border-radius: 50%;
filter: blur(150px);
z-index: -2;
pointer-events: none;
opacity: 0.5;
}
.glow-orb.top-left {
top: -20%; left: -10%;
width: 50vw; height: 50vw;
background: radial-gradient(circle, rgba(0,230,118,0.15) 0%, rgba(0,0,0,0) 70%);
}
.glow-orb.bottom-right {
bottom: -20%; right: -10%;
width: 60vw; height: 60vw;
background: radial-gradient(circle, rgba(0,230,118,0.1) 0%, rgba(0,0,0,0) 70%);
}
.gradient-text {
background: linear-gradient(135deg, #ffffff 0%, var(--primary-color) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
display: inline-block;
}
.highlight {
color: var(--text-main);
position: relative;
display: inline-block;
}
.highlight::after {
content: '';
position: absolute;
bottom: 5px; left: 0;
width: 100%; height: 8px;
background: rgba(0, 230, 118, 0.3);
z-index: -1;
}
.header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1.2rem 5%;
background: rgba(2, 6, 4, 0.85);
backdrop-filter: blur(15px);
-webkit-backdrop-filter: blur(15px);
position: sticky;
top: 0;
z-index: 1000;
border-bottom: 1px solid var(--border-color);
box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.logo {
display: flex;
align-items: center;
gap: 0.8rem;
z-index: 1001;
}
.logo-icon {
font-size: 2.2rem;
color: var(--primary-color);
text-shadow: 0 0 15px rgba(0, 230, 118, 0.6);
}
.logo-text {
display: flex;
flex-direction: column;
line-height: 1;
}
.logo-text .cyber {
font-size: 1.6rem;
font-weight: 900;
letter-spacing: 1px;
}
.logo-text .musketeers {
font-size: 0.75rem;
font-weight: 600;
letter-spacing: 3px;
color: var(--primary-color);
}
.navbar .nav-links {
display: flex;
list-style: none;
gap: 2.5rem;
}
.navbar a {
text-decoration: none;
color: var(--text-main);
font-size: 0.95rem;
font-weight: 500;
transition: all 0.3s ease;
position: relative;
}
.navbar a:hover, .navbar a.active {
color: var(--primary-color);
text-shadow: 0 0 10px rgba(0, 230, 118, 0.5);
}
.mobile-contact, .menu-toggle-checkbox, .menu-toggle-label {
display: none;
}
.btn {
display: inline-flex;
align-items: center;
gap: 0.8rem;
justify-content: center;
padding: 0.9rem 2.2rem;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
font-size: 1rem;
transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
cursor: pointer;
text-align: center;
letter-spacing: 0.5px;
}
.btn-primary-glow {
background: var(--primary-color);
color: #011108;
box-shadow: 0 0 20px rgba(0, 230, 118, 0.3);
border: 1px solid var(--primary-color);
}
.btn-primary-glow:hover {
background: #ffffff;
color: #011108;
box-shadow: 0 0 30px rgba(0, 230, 118, 0.7), 0 0 15px rgba(255,255,255,0.8);
border-color: #ffffff;
transform: translateY(-3px);
}
.btn-outline-glow {
background: rgba(0, 230, 118, 0.05);
border: 1px solid rgba(0, 230, 118, 0.3);
color: var(--text-main);
backdrop-filter: blur(5px);
}
.btn-outline-glow:hover {
background: rgba(0, 230, 118, 0.2);
border-color: var(--primary-color);
box-shadow: 0 0 25px rgba(0, 230, 118, 0.4);
transform: translateY(-2px);
}
.btn-outline {
background: transparent;
border: 1px solid rgba(255, 255, 255, 0.2);
color: var(--text-main);
}
.btn-outline:hover {
background: rgba(255,255,255,0.1);
border-color: var(--text-main);
transform: translateY(-2px);
}
.hero {
display: flex;
align-items: center;
justify-content: space-between;
padding: 5rem 5% 8rem;
min-height: 90vh;
position: relative;
}
.hero-content {
max-width: 55%;
z-index: 10;
animation: fadeInUp 1s ease-out;
}
.badge {
display: inline-block;
padding: 0.5rem 1rem;
background: rgba(0, 230, 118, 0.1);
border: 1px solid var(--border-color);
border-radius: 50px;
font-size: 0.85rem;
font-weight: 600;
color: var(--primary-color);
margin-bottom: 1.5rem;
backdrop-filter: blur(5px);
box-shadow: 0 0 10px rgba(0,230,118,0.2);
}
.hero h1 {
font-size: clamp(2.8rem, 5vw, 4.8rem);
font-weight: 800;
line-height: 1.1;
margin-bottom: 1.5rem;
letter-spacing: -1px;
}
.hero p {
font-size: clamp(1.1rem, 1.5vw, 1.25rem);
color: var(--text-muted);
margin-bottom: 2.5rem;
max-width: 90%;
}
.hero-buttons {
display: flex;
gap: 1.5rem;
margin-bottom: 3rem;
}
.hero-stats-mini {
display: flex;
align-items: center;
gap: 2rem;
background: rgba(10, 25, 18, 0.6);
padding: 1rem 2rem;
border-radius: 12px;
border: 1px solid rgba(255,255,255,0.05);
display: inline-flex;
backdrop-filter: blur(15px);
box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.stat-mini {
display: flex;
flex-direction: column;
}
.stat-mini strong {
font-size: 1.6rem;
color: var(--primary-color);
font-weight: 800;
}
.stat-mini span {
font-size: 0.85rem;
color: var(--text-muted);
}
.stat-mini.divider {
width: 1px;
height: 40px;
background: rgba(255,255,255,0.1);
}
.hero-image {
position: absolute;
right: -2%;
top: 50%;
transform: translateY(-50%);
width: 50%;
z-index: 1;
animation: fadeIn 1.5s ease-out;
}
.hero-image img {
width: 100%;
object-fit: contain;
mix-blend-mode: screen;
filter: drop-shadow(0 0 60px rgba(0, 230, 118, 0.2));
animation: float 6s ease-in-out infinite;
pointer-events: none;
}
.partners-section {
padding: 2.5rem 0;
background: linear-gradient(90deg, transparent, rgba(0, 230, 118, 0.03), transparent);
border-top: 1px solid rgba(255,255,255,0.02);
border-bottom: 1px solid rgba(255,255,255,0.02);
overflow: hidden;
white-space: nowrap;
position: relative;
}
.marquee-content {
display: inline-block;
animation: marquee 30s linear infinite;
}
.marquee-content span {
display: inline-flex;
align-items: center;
gap: 0.5rem;
font-size: 1.3rem;
font-weight: 600;
color: rgba(255,255,255,0.25);
margin: 0 4rem;
transition: color 0.3s, text-shadow 0.3s;
}
.marquee-content span:hover {
color: var(--primary-color);
text-shadow: 0 0 15px rgba(0,230,118,0.5);
}
.marquee-content i {
font-size: 2rem;
}
@keyframes marquee {
from { transform: translateX(0); }
to { transform: translateX(-50%); }
}
.about-section {
padding: 8rem 5%;
position: relative;
z-index: 10;
}
.about-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 5rem;
align-items: center;
}
.about-text h2 {
font-size: clamp(2.2rem, 4vw, 3.5rem);
margin-bottom: 1.5rem;
font-weight: 800;
line-height: 1.2;
}
.about-text p {
font-size: 1.15rem;
color: var(--text-muted);
margin-bottom: 2.5rem;
}
.feature-list {
list-style: none;
display: flex;
flex-direction: column;
gap: 1.2rem;
}
.feature-list li {
display: flex;
align-items: center;
gap: 1.2rem;
font-size: 1.1rem;
font-weight: 500;
background: rgba(255,255,255,0.02);
padding: 1rem;
border-radius: 8px;
border: 1px solid rgba(255,255,255,0.03);
transition: background 0.3s;
}
.feature-list li:hover {
background: rgba(0,230,118,0.05);
border-color: rgba(0,230,118,0.2);
}
.feature-list i {
color: var(--primary-color);
font-size: 1.5rem;
}
.about-stats {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1.5rem;
}
.stat-box {
background: var(--bg-card);
border: 1px solid rgba(255,255,255,0.05);
padding: 2.5rem 1.5rem;
border-radius: 16px;
text-align: center;
backdrop-filter: blur(10px);
transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.stat-box:hover {
transform: translateY(-8px);
border-color: var(--primary-color);
box-shadow: 0 20px 40px rgba(0,230,118,0.15);
}
.stat-box h3 {
font-size: 2.8rem;
color: var(--primary-color);
margin-bottom: 0.5rem;
font-weight: 800;
text-shadow: 0 0 20px rgba(0,230,118,0.3);
}
.stat-box p {
color: var(--text-main);
font-weight: 500;
font-size: 1rem;
}
.services-section {
padding: 8rem 5%;
position: relative;
z-index: 10;
background: linear-gradient(180deg, transparent 0%, rgba(0,230,118,0.02) 50%, transparent 100%);
}
.section-header {
text-align: center;
margin-bottom: 4rem;
}
.section-header h2 {
font-size: clamp(2.2rem, 4vw, 3.5rem);
font-weight: 800;
margin-bottom: 1rem;
}
.section-header p {
color: var(--text-muted);
font-size: 1.15rem;
max-width: 600px;
margin: 0 auto;
}
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 2.5rem;
}
.service-card {
background: rgba(10, 25, 18, 0.4);
border: 1px solid rgba(0, 230, 118, 0.1);
padding: 3rem 2.5rem;
border-radius: 20px;
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: hidden;
box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02), 0 10px 30px rgba(0,0,0,0.5);
}
.service-card::before {
content: '';
position: absolute;
top: -50%; left: -50%;
width: 200%; height: 200%;
background: radial-gradient(circle, rgba(0, 230, 118, 0.15) 0%, transparent 60%);
opacity: 0;
transition: opacity 0.5s ease;
pointer-events: none;
}
.service-card:hover {
transform: translateY(-10px) scale(1.02);
border-color: rgba(0, 230, 118, 0.5);
box-shadow: inset 0 0 0 1px rgba(0, 230, 118, 0.2), 0 20px 40px rgba(0, 230, 118, 0.15);
}
.service-card:hover::before {
opacity: 1;
animation: rotate 10s linear infinite;
}
@keyframes rotate {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
.card-icon {
font-size: 3rem;
color: var(--primary-color);
margin-bottom: 1.5rem;
position: relative;
z-index: 1;
text-shadow: 0 0 20px rgba(0,230,118,0.4);
}
.service-card h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
font-weight: 700;
position: relative;
z-index: 1;
}
.service-card p {
color: var(--text-muted);
font-size: 1.05rem;
margin-bottom: 2rem;
position: relative;
z-index: 1;
}
.read-more {
color: var(--primary-color);
text-decoration: none;
font-weight: 600;
font-size: 1rem;
display: inline-flex;
align-items: center;
gap: 0.5rem;
position: relative;
z-index: 1;
transition: gap 0.3s ease;
}
.read-more:hover {
gap: 0.8rem;
text-shadow: 0 0 10px rgba(0,230,118,0.5);
}
.faq-section {
padding: 6rem 5%;
position: relative;
z-index: 10;
}
.faq-container {
max-width: 800px;
margin: 0 auto;
display: flex;
flex-direction: column;
gap: 1rem;
}
.faq-item {
background: rgba(10, 25, 18, 0.5);
border: 1px solid rgba(255,255,255,0.05);
border-radius: 12px;
overflow: hidden;
transition: all 0.3s ease;
backdrop-filter: blur(10px);
}
.faq-item[open] {
border-color: var(--primary-color);
box-shadow: 0 0 20px rgba(0,230,118,0.1);
}
.faq-item summary {
padding: 1.5rem;
font-size: 1.15rem;
font-weight: 600;
cursor: pointer;
list-style: none;
display: flex;
justify-content: space-between;
align-items: center;
}
.faq-item summary::-webkit-details-marker {
display: none;
}
.faq-item summary::after {
content: '\f078';
font-family: 'FontAwesome';
color: var(--primary-color);
transition: transform 0.3s ease;
}
.faq-item[open] summary::after {
transform: rotate(180deg);
}
.faq-content {
padding: 0 1.5rem 1.5rem;
color: var(--text-muted);
line-height: 1.6;
animation: slideDown 0.3s ease-out;
}
@keyframes slideDown {
from { opacity: 0; transform: translateY(-10px); }
to { opacity: 1; transform: translateY(0); }
}
.testimonials-section {
padding: 8rem 5%;
position: relative;
z-index: 10;
}
.testimonial-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.testimonial-card {
background: rgba(5, 12, 9, 0.8);
border: 1px solid rgba(255,255,255,0.05);
padding: 2.5rem;
border-radius: 16px;
position: relative;
transition: all 0.3s;
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.testimonial-card:hover {
border-color: var(--border-color);
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(0,230,118,0.1);
}
.stars {
color: var(--primary-color);
margin-bottom: 1.5rem;
font-size: 1.1rem;
letter-spacing: 2px;
}
.testimonial-card p {
font-style: italic;
color: var(--text-muted);
margin-bottom: 2rem;
line-height: 1.8;
font-size: 1.05rem;
}
.client-info h4 {
color: var(--text-main);
font-size: 1.1rem;
margin-bottom: 0.2rem;
}
.client-info span {
font-size: 0.9rem;
color: var(--primary-color);
}
.cta-section {
padding: 8rem 5%;
position: relative;
background-image: linear-gradient(rgba(2, 6, 4, 0.95), rgba(2, 6, 4, 0.85)), url('includes/images/ofis%20ici%20i%C3%A7in%20duvar%20.webp');
background-size: cover;
background-position: center;
background-attachment: fixed;
}
.cta-content {
background: linear-gradient(135deg, rgba(0, 230, 118, 0.15) 0%, rgba(2, 6, 4, 0.9) 100%);
border: 1px solid rgba(0,230,118,0.3);
border-radius: 24px;
padding: 5rem 3rem;
text-align: center;
max-width: 1000px;
margin: 0 auto;
backdrop-filter: blur(20px);
box-shadow: 0 20px 60px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(255,255,255,0.05);
position: relative;
overflow: hidden;
}
.cta-content::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0; height: 3px;
background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}
.cta-badge {
display: inline-block;
padding: 0.4rem 1.2rem;
background: rgba(0,0,0,0.5);
border: 1px solid var(--border-color);
border-radius: 50px;
color: var(--primary-color);
font-size: 0.9rem;
font-weight: 600;
margin-bottom: 1.5rem;
}
.cta-content h2 {
font-size: clamp(2.2rem, 4vw, 3.2rem);
margin-bottom: 1.5rem;
font-weight: 800;
}
.cta-content p {
color: var(--text-muted);
font-size: 1.15rem;
margin-bottom: 3rem;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
.cta-form {
display: flex;
gap: 1rem;
justify-content: center;
max-width: 650px;
margin: 0 auto 1.5rem;
}
.cta-form input {
flex: 1;
padding: 1.2rem 1.5rem;
border-radius: 8px;
border: 1px solid rgba(255,255,255,0.1);
background: rgba(0,0,0,0.6);
color: var(--text-main);
font-family: var(--font-main);
font-size: 1.05rem;
outline: none;
transition: all 0.3s;
user-select: text;
-webkit-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
}
.cta-form input:focus {
border-color: var(--primary-color);
box-shadow: 0 0 15px rgba(0,230,118,0.2);
}
.cta-form button {
border: none;
cursor: pointer;
}
.form-note {
font-size: 0.85rem !important;
color: #668a77 !important;
margin-bottom: 0 !important;
}
.footer {
border-top: 1px solid rgba(255,255,255,0.05);
padding: 4rem 5% 2rem;
background: rgba(0,0,0,0.3);
}
.footer-content {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 2rem;
margin-bottom: 3rem;
}
.footer-links {
display: flex;
gap: 2rem;
}
.footer-links a {
color: var(--text-muted);
text-decoration: none;
font-weight: 500;
transition: color 0.3s;
}
.footer-links a:hover {
color: var(--primary-color);
}
.social-links {
display: flex;
gap: 1rem;
}
.social-links a {
display: flex;
align-items: center;
justify-content: center;
width: 45px; height: 45px;
border-radius: 50%;
background: rgba(255,255,255,0.05);
color: var(--text-main);
text-decoration: none;
transition: all 0.3s ease;
font-size: 1.2rem;
border: 1px solid transparent;
}
.social-links a:hover {
background: rgba(0,230,118,0.1);
color: var(--primary-color);
border-color: var(--primary-color);
transform: translateY(-5px);
box-shadow: 0 5px 15px rgba(0,230,118,0.2);
}
.footer-bottom {
text-align: center;
padding-top: 2rem;
border-top: 1px solid rgba(255,255,255,0.05);
color: #557563;
font-size: 0.9rem;
}
.whatsapp-float {
position: fixed;
bottom: 30px;
right: 30px;
width: 65px;
height: 65px;
background-color: #25d366;
color: #fff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 38px;
box-shadow: 0 10px 25px rgba(37,211,102,0.4);
z-index: 9999;
text-decoration: none;
transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
animation: bounce-wa 2s infinite;
}
.whatsapp-float:hover {
transform: scale(1.1) rotate(-10deg);
color: #fff;
box-shadow: 0 15px 35px rgba(37,211,102,0.6);
animation: none;
}
.cookie-banner {
position: fixed;
bottom: 20px;
left: 5%;
right: 5%;
background: rgba(10, 25, 18, 0.95);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border: 1px solid rgba(0, 230, 118, 0.3);
padding: 1.5rem 2rem;
border-radius: 16px;
display: none;
justify-content: space-between;
align-items: center;
gap: 2rem;
z-index: 10000;
box-shadow: 0 10px 40px rgba(0,0,0,0.8);
animation: slideUp 0.5s ease-out;
}
.cookie-banner p {
color: var(--text-main);
font-size: 0.95rem;
margin: 0;
flex: 1;
}
.cookie-banner a {
color: var(--primary-color);
text-decoration: underline;
}
@keyframes slideUp {
from { transform: translateY(100px); opacity: 0; }
to { transform: translateY(0); opacity: 1; }
}
@keyframes bounce-wa {
0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
40% {transform: translateY(-15px);}
60% {transform: translateY(-7px);}
}
@keyframes fadeInUp {
from { opacity: 0; transform: translateY(40px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes float {
0% { transform: translateY(0); }
50% { transform: translateY(-15px); }
100% { transform: translateY(0); }
}

.preloader {
position: fixed;
top: 0; left: 0; width: 100vw; height: 100vh;
background: #000;
z-index: 999999;
display: flex; justify-content: center; align-items: center;
transition: opacity 0.5s ease;
}
.terminal-loader {
width: 350px;
background: #111;
border: 1px solid rgba(0, 230, 118, 0.3);
border-radius: 8px;
overflow: hidden;
box-shadow: 0 0 30px rgba(0, 230, 118, 0.2);
}
.terminal-header {
background: #222;
padding: 10px;
display: flex; justify-content: space-between; align-items: center;
border-bottom: 1px solid #333;
}
.terminal-title { color: #888; font-size: 0.8rem; font-family: monospace; }
.terminal-controls { display: flex; gap: 6px; }
.control { width: 12px; height: 12px; border-radius: 50%; }
.control.close { background: #ff5f56; }
.control.minimize { background: #ffbd2e; }
.control.maximize { background: #27c93f; }
.terminal-loader .text {
padding: 20px;
color: var(--primary-color);
font-family: monospace;
font-size: 1rem;
line-height: 1.5;
border-right: 2px solid var(--primary-color);
white-space: nowrap;
overflow: hidden;
animation: typing 1.5s steps(30, end), blink-caret .5s step-end infinite;
}
.terminal-loader .granted {
color: #fff;
opacity: 0;
animation: fadeInGranted 0.5s forwards;
animation-delay: 1.5s;
}
@keyframes typing { from { width: 0 } to { width: 100% } }
@keyframes blink-caret { from, to { border-color: transparent } 50% { border-color: var(--primary-color); } }
@keyframes fadeInGranted { to { opacity: 1; } }
.preloader.fade-out { opacity: 0; pointer-events: none; }

.pricing-section { padding: 8rem 5%; position: relative; z-index: 10; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; max-width: 1100px; margin: 0 auto; }
.pricing-card {
background: var(--bg-card);
border: 1px solid rgba(255,255,255,0.05);
border-radius: 20px;
padding: 3rem 2rem;
text-align: center;
position: relative;
transition: all 0.4s;
backdrop-filter: blur(10px);
}
.pricing-card:hover { transform: translateY(-10px); border-color: rgba(0,230,118,0.3); box-shadow: 0 15px 40px rgba(0,0,0,0.4); }
.pricing-card h3 { font-size: 1.6rem; margin-bottom: 1rem; }
.pricing-card .price { font-size: 2rem; font-weight: 800; color: var(--primary-color); margin-bottom: 2rem; }
.pricing-card ul { list-style: none; margin-bottom: 2.5rem; text-align: left; display: inline-block; }
.pricing-card ul li { margin-bottom: 1rem; font-size: 1.05rem; display: flex; align-items: center; gap: 0.8rem; }
.pricing-card ul li i { color: var(--primary-color); }
.pricing-card ul li.disabled { color: rgba(255,255,255,0.3); }
.pricing-card ul li.disabled i { color: rgba(255,255,255,0.3); }
.pricing-card .btn { width: 100%; }
.pricing-card.popular {
border: 1px solid var(--primary-color);
background: rgba(10, 30, 20, 0.6);
transform: scale(1.05);
box-shadow: 0 0 30px rgba(0,230,118,0.1);
}
.pricing-card.popular:hover { transform: scale(1.05) translateY(-10px); }
.popular-badge {
position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
background: var(--primary-color); color: #000;
padding: 0.4rem 1.5rem; border-radius: 20px;
font-size: 0.85rem; font-weight: 700; box-shadow: 0 0 15px rgba(0,230,118,0.5);
white-space: nowrap;
}

.blog-section { padding: 8rem 5%; position: relative; z-index: 10; background: rgba(0,0,0,0.2); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; }
.blog-card {
background: var(--bg-card);
border: 1px solid rgba(255,255,255,0.05);
border-radius: 16px;
overflow: hidden;
transition: all 0.3s;
}
.blog-card:hover { transform: translateY(-10px); border-color: rgba(0,230,118,0.3); }
.blog-img {
height: 200px;
background: linear-gradient(45deg, rgba(0,230,118,0.1), rgba(0,0,0,0.8));
border-bottom: 1px solid rgba(255,255,255,0.05);
position: relative;
display: flex;
align-items: center;
justify-content: center;
}
.blog-img::before { content: '\f0c2'; font-family: 'FontAwesome'; font-size: 3rem; color: rgba(255,255,255,0.1); }
.blog-content { padding: 2rem; }
.blog-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.8rem; font-size: 0.85rem; color: var(--text-muted); font-weight: 600; }
.blog-meta .blog-date { color: var(--primary-color); }
.blog-meta span i { margin-right: 4px; }
.blog-card { cursor: pointer; }
.blog-card h3 { font-size: 1.3rem; margin-bottom: 1.5rem; line-height: 1.4; }

.system-status { display: flex; align-items: center; gap: 0.5rem; background: rgba(0,230,118,0.05); padding: 0.5rem 1.2rem; border-radius: 50px; border: 1px solid rgba(0,230,118,0.2); }
.status-dot { width: 10px; height: 10px; background: var(--primary-color); border-radius: 50%; box-shadow: 0 0 10px var(--primary-color); animation: pulse-dot 1.5s infinite; }
.status-text { font-size: 0.85rem; font-weight: 600; color: var(--primary-color); letter-spacing: 0.5px; }
@keyframes pulse-dot { 0% { box-shadow: 0 0 0 0 rgba(0,230,118,0.7); } 70% { box-shadow: 0 0 0 10px rgba(0,230,118,0); } 100% { box-shadow: 0 0 0 0 rgba(0,230,118,0); } }

.certifications-section { background: linear-gradient(90deg, transparent, rgba(0,230,118,0.05), transparent); padding: 2.5rem 5%; border-top: 1px solid rgba(255,255,255,0.02); }
.cert-container { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 4rem; max-width: 1200px; margin: 0 auto; }
.cert-item { display: flex; align-items: center; gap: 0.8rem; font-size: 1.1rem; font-weight: 600; color: rgba(255,255,255,0.6); transition: all 0.3s; cursor: default; }
.cert-item i { font-size: 1.8rem; color: var(--text-muted); transition: all 0.3s; }
.cert-item:hover { color: var(--text-main); text-shadow: 0 0 10px rgba(0,230,118,0.3); }
.cert-item:hover i { color: var(--primary-color); text-shadow: 0 0 15px rgba(0,230,118,0.5); }

.typewrite > .wrap { border-right: 0.08em solid var(--primary-color); animation: blinkCaret 1s step-end infinite; }
@keyframes blinkCaret { from, to { border-color: transparent } 50% { border-color: var(--primary-color); } }

.reveal-up { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.reveal-up.reveal-visible { opacity: 1; transform: translateY(0); }

.modal-overlay {
position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
background: rgba(0,0,0,0.8); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
z-index: 100000; display: none; justify-content: center; align-items: center;
opacity: 0; transition: opacity 0.3s;
}
.modal-overlay.active { display: flex; opacity: 1; }
.modal-content {
background: #08140e; border: 1px solid rgba(0,230,118,0.3); border-radius: 16px;
width: 90%; max-width: 800px; max-height: 85vh; overflow-y: auto;
padding: 3rem; position: relative;
transform: translateY(50px); transition: transform 0.3s;
box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}
.modal-overlay.active .modal-content { transform: translateY(0); }
.modal-close {
position: absolute; top: 20px; right: 25px; font-size: 1.8rem;
color: var(--text-muted); cursor: pointer; transition: 0.3s;
}
.modal-close:hover { color: #ff5f56; transform: rotate(90deg); }
.modal-meta { display: flex; gap: 2rem; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,0.05); color: var(--text-muted); font-size: 0.95rem; }
.modal-meta span i { color: var(--primary-color); margin-right: 5px; }
.modal-body-text { color: var(--text-main); line-height: 1.8; font-size: 1.1rem; }
.modal-body-text p { margin-bottom: 1.5rem; }
.modal-content::-webkit-scrollbar { width: 6px; }
.modal-content::-webkit-scrollbar-track { background: transparent; }
.modal-content::-webkit-scrollbar-thumb { background: rgba(0,230,118,0.3); border-radius: 3px; }

@media (max-width: 1024px) {
.about-grid { grid-template-columns: 1fr; }
.hero { flex-direction: column; text-align: center; padding-top: 4rem; justify-content: flex-start; }
.hero-content { max-width: 90%; margin-bottom: 3rem; display: flex; flex-direction: column; align-items: center; }
.hero p { margin: 0 auto 2.5rem auto; }
.hero-buttons { justify-content: center; }
.hero-image { position: relative; width: 80%; transform: none; top: 0; right: 0; }
.cta-form { flex-direction: column; }
.cta-form button { width: 100%; }
.footer-content { flex-direction: column; text-align: center; }
.footer-links { flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 768px) {
.header-action { display: none; }
.mobile-contact { display: block; margin-top: 2rem; }
.menu-toggle-label { display: block; cursor: pointer; padding: 10px; z-index: 1001; }
.hamburger {
display: block; width: 28px; height: 2px; background: var(--text-main); position: relative; transition: 0.3s;
}
.hamburger::before, .hamburger::after {
content: ''; position: absolute; width: 100%; height: 2px; background: var(--text-main); transition: 0.3s;
}
.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }
.menu-toggle-checkbox:checked ~ .menu-toggle-label .hamburger { background: transparent; }
.menu-toggle-checkbox:checked ~ .menu-toggle-label .hamburger::before { transform: rotate(45deg); top: 0; background: var(--primary-color); }
.menu-toggle-checkbox:checked ~ .menu-toggle-label .hamburger::after { transform: rotate(-45deg); top: 0; background: var(--primary-color); }
.navbar {
position: fixed; top: 0; left: -100%; width: 100%; height: 100vh;
background: rgba(2, 6, 4, 0.98); backdrop-filter: blur(20px);
display: flex; align-items: center; justify-content: center;
transition: left 0.4s cubic-bezier(0.77, 0, 0.175, 1); z-index: 1000;
}
.menu-toggle-checkbox:checked ~ .navbar { left: 0; }
.navbar .nav-links { flex-direction: column; gap: 2rem; text-align: center; }
.navbar a { font-size: 1.5rem; }
.hero-buttons { flex-direction: column; width: 100%; max-width: 350px; }
.hero-buttons .btn { width: 100%; }
.hero-stats-mini { flex-direction: column; gap: 1rem; width: 100%; max-width: 350px; text-align: center; }
.stat-mini.divider { width: 100%; height: 1px; }
.hidden-mobile { display: none; }
.about-stats { grid-template-columns: 1fr; }
.cta-content { padding: 3rem 1.5rem; }
.whatsapp-float { bottom: 20px; right: 20px; width: 55px; height: 55px; font-size: 32px; }
.cookie-banner { flex-direction: column; text-align: center; gap: 1rem; padding: 1.5rem; bottom: 85px; }
.cookie-banner button { width: 100%; }
}
@media (max-width: 480px) {
.header { padding: 1rem 5%; }
.logo-text .cyber { font-size: 1.3rem; }
.logo-icon { font-size: 1.8rem; }
.hero { padding-top: 2rem; }
.hero-image { width: 100%; }
.section-header h2 { font-size: 1.8rem; }
.service-card { padding: 1.5rem; }
}
