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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-content {
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
    font-size: 14px;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: #fff;
    color: #000;
}

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

.cookie-reject {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

.hero-visual {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 10;
    width: 90%;
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.95;
}

.floating-nav {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 1000;
}

.nav-toggle {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    border: none;
    padding: 15px 20px;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.nav-toggle:hover {
    background: rgba(0, 0, 0, 0.95);
}

.nav-menu {
    position: absolute;
    top: 60px;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-width: 200px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.nav-menu.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 0;
    transition: opacity 0.3s ease;
}

.nav-menu a:hover {
    opacity: 0.7;
}

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

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

.container-full {
    width: 100%;
    padding: 80px 0;
}

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

.story-hook {
    background: #f9f9f9;
}

.opening-line {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
    color: #1a1a1a;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 25px;
    color: #3a3a3a;
}

.visual-break {
    width: 100%;
    overflow: hidden;
}

.break-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.insight-section {
    background: #fff;
}

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

.insight-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.3;
}

.insight-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.insight-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.problem-amplify {
    background: #1a1a1a;
    color: #fff;
}

.section-title-center {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 400;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.problem-icon {
    font-size: 28px;
    color: #ff6b6b;
    flex-shrink: 0;
}

.problem-item p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.cta-inline {
    text-align: center;
    padding: 60px 20px;
    background: #f5f5f5;
}

.cta-link-simple {
    font-size: 1.2rem;
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 2px solid #1a1a1a;
    padding-bottom: 5px;
    transition: opacity 0.3s ease;
}

.cta-link-simple:hover {
    opacity: 0.6;
}

.craftsmanship-reveal {
    background: #fff;
}

.craft-layout {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.craft-image {
    width: 100%;
    height: auto;
    display: block;
}

.craft-content h2 {
    font-size: 2.3rem;
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.3;
}

.craft-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.visual-spacer {
    width: 100%;
    overflow: hidden;
}

.visual-spacer img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.trust-builders {
    background: #fafafa;
}

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

.trust-card {
    padding: 30px;
    background: #fff;
    border-left: 4px solid #1a1a1a;
}

.trust-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.trust-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.testimonials-organic {
    background: #fff;
    padding: 100px 20px;
}

.testimonials-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 400;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-flow {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    padding: 40px;
    background: #f9f9f9;
    border-radius: 0;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
    color: #2a2a2a;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    pointer-events: all;
}

.sticky-cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.sticky-cta-button:hover {
    background: #333;
}

.benefits-stacked {
    background: #fff;
}

.section-title-offset {
    font-size: 2.4rem;
    margin-bottom: 50px;
    font-weight: 400;
    line-height: 1.3;
}

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

.benefit-row {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.benefit-number {
    font-size: 3rem;
    font-weight: 200;
    color: #ccc;
    flex-shrink: 0;
    width: 80px;
}

.benefit-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: 500;
}

.benefit-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.visual-transition {
    width: 100%;
    overflow: hidden;
}

.visual-transition img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.collection-preview {
    background: #f5f5f5;
}

.collection-heading {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 400;
    padding: 0 20px;
}

.collection-showcase {
    display: flex;
    flex-wrap: wrap;
}

.collection-item {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.collection-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.collection-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    color: #fff;
}

.collection-overlay h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 400;
}

.collection-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

.urgency-soft {
    background: #fff8e1;
    padding: 50px 20px;
}

.urgency-box {
    text-align: center;
}

.urgency-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #1a1a1a;
}

.pricing-reveal {
    background: #fff;
}

.pricing-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 400;
}

.pricing-intro {
    text-align: center;
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 60px;
}

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

.price-card {
    padding: 40px;
    background: #fafafa;
    border: 1px solid #e0e0e0;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.price-card.featured {
    background: #f5f5f5;
    border: 2px solid #1a1a1a;
}

.price-card.premium {
    background: #1a1a1a;
    color: #fff;
}

.badge-popular,
.badge-exclusive {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-popular {
    background: #1a1a1a;
    color: #fff;
}

.badge-exclusive {
    background: #fff;
    color: #1a1a1a;
}

.service-name {
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.service-description {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #4a4a4a;
}

.price-card.premium .service-description {
    color: #d0d0d0;
}

.service-materials {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 20px;
    font-style: italic;
}

.price-card.premium .service-materials {
    color: #aaa;
}

.price-amount {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
}

.price-card.premium .price-amount {
    color: #fff;
}

.cta-section-break {
    background: #1a1a1a;
    padding: 80px 20px;
    text-align: center;
}

.cta-heading {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 400;
}

.cta-button-large {
    display: inline-block;
    padding: 20px 50px;
    background: #fff;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

.guarantee-section {
    background: #f9f9f9;
}

.guarantee-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 400;
}

.guarantee-items {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.guarantee-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 500;
}

.guarantee-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.final-story {
    background: #fff;
}

.story-closing {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 25px;
    color: #3a3a3a;
}

.order-form-section {
    background: #f5f5f5;
}

.form-title {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 400;
}

.form-subtitle {
    text-align: center;
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 50px;
}

.order-form {
    background: #fff;
    padding: 50px;
    border: 1px solid #e0e0e0;
}

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

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 1px solid #ccc;
    background: #fafafa;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
    background: #fff;
}

.form-submit {
    width: 100%;
    padding: 18px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.form-submit:hover {
    background: #333;
}

.thank-you-state {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.thank-you-state.active {
    display: flex;
}

.thank-you-content {
    background: #fff;
    padding: 60px;
    max-width: 600px;
    text-align: center;
}

.thank-you-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.thank-you-message {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #4a4a4a;
}

.thank-you-detail {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 500;
}

.thank-you-next {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.thank-you-footer {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
}

.site-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.footer-brand {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.footer-tagline {
    font-size: 1rem;
    opacity: 0.8;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 5.5rem;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }

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

    .cookie-content p {
        font-size: 15px;
    }

    .insight-grid {
        flex-direction: row;
        align-items: center;
    }

    .insight-text {
        flex: 1;
    }

    .insight-visual {
        flex: 1;
    }

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

    .trust-card {
        flex: 1;
    }

    .craft-layout {
        flex-direction: row;
        align-items: center;
    }

    .craft-image {
        flex: 1;
        max-width: 50%;
    }

    .craft-content {
        flex: 1;
    }

    .collection-item {
        width: 50%;
    }

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

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

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

    .guarantee-item {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .collection-item {
        width: 25%;
    }

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