:root {
    --primary: #1a5f7a;
    --primary-dark: #134b61;
    --secondary: #e8b86d;
    --accent: #c73e1d;
    --text: #2d3436;
    --text-light: #636e72;
    --bg: #fefefe;
    --bg-alt: #f8f6f3;
    --bg-dark: #1a1a2e;
    --white: #ffffff;
    --border: #dfe6e9;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --radius: 6px;
    --radius-lg: 12px;
    --transition: all 0.3s ease;
    --max-content: 720px;
    --max-wide: 1100px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 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: var(--transition);
}

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

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

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

/* Header */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: var(--bg-alt);
    padding: 8px 0;
    font-size: 13px;
    color: var(--text-light);
    text-align: center;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: var(--max-wide);
    margin: 0 auto;
}

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

.main-nav {
    display: flex;
    gap: 32px;
}

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

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

.main-nav a.active {
    color: var(--primary);
}

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

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

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

.hero-editorial .container {
    text-align: center;
}

.hero-tag {
    display: inline-block;
    background: var(--secondary);
    color: var(--text);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero-editorial h1 {
    font-size: 42px;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-editorial .lead {
    font-size: 20px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 32px;
}

/* Content Sections - Editorial */
.content-section {
    padding: 60px 0;
}

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

.content-section h2 {
    font-size: 32px;
    color: var(--text);
    margin-bottom: 24px;
    line-height: 1.3;
}

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

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

.content-section p.highlight {
    font-size: 19px;
    color: var(--primary-dark);
    border-left: 4px solid var(--secondary);
    padding-left: 20px;
    margin: 32px 0;
}

/* Inline Image */
.inline-image {
    margin: 40px -60px;
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

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

/* Services Grid */
.services-editorial {
    padding: 60px 0;
}

.service-card-editorial {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 24px;
    transition: var(--transition);
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.service-card-editorial:hover {
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

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

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

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

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

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

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

/* CTA Inline */
.cta-inline {
    background: var(--primary);
    color: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    margin: 48px 0;
    text-align: center;
}

.cta-inline h3 {
    color: var(--white);
    font-size: 26px;
    margin-bottom: 12px;
}

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

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

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

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

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

.btn-secondary:hover {
    background: #d9a85e;
    color: var(--text);
}

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

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

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

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

/* Form Styles */
.form-section {
    background: var(--bg-alt);
    padding: 60px 0;
}

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

.form-wrapper h2 {
    text-align: center;
    margin-bottom: 8px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 16px;
    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(--primary);
    box-shadow: 0 0 0 3px rgba(26,95,122,0.1);
}

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

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

.form-submit .btn {
    width: 100%;
    padding: 16px;
}

/* Testimonials */
.testimonial-editorial {
    background: var(--bg-alt);
    padding: 32px;
    border-radius: var(--radius-lg);
    margin: 40px 0;
    position: relative;
}

.testimonial-editorial::before {
    content: '"';
    font-size: 72px;
    color: var(--secondary);
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-editorial blockquote {
    font-size: 18px;
    font-style: italic;
    color: var(--text);
    padding-left: 40px;
    margin-bottom: 16px;
}

.testimonial-author {
    padding-left: 40px;
    font-size: 14px;
    color: var(--text-light);
}

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

/* Stats Row */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin: 40px 0;
}

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

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

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

/* About Page */
.about-intro {
    display: flex;
    gap: 48px;
    align-items: center;
    margin-bottom: 48px;
}

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

.about-intro-image {
    flex: 0 0 320px;
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-intro-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

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

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

.value-icon {
    width: 48px;
    height: 48px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.value-content h4 {
    font-size: 18px;
    margin-bottom: 6px;
}

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

/* Contact Page */
.contact-layout {
    display: flex;
    gap: 48px;
    margin-top: 40px;
}

.contact-info {
    flex: 0 0 320px;
}

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

.contact-info-item h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.contact-info-item p {
    color: var(--text);
    margin: 0;
    line-height: 1.6;
}

.contact-map {
    flex: 1;
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

/* Legal Pages */
.legal-content {
    padding: 60px 0;
}

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 16px;
}

.legal-content .last-updated {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 22px;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: 18px;
    margin-top: 28px;
    margin-bottom: 12px;
}

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

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

/* Footer */
.site-footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
    max-width: 280px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 16px;
    display: block;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
}

.footer-links h4 {
    color: var(--white);
    font-size: 15px;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

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

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255,255,255,0.5);
}

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

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

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

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

.cookie-text {
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

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

.cookie-btn.accept:hover {
    background: #d9a85e;
}

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

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

/* Thanks Page */
.thanks-section {
    padding: 120px 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #d4edda;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.thanks-icon svg {
    width: 40px;
    height: 40px;
    stroke: #28a745;
}

.thanks-section h1 {
    font-size: 36px;
    margin-bottom: 16px;
}

.thanks-section p {
    color: var(--text-light);
    font-size: 18px;
    max-width: 500px;
    margin: 0 auto 32px;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-editorial h1 {
        font-size: 32px;
    }

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

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

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

    .contact-info {
        flex: none;
    }

    .footer-main {
        flex-wrap: wrap;
    }

    .footer-brand {
        flex: 1 1 100%;
        max-width: none;
        margin-bottom: 24px;
    }

    .stats-row {
        gap: 32px;
    }

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

@media (max-width: 768px) {
    .header-main {
        padding: 12px 20px;
    }

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

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
    }

    .nav-toggle {
        display: block;
    }

    .hero-editorial {
        padding: 48px 0;
    }

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

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

    .content-section h2 {
        font-size: 26px;
    }

    .service-card-editorial {
        flex-direction: column;
    }

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

    .stats-row {
        flex-direction: column;
        gap: 24px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* Service Selection Cards */
.service-select-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.service-select-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    background: var(--white);
}

.service-select-option:hover {
    border-color: var(--primary);
}

.service-select-option.selected {
    border-color: var(--primary);
    background: rgba(26,95,122,0.05);
}

.service-select-option input {
    display: none;
}

.service-select-radio {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    transition: var(--transition);
}

.service-select-option.selected .service-select-radio {
    border-color: var(--primary);
}

.service-select-option.selected .service-select-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
}

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

.service-select-content strong {
    display: block;
    margin-bottom: 2px;
}

.service-select-content span {
    font-size: 14px;
    color: var(--text-light);
}

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

/* Disclaimer */
.disclaimer {
    background: #fff8e6;
    border-left: 4px solid var(--secondary);
    padding: 20px 24px;
    margin: 40px 0;
    font-size: 14px;
    color: var(--text);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.disclaimer strong {
    display: block;
    margin-bottom: 8px;
}
