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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

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

a {
    color: inherit;
    text-decoration: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.cookie-content a {
    color: #ffd700;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #ffd700;
    color: #000;
}

.btn-accept:hover {
    background: #ffed4e;
}

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

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

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

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

.hamburger span {
    width: 25px;
    height: 2px;
    background: #1a1a1a;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

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

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-btn {
    background: #000;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
}

.sticky-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.hero-visual {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
}

.hero-overlay h1 {
    font-size: 4rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -2px;
}

.hero-sub {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.95;
}

.story-intro {
    padding: 5rem 2rem;
    background: #f9f9f9;
}

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

.lead {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.narrow-text p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: #333;
}

.visual-break,
.visual-break-two {
    height: 60vh;
    overflow: hidden;
}

.visual-break img,
.visual-break-two img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.problem-block {
    padding: 5rem 2rem;
    background: #1a1a1a;
    color: #fff;
}

.problem-content {
    max-width: 1000px;
    margin: 0 auto;
}

.problem-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.problem-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #ffd700;
}

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

.cta-inline {
    display: inline-block;
    font-size: 1.2rem;
    color: #ffd700;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.cta-inline:hover {
    transform: translateX(10px);
}

.insight-section {
    padding: 5rem 2rem;
    background: #fff;
}

.insight-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.insight-img {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
}

.insight-text {
    flex: 1;
    min-width: 300px;
}

.insight-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.insight-text p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: #333;
}

.insight-text em {
    font-style: italic;
    color: #000;
    font-weight: 600;
}

.trust-build {
    padding: 5rem 2rem;
    background: #f4f4f4;
}

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

.trust-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.benefits-reveal {
    padding: 5rem 2rem;
    background: #fff;
}

.benefits-reveal h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.benefit-card {
    flex: 1;
    min-width: 300px;
}

.benefit-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}

.urgency-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: #fff;
    text-align: center;
}

.urgency-content {
    max-width: 800px;
    margin: 0 auto;
}

.urgency-tag {
    display: inline-block;
    background: #ffd700;
    color: #000;
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.urgency-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.urgency-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.btn-urgency {
    display: inline-block;
    background: #ffd700;
    color: #000;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

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

.services-pricing {
    padding: 5rem 2rem;
    background: #fff;
}

.services-pricing h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1;
    min-width: 260px;
    background: #f9f9f9;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-card.selected {
    border: 3px solid #ffd700;
    background: #fffef0;
}

.service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.4rem;
    margin: 1.5rem 1.5rem 1rem;
}

.service-card p {
    margin: 0 1.5rem 1rem;
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 1rem 1.5rem;
    color: #000;
}

.old-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 0.5rem;
}

.btn-select {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 1rem;
    background: #000;
    color: #fff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-select:hover {
    background: #333;
}

.service-card.selected .btn-select {
    background: #ffd700;
    color: #000;
}

.form-section {
    padding: 5rem 2rem;
    background: #f4f4f4;
}

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

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.form-intro {
    text-align: center;
    margin-bottom: 2rem;
    color: #555;
    font-size: 1.05rem;
}

#order-form {
    background: #fff;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

#order-form input,
#order-form select,
#order-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid #ddd;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

#order-form input:focus,
#order-form select:focus,
#order-form textarea:focus {
    outline: none;
    border-color: #000;
}

#order-form textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: #000;
    color: #fff;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.final-push {
    padding: 5rem 2rem;
    background: #1a1a1a;
    color: #fff;
    text-align: center;
}

.final-content {
    max-width: 800px;
    margin: 0 auto;
}

.final-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.final-content p {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.btn-final {
    display: inline-block;
    background: #ffd700;
    color: #000;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

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

.footer {
    background: #000;
    color: #fff;
    padding: 3rem 2rem 1rem;
}

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

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

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    color: #999;
    font-size: 0.95rem;
}

.footer-col a {
    display: block;
    color: #999;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #666;
    font-size: 0.9rem;
}

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

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        width: 100%;
        padding: 2rem;
        gap: 1rem;
        transition: left 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

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

    .hero-overlay h1 {
        font-size: 2.5rem;
    }

    .hero-sub {
        font-size: 1.2rem;
    }

    .lead {
        font-size: 1.4rem;
    }

    .problem-content h2,
    .trust-container h2,
    .benefits-reveal h2,
    .services-pricing h2 {
        font-size: 2rem;
    }

    .insight-wrapper {
        flex-direction: column;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    #order-form {
        padding: 2rem;
    }
}