:root {
    --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #e94560;
    --accent-light: #ff6b6b;
    --light: #f8f9fa;
    --text: #2d2d2d;
    --text-light: #6c757d;
    --white: #ffffff;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
    --radius: 12px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-light);
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 3vw, 1.8rem); }

p { margin-bottom: 1.2em; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

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

.btn-primary:hover {
    background: var(--accent-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

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

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

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

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--accent);
}

nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

nav a {
    padding: 10px 18px;
    color: var(--text);
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.hero-editorial {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-editorial::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(233,69,96,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-editorial .container-narrow {
    position: relative;
    z-index: 2;
}

.hero-editorial h1 {
    color: var(--white);
    margin-bottom: 24px;
}

.hero-editorial .lead {
    font-size: 1.35rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-editorial .hero-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    opacity: 0.8;
}

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

.article-section:nth-child(even) {
    background: var(--light);
}

.article-content {
    font-size: 1.15rem;
}

.article-content h2 {
    margin: 48px 0 24px;
}

.article-content h3 {
    margin: 36px 0 18px;
}

.inline-image {
    margin: 48px -60px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.inline-image img {
    width: 100%;
    display: block;
}

.inline-image figcaption {
    padding: 16px 24px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.9rem;
}

.quote-block {
    margin: 48px 0;
    padding: 32px 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border-radius: var(--radius);
    position: relative;
}

.quote-block::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 6rem;
    opacity: 0.2;
    font-family: Georgia, serif;
}

.quote-block p {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.quote-block cite {
    font-style: normal;
    opacity: 0.8;
}

.cta-inline {
    margin: 48px 0;
    padding: 40px;
    background: var(--light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-inline-text h3 {
    margin-bottom: 8px;
}

.cta-inline-text p {
    margin: 0;
    color: var(--text-light);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin: 48px 0;
}

.service-card {
    flex: 1 1 340px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.service-card h3 {
    margin-bottom: 12px;
}

.service-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    margin: 16px 0;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.service-card ul li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-light);
}

.service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 600;
}

.features-list {
    margin: 48px 0;
}

.feature-item {
    display: flex;
    gap: 24px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

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

.feature-number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.feature-content h3 {
    margin-bottom: 8px;
}

.feature-content p {
    color: var(--text-light);
    margin: 0;
}

.testimonial-single {
    margin: 48px 0;
    padding: 48px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.testimonial-single .avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--light);
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.testimonial-single blockquote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 16px;
    color: var(--text);
}

.testimonial-single cite {
    color: var(--text-light);
    font-style: normal;
}

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

.form-section h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 16px;
}

.form-section .subtitle {
    text-align: center;
    opacity: 0.8;
    margin-bottom: 48px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--light);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
    color: var(--text);
}

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

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

.form-submit {
    text-align: center;
}

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

.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    pointer-events: none;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.sticky-cta .btn {
    box-shadow: var(--shadow-lg);
    padding: 16px 28px;
}

footer {
    background: var(--primary);
    color: var(--white);
    padding: 64px 0 32px;
}

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

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

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

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

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

.footer-col ul a {
    color: rgba(255,255,255,0.7);
}

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

.footer-col p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

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

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

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

.cookie-text {
    flex: 1;
}

.cookie-text p {
    margin: 0;
    font-size: 0.95rem;
}

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

.cookie-buttons .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
}

.page-header {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 16px;
}

.page-header p {
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

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

.page-content h2 {
    margin: 40px 0 20px;
}

.page-content h3 {
    margin: 32px 0 16px;
}

.page-content ul,
.page-content ol {
    margin: 16px 0 24px 24px;
}

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

.about-intro {
    display: flex;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.about-intro-text {
    flex: 1 1 400px;
}

.about-intro-image {
    flex: 1 1 300px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin: 48px 0;
}

.team-member {
    flex: 1 1 250px;
    text-align: center;
    padding: 32px;
    background: var(--light);
    border-radius: var(--radius);
}

.team-member .avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--primary);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
}

.team-member h4 {
    margin-bottom: 4px;
}

.team-member span {
    color: var(--text-light);
    font-size: 0.9rem;
}

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

.contact-info {
    flex: 1 1 300px;
}

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

.contact-info-item h4 {
    margin-bottom: 8px;
    color: var(--accent);
}

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

.thanks-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 24px 80px;
    text-align: center;
}

.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 32px;
    font-size: 3rem;
}

.thanks-content h1 {
    margin-bottom: 16px;
}

.thanks-content p {
    color: var(--text-light);
    font-size: 1.15rem;
    margin-bottom: 32px;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin: 48px 0;
    flex-wrap: wrap;
}

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

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

.stat-label {
    color: var(--text-light);
    margin-top: 8px;
}

.highlight-box {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--white);
    padding: 48px;
    border-radius: var(--radius);
    margin: 48px 0;
    text-align: center;
}

.highlight-box h3 {
    color: var(--white);
    margin-bottom: 16px;
}

.highlight-box p {
    opacity: 0.9;
    margin-bottom: 24px;
}

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

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        box-shadow: var(--shadow);
        display: none;
    }

    nav.active {
        display: flex;
    }

    nav a {
        width: 100%;
        text-align: center;
    }

    .hero-editorial {
        padding: 120px 0 60px;
    }

    .inline-image {
        margin: 32px -24px;
    }

    .cta-inline {
        flex-direction: column;
        text-align: center;
    }

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

    .footer-grid {
        gap: 32px;
    }

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

    .about-intro {
        flex-direction: column;
    }

    .stats-row {
        gap: 32px;
    }

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

@media (max-width: 480px) {
    .hero-editorial h1 {
        font-size: 1.8rem;
    }

    .hero-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .service-card {
        padding: 24px;
    }

    .quote-block {
        padding: 24px;
    }

    .quote-block p {
        font-size: 1.1rem;
    }
}
