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

:root {
    --primary-color: #1a1a1a;
    --accent-color: #d4a574;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --bg-light: #f8f8f8;
    --bg-dark: #1a1a1a;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    font-size: 16px;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

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

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

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

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--white);
    display: flex;
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 30px;
    transition: var(--transition);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
}

.nav-menu.active {
    right: 0;
}

.nav-menu a {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

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

.hero-visual {
    margin-top: 80px;
    position: relative;
    height: 85vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
    color: var(--white);
}

.hero-title {
    font-size: clamp(32px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
    max-width: 900px;
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 28px);
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-hero {
    display: inline-block;
    padding: 18px 45px;
    background: var(--accent-color);
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
}

.cta-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.4);
}

.intro-hook {
    padding: 80px 20px;
    background: var(--white);
}

.intro-hook h2 {
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.3;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.intro-hook p {
    font-size: 19px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.visual-break {
    padding: 0;
    overflow: hidden;
}

.image-grid-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.grid-item {
    overflow: hidden;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.grid-item.large {
    height: 400px;
}

.grid-item.small {
    height: 250px;
}

.grid-item img:hover {
    transform: scale(1.05);
}

.problem-amplification {
    padding: 100px 20px;
    background: var(--bg-light);
}

.split-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.content-text {
    flex: 1;
}

.content-text h2 {
    font-size: clamp(30px, 4vw, 44px);
    margin-bottom: 25px;
    color: var(--primary-color);
}

.content-text p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.problem-list {
    margin: 30px 0;
    padding-left: 0;
}

.problem-list li {
    font-size: 17px;
    padding: 12px 0 12px 30px;
    position: relative;
    color: var(--text-dark);
    line-height: 1.6;
}

.problem-list li:before {
    content: "×";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-size: 24px;
    font-weight: bold;
}

.emphasis {
    font-size: 20px;
    font-weight: 600;
    color: var(--accent-color);
    margin-top: 30px;
}

.content-image {
    flex: 1;
    width: 100%;
}

.content-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.storytelling-section {
    padding: 100px 20px;
    background: var(--white);
}

.storytelling-section h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 35px;
    color: var(--primary-color);
}

.storytelling-section p {
    font-size: 19px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 25px;
}

.storytelling-section em {
    font-style: italic;
    color: var(--primary-color);
}

.testimonial-inline {
    margin: 40px 0;
    padding: 30px 40px;
    background: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    font-size: 21px;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-dark);
}

.visual-statement {
    position: relative;
    padding: 0;
}

.full-width-image {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.full-width-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 50px 30px 30px;
    color: var(--white);
}

.image-caption p {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.insight-reveal {
    padding: 100px 20px;
    background: var(--primary-color);
    color: var(--white);
}

.insight-reveal h2 {
    font-size: clamp(32px, 4vw, 48px);
    text-align: center;
    margin-bottom: 60px;
    color: var(--white);
}

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

.insight-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 35px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.insight-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.insight-card p {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.trust-builder {
    padding: 100px 20px;
    background: var(--white);
}

.trust-builder h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 35px;
    color: var(--primary-color);
    text-align: center;
}

.trust-builder p {
    font-size: 19px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 25px;
    text-align: center;
}

.social-proof {
    padding: 100px 20px;
    background: var(--bg-light);
}

.social-proof h2 {
    font-size: clamp(30px, 4vw, 44px);
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 500;
}

.benefits-reveal {
    padding: 100px 20px;
    background: var(--white);
}

.benefits-reveal h2 {
    font-size: clamp(32px, 4vw, 48px);
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.benefits-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.benefit-major {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
}

.benefit-major img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.benefit-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.benefit-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

.benefit-minor {
    padding: 30px;
    border: 2px solid var(--bg-light);
    border-radius: 8px;
}

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

.benefit-minor p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
}

.cta-section-mid {
    padding: 80px 20px;
    background: var(--accent-color);
    text-align: center;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: clamp(30px, 4vw, 44px);
    color: var(--white);
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 19px;
    color: var(--white);
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.how-it-works {
    padding: 100px 20px;
    background: var(--white);
}

.how-it-works h2 {
    font-size: clamp(32px, 4vw, 48px);
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.steps-horizontal {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: 12px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--white);
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.step p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
}

.pricing-reveal {
    padding: 100px 20px;
    background: var(--bg-light);
}

.pricing-reveal h2 {
    font-size: clamp(32px, 4vw, 48px);
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.pricing-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.pricing-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
}

.pricing-card.featured {
    border: 3px solid var(--accent-color);
    transform: scale(1);
}

.badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--accent-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.price {
    font-size: 42px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.pricing-features {
    margin: 30px 0;
}

.pricing-features li {
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-dark);
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 25px;
}

.pricing-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.select-service {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.select-service:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.urgency-element {
    padding: 80px 20px;
    background: var(--primary-color);
    color: var(--white);
}

.urgency-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 12px;
    border: 2px solid var(--accent-color);
}

.urgency-box h2 {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 20px;
    color: var(--white);
}

.urgency-box p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.urgency-box ul {
    margin-top: 25px;
}

.urgency-box li {
    padding: 10px 0 10px 25px;
    font-size: 17px;
    position: relative;
}

.urgency-box li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.final-cta {
    padding: 100px 20px;
    background: var(--white);
}

.final-cta h2 {
    font-size: clamp(32px, 4vw, 48px);
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.final-cta > p {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.lead-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

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

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

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

.checkbox-group label {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    font-size: 14px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
}

.checkbox-group a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cta-submit {
    width: 100%;
    padding: 18px;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 19px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.cta-submit:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.guarantee-section h2 {
    font-size: clamp(32px, 4vw, 48px);
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.guarantee-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.guarantee-item {
    background: var(--white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.guarantee-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.guarantee-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
}

.faq-section {
    padding: 100px 20px;
    background: var(--white);
}

.faq-section h2 {
    font-size: clamp(32px, 4vw, 48px);
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    padding: 30px;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
}

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

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 20px;
    color: var(--white);
}

.footer-col p,
.footer-col li {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--accent-color);
    padding: 15px 20px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
    z-index: 999;
    display: none;
}

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

.sticky-button {
    display: block;
    text-align: center;
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    padding: 12px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 25px 20px;
    z-index: 10000;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.2);
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.cookie-content p {
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.cookie-btn.accept:hover {
    background: #c89460;
}

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

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

@media (min-width: 768px) {
    .nav-menu {
        position: static;
        flex-direction: row;
        padding: 0;
        width: auto;
        height: auto;
        background: transparent;
        box-shadow: none;
        gap: 35px;
    }

    .nav-menu a {
        font-size: 16px;
        border: none;
        padding: 0;
    }

    .hamburger {
        display: none;
    }

    .image-grid-asymmetric {
        flex-direction: row;
    }

    .grid-item.large {
        flex: 2;
        height: 500px;
    }

    .grid-item.small {
        flex: 1;
        height: 500px;
    }

    .split-content {
        flex-direction: row;
        gap: 60px;
    }

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

    .insight-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .insight-card {
        flex: 1;
        min-width: calc(33.333% - 30px);
    }

    .testimonials-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial-card {
        flex: 1;
        min-width: calc(33.333% - 20px);
    }

    .steps-horizontal {
        flex-direction: row;
    }

    .step {
        flex: 1;
    }

    .pricing-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .pricing-card {
        flex: 1;
        min-width: calc(50% - 15px);
    }

    .guarantee-grid {
        flex-direction: row;
    }

    .guarantee-item {
        flex: 1;
    }

    .form-row {
        flex-direction: row;
    }

    .footer-grid {
        flex-direction: row;
    }

    .footer-col {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
        flex: 1;
    }

    .benefit-major {
        flex-direction: row;
    }

    .benefit-major img {
        width: 50%;
        height: 400px;
    }

    .benefit-content {
        flex: 1;
    }

    .full-width-image {
        height: 600px;
    }
}

@media (min-width: 1024px) {
    .pricing-card {
        min-width: calc(33.333% - 20px);
    }

    .sticky-cta {
        display: block;
    }
}
