* {
    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: #1a1a1a;
    background: #fafafa;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-accept {
    background: #fff;
    color: #1a1a1a;
}

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

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

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

.main-nav {
    background: #fff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-menu a {
    font-size: 15px;
    transition: opacity 0.3s;
}

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

.hero-minimal {
    padding: 160px 40px 180px;
    background: #fff;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 82px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 40px;
}

.hero-subtitle {
    font-size: 24px;
    line-height: 1.5;
    color: #666;
    font-weight: 300;
}

.intro-spacing {
    padding: 120px 40px;
    background: #f5f5f5;
}

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.container-medium {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.intro-text {
    font-size: 22px;
    line-height: 1.7;
    color: #333;
}

.reveal-section {
    padding: 140px 40px;
    background: #fff;
}

.section-heading {
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

.body-large {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.story-block {
    padding: 100px 40px;
    background: #fafafa;
}

.story-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.story-image {
    flex: 1;
    min-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 2px;
}

.story-text {
    flex: 1;
    min-width: 400px;
}

.story-text h3 {
    font-size: 32px;
    margin-bottom: 24px;
    font-weight: 600;
}

.story-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.insight-minimal {
    padding: 160px 40px;
    background: #1a1a1a;
    color: #fff;
}

.insight-quote {
    font-size: 36px;
    line-height: 1.5;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 30px;
}

.quote-author {
    font-size: 16px;
    color: #999;
}

.case-grid {
    padding: 120px 40px;
    background: #fff;
}

.section-heading-center {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: -0.02em;
}

.cases-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.case-card {
    flex: 1;
    min-width: 280px;
    background: #f9f9f9;
    padding: 40px;
    border-radius: 2px;
}

.case-card h4 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 600;
}

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

.cta-inline {
    padding: 100px 40px;
    background: #f5f5f5;
}

.cta-link {
    font-size: 28px;
    font-weight: 500;
    display: inline-block;
    transition: opacity 0.3s;
}

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

.why-now-section {
    padding: 140px 40px;
    background: #fff;
}

.services-section {
    padding: 120px 40px 140px;
    background: #fafafa;
}

.section-heading-large {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 80px;
    letter-spacing: -0.03em;
}

.services-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.service-item {
    flex: 1;
    min-width: 320px;
    background: #fff;
    padding: 50px;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
}

.service-item h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: auto;
    margin-bottom: 20px;
}

.btn-service {
    padding: 16px 32px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 15px;
    border-radius: 4px;
    transition: background 0.3s;
}

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

.form-section {
    padding: 140px 40px;
    background: #fff;
}

.form-heading {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
}

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

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 18px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    transition: background 0.3s;
}

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

.testimonial-section {
    padding: 120px 40px;
    background: #f5f5f5;
}

.testimonial-quote {
    font-size: 32px;
    line-height: 1.6;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 30px;
}

.testimonial-author {
    font-size: 16px;
    color: #666;
}

.urgency-section {
    padding: 140px 40px;
    background: #1a1a1a;
    color: #fff;
    text-align: center;
}

.urgency-text {
    font-size: 24px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-button-large {
    display: inline-block;
    padding: 20px 50px;
    background: #fff;
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 500;
    border-radius: 4px;
    transition: background 0.3s;
}

.cta-button-large:hover {
    background: #e0e0e0;
}

.main-footer {
    background: #fff;
    padding: 80px 40px 40px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

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

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    font-size: 15px;
    color: #666;
    transition: color 0.3s;
}

.footer-col ul a:hover {
    color: #1a1a1a;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid #eee;
    text-align: center;
    color: #999;
    font-size: 14px;
}

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

.sticky-cta-btn {
    display: block;
    padding: 16px 32px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.sticky-cta-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-menu {
        gap: 20px;
    }

    .hero-minimal {
        padding: 80px 20px 100px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .intro-spacing,
    .reveal-section,
    .story-block,
    .insight-minimal,
    .case-grid,
    .cta-inline,
    .why-now-section,
    .services-section,
    .form-section,
    .testimonial-section,
    .urgency-section {
        padding: 60px 20px;
    }

    .section-heading {
        font-size: 36px;
    }

    .section-heading-center,
    .form-heading {
        font-size: 32px;
    }

    .section-heading-large {
        font-size: 40px;
    }

    .story-content {
        gap: 30px;
    }

    .story-image,
    .story-text {
        min-width: 100%;
    }

    .insight-quote {
        font-size: 24px;
    }

    .case-card,
    .service-item {
        min-width: 100%;
    }

    .cta-link {
        font-size: 20px;
    }

    .testimonial-quote {
        font-size: 22px;
    }

    .urgency-text {
        font-size: 18px;
    }

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

    .sticky-cta-btn {
        padding: 14px 24px;
        font-size: 14px;
    }

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