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

:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --secondary: #0f172a;
    --accent: #06b6d4;
    --text: #1e293b;
    --text-light: #64748b;
    --bg: #ffffff;
    --bg-light: #f8fafc;
    --bg-dark: #0f172a;
    --border: #e2e8f0;
    --success: #10b981;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--bg);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

header {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
}

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

nav a:hover {
    color: var(--primary);
}

.ad-notice {
    font-size: 12px;
    color: var(--text-light);
    border-left: 2px solid var(--border);
    padding-left: 12px;
}

.hero-split {
    display: flex;
    align-items: center;
    min-height: 600px;
    gap: 80px;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--secondary);
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: var(--primary);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--primary);
    transition: all 0.3s;
    cursor: pointer;
}

.cta-secondary:hover {
    background: var(--primary);
    color: white;
}

.section {
    padding: 100px 0;
}

.section-dark {
    background: var(--bg-dark);
    color: white;
}

.section-light {
    background: var(--bg-light);
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 700px;
}

.section-dark .section-subtitle {
    color: rgba(255,255,255,0.7);
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 100px;
}

.split-layout.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
}

.split-visual {
    flex: 1;
}

.split-visual img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
}

.feature-list {
    list-style: none;
    margin-top: 32px;
}

.feature-list li {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    font-size: 17px;
}

.feature-list li:last-child {
    border-bottom: none;
}

.section-dark .feature-list li {
    border-bottom-color: rgba(255,255,255,0.1);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 60px;
}

.service-card {
    flex: 1 1 calc(33.333% - 32px);
    min-width: 300px;
    background: var(--bg);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-icon {
    width: 100%;
    height: 200px;
    background: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 24px;
    overflow: hidden;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--secondary);
}

.service-description {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.price-note {
    font-size: 14px;
    color: var(--text-light);
}

.about-layout {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.about-main {
    flex: 2;
}

.about-sidebar {
    flex: 1;
    position: sticky;
    top: 120px;
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 32px;
}

.stats-box {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
}

.stat-item {
    margin-bottom: 32px;
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
}

.contact-split {
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-form-wrapper {
    flex: 1;
}

.info-item {
    margin-bottom: 40px;
}

.info-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 12px;
    font-weight: 600;
}

.info-value {
    font-size: 18px;
    color: var(--text);
    line-height: 1.6;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-button {
    width: 100%;
    padding: 18px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.form-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

footer {
    background: var(--bg-dark);
    color: white;
    padding: 80px 0 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-section {
    flex: 1;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: white;
    padding: 24px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    display: none;
}

.cookie-banner.active {
    display: block;
}

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

.cookie-text {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    gap: 16px;
}

.cookie-btn {
    padding: 12px 32px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-size: 14px;
}

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

.cookie-accept:hover {
    background: var(--primary-dark);
}

.cookie-reject {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.cookie-reject:hover {
    border-color: white;
}

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

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    font-size: 40px;
}

.thanks-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 24px;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text);
}

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

.legal-content li {
    margin-bottom: 12px;
    line-height: 1.8;
}

.disclaimer {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
    margin: 60px 0;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .hero-split,
    .split-layout,
    .about-layout,
    .contact-split {
        flex-direction: column;
        gap: 40px;
    }

    .split-layout.reverse {
        flex-direction: column;
    }

    .hero-title {
        font-size: 42px;
    }

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

    .service-card {
        flex: 1 1 calc(50% - 32px);
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    nav ul {
        gap: 20px;
    }

    .hero-title {
        font-size: 36px;
    }

    .service-card {
        flex: 1 1 100%;
    }

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

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}
