﻿:root {
    --gradient-primary: linear-gradient(135deg, #00496e 0%, #2aa6de 100%);
    --gradient-secondary: linear-gradient(135deg, #ff7226 0%, #d14900 100%);
    --shadow-soft: 0 10px 30px rgba(0, 73, 110, 0.1);
    --shadow-hover: 0 20px 50px rgba(0, 73, 110, 0.15);
    --sa-light-blue: #e0eeff;
    --sa-green: #88ce32;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--sa-accent-blue-5);
    overflow-x: hidden;
    margin: 0;
}

p {
    display: block;
    font-size: 16px;
}

h3 {
    display: block;
    font-size: 19px;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 73, 110, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--sa-accent-blue-5);
    text-decoration: none;
}

.nav-cta {
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    transform: translateY(0);
    font-size: 16px;
}

    .nav-cta:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-hover);
    }

.hero {
    min-height: 100vh;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
        animation: float 20s ease-in-out infinite;
    }

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: slideInLeft 1s ease-out 0.5s forwards;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    opacity: 0;
    animation: slideInLeft 1s ease-out 0.7s forwards;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: slideInLeft 1s ease-out 0.9s forwards;
}

.btn-primary {
    background: var(--sa-branding-primary-orange);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateY(0);
}

    .btn-primary:hover {
        background: #d14900;
        box-shadow: var(--shadow-hover);
    }

.btn-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2rem !important;
    border: 2px solid white;
    border-radius: 50px !important;
    font-size: 1.1rem !important;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-secondary:hover {
        background: white;
        color: var(--sa-accent-blue-5);
    }

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    font-size: 0.9rem;
    color: var(--sa-accent-blue-5);
    animation: floatCard 6s ease-in-out infinite;
}

    .floating-card:nth-child(1) {
        top: 10%;
        left: -10%;
        animation-delay: 0s;
    }

    .floating-card:nth-child(2) {
        top: 70%;
        right: -5%;
        animation-delay: 2s;
    }

    .floating-card:nth-child(3) {
        top: 40%;
        left: -15%;
        animation-delay: 4s;
    }

.hero-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    opacity: 0;
    animation: slideInRight 1s ease-out 0.6s forwards;
}

.features {
    padding: 4rem 2rem 5rem 2rem;
    background: linear-gradient(180deg, #f8fafc 0%, white 100%);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: var(--sa-branding-primary-orange);
        border-radius: 2px;
    }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--gradient-secondary);
    }

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--sa-light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-description {
    color: #666;
    line-height: 1.6;
}

.process {
    padding: 4rem 2rem 5rem 2rem;
    background: var(--sa-accent-blue-5);
    color: white;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--sa-branding-primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-section {
    padding: 4rem 2rem 5rem 2rem;
    background: linear-gradient(135deg, var(--sa-green) 0%, #2f9e2f 100%);
    text-align: center;
    color: white;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 20px;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.footer {
    background: var(--sa-accent-blue-5);
    color: white;
    padding: 2rem 2rem 1rem 2rem;
    position: static;
    border: none;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
    font-size: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
    opacity: 0.7;
}

@keyframes float {
    0%, 100% {
        transform: translate(-20px, -20px) rotate(0deg);
    }

    50% {
        transform: translate(20px, 20px) rotate(180deg);
    }
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .floating-card {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }
}
