/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #ecf0f1;
    background-color: #0a0e27;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===================================
   ANIMATED BACKGROUND
   =================================== */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1424 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.12;
    animation: float 25s ease-in-out infinite;
}

.shape-1 {
    width: 650px;
    height: 650px;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    top: -250px;
    left: -150px;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #9b59b6, #e74c3c);
    bottom: -200px;
    right: -150px;
    animation-delay: 8s;
}

.shape-3 {
    width: 550px;
    height: 550px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    top: 50%;
    right: 15%;
    animation-delay: 15s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(40px, -40px) rotate(10deg); }
    50% { transform: translate(-30px, 30px) rotate(-10deg); }
    75% { transform: translate(30px, 20px) rotate(5deg); }
}

/* ===================================
   TYPOGRAPHY
   =================================== */
h1, h2, h3, h4, h5, h6 {
    color: #ecf0f1;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }

p {
    margin-bottom: 1rem;
    color: #bdc3c7;
    font-size: 1.0625rem;
    line-height: 1.75;
}

a {
    color: #3498db;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
    color: #5dade2;
}

/* ===================================
   LAYOUT
   =================================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px) saturate(180%);
    background: rgba(10, 14, 39, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

header.scrolled {
    background: rgba(10, 14, 39, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(52, 152, 219, 0.25);
}

.header-animate {
    animation: slideDown 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.logo {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ecf0f1;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.logo:hover .logo-text {
    letter-spacing: -0.02em;
}

.logo-pulse {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #2ecc71;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(46, 204, 113, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

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

.nav-link {
    color: #bdc3c7;
    font-weight: 500;
    font-size: 0.9375rem;
    position: relative;
    padding: 0.5rem 0.75rem;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-link:hover {
    color: #ecf0f1;
}

.nav-link:hover::after {
    width: 80%;
}

/* Language Selector */
.language-selector {
    display: flex;
    gap: 0.5rem;
    background: rgba(26, 31, 58, 0.6);
    padding: 0.375rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-btn {
    background: transparent;
    border: none;
    color: #7f8c8d;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    letter-spacing: 0.05em;
}

.lang-btn:hover {
    color: #ecf0f1;
    background: rgba(52, 152, 219, 0.15);
}

.lang-btn.active {
    background: linear-gradient(135deg, #3498db, #2ecc71);
    color: #fff;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.lang-btn:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

/* Language content display */
[data-lang] {
    display: none;
}

[data-lang].show,
html[lang="en"] [data-lang="en"],
html[lang="es"] [data-lang="es"] {
    display: inline;
}

@keyframes fadeInLang {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   MAIN CONTENT
   =================================== */
main {
    min-height: 100vh;
    padding-top: 76px;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: rgba(46, 204, 113, 0.15);
    border: 1px solid rgba(46, 204, 113, 0.3);
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #2ecc71;
    backdrop-filter: blur(10px);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(46, 204, 113, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(46, 204, 113, 0.4);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #ecf0f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.04em;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: #95a5a6;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* CTA Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.cta-primary {
    background: linear-gradient(135deg, #3498db, #2ecc71);
    color: #fff;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(52, 152, 219, 0.5);
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-primary svg {
    transition: transform 0.3s ease;
}

.cta-primary:hover svg {
    transform: translateX(4px);
}

.cta-secondary {
    background: rgba(26, 31, 58, 0.6);
    color: #ecf0f1;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    background: rgba(26, 31, 58, 0.9);
    border-color: rgba(52, 152, 219, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    opacity: 0.7;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-7px);
    }
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid #3498db;
    border-radius: 14px;
    position: relative;
}

.wheel {
    width: 3px;
    height: 8px;
    background: #3498db;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

/* ===================================
   STATS SECTION
   =================================== */
.stats-section {
    padding: 4rem 0;
    background: rgba(15, 20, 36, 0.4);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.stat-item {
    text-align: center;
    padding: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    color: #3498db;
}

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

.stat-label {
    font-size: 1rem;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* ===================================
   SECTION HEADERS
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ecf0f1, #bdc3c7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.125rem;
    color: #95a5a6;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   CAPABILITIES SECTION
   =================================== */
.what-we-do {
    padding: 8rem 0;
    background: rgba(10, 14, 39, 0.6);
}

.capabilities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.capability {
    position: relative;
    padding: 2.5rem;
    background: rgba(26, 31, 58, 0.4);
    border: 1px solid rgba(52, 152, 219, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.capability.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

.capability::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.capability:hover::before {
    transform: scaleX(1);
}

.capability:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(52, 152, 219, 0.25);
    border-color: rgba(52, 152, 219, 0.4);
}

.capability-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.5rem;
    color: #3498db;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.capability:hover .capability-icon {
    color: #2ecc71;
    transform: scale(1.1) translateY(-4px);
}

.capability h3 {
    color: #ecf0f1;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.capability-desc {
    color: #95a5a6;
    font-size: 1rem;
    line-height: 1.7;
}

.capability-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.capability:hover .capability-shine {
    left: 100%;
}

/* ===================================
   COMPANY DETAILS
   =================================== */
.company-details {
    padding: 8rem 0;
    background: rgba(15, 20, 36, 0.6);
}

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

.detail {
    text-align: center;
    padding: 3rem 2rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: scale(0.95);
}

.detail.aos-animate {
    opacity: 1;
    transform: scale(1);
}

.glassmorphism {
    background: rgba(26, 31, 58, 0.3);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.detail:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 60px rgba(52, 152, 219, 0.3);
    border-color: rgba(52, 152, 219, 0.3);
}

.detail-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.5rem;
    color: #3498db;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.detail:hover .detail-icon {
    color: #2ecc71;
    transform: rotateY(360deg) scale(1.1);
}

.detail strong {
    display: block;
    margin-bottom: 1rem;
    color: #7f8c8d;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
}

.detail-value {
    font-size: 1.5rem;
    color: #ecf0f1;
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.02em;
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact {
    padding: 8rem 0;
    text-align: center;
    background: rgba(10, 14, 39, 0.8);
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-content.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

.contact-card {
    margin: 2rem auto 1.5rem;
    padding: 2.5rem;
    max-width: 550px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(52, 152, 219, 0.3);
}

.contact-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    color: #3498db;
    transition: all 0.3s ease;
}

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

.contact-card:hover .contact-icon {
    color: #2ecc71;
    transform: scale(1.15) rotate(5deg);
}

.contact-info {
    text-align: left;
}

.contact-label {
    font-size: 0.875rem;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-email {
    font-size: 1.75rem;
    color: #3498db;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: -0.02em;
}

.contact-email:hover {
    color: #2ecc71;
    letter-spacing: 0;
}

.contact-location-box {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(26, 31, 58, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    color: #95a5a6;
    font-size: 1.0625rem;
}

.contact-location-box svg {
    stroke: #3498db;
}

/* ===================================
   FOOTER
   =================================== */
footer {
    background: rgba(10, 14, 39, 0.98);
    color: #bdc3c7;
    padding: 3.5rem 0 2.5rem;
    border-top: 1px solid rgba(52, 152, 219, 0.15);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

footer p {
    margin: 0;
    color: #7f8c8d;
    font-size: 0.9375rem;
}

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

.footer-link {
    color: #95a5a6;
    font-size: 0.9375rem;
    position: relative;
    transition: all 0.3s ease;
    padding-bottom: 2px;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: #ecf0f1;
}

.footer-link:hover::after {
    width: 100%;
}

/* ===================================
   LEGAL CONTENT PAGES
   =================================== */
.legal-content {
    padding: 8rem 0 4rem;
    background: rgba(10, 14, 39, 0.95);
    min-height: 100vh;
}

.legal-content .container {
    max-width: 900px;
}

.legal-content h1 {
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-content h1 span {
    font-size: 2rem;
    display: block;
    margin-top: 0.75rem;
}

.effective-date {
    font-size: 0.9375rem;
    color: #7f8c8d;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-section {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: rgba(26, 31, 58, 0.3);
    border-left: 4px solid #3498db;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.legal-section:hover {
    background: rgba(26, 31, 58, 0.5);
    border-left-color: #2ecc71;
    transform: translateX(8px);
}

.legal-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    color: #ecf0f1;
}

.legal-section ul {
    margin-left: 2rem;
    margin-bottom: 1.25rem;
}

.legal-section li {
    margin-bottom: 0.875rem;
    color: #bdc3c7;
    line-height: 1.75;
}

.legal-section p {
    color: #bdc3c7;
    line-height: 1.8;
}

.legal-section p[lang="es"] {
    margin-top: 1.75rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #95a5a6;
}

.legal-section a {
    color: #3498db;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #2ecc71;
}

/* ===================================
   AOS ANIMATIONS
   =================================== */
[data-aos] {
    transition-property: opacity, transform;
    transition-duration: 0.6s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
}

[data-aos="fade-down"] {
    opacity: 0;
    transform: translateY(-30px);
}

[data-aos="zoom-in"] {
    opacity: 0;
    transform: scale(0.95);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

[data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos-delay="300"] { transition-delay: 0.3s; }
[data-aos-delay="400"] { transition-delay: 0.4s; }
[data-aos-delay="500"] { transition-delay: 0.5s; }
[data-aos-delay="600"] { transition-delay: 0.6s; }

/* ===================================
   ACCESSIBILITY
   =================================== */
.keyboard-nav *:focus {
    outline: 2px solid #3498db;
    outline-offset: 3px;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .capabilities {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .container {
        padding: 0 1.5rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 1.5rem;
    }

    .nav-right {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .hero {
        min-height: 90vh;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

    .capabilities {
        grid-template-columns: 1fr;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .contact-card {
        flex-direction: column;
        text-align: center;
    }

    .contact-info {
        text-align: center;
    }

    .contact-email {
        font-size: 1.35rem;
    }

    .what-we-do,
    .company-details,
    .contact {
        padding: 5rem 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .shape {
        filter: blur(70px);
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 1.25rem;
    }

    .hero {
        padding: 2rem 0;
    }

    .hero-badge {
        font-size: 0.8125rem;
        padding: 0.5rem 1rem;
    }

    .cta-button {
        padding: 0.875rem 1.75rem;
        font-size: 0.9375rem;
    }

    .capability {
        padding: 2rem 1.5rem;
    }

    .detail {
        padding: 2rem 1.5rem;
    }

    .legal-section {
        padding: 1.75rem;
    }

    .language-selector {
        width: 100%;
        justify-content: center;
    }
}

/* ===================================
   PERFORMANCE & ACCESSIBILITY
   =================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Selection color */
::selection {
    background: rgba(52, 152, 219, 0.35);
    color: #ecf0f1;
}

::-moz-selection {
    background: rgba(52, 152, 219, 0.35);
    color: #ecf0f1;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #0a0e27;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #3498db, #2ecc71);
    border-radius: 6px;
    border: 2px solid #0a0e27;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #5dade2, #58d68d);
}

/* Print styles */
@media print {
    .bg-gradient,
    .bg-shapes,
    header,
    .scroll-indicator,
    .hero-cta {
        display: none;
    }

    body {
        background: white;
        color: black;
    }
}
