:root {
    --primary: #1a2a3a;
    --secondary: #2d4a6a;
    --accent: #e85a4f;
    --light: #f8f9fa;
    --dark: #0d1520;
    --text: #2c3e50;
    --text-light: #6c7a89;
    --white: #ffffff;
    --border: #dde4eb;
    --shadow: rgba(0, 0, 0, 0.08);
}

* {
    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);
}

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

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

a:hover {
    color: var(--secondary);
}

.editorial-wrapper {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

.wide-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.full-wrapper {
    width: 100%;
    padding: 0 24px;
}

header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

nav {
    display: flex;
    gap: 32px;
}

nav a {
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

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

nav a:hover::after {
    width: 100%;
}

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

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

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
}

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

.hero-editorial h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-editorial .lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.hero-image {
    margin: 40px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow);
}

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

.hero-image svg {
    width: 100%;
    height: 400px;
}

.inline-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.inline-cta:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
}

.section-narrative {
    padding: 60px 0;
}

.section-narrative h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.section-narrative p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.section-narrative .highlight-box {
    background: var(--light);
    border-left: 4px solid var(--accent);
    padding: 24px 28px;
    margin: 32px 0;
    border-radius: 0 8px 8px 0;
}

.inline-image {
    margin: 40px -60px;
    border-radius: 8px;
    overflow: hidden;
}

.inline-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.inline-image svg {
    width: 100%;
    height: 300px;
}

.section-cards {
    padding: 80px 0;
    background: var(--light);
}

.section-cards h2 {
    font-size: 2.2rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 48px;
}

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

.service-card {
    background: var(--white);
    border-radius: 12px;
    padding: 32px;
    flex: 1 1 320px;
    max-width: 360px;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--shadow);
}

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

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

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

.service-card .card-cta {
    display: inline-block;
    color: var(--accent);
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.service-card .card-cta:hover {
    border-color: var(--accent);
}

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

.split-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-content {
    flex: 1;
}

.split-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.split-image svg {
    width: 100%;
    height: 360px;
}

.split-content h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.split-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.testimonial-section {
    padding: 80px 0;
    background: var(--primary);
    color: var(--white);
}

.testimonial-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 48px;
}

.testimonials-wrap {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 32px;
    flex: 1 1 300px;
    max-width: 360px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: var(--white);
    padding: 18px 36px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--white);
    color: var(--primary);
    transform: scale(1.02);
}

.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--accent);
    color: var(--white);
    padding: 16px 24px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(232, 90, 79, 0.4);
    z-index: 90;
    transition: all 0.3s ease;
}

.sticky-cta:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.form-section {
    padding: 80px 0;
    background: var(--light);
}

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

.form-container h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 8px;
    text-align: center;
}

.form-container .form-subtitle {
    color: var(--text-light);
    text-align: center;
    margin-bottom: 32px;
}

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

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

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

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

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

.submit-btn {
    width: 100%;
    background: var(--accent);
    color: var(--white);
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--primary);
}

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

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cookie-btn:hover {
    opacity: 0.9;
}

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

.page-header h1 {
    font-size: 2.6rem;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.content-section {
    padding: 60px 0;
}

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

.content-section h3 {
    font-size: 1.4rem;
    color: var(--secondary);
    margin-top: 32px;
    margin-bottom: 16px;
}

.content-section p {
    margin-bottom: 16px;
}

.content-section ul {
    margin: 16px 0 16px 24px;
}

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

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 60px 0;
}

.service-item {
    display: flex;
    gap: 40px;
    align-items: center;
    padding: 40px;
    background: var(--light);
    border-radius: 16px;
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
    background: var(--white);
    border: 1px solid var(--border);
}

.service-item-image {
    flex: 0 0 300px;
    border-radius: 12px;
    overflow: hidden;
}

.service-item-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-item-image svg {
    width: 100%;
    height: 220px;
}

.service-item-content {
    flex: 1;
}

.service-item-content h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 12px;
}

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

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

.service-item-content .service-cta {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-item-content .service-cta:hover {
    background: var(--primary);
    color: var(--white);
}

.contact-grid {
    display: flex;
    gap: 60px;
    padding: 60px 0;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.contact-detail {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-detail .icon {
    width: 48px;
    height: 48px;
    background: var(--light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-detail .info h4 {
    color: var(--primary);
    margin-bottom: 4px;
}

.contact-detail .info p {
    color: var(--text-light);
}

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

.thanks-section {
    padding: 120px 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: 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;
}

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

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

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

.thanks-content .back-link {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-content .back-link:hover {
    background: var(--accent);
    color: var(--white);
}

.about-intro {
    padding: 60px 0;
}

.about-intro p {
    font-size: 1.15rem;
    margin-bottom: 20px;
}

.team-section {
    padding: 60px 0;
    background: var(--light);
}

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

.team-member {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    flex: 1 1 250px;
    max-width: 280px;
}

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

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

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

.features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 32px 0;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
}

.feature-text h4 {
    color: var(--primary);
    margin-bottom: 4px;
}

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

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

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
        display: none;
    }

    nav.active {
        display: flex;
    }

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

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

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

    .service-item {
        flex-direction: column;
        padding: 24px;
    }

    .service-item:nth-child(even) {
        flex-direction: column;
    }

    .service-item-image {
        flex: none;
        width: 100%;
    }

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

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

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

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