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

:root {
    --primary: #2d1b4e;
    --secondary: #6b4c9a;
    --accent: #c9a227;
    --light: #f8f5ff;
    --dark: #1a0f2e;
    --text: #3d3d3d;
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, #2d1b4e 0%, #4a2c7a 100%);
    --gradient-2: linear-gradient(180deg, #1a0f2e 0%, #2d1b4e 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
}

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

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

nav {
    background: var(--gradient-1);
    padding: 18px 0;
    position: relative;
    z-index: 100;
}

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

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

.logo span {
    color: var(--white);
    font-weight: 300;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--white);
    margin: 5px 0;
    transition: 0.3s;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.hero-editorial {
    background: var(--gradient-2);
    color: var(--white);
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero-editorial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%23ffffff10"/><circle cx="80" cy="40" r="0.5" fill="%23ffffff15"/><circle cx="40" cy="70" r="1.5" fill="%23ffffff08"/><circle cx="90" cy="80" r="0.8" fill="%23ffffff12"/><circle cx="10" cy="90" r="1" fill="%23ffffff10"/><circle cx="60" cy="10" r="0.7" fill="%23ffffff15"/><circle cx="30" cy="50" r="1.2" fill="%23ffffff05"/></svg>');
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-editorial h1 {
    font-size: 3.2rem;
    font-weight: 300;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-editorial h1 strong {
    font-weight: 700;
    color: var(--accent);
}

.hero-tagline {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 40px;
}

.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: 16px 42px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #dbb42f;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--white);
    padding: 14px 38px;
    text-decoration: none;
    font-weight: 500;
    border: 2px solid var(--white);
    border-radius: 50px;
    transition: all 0.3s;
}

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

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

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

.editorial-section {
    padding: 80px 0;
}

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

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

.section-intro {
    text-align: center;
    margin-bottom: 60px;
}

.section-intro h2 {
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.dark-bg .section-intro h2 {
    color: var(--accent);
}

.section-intro p {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.story-block {
    margin-bottom: 50px;
}

.story-block p {
    font-size: 1.15rem;
    margin-bottom: 20px;
}

.story-block .lead {
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--primary);
    border-left: 4px solid var(--accent);
    padding-left: 25px;
    margin: 40px 0;
}

.inline-image {
    margin: 50px 0;
    position: relative;
}

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

.inline-image figcaption {
    text-align: center;
    margin-top: 15px;
    font-style: italic;
    opacity: 0.7;
}

.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
    margin: 60px 0;
}

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

.split-text {
    flex: 1;
}

.split-image {
    flex: 1;
}

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

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 30px;
    flex: 1 1 340px;
    max-width: 380px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon svg {
    width: 35px;
    height: 35px;
    fill: var(--primary);
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

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

.service-price span {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.7;
}

.testimonial-block {
    background: var(--white);
    border-radius: 16px;
    padding: 50px;
    margin: 40px 0;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    position: relative;
}

.testimonial-block::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 6rem;
    color: var(--accent);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.2rem;
}

.testimonial-info h4 {
    font-size: 1rem;
    color: var(--primary);
}

.testimonial-info span {
    font-size: 0.85rem;
    opacity: 0.6;
}

.cta-inline {
    background: var(--light);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    margin: 50px 0;
    border: 2px dashed var(--secondary);
}

.cta-inline h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.cta-inline p {
    margin-bottom: 25px;
    opacity: 0.8;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    padding: 15px 20px;
    z-index: 90;
    transform: translateY(100%);
    transition: transform 0.4s;
}

.sticky-cta.visible {
    transform: translateY(0);
}

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

.sticky-cta p {
    color: var(--white);
    font-size: 1rem;
}

.sticky-cta .btn-primary {
    padding: 12px 30px;
}

.form-section {
    background: var(--gradient-2);
    padding: 100px 0;
    color: var(--white);
}

.form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 50px;
    max-width: 700px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-wrapper h2 {
    text-align: center;
    margin-bottom: 35px;
    font-size: 2rem;
    color: var(--accent);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.form-group select option {
    background: var(--primary);
    color: var(--white);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.form-submit .btn-primary {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.benefit-item {
    flex: 1 1 280px;
    max-width: 320px;
    text-align: center;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--dark);
}

.benefit-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.benefit-item p {
    font-size: 0.95rem;
    opacity: 0.8;
}

.urgency-banner {
    background: var(--accent);
    color: var(--dark);
    padding: 20px;
    text-align: center;
}

.urgency-banner p {
    font-weight: 600;
    font-size: 1.1rem;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 60px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
    margin-top: 10px;
}

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

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1 1 200px;
}

.footer-col h4 {
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

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

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

.footer-col a:hover {
    color: var(--accent);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 25px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
}

.cookie-content a {
    color: var(--accent);
}

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

.cookie-accept {
    background: var(--accent);
    color: var(--dark);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.cookie-accept:hover {
    background: #dbb42f;
}

.cookie-reject {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
}

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

.page-header {
    background: var(--gradient-1);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.15rem;
    opacity: 0.85;
}

.page-content {
    padding: 80px 0;
}

.page-content h2 {
    color: var(--primary);
    font-size: 1.8rem;
    margin: 40px 0 20px;
}

.page-content h3 {
    color: var(--secondary);
    font-size: 1.4rem;
    margin: 30px 0 15px;
}

.page-content p {
    margin-bottom: 20px;
}

.page-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.page-content li {
    margin-bottom: 10px;
}

.contact-info {
    background: var(--light);
    padding: 40px;
    border-radius: 16px;
    margin: 40px 0;
}

.contact-info h3 {
    color: var(--primary);
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

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

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-icon svg {
    width: 50px;
    height: 50px;
    fill: var(--dark);
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    opacity: 0.8;
}

.about-team {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin: 50px 0;
}

.team-member {
    text-align: center;
    flex: 1 1 250px;
    max-width: 280px;
}

.team-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--gradient-1);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
    font-weight: 300;
}

.team-member h3 {
    color: var(--primary);
    margin-bottom: 5px;
}

.team-member span {
    font-size: 0.9rem;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        margin-top: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        padding: 12px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero-editorial h1 {
        font-size: 2.2rem;
    }

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

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

    .stats-row {
        gap: 40px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .sticky-cta-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .form-wrapper {
        padding: 30px 20px;
    }

    .testimonial-block {
        padding: 30px 20px;
    }

    .section-intro h2 {
        font-size: 1.9rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-editorial {
        padding: 60px 0 80px;
    }

    .editorial-section {
        padding: 50px 0;
    }

    .btn-primary,
    .btn-secondary,
    .btn-dark {
        padding: 14px 30px;
        font-size: 0.95rem;
    }

    .service-card {
        padding: 30px 20px;
    }

    .footer-grid {
        gap: 30px;
    }
}
