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

:root {
    --primary: #8B2635;
    --secondary: #2C3E50;
    --accent: #E74C3C;
    --dark: #1a1a2e;
    --light: #f8f9fa;
    --text: #2d3436;
    --text-light: #636e72;
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --gradient-accent: linear-gradient(135deg, #8B2635 0%, #E74C3C 100%);
}

html {
    scroll-behavior: smooth;
}

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

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

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: -1px;
}

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

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

.nav-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

/* Hero Editorial */
.hero-editorial {
    min-height: 100vh;
    background: var(--gradient-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 20px 80px;
    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(139,38,53,0.1)" stroke-width="0.5"/></svg>');
    background-size: 200px;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 8px 20px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 30px;
    max-width: 900px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-meta {
    display: flex;
    gap: 30px;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

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

.btn-primary {
    background: var(--gradient-accent);
    color: #fff;
    border-radius: 4px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139,38,53,0.3);
}

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

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

.btn-text {
    background: none;
    color: var(--accent);
    padding: 10px 0;
    border-bottom: 2px solid transparent;
}

.btn-text:hover {
    border-bottom-color: var(--accent);
}

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

.article-section.dark {
    background: var(--dark);
    color: #fff;
}

.article-section.accent-bg {
    background: var(--primary);
    color: #fff;
}

.article-section.light-gray {
    background: #f0f2f5;
}

.article-lead {
    font-size: 1.4rem;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 40px;
}

.article-lead.light {
    color: rgba(255,255,255,0.85);
}

.article-text {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 25px;
}

.article-heading {
    font-size: 2.2rem;
    margin-bottom: 30px;
    line-height: 1.3;
}

.article-subheading {
    font-size: 1.6rem;
    margin: 40px 0 20px;
    line-height: 1.4;
}

/* Inline Image */
.inline-image {
    margin: 50px 0;
    position: relative;
}

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

.inline-image-wide {
    margin-left: -100px;
    margin-right: -100px;
    max-width: calc(100% + 200px);
}

.image-caption {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 15px;
    font-style: italic;
}

/* Quote Block */
.quote-block {
    border-left: 4px solid var(--accent);
    padding: 30px 40px;
    margin: 50px 0;
    background: rgba(139,38,53,0.05);
}

.quote-block.center {
    border: none;
    text-align: center;
    background: none;
    padding: 60px 20px;
}

.quote-text {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--secondary);
}

.quote-author {
    margin-top: 20px;
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Stats Row */
.stats-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    padding: 60px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin: 50px 0;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

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

/* Testimonial */
.testimonial-inline {
    background: #fff;
    padding: 40px;
    margin: 50px 0;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
}

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

.testimonial-content {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

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

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

.testimonial-name {
    font-weight: 600;
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* CTA Inline */
.cta-inline {
    background: var(--gradient-accent);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin: 50px 0;
}

.cta-inline h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.cta-inline .btn {
    background: #fff;
    color: var(--primary);
}

.cta-inline .btn:hover {
    background: var(--dark);
    color: #fff;
}

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

.service-card {
    flex: 1 1 300px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.service-image {
    height: 200px;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.service-image svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    opacity: 0.3;
}

.service-content {
    padding: 30px;
}

.service-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

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

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

.form-wrapper {
    background: #fff;
    border-radius: 16px;
    padding: 60px;
    max-width: 700px;
    margin: 0 auto;
}

.form-title {
    font-size: 2rem;
    margin-bottom: 15px;
    text-align: center;
}

.form-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: inherit;
}

.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 {
    width: 100%;
    padding: 18px;
    background: var(--gradient-accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139,38,53,0.3);
}

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

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

.sticky-cta p {
    color: #fff;
    font-size: 0.95rem;
}

.sticky-cta .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
}

/* Benefits List */
.benefits-list {
    list-style: none;
    margin: 40px 0;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.benefits-list li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 30px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    font-size: 0.9rem;
}

/* Urgency Banner */
.urgency-banner {
    background: var(--accent);
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 1.1rem;
}

.urgency-banner strong {
    font-weight: 700;
}

/* Footer */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    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 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

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

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

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

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

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

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

.cookie-banner h4 {
    margin-bottom: 10px;
}

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

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

.cookie-buttons .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
}

/* Thanks Page */
.thanks-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    background: var(--gradient-dark);
}

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

.thanks-icon svg {
    width: 50px;
    height: 50px;
    fill: #fff;
}

.thanks-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.thanks-text {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    max-width: 500px;
    margin-bottom: 30px;
}

.thanks-service {
    background: rgba(255,255,255,0.1);
    padding: 20px 40px;
    border-radius: 8px;
    color: #fff;
    margin-bottom: 40px;
}

/* Policy Pages */
.policy-page {
    padding: 120px 20px 80px;
}

.policy-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.policy-content h2 {
    font-size: 1.5rem;
    margin: 40px 0 20px;
}

.policy-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.policy-content ul {
    margin: 20px 0 20px 30px;
}

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

/* About Page */
.about-hero {
    background: var(--gradient-dark);
    padding: 150px 20px 100px;
    text-align: center;
}

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

.about-hero p {
    color: rgba(255,255,255,0.7);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Page */
.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 50px;
}

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

.contact-item {
    margin-bottom: 30px;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--secondary);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

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

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-meta {
        flex-direction: column;
        gap: 10px;
    }

    .inline-image-wide {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }

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

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

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

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

    .cookie-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container,
    .narrow-container {
        padding: 0 15px;
    }

    .article-section {
        padding: 50px 15px;
    }

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