* {
    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;
}

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

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

.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;
}

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

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

.nav-minimal {
    padding: 3rem 2rem;
    background: transparent;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(250, 250, 250, 0.95);
    backdrop-filter: blur(10px);
}

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

.brand {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: opacity 0.3s;
}

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

.hero-minimal {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: #fafafa;
}

.hero-content-center {
    text-align: center;
    max-width: 900px;
}

.hero-title-large {
    font-size: 5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 2.5rem;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    font-weight: 300;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-primary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #333;
}

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

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

.intro-text {
    font-size: 1.5rem;
    line-height: 1.7;
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-weight: 300;
}

.narrow-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

.image-statement {
    padding: 0;
    background: #000;
}

.statement-image-container {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.statement-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

.overlay-text h2 {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: -1px;
}

.insight-block {
    padding: 10rem 2rem;
    background: #f5f5f5;
}

.section-title-centered {
    font-size: 2.8rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -1px;
}

.large-text {
    font-size: 1.35rem;
    line-height: 1.8;
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-weight: 300;
}

.trust-testimonial {
    padding: 8rem 2rem;
    background: #1a1a1a;
}

.testimonial-card-large {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.testimonial-quote {
    font-size: 1.6rem;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 1rem;
    color: #999;
    font-weight: 400;
}

.problem-section {
    padding: 10rem 2rem;
    background: #fff;
}

.section-title-left {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    letter-spacing: -1px;
}

.visual-break {
    padding: 0;
}

.dual-image-layout {
    display: flex;
    gap: 0;
}

.image-box {
    flex: 1;
    height: 80vh;
}

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

.reveal-section {
    padding: 10rem 2rem;
    background: #f5f5f5;
}

.centered-text {
    text-align: center;
}

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

.services-grid-minimal {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-card-minimal {
    padding: 4rem 3rem;
    background: #fafafa;
    border-left: 3px solid #1a1a1a;
}

.service-card-minimal h3 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.service-card-minimal p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 2rem;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.btn-select-service {
    padding: 1rem 2.5rem;
    background: #1a1a1a;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.3s;
}

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

.btn-select-service.selected {
    background: #2d7a2d;
}

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

.urgency-block h2 {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.urgency-block p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ccc;
}

.form-section {
    padding: 10rem 2rem;
    background: #f5f5f5;
}

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

.form-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    text-align: center;
}

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

.main-form {
    background: #fff;
    padding: 3rem;
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    font-size: 1rem;
    font-family: inherit;
    background: #fafafa;
}

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

.form-group input[readonly] {
    background: #f0f0f0;
    cursor: not-allowed;
}

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

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

.final-cta-section {
    padding: 10rem 2rem;
    background: #fff;
}

.final-cta-section h2 {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.cta-secondary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s;
    margin-top: 2rem;
}

.cta-secondary:hover {
    background: #1a1a1a;
    color: #fff;
}

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

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

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.brand-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

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

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

.sticky-cta-button {
    display: block;
    padding: 1rem 2rem;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

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

@media (max-width: 768px) {
    .hero-title-large {
        font-size: 3rem;
    }

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

    .overlay-text h2 {
        font-size: 2rem;
    }

    .dual-image-layout {
        flex-direction: column;
    }

    .image-box {
        height: 50vh;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .section-title-centered,
    .final-cta-section h2 {
        font-size: 2rem;
    }

    .main-form {
        padding: 2rem;
    }

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

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

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.thanks-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

.selected-service-display {
    background: #f5f5f5;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 3px solid #1a1a1a;
}

.selected-service-display h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.selected-service-display p {
    font-size: 1.1rem;
    color: #666;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.page-content h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.page-content h2 {
    font-size: 2rem;
    font-weight: 400;
    margin: 3rem 0 1.5rem;
}

.page-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

.page-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.page-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 0.75rem;
}

.contact-info {
    background: #f5f5f5;
    padding: 3rem;
    margin: 3rem 0;
}

.contact-info h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    color: #666;
}

.contact-item p {
    font-size: 1.1rem;
    color: #1a1a1a;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 4rem 0;
}

.service-item {
    padding: 3rem;
    background: #fafafa;
    border-left: 3px solid #1a1a1a;
}

.service-item h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.service-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-top: 1rem;
}
