/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0066FF;
    --secondary-color: #00D9FF;
    --accent-color: #7B2FF7;
    --dark-bg: #0A0E27;
    --dark-card: #151931;
    --text-primary: #FFFFFF;
    --text-secondary: #A8B3CF;
    --text-muted: #6B7280;
    --gradient-1: linear-gradient(135deg, #0066FF 0%, #7B2FF7 100%);
    --gradient-2: linear-gradient(135deg, #00D9FF 0%, #0066FF 100%);
    --gradient-3: linear-gradient(135deg, #7B2FF7 0%, #00D9FF 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Splash Screen */
.splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--dark-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.5s ease-out;
    overflow: hidden;
}

.splash.hidden {
    opacity: 0;
    pointer-events: none;
}

.splash-tech-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Grid Lines Effect */
.grid-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 102, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Cyber Circle */
.cyber-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 2px solid rgba(0, 102, 255, 0.3);
    background: radial-gradient(circle, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
    animation: cyberCirclePulse 3s ease-in-out infinite;
}

@keyframes cyberCirclePulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

/* Cyber Rings */
.cyber-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring {
    position: absolute;
    border: 2px solid;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-1 {
    width: 300px;
    height: 300px;
    border-color: rgba(0, 102, 255, 0.4);
    border-top-color: rgba(0, 217, 255, 0.8);
    animation: ringRotate 4s linear infinite;
}

.ring-2 {
    width: 400px;
    height: 400px;
    border-color: rgba(123, 47, 247, 0.4);
    border-right-color: rgba(123, 47, 247, 0.8);
    animation: ringRotate 6s linear infinite reverse;
}

.ring-3 {
    width: 500px;
    height: 500px;
    border-color: rgba(0, 217, 255, 0.2);
    border-bottom-color: rgba(0, 102, 255, 0.6);
    animation: ringRotate 8s linear infinite;
}

@keyframes ringRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.splash-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.splash-logo {
    max-width: 700px;
    height: auto;
    animation: splashPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(0, 102, 255, 0.5));
}

@keyframes splashPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

/* Loading Dots */
.loading-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.loading-dots span {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: loadingDot 1.4s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.8);
}

.loading-dots span:nth-child(1) {
    animation-delay: 0s;
}

.loading-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes loadingDot {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    30% {
        transform: translateY(-15px);
        opacity: 1;
    }
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0;
}

.logo-img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
}

.nav-flags {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1.5rem;
    margin-right: 0;
}

.flag-icon {
    width: 32px;
    height: auto;
    transition: transform 0.3s ease;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.flag-icon:hover {
    transform: scale(1.15);
    border-color: var(--primary-color);
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--text-primary);
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-icon {
    display: inline-block;
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    z-index: 10;
    background: transparent;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
    opacity: 0.5;
    pointer-events: none;
}

.hero-video[loop] {
    animation: none;
}

.hero-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.2) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
    z-index: 2;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 11;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.gradient-text-accent {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.hero-image {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: none;
    background: transparent;
}

/* Account Process Section */
.account-process {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(0, 102, 255, 0.05) 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.process-step {
    background: var(--dark-card);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 102, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.3);
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

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

.process-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* About Section */
.about {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(123, 47, 247, 0.05) 100%);
    z-index: 0;
    margin-top: 0;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.about-card {
    background: var(--dark-card);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 102, 255, 0.1);
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.about-card p,
.values-list {
    color: var(--text-secondary);
    line-height: 1.8;
}

.values-list {
    list-style: none;
}

.values-list li {
    margin-bottom: 0.75rem;
    padding-left: 1rem;
    position: relative;
}

.values-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Services Section */
.services {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(0, 102, 255, 0.15) 0%, rgba(123, 47, 247, 0.12) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--dark-card);
    border-radius: var(--radius-md);
    padding: 2rem;
    border: 1px solid rgba(0, 102, 255, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    padding-left: 0;
}

.service-img {
    width: 100%;
    border-radius: var(--radius-sm);
    margin-top: 1rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-img {
    opacity: 1;
}

/* Ecosystem Section */
.ecosystem {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(123, 47, 247, 0.05) 0%, var(--dark-bg) 100%);
}

.ecosystem-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ecosystem-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--dark-card);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 102, 255, 0.1);
    transition: all 0.3s ease;
}

.ecosystem-item:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
}

.ecosystem-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.ecosystem-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.ecosystem-text p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.ecosystem-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Differentiators Section */
.differentiators {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(0, 102, 255, 0.15) 0%, rgba(123, 47, 247, 0.12) 100%);
}

.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.differentiator-item {
    text-align: center;
    padding: 2rem;
    background: var(--dark-card);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 102, 255, 0.1);
    transition: all 0.3s ease;
}

.differentiator-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.differentiator-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.differentiator-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.differentiator-item p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Compliance Section */
.compliance {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(0, 217, 255, 0.05) 100%);
}

.compliance-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.compliance-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.compliance-text > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.compliance-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.compliance-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--dark-card);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.compliance-icon {
    font-size: 1.5rem;
}

.compliance-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Strategic Perspective Section */
.strategic-perspective {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(0, 217, 255, 0.05) 0%, var(--dark-bg) 100%);
}

.strategic-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.strategic-item {
    padding: 2.5rem;
    background: var(--dark-card);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 102, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.strategic-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-3);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.strategic-item:hover::before {
    transform: scaleX(1);
}

.strategic-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
}

.strategic-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.strategic-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.strategic-item p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* President Message Section */
.president-message {
    position: relative;
    padding: 80px 0;
}

.message-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.president-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.message-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.message-text blockquote {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 2rem;
    padding: 2rem;
    border-left: 4px solid var(--primary-color);
    background: var(--dark-card);
    border-radius: var(--radius-md);
}

.president-signature {
    margin-top: 2rem;
}

.president-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.president-title {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Contact Section */
.contact {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(0, 102, 255, 0.15) 0%, rgba(123, 47, 247, 0.12) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

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

.contact-item {
    padding: 2rem;
    background: var(--dark-card);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 102, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

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

.contact-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-form {
    background: var(--dark-card);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

/* Footer */
.footer {
    background: var(--dark-card);
    border-top: 1px solid rgba(0, 102, 255, 0.1);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.footer-group {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-muted);
}

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

.footer-social span {
    color: var(--text-secondary);
}

.footer-social a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 18px;
    }
    
    .hero-content,
    .ecosystem-content,
    .compliance-content,
    .message-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .services-grid,
    .differentiators-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .strategic-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .logo-img {
        height: 55px;
    }
    
    .about-mission-vision,
    .numbers-grid,
    .tech-grid,
    .team-grid,
    .help-categories,
    .ouvidoria-info,
    .help-contact,
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ouvidoria-form .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        background: var(--dark-card);
        flex-direction: column;
        width: 100%;
        height: calc(100vh - 70px);
        padding: 2rem;
        transition: right 0.3s ease;
        border-top: 1px solid rgba(0, 102, 255, 0.1);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu .nav-link,
    .nav-menu .btn {
        width: 100%;
        display: block;
        padding: 1rem;
        text-align: center;
        justify-content: center;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .services-grid,
    .differentiators-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .strategic-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav-wrapper {
        position: relative;
    }
    
    .logo {
        gap: 0;
    }
    
    .nav-flags {
        position: absolute;
        right: 60px;
        top: 50%;
        transform: translateY(-50%);
        gap: 0.3rem;
        margin-left: 0;
        z-index: 10;
    }
    
    .flag-icon {
        width: 28px;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .navbar {
        padding: 0.8rem 0;
    }
    
    .page-content {
        padding: 3rem 0;
    }
    
    .about-mission-vision,
    .numbers-grid,
    .tech-grid,
    .team-grid,
    .help-categories,
    .ouvidoria-info,
    .help-contact,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header {
        padding: 100px 0 40px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .contact-page-content {
        grid-template-columns: 1fr;
    }
    
    .faq-cta {
        flex-direction: column;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .compliance-items {
        grid-template-columns: 1fr;
    }
    
    .splash-logo {
        max-width: 240px;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .nav-flags {
        right: 55px;
    }
    
    .flag-icon {
        width: 24px;
    }
    
    .btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 18px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 15px;
        left: 15px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-1);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border: none;
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10000;
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
}

.back-to-top span {
    display: block;
    line-height: 1;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: none;
    border-radius: 50%;
    color: #FFFFFF;
    font-size: 32px;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
    animation: none;
}

.whatsapp-float:active {
    transform: translateY(-3px) scale(1.05);
}

.whatsapp-float span {
    display: block;
    line-height: 1;
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4),
                    0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4),
                    0 0 0 10px rgba(37, 211, 102, 0);
    }
}

/* Page Styles */
.page-header {
    padding: 120px 0 60px;
    background: var(--dark-card);
    border-bottom: 1px solid rgba(0, 102, 255, 0.1);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Page Content */
.page-content {
    padding: 80px 0;
}

.content-intro {
    margin-bottom: 4rem;
}

.large-text {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.about-mission-vision {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.numbers-section {
    text-align: center;
    margin: 4rem 0;
    padding: 4rem 0;
    background: var(--dark-card);
    border-radius: var(--radius-md);
}

.numbers-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.number-item h3 {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.number-item p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.technology-section,
.team-section {
    position: relative;
    margin: 4rem 0;
}

.section-desc {
    font-size: 1.2rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 3rem;
}

.tech-grid,
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.tech-item,
.team-item {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 102, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.tech-item:hover,
.team-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.tech-icon,
.team-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tech-item h3,
.team-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.tech-item p,
.team-item p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.cta-section {
    position: relative;
    text-align: center;
    padding: 4rem 0;
    background: var(--dark-card);
    border-radius: var(--radius-md);
    margin: 4rem 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Contact Page */
.contact-page {
    padding: 80px 0;
}

.contact-page-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-hours {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: block;
    margin-top: 0.5rem;
}

.contact-additional {
    text-align: center;
    padding: 3rem 0;
}

.help-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Help Center */
.help-center {
    padding: 80px 0;
}

.help-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.help-category {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 102, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.help-category:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.help-category h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.help-category p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.category-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.help-content {
    margin: 4rem 0;
}

.help-section {
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(0, 102, 255, 0.1);
}

.help-section:last-child {
    border-bottom: none;
}

.help-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.help-question {
    margin-bottom: 2rem;
}

.help-question h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.help-question p,
.help-question ul,
.help-question ol {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.help-question ul,
.help-question ol {
    padding-left: 2rem;
}

.still-need-help {
    background: var(--dark-card);
    padding: 4rem;
    border-radius: var(--radius-md);
    text-align: center;
}

.help-contact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.help-contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.help-contact-item p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.help-contact-item span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* FAQ Page */
.faq-page {
    position: relative;
    padding: 80px 0;
}

.faq-categories {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.faq-category-btn {
    padding: 1rem 2rem;
    background: var(--dark-card);
    border: 2px solid rgba(0, 102, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.faq-category-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.faq-content {
    margin: 4rem 0;
}

.faq-section {
    margin-bottom: 4rem;
}

.faq-item {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.faq-item p,
.faq-item ul {
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-item ul {
    padding-left: 2rem;
}

.faq-footer {
    background: var(--dark-card);
    padding: 4rem;
    border-radius: var(--radius-md);
    text-align: center;
    margin-top: 4rem;
}

.faq-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Legal Pages */
.legal-page {
    padding: 80px 0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--dark-card);
    padding: 3rem;
    border-radius: var(--radius-md);
}

.legal-content h2 {
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

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

.legal-content ul {
    padding-left: 2rem;
}

.exclusao-warning {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.1) 0%, rgba(255, 140, 0, 0.1) 100%);
    border: 2px solid rgba(255, 165, 0, 0.3);
    border-radius: var(--radius-md);
    padding: 2rem;
    margin-bottom: 2rem;
}

.exclusao-warning h2 {
    color: #FFA500;
    margin-bottom: 1rem;
}

.exclusao-warning p {
    color: var(--text-primary);
    font-weight: 500;
}

/* Ouvidoria Page */
.ouvidoria-page {
    padding: 80px 0;
}

.ouvidoria-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.ouvidoria-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.ouvidoria-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.ouvidoria-card {
    background: var(--dark-card);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 102, 255, 0.1);
    text-align: center;
}

.ouvidoria-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.ouvidoria-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.ouvidoria-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.ouvidoria-form-section {
    background: var(--dark-card);
    padding: 3rem;
    border-radius: var(--radius-md);
    margin-bottom: 4rem;
}

.ouvidoria-form-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.ouvidoria-form-section > p {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.ouvidoria-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.ouvidoria-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.ouvidoria-form .checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: normal;
}

.ouvidoria-contact {
    margin-bottom: 4rem;
}

.ouvidoria-contact h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.ouvidoria-faq {
    background: var(--dark-card);
    padding: 3rem;
    border-radius: var(--radius-md);
}

.ouvidoria-faq h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

