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

:root {
    --primary: #1a3a5c;
    --secondary: #c9a227;
    --accent: #e85a4f;
    --dark: #0d1b2a;
    --light: #f8f9fa;
    --gray: #6c757d;
    --white: #ffffff;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
}

html {
    scroll-behavior: smooth;
}

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

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

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

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

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

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

/* Navigation */
.nav-wrapper {
    background: var(--white);
    box-shadow: var(--shadow);
    position: relative;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    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 {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--dark);
    position: relative;
}

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

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

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s ease;
}

/* Hero Editorial */
.hero-editorial {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 100px 20px 80px;
    position: relative;
    overflow: hidden;
}

.hero-editorial::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="80" cy="20" r="40" fill="rgba(201,162,39,0.1)"/><circle cx="20" cy="80" r="30" fill="rgba(232,90,79,0.08)"/></svg>');
    background-size: cover;
}

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

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

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

.hero-content .lead {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 36px;
    line-height: 1.8;
}

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

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

.btn-primary:hover {
    background: #d4ac2b;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,162,39,0.4);
    color: var(--dark);
}

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

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

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

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

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

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

.btn-lg {
    padding: 18px 42px;
    font-size: 1.1rem;
}

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

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

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

.story-text {
    max-width: 680px;
    margin: 0 auto;
}

.story-text h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--primary);
}

.dark-bg .story-text h2 {
    color: var(--secondary);
}

.story-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.story-text .highlight {
    background: linear-gradient(120deg, rgba(201,162,39,0.2) 0%, rgba(201,162,39,0.2) 100%);
    padding: 2px 6px;
}

.story-quote {
    border-left: 4px solid var(--secondary);
    padding: 24px 32px;
    margin: 40px 0;
    background: rgba(201,162,39,0.05);
    font-style: italic;
    font-size: 1.2rem;
}

.dark-bg .story-quote {
    background: rgba(255,255,255,0.05);
}

/* Inline Image */
.story-image {
    margin: 48px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.story-image-wide {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.inline-cta h3 {
    margin-bottom: 16px;
    font-size: 1.4rem;
}

.inline-cta p {
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Split Section */
.split-section {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
}

.split-visual {
    flex: 1;
}

.split-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary);
}

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

.visual-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    border-radius: 16px;
    padding: 40px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.visual-box::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--secondary);
    opacity: 0.2;
    border-radius: 50%;
}

/* Services Cards */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

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

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

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

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

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

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

/* Testimonials */
.testimonials-section {
    background: var(--light);
    padding: 80px 20px;
}

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

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    border-radius: 12px;
    padding: 32px;
    flex: 1 1 300px;
    max-width: 460px;
    box-shadow: var(--shadow);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--dark);
    line-height: 1.8;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

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

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

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

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

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

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

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

.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 #e1e5eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 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%;
    padding: 16px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: var(--dark);
    transform: translateY(-2px);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px 20px;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
    z-index: 90;
    display: none;
}

.sticky-cta.visible {
    display: block;
}

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

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

/* 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 40px;
}

.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 ul li {
    margin-bottom: 12px;
}

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    min-width: 280px;
}

.cookie-text p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

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

.cookie-btn {
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

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

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

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

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

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: var(--white);
    padding: 80px 20px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.4rem;
    margin-bottom: 16px;
}

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

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

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

.content-page h3 {
    font-size: 1.3rem;
    margin: 32px 0 12px;
    color: var(--dark);
}

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

.content-page ul,
.content-page ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

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

/* Contact Page */
.contact-grid {
    display: flex;
    gap: 60px;
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 24px;
    color: var(--primary);
}

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

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

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

.contact-detail h3 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--dark);
}

.contact-detail p {
    color: var(--gray);
    margin: 0;
}

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

.thanks-content {
    max-width: 560px;
}

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

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

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

.thanks-content p {
    color: var(--gray);
    margin-bottom: 24px;
    font-size: 1.1rem;
}

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

.problem-section h2 {
    color: var(--accent);
}

.problem-list {
    list-style: none;
    padding: 0;
    margin: 32px 0;
}

.problem-list li {
    padding: 16px 0 16px 40px;
    position: relative;
    border-bottom: 1px solid rgba(232,90,79,0.2);
    color: var(--dark);
    font-size: 1.05rem;
}

.problem-list li::before {
    content: '!';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

/* Benefits Section */
.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    margin-top: 48px;
}

.benefit-item {
    flex: 1 1 280px;
    max-width: 350px;
    text-align: center;
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

.benefit-item h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--dark);
}

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

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

/* About Page */
.about-hero {
    display: flex;
    gap: 60px;
    align-items: center;
    padding: 60px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.about-hero-content {
    flex: 1;
}

.about-hero-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.about-hero-visual {
    flex: 1;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    border-radius: 20px;
    padding: 60px 40px;
    color: var(--white);
    text-align: center;
}

.stat-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

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

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

.stat-label {
    font-size: 0.9rem;
    opacity: 0.85;
}

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

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

    .nav-toggle {
        display: flex;
    }

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

    .split-section {
        flex-direction: column;
        gap: 40px;
    }

    .split-section.reverse {
        flex-direction: column;
    }

    .contact-grid {
        flex-direction: column;
        gap: 40px;
    }

    .about-hero {
        flex-direction: column;
        gap: 40px;
    }

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

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

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

    .footer-grid {
        gap: 32px;
    }

    .footer-col {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.7rem;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .services-grid {
        padding: 40px 16px;
    }

    .service-card {
        padding: 28px 20px;
    }
}
