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

:root {
    --primary: #2d5f8d;
    --secondary: #4a8fc7;
    --accent: #e8925c;
    --dark: #1a2332;
    --light: #f4f7fa;
    --white: #ffffff;
    --gray: #5a6c7d;
    --border: #d1dce5;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
}

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

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

header {
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-top {
    background: var(--light);
    padding: 8px 0;
    font-size: 13px;
    color: var(--gray);
    border-bottom: 1px solid var(--border);
}

.ad-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.ad-label::before {
    content: "ⓘ";
    font-weight: bold;
}

nav {
    padding: 16px 0;
}

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

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

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

.nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 3px;
    background: var(--dark);
    transition: 0.3s;
}

.hero-section {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
}

.hero-content {
    display: flex;
    gap: 48px;
    align-items: center;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero-image {
    flex: 1;
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    overflow: hidden;
    height: 400px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background: #d47a45;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

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

.btn-secondary:hover {
    background: var(--light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.section {
    padding: 80px 0;
}

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

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: var(--primary);
}

.section-header p {
    font-size: 18px;
    color: var(--gray);
    max-width: 680px;
    margin: 0 auto;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 48px;
}

.card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: all 0.3s;
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
}

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

.card-image {
    width: 100%;
    height: 220px;
    background: var(--light);
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary);
}

.card-content p {
    color: var(--gray);
    margin-bottom: 20px;
    flex: 1;
}

.card-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 20px;
}

.card-features {
    list-style: none;
    margin-bottom: 24px;
}

.card-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--gray);
}

.card-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.form-section {
    background: var(--white);
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    max-width: 640px;
    margin: 0 auto;
}

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

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

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

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

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

.service-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

.service-option {
    flex: 1;
    min-width: 180px;
}

.service-option input[type="radio"] {
    display: none;
}

.service-option label {
    display: block;
    padding: 20px;
    border: 2px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.service-option input[type="radio"]:checked + label {
    border-color: var(--secondary);
    background: var(--light);
}

.service-option label:hover {
    border-color: var(--secondary);
}

.service-option .service-name {
    font-weight: 600;
    color: var(--primary);
    display: block;
    margin-bottom: 4px;
}

.service-option .service-price {
    color: var(--accent);
    font-weight: 700;
}

.info-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.info-block {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.info-block h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 16px;
}

.info-block p {
    color: var(--gray);
    line-height: 1.7;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.stat-card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    min-width: 200px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

.stat-label {
    color: var(--gray);
    font-weight: 500;
}

.testimonials {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.testimonial {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.testimonial-text {
    font-style: italic;
    color: var(--gray);
    margin-bottom: 16px;
    font-size: 17px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
}

.contact-grid {
    display: flex;
    gap: 48px;
}

.contact-info {
    flex: 1;
}

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

.contact-item h3 {
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 20px;
}

.contact-item p {
    color: var(--gray);
    line-height: 1.8;
}

.contact-map {
    flex: 1;
    background: var(--light);
    border-radius: 12px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
}

footer {
    background: var(--dark);
    color: var(--white);
    padding: 48px 0 24px;
}

.footer-content {
    display: flex;
    gap: 48px;
    margin-bottom: 32px;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    margin-bottom: 16px;
    color: var(--accent);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer-section a:hover {
    opacity: 1;
}

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

.disclaimer {
    background: var(--light);
    padding: 32px;
    border-radius: 8px;
    margin: 48px 0;
    border-left: 4px solid var(--accent);
}

.disclaimer h4 {
    color: var(--primary);
    margin-bottom: 12px;
}

.disclaimer p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.7;
}

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

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

.cookie-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.legal-content {
    padding: 48px 0;
}

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

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

.legal-content h3 {
    font-size: 22px;
    color: var(--dark);
    margin-top: 24px;
    margin-bottom: 12px;
}

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

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

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

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
}

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

.thanks-icon {
    font-size: 72px;
    margin-bottom: 24px;
}

.thanks-content h1 {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 16px;
}

.thanks-content p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 32px;
}

@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: -100%;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        transition: left 0.3s;
    }

    .nav-links.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

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

    .hero-text h1 {
        font-size: 36px;
    }

    .cards-grid {
        flex-direction: column;
    }

    .contact-grid {
        flex-direction: column;
    }

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

    .form-section {
        padding: 32px 24px;
    }
}

@media (max-width: 640px) {
    .hero-text h1 {
        font-size: 32px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .service-option {
        min-width: 100%;
    }
}
