:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #0f172a;
    --accent: #f59e0b;
    --text: #1e293b;
    --text-light: #64748b;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --bg-dark: #0f172a;
    --border: #e2e8f0;
    --success: #10b981;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --radius: 12px;
    --max-width: 720px;
    --max-width-wide: 1140px;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.container-wide {
    max-width: var(--max-width-wide);
    margin: 0 auto;
    padding: 0 24px;
}

.ad-disclosure {
    background: var(--secondary);
    color: #94a3b8;
    font-size: 12px;
    text-align: center;
    padding: 8px 16px;
}

header {
    background: var(--bg);
    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 24px;
    max-width: var(--max-width-wide);
    margin: 0 auto;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: -0.5px;
}

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

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

nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

nav a {
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    position: relative;
}

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

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

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

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

.hero-editorial h1 {
    font-size: 42px;
    line-height: 1.2;
    color: var(--secondary);
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-editorial .lead {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-image-container {
    margin: 48px 0;
    border-radius: var(--radius);
    overflow: hidden;
    background-color: #334155;
}

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

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

.article-content h2 {
    font-size: 28px;
    color: var(--secondary);
    margin: 48px 0 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

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

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

.article-content ul {
    margin: 24px 0;
    padding-left: 24px;
}

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

.inline-image {
    margin: 40px 0;
    border-radius: var(--radius);
    overflow: hidden;
    background-color: #475569;
}

.inline-image img {
    width: 100%;
    height: 320px;
}

.inline-image figcaption {
    padding: 12px 16px;
    background: var(--bg-alt);
    font-size: 14px;
    color: var(--text-light);
    text-align: center;
}

.quote-block {
    margin: 48px 0;
    padding: 32px;
    background: var(--bg-alt);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.quote-block p {
    font-size: 19px;
    font-style: italic;
    color: var(--secondary);
    margin-bottom: 12px;
}

.quote-block cite {
    font-size: 14px;
    color: var(--text-light);
    font-style: normal;
}

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

.inline-cta h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 16px;
}

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

.btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--accent);
    color: var(--secondary);
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--secondary);
}

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

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

.btn-white {
    background: #fff;
    color: var(--primary-dark);
}

.services-preview {
    padding: 80px 0;
    background: var(--bg-alt);
}

.services-preview h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 48px;
    color: var(--secondary);
}

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

.service-card {
    flex: 1 1 320px;
    max-width: 360px;
    background: var(--bg);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.service-card-image {
    height: 160px;
    margin: -32px -32px 24px;
    border-radius: var(--radius) var(--radius) 0 0;
    overflow: hidden;
    background-color: #64748b;
}

.service-card-image img {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 12px;
}

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

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

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

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

.testimonial-card {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 40px;
    margin: 32px 0;
}

.testimonial-card p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 24px;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #94a3b8;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
}

.testimonial-info h4 {
    font-size: 16px;
    color: var(--secondary);
    margin-bottom: 4px;
}

.testimonial-info span {
    font-size: 14px;
    color: var(--text-light);
}

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

.form-section h2 {
    color: #fff;
    text-align: center;
    font-size: 32px;
    margin-bottom: 16px;
}

.form-section .subtitle {
    color: #94a3b8;
    text-align: center;
    margin-bottom: 48px;
}

.contact-form {
    max-width: 520px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    color: #e2e8f0;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 2px solid #334155;
    border-radius: 8px;
    background: #1e293b;
    color: #fff;
    transition: border-color 0.2s ease;
}

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

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

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

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

.stats-section {
    padding: 60px 0;
    background: var(--primary);
}

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

.stat-item {
    flex: 1 1 200px;
    max-width: 220px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

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

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.benefit-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.benefit-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--bg-alt);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.benefit-content h3 {
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 8px;
}

.benefit-content p {
    color: var(--text-light);
    font-size: 15px;
}

footer {
    background: var(--bg-dark);
    color: #94a3b8;
    padding: 60px 0 24px;
}

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

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

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

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

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

.footer-col a {
    color: #94a3b8;
    font-size: 14px;
}

.footer-col a:hover {
    color: #fff;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
}

.disclaimer {
    padding: 40px 0;
    background: #1e293b;
    color: #64748b;
    font-size: 13px;
    line-height: 1.7;
}

.disclaimer p {
    margin-bottom: 12px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 20px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

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

.cookie-inner {
    max-width: var(--max-width-wide);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cookie-text {
    flex: 1 1 400px;
    font-size: 14px;
    color: var(--text);
}

.cookie-text a {
    color: var(--primary);
}

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

.cookie-btn {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

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

.cookie-accept:hover {
    background: var(--primary-dark);
}

.cookie-reject {
    background: var(--bg-alt);
    color: var(--text);
    border: 1px solid var(--border);
}

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

.page-header {
    padding: 60px 0;
    background: var(--bg-alt);
    text-align: center;
}

.page-header h1 {
    font-size: 36px;
    color: var(--secondary);
    margin-bottom: 16px;
}

.page-header p {
    color: var(--text-light);
    font-size: 18px;
}

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

.page-content h2 {
    font-size: 24px;
    color: var(--secondary);
    margin: 40px 0 16px;
}

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

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

.page-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

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

.services-full {
    padding: 80px 0;
}

.service-full-item {
    display: flex;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
    padding-bottom: 64px;
    border-bottom: 1px solid var(--border);
}

.service-full-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-full-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-full-image {
    flex: 0 0 45%;
    border-radius: var(--radius);
    overflow: hidden;
    background-color: #475569;
}

.service-full-image img {
    width: 100%;
    height: 280px;
}

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

.service-full-content h3 {
    font-size: 26px;
    color: var(--secondary);
    margin-bottom: 16px;
}

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

.service-full-content .price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-info {
    padding: 80px 0;
}

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

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

.contact-details h2 {
    font-size: 28px;
    color: var(--secondary);
    margin-bottom: 24px;
}

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

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-alt);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.contact-text h4 {
    font-size: 16px;
    color: var(--secondary);
    margin-bottom: 4px;
}

.contact-text p {
    color: var(--text-light);
    font-size: 15px;
}

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

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

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

.thanks-icon svg {
    width: 40px;
    height: 40px;
    color: #fff;
}

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

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

.about-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg) 100%);
}

.about-grid {
    display: flex;
    gap: 48px;
    align-items: center;
}

.about-image {
    flex: 0 0 45%;
    border-radius: var(--radius);
    overflow: hidden;
    background-color: #475569;
}

.about-image img {
    width: 100%;
    height: 400px;
}

.about-text h1 {
    font-size: 36px;
    color: var(--secondary);
    margin-bottom: 20px;
}

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

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

.team-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 48px;
    color: var(--secondary);
}

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

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

.team-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    background-color: #64748b;
}

.team-photo img {
    width: 100%;
    height: 100%;
}

.team-card h3 {
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 4px;
}

.team-card span {
    font-size: 14px;
    color: var(--primary);
    display: block;
    margin-bottom: 12px;
}

.team-card p {
    font-size: 14px;
    color: var(--text-light);
}

.references-section {
    padding: 40px 0;
    background: var(--bg-alt);
}

.references-section h3 {
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 16px;
}

.references-list {
    list-style: none;
    padding: 0;
}

.references-list li {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.references-list a {
    color: var(--primary);
    word-break: break-all;
}

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

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

    nav ul.active {
        display: flex;
    }

    .hero-editorial h1 {
        font-size: 32px;
    }

    .hero-image-container img {
        height: 280px;
    }

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

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

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

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

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

    .stats-grid {
        gap: 32px;
    }

    .stat-number {
        font-size: 36px;
    }

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