:root {
    --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #e94560;
    --accent-hover: #ff6b6b;
    --text: #2d2d2d;
    --text-light: #666;
    --bg: #fafafa;
    --bg-alt: #fff;
    --border: #e0e0e0;
    --gold: #d4af37;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

header {
    background: var(--primary);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

nav a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

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

.hero-editorial::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(233,69,96,0.1)" stroke-width="0.5"/><circle cx="50" cy="50" r="30" fill="none" stroke="rgba(233,69,96,0.08)" stroke-width="0.5"/><circle cx="50" cy="50" r="20" fill="none" stroke="rgba(233,69,96,0.06)" stroke-width="0.5"/></svg>') center/cover;
    opacity: 0.5;
}

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

.hero-editorial h1 {
    color: #fff;
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-editorial h1 span {
    color: var(--accent);
}

.hero-editorial .lead {
    color: rgba(255,255,255,0.8);
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 36px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

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

.btn-outline:hover {
    background: var(--accent);
    color: #fff;
}

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

.btn-gold:hover {
    background: #c4a030;
}

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

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

.article-section.dark {
    background: var(--secondary);
    color: #fff;
}

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

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

.dark .section-intro h2 {
    color: #fff;
}

.section-intro p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.story-block {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.story-block.reverse {
    flex-direction: row-reverse;
}

.story-text {
    flex: 1;
}

.story-text h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 18px;
}

.story-text p {
    color: var(--text-light);
    margin-bottom: 14px;
}

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

.story-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.story-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 3px solid var(--accent);
    border-radius: 12px;
    z-index: -1;
}

.inline-cta {
    background: linear-gradient(135deg, var(--accent) 0%, #ff6b6b 100%);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin: 40px 0;
}

.inline-cta h4 {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.inline-cta p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

.inline-cta .btn {
    background: #fff;
    color: var(--accent);
}

.inline-cta .btn:hover {
    background: var(--primary);
    color: #fff;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: var(--bg-alt);
    border-radius: 16px;
    padding: 40px 30px;
    flex: 1 1 340px;
    max-width: 380px;
    text-align: center;
    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:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

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

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

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

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

.service-price span {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

.price-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.testimonial-block {
    background: var(--bg-alt);
    border-left: 4px solid var(--accent);
    padding: 30px 40px;
    margin: 50px 0;
    border-radius: 0 12px 12px 0;
}

.testimonial-block p {
    font-style: italic;
    font-size: 1.15rem;
    color: var(--text);
    margin-bottom: 16px;
}

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

.testimonial-author span {
    font-weight: 400;
    color: var(--text-light);
}

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

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

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

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

.dark .stat-label {
    color: rgba(255,255,255,0.7);
}

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

.form-wrapper {
    background: var(--bg-alt);
    border-radius: 20px;
    padding: 50px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

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

.form-wrapper .form-lead {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 30px;
}

.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(--border);
    border-radius: 8px;
    font-size: 1rem;
    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(--accent);
}

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

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

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

.contact-info-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
}

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

.contact-item svg {
    width: 40px;
    height: 40px;
    fill: var(--accent);
    margin-bottom: 16px;
}

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

.contact-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

footer {
    background: var(--primary);
    padding: 60px 0 30px;
    color: rgba(255,255,255,0.7);
}

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

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

.footer-col h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.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;
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.sticky-cta .btn {
    box-shadow: 0 10px 30px rgba(233,69,96,0.4);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-inner p {
    color: rgba(255,255,255,0.9);
    flex: 1;
}

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

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

.cookie-buttons button {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept {
    background: var(--accent);
    color: #fff;
}

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

.page-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    color: #fff;
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.page-hero p {
    color: rgba(255,255,255,0.8);
    font-size: 1.15rem;
}

.content-page {
    padding: 60px 0;
    background: var(--bg-alt);
}

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

.content-page h2:first-child {
    margin-top: 0;
}

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

.content-page ul {
    margin: 16px 0 16px 30px;
}

.content-page li {
    margin-bottom: 10px;
    color: var(--text);
}

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

.thanks-box {
    background: var(--bg-alt);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    max-width: 600px;
}

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

.thanks-icon svg {
    width: 50px;
    height: 50px;
    fill: #fff;
}

.thanks-box h1 {
    color: var(--primary);
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.thanks-box p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.about-timeline {
    position: relative;
    padding-left: 40px;
}

.about-timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -34px;
    top: 5px;
    width: 14px;
    height: 14px;
    background: var(--accent);
    border-radius: 50%;
}

.timeline-item h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.timeline-item p {
    color: var(--text-light);
}

.team-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-card {
    background: var(--bg-alt);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    flex: 1 1 260px;
    max-width: 300px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

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

.team-card h4 {
    color: var(--primary);
    margin-bottom: 6px;
}

.team-card span {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
}

.team-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 12px;
}

@media (max-width: 900px) {
    .story-block,
    .story-block.reverse {
        flex-direction: column;
    }

    .story-image::before {
        display: none;
    }

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

    .stats-row {
        gap: 30px;
    }

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

@media (max-width: 768px) {
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary);
        flex-direction: column;
        padding: 20px;
        gap: 16px;
    }

    nav.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

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

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

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

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

    .footer-grid {
        gap: 30px;
    }

    .sticky-cta {
        bottom: 80px;
    }
}
