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

:root {
    --primary: #2a1a4d;
    --secondary: #d4af37;
    --accent: #8b4789;
    --dark: #1a0d2e;
    --light: #f8f5f0;
    --text: #333;
    --grey: #666;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--light);
    overflow-x: hidden;
}

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

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

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 13, 46, 0.95);
    padding: 15px 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary);
    text-decoration: none;
    letter-spacing: 1px;
}

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

nav a {
    color: var(--light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

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

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

.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 50%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 60px;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -200px;
}

.hero-content {
    text-align: center;
    color: var(--light);
    z-index: 1;
    padding: 40px 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-content .subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.9;
    font-style: italic;
}

.cta-primary {
    display: inline-block;
    background: var(--secondary);
    color: var(--dark);
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    border: 2px solid var(--primary);
    transition: all 0.3s;
}

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

.story-section {
    padding: 100px 20px;
    background: white;
}

.story-content {
    max-width: 680px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.9;
}

.story-content p {
    margin-bottom: 25px;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--primary);
    line-height: 1.3;
}

.story-content .highlight {
    background: linear-gradient(180deg, transparent 60%, rgba(212, 175, 55, 0.3) 60%);
    padding: 0 5px;
}

.split-section {
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.split-left,
.split-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.split-left {
    background: var(--primary);
    color: var(--light);
}

.split-right {
    background: var(--light);
}

.split-content h3 {
    font-size: 2rem;
    margin-bottom: 25px;
}

.split-content p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.split-content ul {
    list-style: none;
    margin-top: 30px;
}

.split-content ul li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
}

.split-content ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-size: 1.2rem;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(42, 26, 77, 0.1) 0%, rgba(139, 71, 137, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey);
    font-style: italic;
    border-radius: 8px;
}

.problem-section {
    background: var(--dark);
    color: var(--light);
    padding: 120px 20px;
    position: relative;
}

.problem-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--secondary);
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary);
}

.problem-card h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

.insight-section {
    padding: 100px 20px;
    background: white;
}

.insight-box {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: 60px;
    border-radius: 12px;
    color: var(--light);
    text-align: center;
}

.insight-box h3 {
    font-size: 2.2rem;
    margin-bottom: 30px;
}

.insight-box p {
    font-size: 1.2rem;
    line-height: 1.8;
}

.testimonial-section {
    background: var(--light);
    padding: 100px 20px;
}

.testimonial-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial {
    background: white;
    padding: 50px;
    margin-bottom: 40px;
    border-left: 5px solid var(--secondary);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: bold;
    color: var(--primary);
    font-size: 1.05rem;
}

.testimonial-role {
    color: var(--grey);
    font-size: 0.95rem;
}

.services-preview {
    padding: 120px 20px;
    background: white;
}

.services-preview h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 70px;
    color: var(--primary);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background: var(--light);
    padding: 45px 35px;
    border-radius: 8px;
    border-top: 4px solid var(--accent);
    transition: all 0.3s;
}

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

.service-card h4 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.service-card p {
    margin-bottom: 25px;
    color: var(--grey);
}

.service-price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--secondary);
    margin-bottom: 25px;
}

.service-price .period {
    font-size: 1rem;
    color: var(--grey);
    font-weight: normal;
}

.form-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    padding: 100px 20px;
    color: var(--light);
}

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

.form-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

.form-container .form-intro {
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.15rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 1.05rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.95);
}

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

.form-group select {
    cursor: pointer;
}

.form-submit {
    width: 100%;
    background: var(--secondary);
    color: var(--dark);
    padding: 18px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--secondary);
    color: var(--dark);
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: all 0.3s;
    display: none;
}

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

.sticky-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.urgency-banner {
    background: var(--accent);
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 500;
}

footer {
    background: var(--dark);
    color: var(--light);
    padding: 60px 20px 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h5 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

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

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

.footer-column a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 13, 46, 0.98);
    color: var(--light);
    padding: 25px;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
}

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

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

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

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

.cookie-reject {
    background: transparent;
    color: var(--light);
    border: 1px solid var(--light);
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

.about-hero {
    background: var(--primary);
    color: var(--light);
    padding: 120px 20px 80px;
    text-align: center;
}

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

.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 20px;
}

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

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.8;
}

.services-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--light);
    padding: 120px 20px 80px;
    text-align: center;
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 25px;
}

.services-list {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 20px;
}

.contact-hero {
    background: var(--dark);
    color: var(--light);
    padding: 120px 20px 80px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 25px;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
    padding: 80px 20px;
}

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

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

.contact-item p {
    font-size: 1.1rem;
    color: var(--grey);
}

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    text-align: center;
}

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

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

.thanks-content p {
    font-size: 1.3rem;
    margin-bottom: 25px;
    line-height: 1.8;
}

.thanks-icon {
    font-size: 5rem;
    color: var(--secondary);
    margin-bottom: 30px;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 20px;
}

.legal-page h1 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 40px;
}

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

.legal-page p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

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

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--dark);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    nav ul.active {
        display: flex;
    }

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

    .hero-content .subtitle {
        font-size: 1.1rem;
    }

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

    .split-left,
    .split-right {
        padding: 40px 20px;
    }

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

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

    .sticky-cta {
        bottom: 15px;
        right: 15px;
        left: 15px;
        text-align: center;
    }

    .insight-box {
        padding: 40px 30px;
    }

    .testimonial {
        padding: 30px 20px;
    }

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