:root {
    --bg-color: #242424; /* More visible anthracite */
    --card-bg: #222222;
    --accent-color: #f0f0f0; /* Slightly off-white for metallic look */
    --text-primary: #e0e0e0;
    --text-secondary: #b0b0b0;
    --anthracite: #252525;
    --gradient-1: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    --container-width: 1200px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Texture Overlay */
.texture-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3BaseFilter id='filter'%3BfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3B/filter%3Brect width='100%25' height='100%25' filter='url(%23filter)'/%3B/svg%3B");
}

/* Shared Components */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--bg-color);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.btn-outline {
    background: transparent;
    color: var(--accent-color);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-color);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vt-logo {
    width: 40px;
    height: 40px;
    color: var(--accent-color);
}

.vt-logo svg {
    width: 100%;
    height: 100%;
}

.special-i {
    position: relative;
    display: inline-flex;
    justify-content: center;
    letter-spacing: 0; /* Remove spacing to center correctly on the stem */
}

/* The main pad of the paw */
.special-i::after {
    content: '';
    position: absolute;
    top: 0.28em; /* Adjusted to be flush with the top of the letter stem */
    left: 50%;
    transform: translateX(-50%);
    width: 0.12em; 
    height: 0.09em;
    background: var(--accent-color);
    border-radius: 40% 40% 50% 50%;
    box-shadow: 
        /* Toe pads - tiny and precise */
        -0.08em -0.07em 0 -0.02em var(--accent-color),
        -0.03em -0.11em 0 -0.02em var(--accent-color),
        0.03em -0.11em 0 -0.02em var(--accent-color),
        0.08em -0.07em 0 -0.02em var(--accent-color);
    opacity: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-name {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 0.3rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.dropdown:hover .dropdown-arrow,
.dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #111;
    min-width: 200px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    list-style: none;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-content li {
    margin: 0;
    padding: 0;
}

.dropdown-content a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-transform: none;
    letter-spacing: 0;
    white-space: nowrap;
}

.dropdown-content a:hover {
    background: rgba(0, 212, 255, 0.05);
    color: #00d4ff;
    padding-left: 2rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 300px 0 150px; /* Significantly lowered to avoid clashing with header */
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

.hero-main-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.vt-logo-large {
    width: 180px;
    height: 180px;
    margin-bottom: 2rem;
    color: var(--accent-color);
}

.vt-logo-large svg {
    width: 100%;
    height: 100%;
}

.brand-name {
    font-size: clamp(3rem, 10vw, 6.5rem);
    font-weight: 100; /* Extra thin */
    letter-spacing: 20px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-left: 20px;
}

.hero-content {
    max-width: 800px;
    z-index: 1;
}

.hero h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 300;
    color: var(--text-secondary);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.2; }
    100% { transform: scale(1.1); opacity: 0.4; }
}

/* Services & Pricing */
.services {
    padding: 10rem 0;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 6rem;
}

.service-category {
    margin-bottom: 8rem;
}

.category-title {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.category-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 6rem 0;
}

.category-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-top: -2rem;
    margin-bottom: 4rem;
    font-size: 1.1rem;
    font-weight: 300;
}
/* Comparison Table */
.comparison-container {
    max-width: 900px;
    margin: 0 auto;
    background: #2a2a2a;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.features-comparison-grid {
    display: flex;
    flex-direction: column;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 150px 150px;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    align-items: center;
}

.feature-row.header {
    background: rgba(255, 255, 255, 0.02);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.feature-label {
    color: var(--text-primary);
}

.feature-check-col {
    text-align: center;
}

.feature-check-col.highlight {
    color: var(--accent-color);
}

.check-icon {
    color: #4CAF50;
    font-weight: bold;
}

.cross-icon {
    color: rgba(255, 255, 255, 0.2);
}

/* AI Features Grid System */
.ai-features-grid-system {
    max-width: 1000px;
    margin: 0 auto;
}

.ai-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.ai-intro h4 {
    font-size: 2rem;
    color: var(--accent-color);
    font-weight: 400;
}

.features-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card-detailed {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.feature-icon {
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.05);
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-info h5 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.action-buttons {
    text-align: center;
}

@media (max-width: 768px) {
    .features-detailed-grid {
        grid-template-columns: 1fr;
    }
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: #2a2a2a;
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.1);
}

.pricing-card.premium {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.premium-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--accent-color);
    color: var(--bg-color);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.card-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.card-header .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--accent-color);
}

.card-header .icon svg {
    width: 100%;
    height: 100%;
}

.card-header h4 {
    font-size: 1.5rem;
    font-weight: 400;
}

.card-body {
    flex-grow: 1;
}

.focus-text {
    color: var(--text-primary);
    font-weight: 300;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.4;
}

.feature-list {
    list-style: none;
    margin-bottom: 3rem;
}

.feature-list li {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
}

.feature-list li::before {
    content: '→';
    color: var(--accent-color);
}

.full-width {
    width: 100%;
    text-align: center;
}

/* AI Agent Detailed Section */
.ai-agent-detailed {
    background: #2a2a2a;
    border-radius: 32px;
    padding: 5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ai-header {
    text-align: center;
    margin-bottom: 4rem;
}

.ai-header h4 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 400;
    color: var(--accent-color);
}

.ai-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.ai-features-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.ai-feature-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition);
}

.ai-feature-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.ai-feature-card .icon-box {
    width: 50px;
    height: 50px;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.ai-feature-card .icon-box svg {
    width: 100%;
    height: 100%;
}

.ai-feature-card h5 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.ai-feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.ai-cta {
    text-align: center;
}

@media (max-width: 768px) {
    .ai-agent-detailed {
        padding: 3rem 1.5rem;
    }
    
    .ai-header h4 {
        font-size: 1.8rem;
    }
}

/* IA Features */
.ia-features {
    padding: 5rem 0 10rem;
}

.ia-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.ia-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.ia-text > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-item .check {
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--text-secondary);
}

.chat-mockup {
    background: #111;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.chat-bubble {
    padding: 1rem 1.5rem;
    border-radius: 15px;
    max-width: 80%;
    font-size: 0.95rem;
}

.chat-bubble.bot {
    background: #1a1a1a;
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}

.chat-bubble.user {
    background: var(--accent-color);
    color: var(--bg-color);
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

/* Contact */
.contact {
    padding: 5rem 0 10rem;
}

.contact-card {
    background: #111;
    border-radius: 32px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 4rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.info-item .icon {
    font-size: 1.5rem;
    background: rgba(255,255,255,0.05);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input, 
.form-group textarea {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    color: white;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: #0e0e0e;
}

/* Footer */
footer {
    padding: 5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 30px;
    height: 2px;
    background: white;
    transition: var(--transition);
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fadeIn 1s ease 0.3s forwards;
}

.fade-in-delay-2 {
    opacity: 0;
    animation: fadeIn 1s ease 0.6s forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
#cal-inline-vethial {
    height: 600px;
}

.map-container iframe {
    height: 300px;
}

@media (max-width: 1024px) {
    .ia-grid, .contact-card {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .hero {
        text-align: center;
        justify-content: center;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    #cal-inline-vethial {
        height: 500px !important;
    }
    
    .map-container iframe {
        height: 250px !important;
    }
    
    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #0a0a0a;
        padding: 8rem 2rem;
        transition: 0.5s cubic-bezier(0.7, 0, 0.3, 1);
        z-index: 1000;
        border-left: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin-bottom: 2rem;
    }
    
    .nav-links a {
        font-size: 1.5rem;
    }
    
    .nav-cta {
        margin-left: auto;
        margin-right: 15px;
    }
    
    .nav-cta .btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .vt-logo-large {
        width: 100px;
        height: 100px;
        margin-bottom: 1rem;
    }
    
    .brand-name {
        font-size: clamp(2rem, 8vw, 3.5rem);
        letter-spacing: 10px;
        margin-left: 10px;
    }
    
    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }
    
    .hero-container {
        gap: 2rem;
    }
    
    .services, .ia-features, .contact {
        padding: 4rem 0;
    }

    .comparison-container {
        overflow-x: auto;
        border-radius: 12px;
    }
    
    .feature-row {
        grid-template-columns: minmax(180px, 1fr) 100px 100px;
        padding: 1rem;
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .contact-card {
        padding: 2rem;
        gap: 3rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        letter-spacing: 5px;
        margin-left: 5px;
    }
    
    .nav-cta .btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .feature-row {
        grid-template-columns: minmax(140px, 1fr) 80px 80px;
    }
}

/* Animation Classes */
.fade-up-init {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Legal Pages */
.legal-page {
    padding-top: 150px;
    padding-bottom: 100px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: #1a1a1a;
    padding: 4rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-content h1 {
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
}

.legal-content p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 2rem;
    }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

.floating-whatsapp svg {
    width: 35px;
    height: 35px;
}

@keyframes pulse-whatsapp {
    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);
    }
}

/* Magnetic Cursor */
.magnetic-cursor {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #00d4ff, #0066ff);
    box-shadow: 0 0 20px #00d4ff;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    display: none;
}

@media (hover: hover) and (pointer: fine) {
    body.cursor-active {
        cursor: none;
    }
    
    body.cursor-active a, 
    body.cursor-active button, 
    body.cursor-active .btn {
        cursor: none;
    }

    .magnetic-cursor.active {
        display: block;
    }
}

/* -------------------------------------- */
/* V2 NEW STYLES */
/* -------------------------------------- */

.cyan-blue-gradient {
    background: linear-gradient(135deg, #00d4ff 0%, #0066ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* Services Cards Layout V2 */
.services-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .services-cards-container {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.service-subtitle {
    color: #00d4ff;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.service-desc {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-bullets {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-bullets li {
    margin-bottom: 0.8rem;
    color: var(--text-primary);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.service-bullets li::before {
    content: none !important;
}

.service-footer {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.result-badge {
    display: inline-block;
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.highlight-footer strong {
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* Contact Styles V2 */
.contact-card.single-column-contact {
    display: block;
    max-width: 900px;
    margin: 0 auto;
}

.center-info-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.center-info-list .info-item {
    margin-bottom: 0;
    align-items: center;
    text-align: left;
}

.btn-large-gradient {
    background: linear-gradient(135deg, #00d4ff 0%, #0066ff 100%);
    color: #fff;
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    transition: var(--transition);
}

.btn-large-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
}

/* Dropdown Mobile Overrides */
@media (max-width: 768px) {
    .dropdown-content {
        position: static;
        transform: none !important;
        box-shadow: none;
        background: transparent;
        border: none;
        padding: 0;
        margin-top: 1rem;
        display: none;
        opacity: 1;
        visibility: visible;
    }
    
    .dropdown.mobile-active .dropdown-content {
        display: block;
    }

    .dropdown-content a {
        font-size: 1.1rem !important;
        padding: 0.5rem 0 !important;
        color: rgba(255, 255, 255, 0.6) !important;
    }
    
    .dropdown-content a:hover {
        padding-left: 0 !important;
        color: #00d4ff !important;
    }
}

/* -------------------------------------- */
/* COOKIES BANNER VETHIAL */
/* -------------------------------------- */

.cyan-blue-gradient-bg {
    background: linear-gradient(135deg, #00d4ff 0%, #0066ff 100%);
    color: white !important;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cyan-blue-gradient-bg:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.4);
}

.cookies-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-top: 2px solid #00d4ff;
    z-index: 10000;
    padding: 2rem;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    justify-content: center;
}

.cookies-banner.show {
    transform: translateY(0);
}

.cookies-banner.hidden {
    display: none;
}

.cookies-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cookies-content h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0;
}

.cookies-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.cookies-link {
    color: #00d4ff;
    text-decoration: underline;
}

.cookies-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookies-buttons .btn {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
}

/* Modal Config */
.cookies-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cookies-modal.show {
    opacity: 1;
    pointer-events: auto;
}

.cookies-modal.hidden {
    display: none;
}

.cookies-modal-content {
    background: #1a1a1a;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 3rem 2rem;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.cookies-modal.show .cookies-modal-content {
    transform: scale(1);
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    gap: 1.5rem;
}

.cookie-option-info h4 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.cookie-option-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #333;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #00d4ff;
}

input:disabled + .slider {
    opacity: 0.5;
    cursor: not-allowed;
}

input:checked + .slider:before {
    transform: translateX(24px);
}

/* Reopen Button */
.reopen-cookies-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: #00d4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9998;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.reopen-cookies-btn:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: scale(1.1);
}

.reopen-cookies-btn.hidden {
    display: none;
}

@media (max-width: 768px) {
    .cookies-buttons {
        flex-direction: column;
    }
    
    .cookies-buttons .btn {
        width: 100%;
    }
    
    .cookies-banner {
        padding: 1.5rem;
    }
}
