:root {
    --color-primary: #0C1542;
    --color-secondary: #182B9F;
    --color-tertiary: #2A47D8;
    --color-accent: #E97142;
    --color-white: #ffffff;
    --color-gray-light: #f8f9fa;
    --color-gray: #6c757d;
    --color-dark: #212529;
    --font-primary: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-dark);
    background: var(--color-white);
    overflow-x: hidden;
}

.navbar-fixed {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(42, 71, 216, 0.1);
    z-index: 1000;
    padding: 0.8rem 0;
    box-shadow: 0 2px 16px rgba(12, 21, 66, 0.04);
    transition: var(--transition);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-primary);
    text-decoration: none;
}

.logo-svg {
    width: 42px;
    height: 42px;
}

.nav-link {
    color: var(--color-dark);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1.25rem;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
}

.nav-link:hover {
    color: var(--color-tertiary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--color-accent);
    transition: var(--transition);
}

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 10rem 0 6rem;
    background: linear-gradient(135deg, rgba(42, 71, 216, 0.05) 0%, rgba(233, 113, 66, 0.08) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%232A47D8;stop-opacity:0.03"/><stop offset="100%" style="stop-color:%23E97142;stop-opacity:0.05"/></linearGradient></defs><path d="M0,400 Q300,200 600,400 T1200,400 L1200,800 L0,800 Z" fill="url(%23grad)"/></svg>');
    background-size: cover;
    opacity: 0.4;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

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

.hero-title span {
    color: var(--color-accent);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--color-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    max-width: 550px;
    border-radius: 16px;
    box-shadow: 0 25px 70px rgba(42, 71, 216, 0.25);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.hero-image img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.btn-primary-custom {
    background: var(--color-accent);
    color: var(--color-white);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 0;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 20px rgba(233, 113, 66, 0.3);
}

.btn-primary-custom:hover {
    background: #d35f35;
    box-shadow: 0 6px 30px rgba(233, 113, 66, 0.4);
    transform: translateY(-2px);
}

.section-padding {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--color-gray);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: var(--color-white);
    padding: 2.5rem;
    border: 1px solid rgba(42, 71, 216, 0.1);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-tertiary) 0%, var(--color-accent) 100%);
    transform: scaleX(0);
    transition: var(--transition);
}

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

.feature-card:hover {
    box-shadow: 0 12px 40px rgba(42, 71, 216, 0.15);
    transform: translateY(-5px);
}

.icon-container {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.halo-outer {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(233, 113, 66, 0.3);
    border-radius: 50%;
}

.halo-inner {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgba(42, 71, 216, 0.1) 0%, rgba(233, 113, 66, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.halo-inner i {
    font-size: 2rem;
    color: var(--color-tertiary);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.feature-text {
    font-size: 1rem;
    color: var(--color-gray);
    line-height: 1.7;
    text-align: center;
}

.bg-dark-section {
    background: var(--color-primary);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.bg-dark-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(42, 71, 216, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.text-light-custom {
    color: rgba(255, 255, 255, 0.9);
}

.side-image {
    width: 100%;
    max-width: 300px;
    border-radius: 12px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.process-section {
    background: var(--color-gray-light);
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 70px;
    width: 2px;
    height: calc(100% + 20px);
    background: linear-gradient(180deg, var(--color-tertiary) 0%, transparent 100%);
}

.process-step:last-child::after {
    display: none;
}

.process-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-tertiary) 0%, var(--color-accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.process-icon i {
    font-size: 1.5rem;
    color: var(--color-white);
}

.process-content h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.process-content p {
    font-size: 1rem;
    color: var(--color-gray);
    line-height: 1.6;
}

.vision-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12, 21, 66, 0.85) 0%, rgba(42, 71, 216, 0.75) 100%);
}

.vision-content {
    position: relative;
    z-index: 1;
    color: var(--color-white);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.vision-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.vision-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    opacity: 0.95;
}

.contact-section {
    background: var(--color-gray-light);
}

.contact-info {
    background: var(--color-white);
    padding: 3rem;
    border-left: 4px solid var(--color-accent);
}

.contact-info i {
    font-size: 4rem;
    color: var(--color-accent);
    margin-bottom: 2rem;
    display: block;
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1rem;
    color: var(--color-gray);
    line-height: 1.7;
}

.form-card {
    background: var(--color-white);
    padding: 3rem;
    border: 1px solid var(--color-tertiary);
    box-shadow: 0 8px 30px rgba(42, 71, 216, 0.1);
}

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

.form-control {
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    border: 1px solid #dee2e6;
    border-radius: 0;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--color-tertiary);
    box-shadow: 0 0 0 0.2rem rgba(42, 71, 216, 0.15);
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

.btn-submit {
    background: var(--color-accent);
    color: var(--color-white);
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 0;
    width: 100%;
    transition: var(--transition);
    cursor: pointer;
}

.btn-submit:hover {
    background: #d35f35;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(233, 113, 66, 0.35);
}

.footer {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 4rem 0 2rem;
}

.footer-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--color-white);
    border-top: 2px solid var(--color-tertiary);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    opacity: 0;
    transform: translateY(100%);
    transition: var(--transition);
}

.cookie-notice.show {
    opacity: 1;
    transform: translateY(0);
}

.cookie-notice.hide {
    opacity: 0;
    transform: translateY(100%);
}

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

.btn-cookie {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cookie-accept {
    background: var(--color-accent);
    color: var(--color-white);
}

.btn-cookie-accept:hover {
    background: #d35f35;
}

.btn-cookie-decline {
    background: var(--color-gray-light);
    color: var(--color-dark);
}

.btn-cookie-decline:hover {
    background: #e2e6ea;
}

.page-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-tertiary) 100%);
    color: var(--color-white);
    padding: 8rem 0 4rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.content-section {
    padding: 4rem 0;
}

.content-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.content-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.content-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 1rem;
}

.content-section ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.content-section li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 0.5rem;
}

.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.thanks-content {
    max-width: 600px;
}

.thanks-icon {
    font-size: 5rem;
    color: var(--color-accent);
    margin-bottom: 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.2rem;
    color: var(--color-gray);
    margin-bottom: 2rem;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .navbar-collapse {
        background: var(--color-white);
        padding: 1rem;
        margin-top: 1rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-section {
        padding: 8rem 0 4rem;
    }

    .section-padding {
        padding: 3rem 0;
    }

    .page-header {
        padding: 6rem 0 3rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .cookie-buttons {
        flex-direction: column;
    }
}