* {
    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: #2c2c2c;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

.cookie-banner.active {
    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-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-accept {
    background: #4CAF50;
    color: white;
}

.btn-accept:hover {
    background: #45a049;
}

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

.btn-reject:hover {
    border-color: #999;
}

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

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

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

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

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

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

.sticky-btn {
    background: #1a1a1a;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.sticky-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

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

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
    z-index: 1;
}

.hero-image-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 50 Q 25 25, 50 50 T 100 50" stroke="rgba(255,255,255,0.05)" fill="none" stroke-width="2"/></svg>') repeat;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 900px;
}

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

.hero-subtext {
    font-size: 1.5rem;
    font-weight: 300;
    font-style: italic;
    opacity: 0.9;
}

.story-intro {
    padding: 8rem 2rem;
    background: #f8f8f8;
}

.narrow-container {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.25rem;
    line-height: 1.8;
}

.opening-line {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.narrow-container p {
    margin-bottom: 1.5rem;
}

.problem-block {
    padding: 6rem 2rem;
    background: white;
}

.offset-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.problem-text {
    flex: 1;
    padding-right: 2rem;
}

.problem-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.problem-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #444;
}

.problem-visual {
    flex: 1;
}

.visual-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    border-radius: 8px;
}

.insight-reveal {
    padding: 6rem 2rem;
    background: #1a1a1a;
    color: white;
}

.centered-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.centered-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.insight-text {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.transformation-grid {
    padding: 6rem 2rem;
    background: white;
}

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

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

.benefit-card {
    flex: 1;
    min-width: 250px;
    padding: 2.5rem;
    background: #f8f8f8;
    border-radius: 8px;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #555;
    line-height: 1.6;
}

.trust-builder {
    padding: 6rem 2rem;
    background: #f0f0f0;
}

.testimonial-flow {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-item {
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-left: 4px solid #1a1a1a;
}

.quote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #2c2c2c;
    line-height: 1.7;
}

.author {
    font-weight: 600;
    color: #666;
}

.approach-section {
    padding: 6rem 2rem;
    background: white;
}

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

.approach-content {
    flex: 1;
}

.approach-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

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

.inline-cta {
    display: inline-block;
    margin-top: 1rem;
    padding: 1rem 2rem;
    background: #1a1a1a;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

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

.approach-image {
    flex: 1;
}

.image-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, #d0d0d0 0%, #e8e8e8 100%);
    border-radius: 8px;
}

.services-reveal {
    padding: 6rem 2rem;
    background: #f8f8f8;
}

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

.services-container h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

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

.service-options {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    padding: 2.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
    border: 2px solid #1a1a1a;
}

.popular-tag {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #1a1a1a;
    color: white;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 1.5rem 0;
}

.select-service {
    width: 100%;
    padding: 1rem;
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

.urgency-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.urgency-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.urgency-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.form-section {
    padding: 6rem 2rem;
    background: white;
}

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

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-btn {
    padding: 1.25rem;
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.final-cta {
    padding: 6rem 2rem;
    background: #f0f0f0;
}

.final-message {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.final-message h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.final-message p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #444;
}

.cta-btn {
    margin-top: 2rem;
    padding: 1.25rem 2.5rem;
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .floating-nav {
        flex-direction: column;
        gap: 1rem;
        top: 1rem;
        right: 1rem;
        left: 1rem;
    }

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

    .offset-layout,
    .split-approach {
        flex-direction: column;
    }

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

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

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

    .sticky-btn {
        width: 100%;
    }
}