/* Reset and Base Styles */
* {
    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: #1a1a1a;
    overflow-x: hidden;
}

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

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

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    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 {
    color: #4a9eff;
    text-decoration: underline;
}

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

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

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

.btn-accept:hover {
    background: #357abd;
}

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

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

/* Floating Navigation */
.nav-floating {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 40px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

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

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: #4a4a4a;
    transition: color 0.3s;
}

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

.nav-cta {
    background: #1a1a1a;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

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

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-overlay h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-overlay p {
    font-size: 24px;
    font-weight: 300;
    opacity: 0.95;
}

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

.sticky-btn {
    background: #ff4757;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(255, 71, 87, 0.4);
    transition: all 0.3s;
}

.sticky-btn:hover {
    background: #e63946;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 71, 87, 0.5);
}

/* Story Section */
.intro-story {
    padding: 120px 20px;
    background: #f8f9fa;
}

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

.story-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
    line-height: 1.2;
}

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

.inline-img {
    margin: 50px 0;
    border-radius: 8px;
}

/* Problem Amplify */
.problem-amplify {
    padding: 100px 20px;
    background: white;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
}

.problem-list {
    list-style: none;
    margin-bottom: 30px;
}

.problem-list li {
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    font-size: 17px;
    color: #4a4a4a;
}

.problem-list li:before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ff4757;
    font-weight: 700;
}

.emphasis {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 30px;
}

.split-image {
    flex: 1;
}

.split-image img {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Insight Reveal */
.insight-reveal {
    padding: 120px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

.centered-content h2 {
    font-size: 44px;
    margin-bottom: 40px;
}

.large-text {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
}

/* Trust Building */
.trust-building {
    padding: 100px 20px;
    background: #f8f9fa;
}

.cards-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-card {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

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

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

.trust-card h3 {
    font-size: 22px;
    margin: 25px 25px 15px;
}

.trust-card p {
    font-size: 16px;
    color: #4a4a4a;
    margin: 0 25px 25px;
    line-height: 1.6;
}

/* Testimonials */
.testimonials-flow {
    padding: 100px 20px;
    background: white;
}

.testimonials-flow h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.testimonial-stack {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.testimonial p {
    font-size: 19px;
    font-style: italic;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.author {
    font-size: 15px;
    color: #6a6a6a;
    font-weight: 600;
}

/* CTA Block */
.cta-block-early {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    text-align: center;
}

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

.cta-content h2 {
    font-size: 46px;
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
}

.cta-primary {
    background: white;
    color: #f5576c;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s;
}

.cta-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Benefits Visual */
.benefits-visual {
    padding: 100px 20px;
    background: white;
}

.benefits-visual h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.benefits-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit-large {
    flex: 1 1 100%;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.benefit-large img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.benefit-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.4));
    color: white;
    padding: 50px;
}

.benefit-text h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.benefit-text p {
    font-size: 18px;
    line-height: 1.6;
}

.benefit-small {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

.benefit-small h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.benefit-small p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.6;
}

/* Services Pricing */
.services-pricing {
    padding: 100px 20px;
    background: #f8f9fa;
}

.services-pricing h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 15px;
}

.services-intro {
    text-align: center;
    font-size: 18px;
    color: #6a6a6a;
    margin-bottom: 60px;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    position: relative;
}

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

.service-card.featured {
    border: 3px solid #667eea;
}

.ribbon {
    position: absolute;
    top: 15px;
    right: -35px;
    background: #667eea;
    color: white;
    padding: 8px 40px;
    font-size: 13px;
    font-weight: 700;
    transform: rotate(45deg);
    z-index: 10;
}

.service-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px;
}

.service-card p {
    font-size: 15px;
    color: #4a4a4a;
    margin: 0 25px 20px;
    line-height: 1.6;
}

.price {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 25px 20px;
}

.select-service {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 14px;
    background: #1a1a1a;
    color: white;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

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

/* Urgency Section */
.urgency-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    text-align: center;
    color: white;
}

.urgency-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.urgency-content p {
    font-size: 20px;
    margin-bottom: 10px;
}

.urgency-highlight {
    font-size: 24px;
    font-weight: 700;
    margin-top: 20px;
}

/* Form Section */
.form-section {
    padding: 100px 20px;
    background: white;
}

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

.form-container h2 {
    font-size: 40px;
    margin-bottom: 15px;
    text-align: center;
}

.form-container > p {
    text-align: center;
    font-size: 17px;
    color: #6a6a6a;
    margin-bottom: 40px;
}

.selected-service-display {
    background: #e8f5e9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #4caf50;
}

.selected-service-display p {
    margin-bottom: 5px;
    font-size: 16px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    padding: 16px;
    background: #667eea;
    color: white;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

/* Final CTA */
.final-cta {
    padding: 120px 20px;
    background: linear-gradient(135deg, #434343 0%, #000000 100%);
    text-align: center;
    color: white;
}

.final-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.final-content p {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-secondary {
    background: white;
    color: #1a1a1a;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s;
}

.cta-secondary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

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

.footer-column a {
    display: block;
    font-size: 14px;
    color: #a0a0a0;
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: #a0a0a0;
}

/* Thanks Page Styles */
.thanks-hero {
    padding: 150px 20px 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.thanks-hero h1 {
    font-size: 56px;
    margin-bottom: 25px;
}

.thanks-hero p {
    font-size: 22px;
    max-width: 700px;
    margin: 0 auto 40px;
}

.thanks-details {
    padding: 80px 20px;
    background: white;
}

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

.thanks-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
}

.next-steps {
    list-style: none;
    margin-top: 40px;
}

.next-steps li {
    padding: 20px;
    background: #f8f9fa;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 17px;
    padding-left: 50px;
    position: relative;
}

.next-steps li:before {
    content: '✓';
    position: absolute;
    left: 20px;
    font-size: 24px;
    color: #4caf50;
    font-weight: 700;
}

/* Contact Page Styles */
.contact-header {
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.contact-header h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.contact-info {
    padding: 80px 20px;
    background: white;
}

.contact-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-item {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

.contact-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.contact-item p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.8;
}

/* Legal Pages */
.legal-header {
    padding: 100px 20px 60px;
    background: #1a1a1a;
    color: white;
    text-align: center;
}

.legal-header h1 {
    font-size: 48px;
}

.legal-content {
    padding: 80px 20px;
    background: white;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-text h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
}

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

.legal-text ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

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

/* About Page */
.about-hero {
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    text-align: center;
    color: white;
}

.about-hero h1 {
    font-size: 56px;
    margin-bottom: 25px;
}

.about-story {
    padding: 80px 20px;
    background: white;
}

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

.about-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
}

.about-content p {
    font-size: 18px;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Services Page */
.services-hero {
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, #434343 0%, #000000 100%);
    text-align: center;
    color: white;
}

.services-hero h1 {
    font-size: 56px;
    margin-bottom: 25px;
}

.services-list {
    padding: 80px 20px;
    background: #f8f9fa;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-floating {
        width: calc(100% - 40px);
        padding: 12px 20px;
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links {
        display: none;
    }

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

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

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

    .story-content h2,
    .centered-content h2,
    .testimonials-flow h2,
    .benefits-visual h2 {
        font-size: 32px;
    }

    .large-text {
        font-size: 24px;
    }

    .cards-grid,
    .services-grid,
    .benefits-asymmetric {
        flex-direction: column;
    }

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

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