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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    overflow-x: hidden;
}

.hidden {
    display: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-accept {
    background: #27ae60;
    color: white;
}

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

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

.btn-reject:hover {
    background: white;
    color: #1a1a1a;
}

.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    max-width: 900px;
    width: 90%;
}

.nav-brand {
    font-weight: 700;
    font-size: 1.3rem;
    color: #27ae60;
}

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

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #27ae60;
}

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

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c3e50 0%, #27ae60 100%);
    background-image: url('https://images.unsplash.com/photo-1504280390367-361c6d9f38f4?w=1600');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-overlay {
    text-align: center;
    color: white;
    z-index: 1;
    padding: 2rem;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(5px);
    border-radius: 20px;
}

.hero-overlay h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
}

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

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.container-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.center {
    text-align: center;
}

.hook-section {
    background: #f8f9fa;
}

.hook-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hook-section p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #555;
}

.story-flow {
    padding: 5rem 2rem;
}

.story-flow .container-wide {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-left {
    flex: 1;
}

.story-left img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.story-right {
    flex: 1;
}

.story-right h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
}

.story-right p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.problem-section {
    background: #fff3cd;
    padding: 5rem 2rem;
}

.problem-section h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    text-align: center;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.problem-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.problem-icon {
    font-size: 2rem;
}

.problem-item p {
    font-size: 1.1rem;
    margin: 0;
}

.insight-reveal {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6rem 2rem;
}

.insight-reveal .container-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.insight-content {
    flex: 1;
}

.insight-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.insight-content p {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.insight-visual {
    flex: 1;
}

.insight-visual img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.testimonial-inline {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.testimonial-inline blockquote {
    border-left: 5px solid #27ae60;
    padding-left: 2rem;
    font-size: 1.3rem;
    font-style: italic;
    color: #555;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    font-style: normal;
    color: #27ae60;
    font-weight: 600;
}

.visual-break {
    margin: 0;
    padding: 0;
}

.full-width-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

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

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

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

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.benefit-card {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #27ae60;
}

.benefit-card p {
    font-size: 1rem;
    color: #666;
}

.cta-section-1 {
    background: #27ae60;
    color: white;
    padding: 4rem 2rem;
}

.cta-section-1 h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.cta-btn-primary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: white;
    color: #27ae60;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.trust-section {
    background: #f8f9fa;
    padding: 4rem 2rem;
}

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

.stats-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #27ae60;
}

.stat-label {
    display: block;
    font-size: 1.1rem;
    color: #666;
    margin-top: 0.5rem;
}

.more-testimonials {
    padding: 5rem 2rem;
}

.more-testimonials .container-wide {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #27ae60;
}

.testimonial-card p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-card cite {
    font-size: 0.9rem;
    color: #27ae60;
    font-weight: 600;
}

.pricing-reveal {
    background: linear-gradient(to bottom, #f8f9fa 0%, white 100%);
    padding: 5rem 2rem;
}

.pricing-reveal h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
}

.pricing-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.pricing-cards {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    justify-content: center;
}

.price-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s;
}

.price-card:hover {
    transform: translateY(-10px);
}

.price-card.featured {
    border: 3px solid #27ae60;
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #27ae60;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.price-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.price-description {
    color: #666;
    margin-bottom: 1.5rem;
}

.price-features {
    list-style: none;
    margin-bottom: 2rem;
}

.price-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.price-features li:before {
    content: "✓ ";
    color: #27ae60;
    font-weight: bold;
    margin-right: 0.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #27ae60;
    text-align: center;
    margin-bottom: 0.5rem;
}

.price-note {
    text-align: center;
    font-size: 0.9rem;
    color: #999;
}

.extra-services {
    margin-top: 4rem;
}

.extra-services h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.extra-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.extra-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.extra-name {
    font-size: 1.1rem;
    font-weight: 500;
}

.extra-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #27ae60;
}

.urgency-section {
    background: #ff6b6b;
    color: white;
    padding: 3rem 2rem;
}

.urgency-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.urgency-section p {
    font-size: 1.2rem;
}

.reservation-section {
    background: #f8f9fa;
    padding: 5rem 2rem;
}

.reservation-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.reservation-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-step h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.service-selection {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.service-option {
    display: block;
    cursor: pointer;
}

.service-option input[type="radio"] {
    display: none;
}

.service-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    transition: all 0.3s;
}

.service-option input[type="radio"]:checked + .service-label {
    background: #e8f5e9;
    border-color: #27ae60;
}

.service-label strong {
    font-size: 1.1rem;
}

.service-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #27ae60;
}

.btn-next,
.btn-back,
.btn-submit {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-next,
.btn-submit {
    background: #27ae60;
    color: white;
}

.btn-next:hover,
.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
}

.btn-back {
    background: #e0e0e0;
    color: #666;
    margin-right: 1rem;
}

.btn-back:hover {
    background: #d0d0d0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #27ae60;
}

.form-buttons {
    display: flex;
    justify-content: flex-end;
    margin-top: 2rem;
}

.final-cta {
    background: linear-gradient(135deg, #2c3e50 0%, #27ae60 100%);
    color: white;
    padding: 5rem 2rem;
}

.final-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.cta-btn-secondary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: white;
    color: #27ae60;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.cta-btn-secondary:hover {
    transform: scale(1.05);
}

.guarantee-section {
    background: #fff9e6;
    padding: 3rem 2rem;
    text-align: center;
}

.guarantee-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.guarantee-section p {
    font-size: 1.1rem;
    color: #666;
}

.main-footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 2rem 1rem;
}

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

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

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #999;
}

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

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background: #27ae60;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(39, 174, 96, 0.4);
    transition: all 0.3s;
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(39, 174, 96, 0.6);
}

@media (max-width: 768px) {
    .floating-nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

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

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

    .story-flow .container-wide {
        flex-direction: column;
    }

    .insight-reveal .container-split {
        flex-direction: column;
    }

    .pricing-cards {
        flex-direction: column;
    }

    .price-card.featured {
        transform: scale(1);
    }

    .footer-content {
        flex-direction: column;
    }
}