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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: #fafafa;
}

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

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

.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: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 50px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-brand {
    font-weight: 600;
    font-size: 18px;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 14px;
    transition: opacity 0.3s;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.hero-visual {
    margin-top: 0;
    height: 100vh;
    position: relative;
}

.hero-image-wrap {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

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

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

.hero-overlay h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-overlay p {
    font-size: 20px;
    font-weight: 300;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.story-intro {
    padding: 120px 20px;
    background: white;
}

.lead-text {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 30px;
    color: #1a1a1a;
    line-height: 1.4;
}

.story-intro p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.cards-grid {
    padding: 100px 20px;
    background: #f5f5f5;
}

.cards-grid .container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.card-item {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s;
}

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

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

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.card-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.problem-section {
    padding: 120px 20px;
    background: white;
}

.container-split {
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.split-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.emphasis {
    font-size: 20px;
    font-weight: 500;
    color: #1a1a1a;
    margin-top: 30px;
    padding-left: 20px;
    border-left: 4px solid #2c2c2c;
}

.split-image {
    flex: 1;
}

.split-image img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.insight-block {
    padding: 100px 20px;
    background: #1a1a1a;
    color: white;
}

.insight-block h2 {
    font-size: 38px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.insight-block > p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 60px;
    color: #d0d0d0;
}

.insight-points {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 60px;
}

.point {
    flex: 1;
    min-width: 280px;
}

.point-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #666;
    margin-bottom: 15px;
}

.point h4 {
    font-size: 22px;
    margin-bottom: 15px;
}

.point p {
    font-size: 16px;
    color: #b0b0b0;
}

.testimonial-inline {
    padding: 80px 20px;
    background: #f9f9f9;
}

.testimonial-inline blockquote {
    max-width: 800px;
    margin: 0 auto;
    font-size: 26px;
    font-style: italic;
    line-height: 1.6;
    color: #2c2c2c;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-inline cite {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    font-style: normal;
    color: #888;
}

.visual-showcase {
    padding: 0;
}

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

.showcase-item {
    flex: 1;
    min-width: 300px;
    overflow: hidden;
}

.showcase-item.large {
    flex: 2;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.trust-section {
    padding: 100px 20px;
    background: white;
}

.trust-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    font-weight: 700;
}

.trust-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.trust-card {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 40px 30px;
    background: #fafafa;
    border-radius: 12px;
}

.trust-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.trust-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.trust-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.testimonials-grid {
    padding: 80px 20px;
    background: #f5f5f5;
}

.testimonials-grid .container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #333;
}

.testimonial-card cite {
    font-size: 14px;
    color: #888;
    font-style: normal;
}

.services-reveal {
    padding: 120px 20px;
    background: white;
}

.services-reveal h2 {
    text-align: center;
    font-size: 44px;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background: #fafafa;
    padding: 40px;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s;
    position: relative;
}

.service-card:hover {
    border-color: #2c2c2c;
    background: white;
}

.service-card.featured {
    background: #2c2c2c;
    color: white;
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #f0a500;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}

.service-header h3 {
    font-size: 22px;
    font-weight: 600;
    flex: 1;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    white-space: nowrap;
}

.service-card.featured .service-price {
    color: #f0a500;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #555;
}

.service-card.featured p {
    color: #d0d0d0;
}

.cta-service {
    width: 100%;
    padding: 15px 30px;
    background: #2c2c2c;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-service:hover {
    background: #1a1a1a;
}

.service-card.featured .cta-service {
    background: white;
    color: #2c2c2c;
}

.service-card.featured .cta-service:hover {
    background: #f0f0f0;
}

.urgency-block {
    padding: 80px 20px;
    background: #fff8e1;
    text-align: center;
}

.urgency-block h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 600;
}

.urgency-block p {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
}

.urgency-note {
    font-weight: 600;
    color: #2c2c2c;
}

.form-section {
    padding: 100px 20px;
    background: white;
}

.form-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
}

.form-section > .container-narrow > p {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.main-form {
    background: #f9f9f9;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    background: white;
}

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

.form-checkbox {
    margin: 30px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input {
    margin-top: 4px;
}

.form-checkbox label {
    font-size: 14px;
    line-height: 1.5;
}

.form-checkbox a {
    color: #2c2c2c;
    text-decoration: underline;
}

.cta-button-primary {
    width: 100%;
    padding: 18px 40px;
    background: #2c2c2c;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-button-primary:hover {
    background: #1a1a1a;
}

.final-cta {
    padding: 100px 20px;
    background: #2c2c2c;
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #d0d0d0;
}

.cta-button-secondary {
    display: inline-block;
    padding: 18px 50px;
    background: white;
    color: #2c2c2c;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-button-secondary:hover {
    background: #f0f0f0;
}

.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 20px 30px;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col a {
    display: block;
    margin-bottom: 12px;
    font-size: 14px;
    color: #b0b0b0;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

.footer-col p {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

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

.sticky-cta-button {
    display: inline-block;
    padding: 18px 35px;
    background: #f0a500;
    color: white;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(240, 165, 0, 0.4);
    transition: all 0.3s;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.97);
    color: white;
    padding: 25px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    font-size: 14px;
    line-height: 1.6;
}

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

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-btn.accept {
    background: #f0a500;
    color: white;
}

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

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

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

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    text-align: center;
}

.thanks-content {
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-page {
    padding: 150px 20px 100px;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
}

.contact-info h1 {
    font-size: 44px;
    margin-bottom: 40px;
    font-weight: 700;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-item p {
    font-size: 20px;
    color: #2c2c2c;
}

.legal-page {
    padding: 150px 20px 100px;
    background: white;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 40px;
    font-weight: 700;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.legal-content ul {
    margin: 20px 0 20px 30px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #444;
}

@media (max-width: 768px) {
    .nav-floating {
        top: 20px;
        padding: 12px 25px;
        gap: 20px;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .hero-overlay h1 {
        font-size: 36px;
    }

    .hero-overlay p {
        font-size: 16px;
    }

    .container-split {
        flex-direction: column;
        gap: 40px;
    }

    .split-text h2 {
        font-size: 32px;
    }

    .insight-block h2 {
        font-size: 28px;
    }

    .services-reveal h2 {
        font-size: 32px;
    }

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

    .main-form {
        padding: 30px 20px;
    }

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }

    .sticky-cta-button {
        padding: 14px 25px;
        font-size: 14px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-columns {
        flex-direction: column;
        gap: 30px;
    }
}