:root {
    --color-primary: #1a1a2e;
    --color-secondary: #16213e;
    --color-accent: #e94560;
    --color-text: #2d2d2d;
    --color-text-light: #666;
    --color-bg: #ffffff;
    --color-bg-alt: #f8f9fa;
    --color-border: #e0e0e0;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-serif: Georgia, 'Times New Roman', serif;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-primary);
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
}

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

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: var(--transition);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-primary);
    color: white;
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
    font-size: 15px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

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

.btn-accept:hover {
    background-color: #d63851;
}

.btn-reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.btn-reject:hover {
    background-color: rgba(255,255,255,0.1);
}

.minimal-nav {
    position: sticky;
    top: 0;
    background-color: var(--color-bg);
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
}

.nav-brand {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: var(--color-text);
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
}

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

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition);
}

.editorial-container {
    max-width: 100%;
    margin: 0 auto;
}

.hero-editorial {
    position: relative;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--color-secondary);
    overflow: hidden;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 5%;
    max-width: 900px;
}

.hero-title {
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 700;
    color: white;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-lead {
    font-size: clamp(18px, 2vw, 24px);
    color: rgba(255,255,255,0.85);
    font-weight: 300;
    margin-bottom: 0;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.content-block {
    padding: 80px 5%;
}

.content-block.dark-bg {
    background-color: var(--color-primary);
}

.content-block.dark-bg * {
    color: white;
}

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

.section-heading {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 32px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.drop-cap::first-letter {
    font-size: 3.5em;
    font-weight: 700;
    float: left;
    line-height: 0.85;
    margin-right: 8px;
    margin-top: 4px;
    color: var(--color-accent);
}

.narrow-content p {
    margin-bottom: 24px;
    font-size: 19px;
    line-height: 1.8;
}

.inline-cta {
    margin: 48px 0;
    text-align: center;
}

.cta-link {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-accent);
    text-decoration: none;
    transition: var(--transition);
}

.cta-link:hover {
    opacity: 0.8;
}

.image-break {
    margin: 0;
    position: relative;
}

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

.image-break figcaption {
    text-align: center;
    font-style: italic;
    font-size: 15px;
    color: var(--color-text-light);
    padding: 16px 5%;
    background-color: var(--color-bg-alt);
}

.split-insight {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.insight-text {
    flex: 1;
}

.insight-text h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
}

.insight-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.insight-item strong {
    display: block;
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--color-accent);
}

.insight-image {
    flex: 1;
}

.insight-image img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.testimonial-inline {
    padding: 80px 5%;
    background-color: var(--color-bg-alt);
}

.testimonial-inline blockquote {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-inline p {
    font-size: 26px;
    font-style: italic;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 24px;
}

.testimonial-inline cite {
    font-size: 16px;
    font-style: normal;
    color: var(--color-text-light);
}

.services-preview {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-card {
    background-color: var(--color-bg-alt);
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid var(--color-accent);
}

.service-card h4 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--color-primary);
}

.service-card p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 16px;
}

.price-tag {
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    color: var(--color-accent);
    margin-top: 12px;
}

.cta-block {
    margin-top: 60px;
    text-align: center;
    padding: 48px;
    background-color: var(--color-secondary);
    border-radius: 8px;
}

.cta-block h3 {
    font-size: 32px;
    color: white;
    margin-bottom: 16px;
}

.cta-block p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
}

.form-section {
    padding: 100px 5%;
    background-color: var(--color-bg-alt);
}

.form-container {
    max-width: 680px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 48px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    font-size: 16px;
    font-family: var(--font-primary);
    border: 2px solid var(--color-border);
    border-radius: 4px;
    transition: var(--transition);
    background-color: white;
}

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

.btn-submit {
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    background-color: var(--color-accent);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 16px;
}

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

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    font-size: 18px;
    font-weight: 600;
    background-color: var(--color-accent);
    color: white;
    border-radius: 4px;
    transition: var(--transition);
}

.cta-button:hover {
    background-color: var(--color-primary);
    color: white;
}

.final-cta {
    padding: 120px 5%;
    background-color: var(--color-secondary);
    text-align: center;
}

.cta-content h2 {
    font-size: 48px;
    color: white;
    margin-bottom: 24px;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
}

.btn-primary-large {
    display: inline-block;
    padding: 18px 48px;
    font-size: 20px;
    font-weight: 700;
    background-color: var(--color-accent);
    color: white;
    border-radius: 4px;
    transition: var(--transition);
}

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

.site-footer {
    background-color: var(--color-primary);
    color: white;
    padding: 60px 5% 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: white;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
}

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

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

.footer-col ul li a {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-btn {
    display: inline-block;
    padding: 14px 28px;
    background-color: var(--color-accent);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(233,69,96,0.4);
    transition: var(--transition);
}

.sticky-btn:hover {
    background-color: var(--color-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233,69,96,0.5);
}

.page-header {
    padding: 100px 5% 60px;
    background-color: var(--color-bg-alt);
    text-align: center;
}

.page-header h1 {
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--color-primary);
}

.intro-text {
    font-size: 22px;
    line-height: 1.6;
    color: var(--color-text-light);
    max-width: 800px;
    margin: 0 auto;
}

.about-image {
    margin: 48px 0;
    border-radius: 8px;
    overflow: hidden;
}

.principles-grid {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.principle-card {
    padding: 32px;
    background-color: var(--color-bg-alt);
    border-radius: 8px;
    border-left: 4px solid var(--color-accent);
}

.principle-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--color-primary);
}

.principle-card p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--color-text);
}

.team-section {
    padding: 80px 5%;
    background-color: var(--color-bg-alt);
}

.cta-section {
    padding: 100px 5%;
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    color: var(--color-text-light);
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    background-color: var(--color-accent);
    color: white;
    border-radius: 4px;
    transition: var(--transition);
}

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

.services-detail {
    padding: 60px 5%;
}

.service-detail-block {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto 100px;
}

.service-detail-block.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-primary);
}

.service-lead {
    font-size: 20px;
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.service-includes h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--color-primary);
}

.service-includes ul {
    list-style: none;
    margin-bottom: 24px;
}

.service-includes ul li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
}

.service-includes ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
}

.service-duration {
    margin: 24px 0;
    font-size: 16px;
}

.service-price {
    margin-top: 24px;
}

.price-label {
    font-size: 16px;
    color: var(--color-text-light);
    margin-right: 12px;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-accent);
}

.service-image {
    flex: 1;
}

.service-image img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-section {
    padding: 80px 5%;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.info-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--color-primary);
}

.info-block p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-text);
}

.info-block a {
    color: var(--color-accent);
    font-weight: 600;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
    padding: 60px 5%;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #4caf50;
    color: white;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

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

.thanks-message {
    font-size: 20px;
    color: var(--color-text-light);
    margin-bottom: 40px;
}

.service-info {
    background-color: var(--color-bg-alt);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 18px;
}

.next-steps {
    text-align: left;
    margin: 48px 0;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 24px;
    text-align: center;
}

.next-steps ol {
    padding-left: 24px;
}

.next-steps ol li {
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: 4px;
    transition: var(--transition);
}

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

.legal-page {
    padding: 60px 5%;
}

.legal-update {
    font-size: 14px;
    color: var(--color-text-light);
    font-style: italic;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 48px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--color-primary);
}

.legal-section h3 {
    font-size: 22px;
    margin: 24px 0 12px;
    color: var(--color-primary);
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-section ul {
    margin: 16px 0 16px 24px;
}

.legal-section ul li {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-bg);
        flex-direction: column;
        gap: 0;
        padding: 20px 5%;
        border-bottom: 1px solid var(--color-border);
        display: none;
    }

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

    .nav-links a {
        padding: 12px 0;
        border-bottom: 1px solid var(--color-border);
    }

    .nav-toggle {
        display: flex;
    }

    .split-insight {
        flex-direction: column;
        gap: 40px;
        padding: 60px 5%;
    }

    .service-detail-block,
    .service-detail-block.reverse {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 60px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

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

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}
