* {
    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: #2d3436;
    overflow-x: hidden;
}

.nav-minimal {
    background: #fff;
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3436;
}

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

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

.nav-links a:hover {
    color: #2d3436;
}

.nav-cta {
    background: #2d3436;
    color: #fff;
    border: none;
    padding: 0.75rem 1.75rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.nav-cta:hover {
    background: #000;
    transform: translateY(-2px);
}

.hero-card {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.hero-text-card {
    flex: 1;
}

.hero-badge {
    display: inline-block;
    background: #2d3436;
    color: #fff;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-text-card h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2d3436;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #636e72;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-primary {
    background: #2d3436;
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-image-card {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

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

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

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

.hook-card {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    border-left: 6px solid #2d3436;
}

.hook-card h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2d3436;
    line-height: 1.4;
}

.hook-card p {
    font-size: 1.15rem;
    color: #636e72;
    line-height: 1.8;
}

.problem-cards {
    padding: 5rem 2rem;
    background: #2d3436;
}

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

.problem-card {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    transition: transform 0.3s;
}

.problem-card:hover {
    transform: translateY(-8px);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3436;
}

.problem-card p {
    color: #636e72;
    line-height: 1.7;
}

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

.story-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-image-card {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.story-image-card img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    display: block;
}

.story-content-card {
    flex: 1;
}

.section-label {
    display: inline-block;
    color: #636e72;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.story-content-card h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2d3436;
}

.story-content-card p {
    font-size: 1.1rem;
    color: #636e72;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.insight-cards {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.insight-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2d3436;
    text-align: center;
}

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

.insight-card {
    flex: 1;
    min-width: 320px;
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.insight-number {
    width: 60px;
    height: 60px;
    background: #2d3436;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.insight-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3436;
}

.insight-card p {
    color: #636e72;
    line-height: 1.7;
}

.testimonial-cards {
    padding: 5rem 2rem;
    background: #fff;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 16px;
    border-top: 4px solid #2d3436;
}

.testimonial-stars {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #2d3436;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: #2d3436;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #636e72;
    font-size: 0.9rem;
}

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

.benefits-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title-center {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #fff;
    text-align: center;
}

.benefits-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-card {
    display: flex;
    gap: 2rem;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.benefit-image {
    flex: 1;
}

.benefit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.benefit-content {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.benefit-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #2d3436;
}

.benefit-content p {
    font-size: 1.1rem;
    color: #636e72;
    line-height: 1.7;
}

.services-preview {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #636e72;
    margin-bottom: 3rem;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1;
    min-width: 350px;
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s;
}

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

.service-card.featured {
    border: 3px solid #2d3436;
}

.badge-popular {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #2d3436;
    color: #fff;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3436;
}

.service-description {
    color: #636e72;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.feature-item {
    padding: 0.75rem 0;
    color: #636e72;
    border-bottom: 1px solid #e9ecef;
}

.service-price {
    margin-bottom: 1.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3436;
}

.service-cta {
    background: #2d3436;
    color: #fff;
    border: none;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.service-cta:hover {
    background: #000;
    transform: translateY(-2px);
}

.urgency-section {
    padding: 4rem 2rem;
    background: #fff;
}

.urgency-card {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    color: #fff;
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.3);
}

.urgency-badge {
    display: inline-block;
    background: #fff;
    color: #e74c3c;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.urgency-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.urgency-card p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-urgent {
    background: #fff;
    color: #e74c3c;
    border: none;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-urgent:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.form-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2d3436 0%, #000 100%);
}

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

.form-card {
    background: #fff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.form-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2d3436;
    text-align: center;
}

.form-subtitle {
    text-align: center;
    color: #636e72;
    margin-bottom: 2rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d3436;
}

.form-submit {
    width: 100%;
    background: #2d3436;
    color: #fff;
    border: none;
    padding: 1.25rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.form-submit:hover {
    background: #000;
    transform: translateY(-2px);
}

.trust-badges {
    padding: 3rem 2rem;
    background: #f8f9fa;
}

.badges-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.trust-badge span {
    font-weight: 600;
    color: #2d3436;
}

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

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

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

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

.footer-section p {
    color: #b2bec3;
    line-height: 1.6;
}

.footer-section a {
    display: block;
    color: #b2bec3;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #636e72;
    text-align: center;
    color: #b2bec3;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d3436;
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

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

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

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

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

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

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

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

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

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

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

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #e74c3c;
    color: #fff;
    border: none;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
    z-index: 999;
    transition: all 0.3s;
}

.sticky-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.5);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-content,
    .story-container {
        flex-direction: column;
    }

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

    .hero-image-card img,
    .story-image-card img {
        height: 400px;
    }

    .cards-grid,
    .insights-grid,
    .testimonials-grid,
    .services-cards {
        flex-direction: column;
    }

    .benefit-card {
        flex-direction: column;
    }

    .benefit-image {
        height: 300px;
    }

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}
