:root {
    --primary: #1a2e4a;
    --secondary: #c9a227;
    --accent: #e85d4c;
    --light: #f8f6f2;
    --dark: #0d1821;
    --text: #2c3e50;
    --muted: #7a8b99;
    --white: #ffffff;
    --shadow: 0 4px 24px rgba(26, 46, 74, 0.10);
    --shadow-lg: 0 12px 48px rgba(26, 46, 74, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
}

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

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

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

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

.narrow {
    max-width: 760px;
    margin: 0 auto;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(26, 46, 74, 0.08);
}

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

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

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

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 4px 0;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

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

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

/* Hero Section - Editorial Style */
.hero-editorial {
    padding: 160px 24px 80px;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero-editorial::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(201, 162, 39, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-label {
    display: inline-block;
    padding: 8px 20px;
    background: var(--secondary);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 30px;
    margin-bottom: 28px;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1.15;
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--secondary);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(201, 162, 39, 0.35);
}

.btn-primary:hover {
    background: #b8922a;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(201, 162, 39, 0.45);
}

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

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

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

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

/* Article Sections */
.article-section {
    padding: 80px 24px;
}

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

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

.article-section.dark h2,
.article-section.dark h3 {
    color: var(--white);
}

.article-section.dark p {
    color: rgba(255, 255, 255, 0.85);
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Editorial Content Blocks */
.editorial-block {
    max-width: 720px;
    margin: 0 auto;
}

.editorial-block p {
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.editorial-block p.lead {
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 500;
    border-left: 4px solid var(--secondary);
    padding-left: 24px;
    margin: 40px 0;
}

.editorial-image {
    margin: 48px auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.editorial-image img {
    width: 100%;
    height: auto;
}

.editorial-image figcaption {
    padding: 16px 20px;
    background: var(--light);
    font-size: 0.9rem;
    color: var(--muted);
    text-align: center;
}

/* Inline CTA */
.inline-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #243d5c 100%);
    padding: 48px 40px;
    border-radius: 16px;
    text-align: center;
    margin: 56px auto;
    max-width: 680px;
}

.inline-cta h3 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 16px;
}

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

/* Services Cards */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    flex: 1 1 340px;
    max-width: 380px;
    background: var(--white);
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--secondary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--secondary) 0%, #dab83c 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

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

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

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

.service-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(26, 46, 74, 0.1);
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.price-unit {
    font-size: 0.9rem;
    color: var(--muted);
}

/* About Section */
.about-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-content {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(26, 46, 74, 0.1);
}

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

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

.stat-label {
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 6px;
}

/* Testimonials */
.testimonials-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    padding: 36px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: var(--secondary);
    opacity: 0.15;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

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

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
}

.testimonial-info h4 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 2px;
}

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

/* Contact Section */
.contact-grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-form-wrapper {
    flex: 1.2;
    background: var(--white);
    border-radius: 20px;
    padding: 48px;
    box-shadow: var(--shadow-lg);
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-icon {
    width: 52px;
    height: 52px;
    background: var(--light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.contact-details h4 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 6px;
}

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

/* Form Styles */
.form-group {
    margin-bottom: 24px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(26, 46, 74, 0.12);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.15);
}

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

.form-submit {
    width: 100%;
    margin-top: 8px;
}

/* Footer */
.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 72px 24px 32px;
}

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

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

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

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

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

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

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

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

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

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

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

.cookie-text {
    flex: 1;
}

.cookie-text p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.cookie-btn {
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

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

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

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

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sticky-cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 6px 24px rgba(232, 93, 76, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #d14d3d;
    transform: scale(1.05);
    color: var(--white);
}

/* Thanks Page */
.thanks-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 24px;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

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

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

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

.thanks-content p {
    font-size: 1.15rem;
    color: var(--muted);
    margin-bottom: 36px;
    line-height: 1.8;
}

/* Page Header */
.page-header {
    padding: 140px 24px 60px;
    background: linear-gradient(135deg, var(--primary) 0%, #243d5c 100%);
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 16px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Legal Pages */
.legal-content {
    padding: 80px 24px;
}

.legal-content .narrow {
    max-width: 800px;
}

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

.legal-content h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin: 32px 0 16px;
}

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

.legal-content ul {
    margin: 20px 0 20px 24px;
}

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

/* Process Section */
.process-timeline {
    max-width: 700px;
    margin: 0 auto;
}

.process-item {
    display: flex;
    gap: 28px;
    margin-bottom: 40px;
    position: relative;
}

.process-number {
    width: 56px;
    height: 56px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.process-item:not(:last-child) .process-number::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 60px;
    background: rgba(201, 162, 39, 0.3);
}

.process-content h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.process-content p {
    color: var(--muted);
}

/* FAQ Section */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(26, 46, 74, 0.1);
}

.faq-question {
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--secondary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--muted);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* Responsive */
@media (max-width: 992px) {
    .about-split,
    .contact-grid {
        flex-direction: column;
    }

    .about-image {
        order: -1;
    }

    .services-grid {
        gap: 24px;
    }

    .service-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle {
        display: block;
    }

    .hero-editorial {
        padding: 120px 24px 60px;
    }

    .article-section {
        padding: 60px 24px;
    }

    .contact-form-wrapper {
        padding: 32px 24px;
    }

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

    .stat-item {
        flex: 1 1 45%;
    }

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

    .footer-grid {
        gap: 32px;
    }

    .footer-col {
        min-width: 100%;
    }

    .inline-cta {
        padding: 36px 24px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

    .btn {
        padding: 14px 28px;
        width: 100%;
        justify-content: center;
    }

    .sticky-cta {
        right: 16px;
        bottom: 90px;
    }

    .sticky-cta-btn {
        padding: 14px 20px;
        font-size: 0.9rem;
    }
}
