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

:root {
    --primary: #1a2f4b;
    --secondary: #c9a227;
    --accent: #e85d4c;
    --light: #f8f6f2;
    --dark: #0d1821;
    --text: #2c3e50;
    --muted: #6c757d;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text);
    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;
}

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

header {
    background: var(--primary);
    padding: 15px 0;
    position: relative;
    z-index: 100;
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

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

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.9;
}

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
}

.hero-editorial {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
    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(201,162,39,0.1)" stroke-width="0.5"/></svg>') repeat;
    background-size: 200px;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 0;
}

.hero-tag {
    display: inline-block;
    background: var(--secondary);
    color: var(--dark);
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.hero-editorial h1 {
    color: var(--white);
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 25px;
    max-width: 800px;
}

.hero-editorial .lead {
    color: rgba(255,255,255,0.85);
    font-size: 1.3rem;
    max-width: 600px;
    margin-bottom: 40px;
}

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

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

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

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

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

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

.btn-accent:hover {
    background: #d14a3a;
}

.section {
    padding: 80px 0;
}

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

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

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

.editorial-intro {
    padding: 100px 0 60px;
}

.drop-cap::first-letter {
    float: left;
    font-size: 4.5rem;
    line-height: 0.8;
    padding-right: 15px;
    padding-top: 8px;
    color: var(--primary);
    font-weight: 700;
}

.editorial-text {
    font-size: 1.15rem;
    margin-bottom: 25px;
}

.inline-image {
    margin: 50px 0;
    position: relative;
}

.inline-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: grayscale(30%);
}

.inline-image figcaption {
    font-size: 0.85rem;
    color: var(--muted);
    padding: 15px 0;
    font-style: italic;
    border-bottom: 1px solid #ddd;
}

.pull-quote {
    margin: 60px -100px;
    padding: 40px 60px;
    background: var(--primary);
    color: var(--white);
    font-size: 1.6rem;
    font-style: italic;
    line-height: 1.5;
    position: relative;
}

.pull-quote::before {
    content: '"';
    font-size: 6rem;
    position: absolute;
    top: -20px;
    left: 30px;
    color: var(--secondary);
    font-family: Georgia, serif;
}

.insight-box {
    background: linear-gradient(135deg, var(--secondary) 0%, #ddb52e 100%);
    padding: 50px;
    margin: 60px 0;
    color: var(--dark);
}

.insight-box h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.problem-section {
    background: #1c1c1c;
    padding: 100px 0;
}

.problem-section h2 {
    color: var(--accent);
    font-size: 2.4rem;
    margin-bottom: 40px;
    text-align: center;
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.problem-item {
    flex: 1 1 280px;
    max-width: 350px;
    background: rgba(255,255,255,0.05);
    padding: 35px;
    border-left: 4px solid var(--accent);
}

.problem-item h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.problem-item p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.trust-section {
    padding: 100px 0;
    background: var(--white);
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

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

.trust-visual {
    flex: 1 1 350px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.trust-stat {
    background: var(--light);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

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

.testimonial-flow {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.testimonial-item {
    background: var(--white);
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-content {
    flex: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 15px;
    color: var(--text);
}

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

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

.services-reveal {
    padding: 100px 0;
    background: var(--primary);
}

.services-reveal h2 {
    color: var(--white);
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.services-reveal .subtitle {
    color: rgba(255,255,255,0.7);
    text-align: center;
    margin-bottom: 60px;
    font-size: 1.1rem;
}

.service-card {
    background: var(--white);
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
}

.service-info {
    flex: 1 1 400px;
    padding: 40px;
}

.service-info h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

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

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--muted);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
}

.service-pricing {
    flex: 0 0 200px;
    background: var(--light);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

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

.price-tag small {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--muted);
    display: block;
}

.cta-inline {
    background: var(--secondary);
    padding: 50px;
    margin: 60px 0;
    text-align: center;
}

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

.cta-inline p {
    margin-bottom: 25px;
    color: var(--dark);
    opacity: 0.8;
}

.form-section {
    padding: 100px 0;
    background: var(--dark);
}

.form-section h2 {
    color: var(--white);
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 15px;
}

.form-section .subtitle {
    color: rgba(255,255,255,0.6);
    text-align: center;
    margin-bottom: 50px;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

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

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

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

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--accent);
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

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

.sticky-cta .btn {
    padding: 12px 30px;
    background: var(--white);
    color: var(--accent);
}

.urgency-banner {
    background: var(--accent);
    padding: 25px;
    text-align: center;
}

.urgency-banner p {
    color: var(--white);
    font-size: 1.1rem;
}

.urgency-banner strong {
    color: var(--secondary);
}

footer {
    background: var(--dark);
    padding: 60px 0 30px;
    color: rgba(255,255,255,0.7);
}

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

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 25px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    color: var(--white);
    font-size: 0.95rem;
}

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

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

.cookie-btn {
    padding: 12px 25px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
}

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

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

.page-header {
    background: var(--primary);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.page-header p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
}

.content-page {
    padding: 80px 0;
}

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

.content-page h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin: 30px 0 15px;
}

.content-page p {
    margin-bottom: 20px;
}

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

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

.about-feature {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin: 50px 0;
    align-items: center;
}

.about-feature-content {
    flex: 1 1 350px;
}

.about-feature-visual {
    flex: 1 1 300px;
    background: var(--light);
    padding: 40px;
    text-align: center;
}

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

.service-box {
    flex: 1 1 300px;
    background: var(--white);
    padding: 40px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.service-box:hover {
    transform: translateY(-5px);
}

.service-box h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-box .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 20px 0;
}

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

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

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

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

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

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

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

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

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

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

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

.mobile-nav a {
    color: var(--white);
    font-size: 1.5rem;
}

.close-nav {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
}

@media (max-width: 968px) {
    .hero-editorial h1 {
        font-size: 2.4rem;
    }

    .pull-quote {
        margin: 40px 0;
        padding: 30px;
        font-size: 1.3rem;
    }

    nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

    .service-pricing {
        flex: 1 1 auto;
    }
}

@media (max-width: 600px) {
    .hero-editorial h1 {
        font-size: 1.9rem;
    }

    .hero-editorial .lead {
        font-size: 1.1rem;
    }

    .section {
        padding: 50px 0;
    }

    .testimonial-item {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-avatar {
        margin: 0 auto;
    }

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

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

    .sticky-cta {
        flex-direction: column;
        gap: 10px;
        padding: 12px;
    }

    .sticky-cta p {
        font-size: 0.9rem;
    }
}
