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

:root {
    --primary: #1a3a5c;
    --secondary: #c9a227;
    --accent: #e85a4f;
    --dark: #1c1c1c;
    --light: #f8f6f2;
    --gray: #6b7280;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background: var(--light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

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

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

/* Navigation */
.nav-floating {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.nav-toggle {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 14px 18px;
    cursor: pointer;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    background: var(--secondary);
    transform: scale(1.05);
}

.nav-menu {
    position: absolute;
    top: 60px;
    right: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    padding: 20px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

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

.nav-menu a {
    display: block;
    padding: 12px 28px;
    color: var(--dark);
    font-weight: 500;
}

.nav-menu a:hover {
    background: var(--light);
    color: var(--primary);
}

/* Hero Editorial */
.hero-editorial {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 20px 60px;
    background: linear-gradient(135deg, var(--primary) 0%, #2d5a87 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-editorial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>') repeat;
    background-size: 100px;
}

.hero-editorial .brand {
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
    opacity: 0.8;
    position: relative;
}

.hero-editorial h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.2;
    max-width: 900px;
    margin-bottom: 30px;
    position: relative;
}

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

.btn-primary {
    display: inline-block;
    background: var(--secondary);
    color: var(--dark);
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.btn-primary:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-accent {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Article Content */
.article-section {
    padding: 80px 20px;
}

.article-section.bg-white {
    background: var(--white);
}

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

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

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

.article-intro {
    font-size: 1.35rem;
    line-height: 1.9;
    color: var(--gray);
}

.article-body p {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    color: #444;
}

.article-body h2 {
    font-size: 2rem;
    color: var(--primary);
    margin: 60px 0 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--secondary);
}

.article-body h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin: 40px 0 20px;
}

.inline-image {
    margin: 50px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.inline-image img {
    width: 100%;
    display: block;
}

.inline-image figcaption {
    padding: 15px 20px;
    background: var(--dark);
    color: var(--white);
    font-size: 0.9rem;
}

/* Quote Block */
.quote-block {
    background: linear-gradient(135deg, var(--primary) 0%, #2d5a87 100%);
    color: var(--white);
    padding: 50px 40px;
    margin: 60px 0;
    border-radius: 12px;
    position: relative;
}

.quote-block::before {
    content: '"';
    font-size: 8rem;
    position: absolute;
    top: -20px;
    left: 20px;
    opacity: 0.15;
    font-family: Georgia, serif;
}

.quote-block p {
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.7;
    position: relative;
}

.quote-block cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    opacity: 0.8;
}

/* CTA Inline */
.cta-inline {
    background: var(--light);
    padding: 40px;
    margin: 50px 0;
    border-radius: 12px;
    text-align: center;
    border-left: 5px solid var(--secondary);
}

.cta-inline h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

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

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

.service-card {
    flex: 1 1 300px;
    background: var(--white);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 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: 0 20px 60px rgba(0,0,0,0.12);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, #2d5a87 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

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

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

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

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

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

/* Testimonials */
.testimonial-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    flex: 1 1 350px;
    background: var(--white);
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: var(--secondary);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    right: 25px;
    font-family: Georgia, serif;
}

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

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

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

.testimonial-name {
    font-weight: 600;
    color: var(--dark);
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--gray);
}

/* Form Section */
.form-section {
    padding: 100px 20px;
    background: var(--dark);
    color: var(--white);
}

.form-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

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

.form-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.form-content p {
    opacity: 0.8;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.form-container {
    flex: 1 1 400px;
    background: var(--white);
    padding: 45px;
    border-radius: 16px;
    color: var(--dark);
}

.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 #e5e5e5;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(26,58,92,0.1);
}

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

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

.form-submit:hover {
    background: var(--secondary);
    color: var(--dark);
}

/* Stats Section */
.stats-section {
    padding: 80px 20px;
    background: var(--primary);
    color: var(--white);
}

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

.stat-item {
    text-align: center;
    flex: 1 1 200px;
}

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

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
    margin-top: 10px;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 15px 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.sticky-cta p {
    font-weight: 500;
    color: var(--dark);
}

/* Footer */
.footer {
    background: #111;
    color: var(--white);
    padding: 80px 20px 30px;
}

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

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

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

.footer-col a {
    display: block;
    padding: 8px 0;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-col a:hover {
    opacity: 1;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    background: var(--white);
    padding: 25px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    z-index: 10000;
    display: none;
}

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

.cookie-banner h4 {
    margin-bottom: 10px;
    color: var(--dark);
}

.cookie-banner p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 20px;
}

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

.cookie-accept {
    background: var(--primary);
    color: var(--white);
    padding: 10px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
}

.cookie-reject {
    background: transparent;
    color: var(--gray);
    padding: 10px 24px;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
}

/* Thanks Page */
.thanks-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, #2d5a87 100%);
    color: var(--white);
}

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

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

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

.thanks-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 500px;
    margin-bottom: 30px;
}

/* About Page */
.about-hero {
    padding: 150px 20px 80px;
    background: linear-gradient(135deg, var(--primary) 0%, #2d5a87 100%);
    color: var(--white);
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-content {
    padding: 80px 20px;
}

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

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

.about-image {
    flex: 1 1 400px;
}

.about-image img {
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

/* Contact Page */
.contact-hero {
    padding: 150px 20px 80px;
    background: var(--dark);
    color: var(--white);
    text-align: center;
}

.contact-content {
    padding: 80px 20px;
}

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

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

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

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

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

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

.contact-item p {
    color: var(--gray);
}

/* Legal Pages */
.legal-hero {
    padding: 150px 20px 60px;
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

.legal-hero h1 {
    font-size: 2.5rem;
}

.legal-content {
    padding: 60px 20px;
}

.legal-content h2 {
    font-size: 1.5rem;
    color: var(--primary);
    margin: 40px 0 15px;
}

.legal-content p,
.legal-content li {
    color: #555;
    margin-bottom: 15px;
}

.legal-content ul {
    padding-left: 25px;
    margin-bottom: 20px;
}

/* Urgency Banner */
.urgency-banner {
    background: var(--accent);
    color: var(--white);
    padding: 15px 20px;
    text-align: center;
    font-weight: 500;
}

/* Problem Section */
.problem-section {
    padding: 80px 20px;
    background: #fff5f5;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.problem-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

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

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

/* Benefits Section */
.benefits-section {
    padding: 100px 20px;
    background: var(--white);
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.benefit-item {
    flex: 1 1 280px;
    text-align: center;
    padding: 30px;
}

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

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

.benefit-item h3 {
    margin-bottom: 15px;
    color: var(--dark);
}

.benefit-item p {
    color: var(--gray);
}

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

    .form-wrapper {
        flex-direction: column;
    }

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

    .stats-grid {
        flex-direction: column;
        gap: 30px;
    }

    .sticky-cta {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
}
