:root {
    --primary-orange: #F96302;
    --dark-navy: #1e293b;
    --medium-navy: #334155;
    --light-gray: #f1f5f9;
    --text-dark: #0f172a;
    --text-medium: #475569;
    --text-light: #64748b;
    --green: #059669;
    --yellow: #d97706;
    --white: #ffffff;
}

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

body {
    font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-navy);
    color: var(--white);
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-btn {
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    font-family: 'Work Sans', sans-serif;
}

.cookie-btn:hover {
    background: #e55a02;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 99, 2, 0.3);
}

/* Header */
.header {
    background: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: translateX(4px);
}

.logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.nav {
    display: flex;
    gap: 30px;
    flex: 1;
    justify-content: center;
}

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

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

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

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

.btn-support {
    background: var(--primary-orange);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 15px;
}

.btn-support:hover {
    background: #e55a02;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 99, 2, 0.3);
}

/* Hero Section */
.hero {
    padding: 80px 0 100px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 99, 2, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-badge {
    display: inline-block;
    background: var(--primary-orange);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px;
    animation: fadeInDown 0.6s ease;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--text-dark);
    max-width: 900px;
    animation: fadeInUp 0.6s ease 0.1s backwards;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
    max-width: 800px;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

.hero-subdesc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 800px;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease 0.3s backwards;
}

.btn-primary {
    display: inline-block;
    background: var(--dark-navy);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease 0.4s backwards;
}

.btn-primary:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(249, 99, 2, 0.3);
}

/* Verification Section */
.verification {
    padding: 100px 0;
    background: var(--white);
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.section-intro {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
    max-width: 900px;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.feature-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

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

.feature-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.feature-content {
    padding: 30px;
}

.feature-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.feature-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
}

/* Corporate Section */
.corporate {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
}

.corporate-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.corporate-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    color: var(--primary-orange);
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.corporate-subtitle {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.corporate-description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 30px;
}

.corporate-badge {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-orange);
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-medium);
}

.corporate-visual {
    height: 400px;
}

/* Disclaimer Section */
.disclaimer {
    padding: 80px 0;
    background: #fef3e8;
}

.disclaimer-box {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    border: 2px solid #fed7aa;
    display: flex;
    gap: 25px;
}

.disclaimer-icon {
    color: var(--yellow);
    flex-shrink: 0;
    font-size: 32px;
}

.disclaimer-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.disclaimer-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 15px;
}

.disclaimer-text:last-child {
    margin-bottom: 0;
}

/* Footer */
.footer {
    background: var(--dark-navy);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 40px;
    gap: 60px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.8;
    color: #94a3b8;
}

.footer-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    font-weight: 500;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: #94a3b8;
}

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

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

/* Responsive */
@media (max-width: 968px) {
    .nav {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .corporate-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .corporate-subtitle {
        font-size: 32px;
    }
    
    .disclaimer-box {
        flex-direction: column;
        padding: 30px;
    }
}
