:root {
    --primary: #1a3a5c;
    --secondary: #e67e22;
    --accent: #2c5282;
    --light: #f8f9fa;
    --dark: #1a202c;
    --gray: #718096;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --radius: 8px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background: var(--white);
    font-size: 16px;
}

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

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

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

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

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

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 1000;
    box-shadow: var(--shadow);
}

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

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

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

nav {
    display: flex;
    align-items: center;
}

nav a {
    margin-left: 30px;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
}

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

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

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Editorial */
.hero-editorial {
    padding: 160px 20px 100px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    text-align: center;
}

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

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

.hero-image {
    max-width: 800px;
    margin: 40px auto 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background: #d35400;
    color: var(--white);
    transform: translateY(-2px);
}

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

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

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

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

/* Editorial Section */
.editorial-section {
    padding: 80px 20px;
}

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

.editorial-section h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 30px;
    text-align: center;
}

.editorial-section h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin: 40px 0 20px;
}

.editorial-section p {
    margin-bottom: 20px;
    color: var(--gray);
}

.editorial-section .highlight {
    background: linear-gradient(to right, rgba(230,126,34,0.1), transparent);
    padding: 25px 30px;
    border-left: 4px solid var(--secondary);
    margin: 30px 0;
}

.editorial-section .highlight p {
    color: var(--dark);
    font-style: italic;
    margin: 0;
}

/* Inline Image */
.inline-image {
    margin: 40px 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.image-caption {
    font-size: 0.85rem;
    color: var(--gray);
    text-align: center;
    padding: 12px;
    background: var(--light);
}

/* Services Cards */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    flex: 1 1 300px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 35px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.service-card .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-card .icon svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

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

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

.service-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.service-card .price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gray);
}

/* Testimonials */
.testimonial-block {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin: 30px 0;
    position: relative;
}

.testimonial-block::before {
    content: '"';
    font-size: 80px;
    color: var(--secondary);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
}

.testimonial-block p {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 20px;
    padding-left: 40px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    padding-left: 40px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
}

.author-info strong {
    display: block;
    color: var(--dark);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--gray);
}

/* Stats */
.stats-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    padding: 60px 20px;
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

.stat-item {
    flex: 1 1 150px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-top: 5px;
}

/* Form Section */
.form-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
}

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

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

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

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

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

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

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

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

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

/* CTA Section */
.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--secondary) 0%, #d35400 100%);
    color: var(--white);
    text-align: center;
}

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

.cta-section p {
    font-size: 1.15rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto 35px;
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 20px 30px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

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

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

.footer-col a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

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

.footer-col p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 50px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* Sticky CTA */
.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); }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

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

.cookie-text {
    flex: 1 1 400px;
    font-size: 0.95rem;
}

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

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

.cookie-btn {
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

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

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

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

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

.hidden {
    display: none !important;
}

/* Thanks Page */
.thanks-hero {
    padding: 180px 20px 100px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
}

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

.thanks-hero .checkmark svg {
    width: 50px;
    height: 50px;
    fill: var(--white);
}

.thanks-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.thanks-hero p {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto;
}

/* Page Headers */
.page-header {
    padding: 140px 20px 60px;
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

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

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

/* Content Page */
.content-page {
    padding: 60px 20px;
}

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

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

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

.content-page ul {
    margin: 15px 0 15px 25px;
    color: var(--gray);
}

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

/* About Page Specific */
.about-intro {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    padding: 60px 0;
}

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

.about-intro .image {
    flex: 1 1 300px;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    flex: 1 1 250px;
    text-align: center;
    padding: 30px;
    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;
    color: var(--white);
    font-size: 2rem;
    font-weight: 600;
}

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

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

/* Contact Specific */
.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    padding: 60px 0;
}

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

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

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

.contact-item .icon-box {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

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

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

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

/* Features List */
.features-list {
    margin: 40px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    padding: 25px 0;
    border-bottom: 1px solid #e2e8f0;
}

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

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary), #d35400);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    flex-shrink: 0;
}

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

.feature-content h4 {
    color: var(--dark);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.feature-content p {
    color: var(--gray);
    margin: 0;
    font-size: 0.95rem;
}

/* Process Steps */
.process-steps {
    margin: 50px 0;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}

.process-step::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 60px;
    bottom: -40px;
    width: 2px;
    background: #e2e8f0;
}

.process-step:last-child::before {
    display: none;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 25px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-content h4 {
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.step-content p {
    color: var(--gray);
    margin: 0;
}

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

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

    nav.active {
        display: flex;
    }

    nav a {
        margin: 10px 0;
    }

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

    .stats-row {
        gap: 30px;
    }

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

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

    .footer-grid {
        gap: 30px;
    }

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

    .sticky-cta {
        bottom: 80px;
    }

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

    .cta-section {
        padding: 60px 20px;
    }

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

@media (max-width: 480px) {
    .hero-editorial {
        padding: 130px 15px 70px;
    }

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

    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .service-card {
        padding: 25px;
    }

    .testimonial-block {
        padding: 25px;
    }

    .testimonial-block p {
        padding-left: 0;
    }

    .testimonial-author {
        padding-left: 0;
    }
}
