/* ==================== */
/* Variables & Reset    */
/* ==================== */

:root {
    --primary-color: #13598a;
    --primary-dark: #14173a;
    --secondary-color: #1a4065;
    --accent-color: #12659d;
    --silver-color: #c0c5ce;
    --bg-color: #f1f5f9;
    --bg-secondary: #f8fafc;
    --bg-card: #e6f2f8;
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --gradient-1: linear-gradient(135deg, #13598a 0%, #1a4065 100%);
    --gradient-2: linear-gradient(135deg, #12659d 0%, #13598a 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(180deg, #14173a 0%, #1c2f50 30%, #1a4065 70%, #13598a 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==================== */
/* Splash Screen        */
/* ==================== */

.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #14173a 0%, #1c2f50 50%, #1a4065 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}

.splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.splash-content {
    text-align: center;
    animation: splashFadeIn 1s ease-out;
}

.splash-logo {
    width: 400px;
    max-width: 80vw;
    height: auto;
    animation: logoFloat 2.5s ease-in-out infinite, logoGlow 2s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(192, 197, 206, 0.6));
}

.splash-loader {
    width: 200px;
    height: 4px;
    background: rgba(192, 197, 206, 0.2);
    border-radius: 2px;
    margin: 2rem auto 0;
    overflow: hidden;
    position: relative;
}

.loader-bar {
    height: 100%;
    background: linear-gradient(90deg, #c0c5ce 0%, #ffffff 50%, #c0c5ce 100%);
    border-radius: 2px;
    animation: loaderProgress 3s ease-out forwards;
    box-shadow: 0 0 10px rgba(192, 197, 206, 0.8);
}

@keyframes splashFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.05);
    }
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(192, 197, 206, 0.4)) drop-shadow(0 0 40px rgba(192, 197, 206, 0.2));
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(192, 197, 206, 0.8)) drop-shadow(0 0 60px rgba(192, 197, 206, 0.4));
    }
}

@keyframes loaderProgress {
    from {
        width: 0;
        transform: translateX(0);
    }
    to {
        width: 100%;
        transform: translateX(0);
    }
}

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

/* ==================== */
/* Header & Navigation  */
/* ==================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #1c2f50;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(192, 197, 206, 0.2);
    padding-left: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: grid;
    grid-template-columns: minmax(auto, max-content) auto 1fr;
    align-items: center;
    min-height: 70px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    position: absolute;
    left: 0;
    padding-left: 0;
}

.logo-image {
    height: 65px;
    width: auto;
    object-fit: contain;
    background: transparent;
    mix-blend-mode: normal;
    margin-left: 0;
    padding-left: 0;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    justify-self: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-menu a {
    color: #c0c5ce;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 1.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -12px;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translateY(-50%) scale(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover {
    color: #ffffff;
    letter-spacing: 2px;
}

.nav-menu a:hover::before {
    transform: translateY(-50%) scale(1);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    box-shadow: 0 0 10px var(--primary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: #f1f5f9;
    transition: all 0.3s ease;
}

/* ==================== */
/* Hero Section         */
/* ==================== */

.home-wrapper {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #14173a 0%, #1c2f50 30%, #1a4065 70%, #13598a 100%);
    background-attachment: fixed;
}

.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 2rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.page-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(180deg, #14173a 0%, #1c2f50 30%, #1a4065 70%, #13598a 100%);
    background-attachment: fixed;
}

.gradient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 20s infinite ease-in-out;
    will-change: transform;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #13598a, #1a4065);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #1a4065, #12659d);
    top: 40%;
    right: -5%;
    animation-delay: 7s;
}

.blob-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, #12659d, #13598a);
    bottom: -10%;
    left: 30%;
    animation-delay: 14s;
}

.blob-silver-1 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(192, 197, 206, 0.8), rgba(192, 197, 206, 0.3));
    top: 20%;
    left: 50%;
    animation: floatSilver 15s infinite ease-in-out;
    opacity: 0.6;
}

.blob-silver-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(192, 197, 206, 0.7), rgba(192, 197, 206, 0.2));
    bottom: 20%;
    right: 20%;
    animation: floatSilver 18s infinite ease-in-out;
    animation-delay: 5s;
    opacity: 0.5;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    33% {
        transform: translate(40px, -60px) scale(1.15) rotate(5deg);
    }
    66% {
        transform: translate(-30px, 40px) scale(0.95) rotate(-5deg);
    }
}

@keyframes floatSilver {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translate(-50px, 30px) scale(1.2) rotate(10deg);
        opacity: 0.8;
    }
    50% {
        transform: translate(20px, -40px) scale(0.9) rotate(-10deg);
        opacity: 0.5;
    }
    75% {
        transform: translate(30px, 20px) scale(1.1) rotate(5deg);
        opacity: 0.7;
    }
}

/* Partículas plateadas flotantes */
.silver-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(192, 197, 206, 0.9), rgba(192, 197, 206, 0.3));
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(192, 197, 206, 0.8), 0 0 20px rgba(192, 197, 206, 0.4);
    animation: floatParticle 20s infinite ease-in-out;
}

.particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-duration: 18s;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 25%;
    top: 60%;
    animation-duration: 22s;
    animation-delay: 3s;
    width: 6px;
    height: 6px;
}

.particle:nth-child(3) {
    left: 50%;
    top: 30%;
    animation-duration: 25s;
    animation-delay: 5s;
}

.particle:nth-child(4) {
    left: 70%;
    top: 70%;
    animation-duration: 20s;
    animation-delay: 2s;
    width: 5px;
    height: 5px;
}

.particle:nth-child(5) {
    left: 85%;
    top: 40%;
    animation-duration: 23s;
    animation-delay: 7s;
}

.particle:nth-child(6) {
    left: 15%;
    top: 80%;
    animation-duration: 19s;
    animation-delay: 4s;
    width: 7px;
    height: 7px;
}

.particle:nth-child(7) {
    left: 60%;
    top: 15%;
    animation-duration: 21s;
    animation-delay: 6s;
}

.particle:nth-child(8) {
    left: 40%;
    top: 90%;
    animation-duration: 24s;
    animation-delay: 1s;
    width: 5px;
    height: 5px;
}

.particle:nth-child(9) {
    left: 5%;
    top: 45%;
    animation-duration: 19s;
    animation-delay: 8s;
    width: 4px;
    height: 4px;
}

.particle:nth-child(10) {
    left: 55%;
    top: 55%;
    animation-duration: 21s;
    animation-delay: 3s;
    width: 6px;
    height: 6px;
}

.particle:nth-child(11) {
    left: 80%;
    top: 25%;
    animation-duration: 23s;
    animation-delay: 9s;
    width: 5px;
    height: 5px;
}

.particle:nth-child(12) {
    left: 30%;
    top: 10%;
    animation-duration: 20s;
    animation-delay: 4s;
}

.particle:nth-child(13) {
    left: 65%;
    top: 85%;
    animation-duration: 22s;
    animation-delay: 6s;
    width: 7px;
    height: 7px;
}

.particle:nth-child(14) {
    left: 20%;
    top: 35%;
    animation-duration: 18s;
    animation-delay: 2s;
    width: 5px;
    height: 5px;
}

.particle:nth-child(15) {
    left: 75%;
    top: 60%;
    animation-duration: 24s;
    animation-delay: 7s;
}

.particle:nth-child(16) {
    left: 45%;
    top: 75%;
    animation-duration: 19s;
    animation-delay: 5s;
    width: 6px;
    height: 6px;
}

.particle:nth-child(17) {
    left: 90%;
    top: 50%;
    animation-duration: 21s;
    animation-delay: 10s;
    width: 5px;
    height: 5px;
}

.particle:nth-child(18) {
    left: 35%;
    top: 95%;
    animation-duration: 23s;
    animation-delay: 1s;
    width: 4px;
    height: 4px;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(30px, -80px) scale(1.3);
        opacity: 0.8;
    }
    50% {
        transform: translate(-40px, -150px) scale(0.9);
        opacity: 0.5;
    }
    75% {
        transform: translate(20px, -100px) scale(1.1);
        opacity: 0.9;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1100px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    color: #ffffff;
}

.hero-logo-text {
    display: block;
    height: auto;
    width: clamp(300px, 50vw, 600px);
    max-width: 100%;
    object-fit: contain;
}

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

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--silver-color);
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-highlight {
    font-weight: 700;
    font-size: clamp(1.2rem, 2.2vw, 1.6rem);
    color: #ffffff;
    display: block;
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient-1);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(19, 89, 138, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(19, 89, 138, 0.6);
}

.cta-button.secondary {
    background: var(--bg-secondary);
    border: 2px solid var(--primary-color);
}

/* ==================== */
/* Applications Section */
/* ==================== */

.applications {
    padding: 6rem 2rem;
    background: transparent;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1.5rem;
    color: #ffffff;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--silver-color), transparent);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--silver-color);
    font-size: 1.2rem;
    margin-bottom: 4rem;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.app-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(192, 197, 206, 0.3);
    display: flex;
    flex-direction: column;
}

.app-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--silver-color);
}

.app-image-container {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(19, 89, 138, 0.03) 0%, rgba(26, 64, 101, 0.03) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.app-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 20px rgba(19, 89, 138, 0.2));
}
.app-image-large {
    transform: scale(1.7);
}
.app-card:hover .app-image {
    transform: scale(1.05);
}

.custom-app-icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-1);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(19, 89, 138, 0.4);
}

.custom-app-icon svg {
    width: 60px;
    height: 60px;
    color: white;
    stroke-width: 2;
}

.custom-app {
    border: 2px solid rgba(19, 89, 138, 0.3);
}

.custom-app:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 40px rgba(19, 89, 138, 0.3);
}

/* Featured/Primary App Styles */
.featured-app {
    position: relative;
    border: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--silver-color), var(--primary-color), var(--silver-color)) border-box;
    box-shadow: 0 8px 30px rgba(192, 197, 206, 0.3);
}

.featured-app:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 50px rgba(192, 197, 206, 0.5);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--silver-color), var(--primary-color));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(192, 197, 206, 0.5);
    z-index: 10;
}

.featured-app .app-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 800;
}

.app-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-image-placeholder svg {
    width: 80px;
    height: 80px;
    color: var(--primary-color);
    opacity: 0.4;
}

.app-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.app-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.app-category {
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.app-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.app-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: rgba(19, 89, 138, 0.15);
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(192, 197, 206, 0.4);
}

.app-button {
    width: 100%;
    padding: 0.9rem;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.app-button-link {
    display: block;
    text-align: center;
    text-decoration: none;
}

.app-button:hover {
    background: var(--primary-color);
    color: white;
}

/* ==================== */
/* About Section        */
/* ==================== */

.about-section {
    padding: 6rem 2rem;
    background: transparent;
}

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

.about-text-large {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    line-height: 1.6;
    color: var(--silver-color);
    font-weight: 300;
}

.inline-logo {
    height: 1.5em;
    vertical-align: middle;
    margin: 0 0.2em;
    display: inline-block;
}

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

.about-block {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(192, 197, 206, 0.3);
}

.about-block:hover {
    transform: translateY(-8px);
}

.about-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 30px rgba(19, 89, 138, 0.4);
}

.about-icon svg {
    width: 40px;
    height: 40px;
    color: white;
    stroke-width: 2;
}

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

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

.about-values {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 4rem;
    border: 1px solid rgba(192, 197, 206, 0.3);
}

.values-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: var(--text-primary);
}

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

.value-item {
    text-align: center;
    padding: 1.5rem;
}

.value-number {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.value-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

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

.about-cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(19, 89, 138, 0.1) 0%, rgba(26, 64, 101, 0.1) 100%);
    border-radius: 20px;
    border: 1px solid rgba(192, 197, 206, 0.3);
}

.about-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.about-cta p {
    color: var(--silver-color);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ==================== */
/* Legal Pages          */
/* ==================== */

.legal-section {
    padding: 8rem 2rem 6rem;
    min-height: 80vh;
    position: relative;
    z-index: 1;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-block {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    border: 1px solid rgba(192, 197, 206, 0.3);
}

.legal-block h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    border-bottom: 2px solid rgba(19, 89, 138, 0.2);
    padding-bottom: 0.5rem;
}

.legal-block h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
    color: var(--text-primary);
}

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

.legal-block ul,
.legal-block ol {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 1rem 0 1rem 2rem;
}

.legal-block li {
    margin-bottom: 0.5rem;
}

.legal-block a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-block a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.legal-block strong {
    color: var(--text-primary);
    font-weight: 600;
}

.legal-cta {
    text-align: center;
    padding: 2.5rem;
    background: var(--bg-card);
    border-radius: 20px;
    margin-top: 3rem;
    border: 1px solid rgba(192, 197, 206, 0.3);
}

.legal-cta p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* ==================== */
/* Features Section     */
/* ==================== */

.features {
    padding: 6rem 2rem;
    background: transparent;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 15px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 30px rgba(19, 89, 138, 0.4);
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    color: white;
    stroke-width: 2;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

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

.why-choose-content {
    max-width: 900px;
    margin: 4rem auto 0;
    padding: 3rem;
    background: var(--bg-card);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.why-choose-highlight {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.6;
    text-align: center;
}

.why-choose-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.why-choose-text:last-child {
    margin-bottom: 0;
    font-weight: 600;
    color: var(--primary-color);
}

/* ==================== */
/* Apps Carousel        */
/* ==================== */

.apps-carousel-section {
    padding: 0 2rem 6rem;
    background: transparent;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.carousel-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 3rem;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    z-index: 2;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    padding: 0 1rem;
}

.carousel-card {
    position: relative;
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2rem 3rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.carousel-img {
    width: 220px;
    height: 220px;
    object-fit: contain;
    flex-shrink: 0;
}

.carousel-img-large {
    transform: scale(1.3);
}

.carousel-custom-icon {
    width: 220px;
    height: 220px;
    background: var(--gradient-1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 30px rgba(79, 70, 229, 0.4);
}

.carousel-custom-icon svg {
    width: 110px;
    height: 110px;
    color: white;
}

.carousel-card-content {
    text-align: left;
}

.carousel-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}

.carousel-subtitle {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.carousel-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(19, 89, 138, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.dot:hover {
    background: var(--primary-color);
}

/* ==================== */
/* Contact Section      */
/* ==================== */

.contact {
    padding: 6rem 2rem;
    background: transparent;
    text-align: center;
}

.contact-text {
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: var(--silver-color);
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(192, 197, 206, 0.3);
}

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

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

.form-group label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1.2rem;
    border: 2px solid rgba(192, 197, 206, 0.3);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(19, 89, 138, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    margin-top: 1rem;
    cursor: pointer;
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-status {
    margin-top: 1rem;
    animation: fadeIn 0.3s ease;
}

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

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 2rem;
    }

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

    .about-values {
        padding: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-cta {
        padding: 2rem;
    }

    .about-text-large {
        font-size: 1.2rem;
    }

    .inline-logo {
        height: 1.3em;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==================== */
/* Footer               */
/* ==================== */

.footer {
    background: linear-gradient(135deg, #14173a 0%, #1c2f50 100%);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem 1.5rem;
    border-top: 1px solid rgba(192, 197, 206, 0.3);
    position: relative;
    z-index: 10;
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 0.5rem;
    object-fit: contain;
}

.footer-brand p {
    color: var(--silver-color);
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    color: #f1f5f9;
}

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

.footer-section li {
    color: var(--silver-color);
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--silver-color);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(192, 197, 206, 0.2);
    color: var(--silver-color);
}

/* ==================== */
/* Responsive Design    */
/* ==================== */

/* iPad Pro and Large Tablets */
@media (min-width: 769px) and (max-width: 1366px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .feature-item h3 {
        font-size: 1.1rem;
    }
    
    .feature-item p {
        font-size: 0.9rem;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 5vw, 3.5rem);
    }
    
    .carousel-container {
        max-width: 700px;
    }
    
    .carousel-card {
        padding: 1.5rem 2rem;
        gap: 2rem;
    }
    
    .carousel-img {
        width: 120px;
        height: 120px;
    }
    
    .carousel-custom-icon {
        width: 120px;
        height: 120px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 1.5rem;
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
    }
    
    .logo {
        position: static;
        transform: none;
        justify-self: start;
    }
    
    .logo-image {
        height: 35px;
    }
    
    .mobile-menu-toggle {
        justify-self: end;
        grid-column: 2;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: rgba(20, 23, 58, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 999;
        align-items: flex-start;
        transform: none;
        grid-column: 1 / -1;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 0.8rem 0;
        font-size: 1.1rem;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        z-index: 1000;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero {
        min-height: 60vh;
        padding: 6rem 1.5rem 2rem;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    
    .hero-logo-text {
        max-width: 250px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }
    
    .apps-carousel-section {
        padding: 0 1rem 4rem;
    }
    
    .carousel-container {
        max-width: 100%;
    }
    
    .carousel-slide {
        padding: 0;
    }
    
    .carousel-card {
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
        text-align: center;
    }
    
    .carousel-card-content {
        text-align: center;
    }
    
    .carousel-img {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }
    
    .carousel-custom-icon {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }
    
    .carousel-card h3 {
        font-size: 1.3rem;
    }
    
    .carousel-subtitle {
        font-size: 0.85rem;
    }
    
    .carousel-description {
        font-size: 0.9rem;
    }
    
    .carousel-dots {
        gap: 0.5rem;
        margin-top: 1.5rem;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }

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

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .why-choose-content {
        padding: 2rem;
    }
    
    .why-choose-highlight {
        font-size: 1.1rem;
    }
    
    .why-choose-text {
        font-size: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer {
        padding: 2rem 1.5rem 1rem;
    }

    .section-title {
        font-size: 2rem;
    }
    
    .gradient-blob {
        opacity: 0.3;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 5rem 1rem 1.5rem;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        gap: 1rem;
    }
    
    .hero-logo-text {
        max-width: 200px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .apps-carousel-section {
        padding: 0 0.5rem 3rem;
    }
    
    .carousel-card {
        padding: 1.5rem 1rem;
    }
    
    .carousel-img {
        width: 100px;
        height: 100px;
    }
    
    .carousel-custom-icon {
        width: 100px;
        height: 100px;
    }
    
    .carousel-custom-icon svg {
        width: 50px;
        height: 50px;
    }
    
    .carousel-card h3 {
        font-size: 1.2rem;
    }
    
    .carousel-subtitle {
        font-size: 0.8rem;
    }
    
    .carousel-description {
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }

    .app-card {
        border-radius: 15px;
    }

    .app-content {
        padding: 1.5rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
    
    .why-choose-content {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .footer {
        padding: 2rem 1rem 1rem;
    }
    
    .footer-logo {
        height: 40px;
    }
}

