/* Reset and Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-purple: #4c4762;
    --primary-dark: #2d2a3e;
    --text-dark: #333;
    --text-gray: #666;
    --text-light: #949ba5;
    --bg-light: #f6f6fa;
    --bg-white: #ffffff;
    --accent-purple: #6b5b95;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--bg-white);
    border-radius: 12px;
    padding: 20px 25px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    max-width: 280px;
    animation: slideIn 0.5s ease;
}

.cookie-banner.hidden {
    display: none;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookie-banner h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.cookie-banner p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.cookie-btn {
    width: 100%;
    padding: 12px 20px;
    background: var(--primary-purple);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cookie-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* Header */
.header {
    position: sticky;
    top: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow);
    z-index: 100;
	background: #0a0a12;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-section {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-purple);
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--text-light);
    max-width: 180px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list a {
    font-size: 0.95rem;
    color: var(--text-gray);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: var(--primary-purple);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-purple);
    transition: width 0.3s ease;
}

.nav-list a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.action-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.action-icon:hover {
    color: var(--primary-purple);
    background: var(--bg-light);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
    padding: 8px;
}

.mobile-nav {
    display: none;
    background: var(--bg-white);
    padding: 20px 40px;
    border-top: 1px solid var(--border-color);
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav-list a {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 500;
}

.mobile-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    margin: 20px 40px;
    border-radius: 20px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, #5a5478 0%, #4c4762 50%, #3d3a52 100%);
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-bg-img[alt]::after {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    content: "";
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(76, 71, 98, 0.85) 0%, rgba(76, 71, 98, 0.4) 50%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 550px;
    padding: 60px;
}

.hero-content h1 {
    font-size: 2.8rem;
    color: white;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about-section {
    padding: 80px 40px;
    background: var(--bg-white);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    min-height: 300px;
    background: linear-gradient(135deg, #e8e8ed 0%, #d4d4dc 100%);
    border-radius: 12px;
    overflow: hidden;
}

.about-image img {
    border-radius: 12px;
    box-shadow: var(--shadow);
    width: 100%;
    height: auto;
    min-height: 300px;
    object-fit: cover;
}

.about-content h2 {
    font-size: 2rem;
    color: var(--primary-purple);
    margin-bottom: 25px;
}

.about-content p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Features Section */
.features-section {
    padding: 60px 40px;
    background: var(--bg-light);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.features-content h2 {
    font-size: 2rem;
    color: var(--primary-purple);
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    border-radius: 10px;
    color: var(--primary-purple);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.feature-text strong {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.feature-text span {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.features-image {
    display: flex;
    justify-content: center;
}

.features-image img {
    max-width: 350px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.features-bottom {
    max-width: 1200px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
}

.features-bottom-image img {
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.features-bottom-content {
    padding-left: 40px;
}

/* Contact Section */
.contact-section {
    padding: 0;
    background: var(--primary-purple);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.contact-map {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
}

.contact-form-wrapper {
    padding: 50px;
    color: white;
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.contact-subtitle {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 0.15);
}

.form-checkbox {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 10px 0;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.form-checkbox label {
    font-size: 0.85rem;
    line-height: 1.5;
    opacity: 0.9;
}

.form-checkbox a {
    text-decoration: underline;
}

.submit-btn {
    padding: 14px 30px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
}

.submit-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 35px;
}

.contact-info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.contact-info-item p {
    font-size: 0.9rem;
    opacity: 0.85;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Privacy Section */
.privacy-section {
    background: var(--bg-white);
}

.privacy-header {
    text-align: center;
    padding: 40px 20px;
    border-bottom: 1px solid var(--border-color);
}

.privacy-header h2 {
    font-size: 1.75rem;
    color: var(--primary-purple);
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
}

.privacy-title {
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 20px;
}

.privacy-subtitle {
    font-size: 1.5rem;
    color: var(--primary-purple);
    margin-bottom: 40px;
}

.privacy-content h4 {
    font-size: 1.3rem;
    color: var(--primary-purple);
    margin: 35px 0 15px;
}

.privacy-content p {
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.7;
}

.privacy-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.privacy-content li {
    color: var(--text-gray);
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.privacy-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-purple);
}

.privacy-content a {
    color: var(--primary-purple);
    text-decoration: underline;
}

.privacy-revision {
    color: #e74c3c !important;
    font-weight: 600;
    margin-top: 40px;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: white;
    padding: 60px 40px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    font-size: 0.95rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    opacity: 1;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact p {
    font-size: 0.95rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact a {
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-contact a:hover {
    opacity: 1;
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.footer-social a {
    color: white;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    opacity: 1;
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding: 30px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-container {
        padding: 12px 25px;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header-actions {
        display: none;
    }

    .mobile-nav {
        padding: 20px 25px;
    }

    .hero {
        margin: 15px 20px;
    }

    .hero-content {
        padding: 40px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-image {
        order: -1;
    }

    .features-bottom {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-bottom-content {
        padding-left: 0;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-map {
        min-height: 300px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-nav ul {
        align-items: center;
    }

    .footer-contact {
        align-items: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 400px;
        margin: 10px 15px;
        border-radius: 15px;
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(76, 71, 98, 0.85) 0%, rgba(76, 71, 98, 0.6) 100%);
    }

    .hero-content {
        padding: 30px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .about-section,
    .features-section {
        padding: 50px 20px;
    }

    .about-content h2,
    .features-content h2 {
        font-size: 1.6rem;
    }

    .contact-form-wrapper {
        padding: 35px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .privacy-container {
        padding: 40px 20px;
    }

    .privacy-title {
        font-size: 2rem;
    }

    .privacy-subtitle {
        font-size: 1.2rem;
    }

    .footer {
        padding: 40px 20px 0;
    }

    .cookie-banner {
        left: 10px;
        right: 10px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .logo-subtitle {
        display: none;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .about-content p {
        font-size: 0.9rem;
    }

    .feature-item {
        flex-direction: column;
        gap: 10px;
    }

    .contact-form-wrapper h2 {
        font-size: 1.6rem;
    }
}
