@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
@import "tailwindcss";

:root {
    --primary: #2C2B4B;
    --accent: #a75293;
    --secondary: #9c7a9d;
    --bg-light: #fcfcfd;
    --bg-alt: #f3f4f6;
    --text-dark: #1f2937;
    --text-muted: #4b5563;
    --text-light: #9ca3af;
    --white: #ffffff;
    --warning-bg: #fef3c7;
    --warning-text: #92400e;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Layout Containers */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Warning Bar */
.warning-bar {
    background-color: var(--warning-bg);
    color: var(--warning-text);
    text-align: center;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 600;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Header */
header {
    background-color: var(--white);
    border-bottom: 1px solid #e5e7eb;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 800;
    text-decoration: none;
    color: var(--primary);
    display: flex;
    align-items: center;
}

.logo span:last-child {
    color: var(--accent);
    margin-left: 2px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

nav a:hover, nav a.active {
    color: var(--accent);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--primary);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background-color: var(--white);
    border-bottom: 1px solid #f3f4f6;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 0;
}

.hero-img-wrapper {
    position: relative;
}

.hero-img-wrapper img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Sections */
section {
    padding: 64px 0;
}

.section-header {
    margin-bottom: 40px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
}

/* Content Blocks */
.content-block {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #f3f4f6;
    margin-bottom: 24px;
}

.content-block h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}

/* Lists */
.check-list {
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--text-muted);
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 800;
}

/* Step List (Vertical) */
.step-list-vertical {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-card {
    display: flex;
    gap: 20px;
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #f3f4f6;
    transition: border-color 0.2s;
}

.step-card:hover {
    border-color: var(--secondary);
}

.step-number-v {
    background-color: var(--primary);
    color: var(--white);
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.step-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.step-info p {
    font-size: 15px;
    color: var(--text-muted);
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1px solid #f3f4f6;
    border-radius: 8px;
    padding: 20px;
}

.faq-question {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
    display: block;
}

.faq-answer {
    color: var(--text-muted);
    font-size: 15px;
}

/* Transparency Section */
.transparency {
    background-color: var(--bg-alt);
    padding: 40px;
    border-radius: 16px;
    margin-top: 40px;
}

.transparency h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-weight: 700;
}

.transparency p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

/* Footer */
footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 80px 0 40px;
    font-size: 15px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 64px;
    align-items: start;
}

.footer-col h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--white);
    position: relative;
    display: inline-block;
}

.footer-col h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
}

.footer-col p {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-col .company-data {
    font-size: 13px;
    color: var(--secondary);
    margin-top: 24px;
    line-height: 1.5;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    flex-direction: column;
}

.footer-contact-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--secondary);
    margin-bottom: 4px;
    font-weight: 600;
}

.footer-contact-value {
    color: rgba(255,255,255,0.9);
}

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

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 10px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Privacy Policy Page */
.legal-page {
    padding: 80px 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.legal-content h1 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 24px;
}

.legal-content h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-content p {
    margin-bottom: 16px;
    color: var(--text-muted);
}

.legal-content ul {
    margin-bottom: 24px;
    padding-left: 20px;
}

.legal-content li {
    margin-bottom: 8px;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .section-title {
        font-size: 26px;
    }

    .legal-content {
        padding: 24px;
    }
}

/* Mobile Nav Active */
nav.mobile-active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 24px;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
}

nav.mobile-active ul {
    flex-direction: column;
    gap: 16px;
}
