/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #fff;
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 30, 30, 0.97);
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
}

.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-content a {
    color: #4a9eff;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

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

.btn-accept {
    background: #27ae60;
    color: #fff;
}

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

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

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

/* Navigation Asymmetric */
.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

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

.nav-links a {
    font-size: 1rem;
    font-weight: 500;
    color: #555;
    transition: color 0.3s;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3498db;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Offset */
.hero-offset {
    display: flex;
    align-items: center;
    min-height: 75vh;
    padding: 4rem 5%;
    gap: 3rem;
    position: relative;
}

.hero-text-block {
    flex: 1;
    max-width: 550px;
    padding-right: 2rem;
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-subtext {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #3498db;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.hero-image-offset {
    flex: 1;
    position: relative;
    margin-top: -3rem;
}

.hero-image-offset img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.15);
}

/* Intro Stagger */
.intro-stagger {
    display: flex;
    gap: 4rem;
    padding: 6rem 5%;
    background: #f8f9fa;
}

.intro-left {
    flex: 0.9;
}

.intro-left h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    color: #1a1a1a;
    position: sticky;
    top: 120px;
}

.intro-right {
    flex: 1.1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.intro-right p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

/* Trust Builder Asymmetric */
.trust-builder-asymmetric {
    padding: 5rem 5%;
    background: #fff;
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 3rem;
    background: #f8f9fa;
    border-radius: 10px;
    min-width: 200px;
}

.stat-card.offset-1 {
    transform: translateY(-20px);
}

.stat-card.offset-2 {
    transform: translateY(10px);
}

.stat-card.offset-3 {
    transform: translateY(-15px);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #3498db;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #555;
    text-align: center;
}

/* Problem Amplify */
.problem-amplify {
    display: flex;
    gap: 3rem;
    padding: 6rem 5%;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.problem-visual {
    flex: 1;
}

.problem-visual img {
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.problem-text {
    flex: 1;
}

.problem-text h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.problem-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.cta-inline {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: #fff;
    color: #667eea;
    font-weight: 600;
    border-radius: 6px;
    margin-top: 1rem;
    transition: all 0.3s;
}

.cta-inline:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

/* Services Preview */
.services-preview {
    padding: 6rem 5% 5rem;
    background: #fff;
}

.section-title-offset {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    margin-left: 10%;
    color: #1a1a1a;
}

.services-asymmetric-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    max-width: 400px;
    padding: 2.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s;
}

.service-card.elevated {
    transform: translateY(-20px);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.service-card.elevated-more {
    transform: translateY(-30px);
}

.service-card.offset-down {
    transform: translateY(20px);
}

.service-card.offset-down-more {
    transform: translateY(30px);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-card.elevated:hover {
    transform: translateY(-25px) scale(1.02);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.service-header h3 {
    font-size: 1.5rem;
    flex: 1;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    white-space: nowrap;
    margin-left: 1rem;
}

.service-card.elevated .service-price {
    color: #fff;
}

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

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-card.elevated .service-features li::before {
    color: #fff;
}

/* CTA Floating */
.cta-floating {
    padding: 5rem 5%;
    background: #f8f9fa;
}

.cta-box-offset {
    max-width: 600px;
    margin-left: 15%;
    padding: 3rem;
    background: #2c3e50;
    color: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.cta-box-offset h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-box-offset p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-cta-alt {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #fff;
    color: #2c3e50;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.btn-cta-alt:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Approach Section */
.approach-section {
    display: flex;
    gap: 3rem;
    padding: 6rem 5%;
    background: #fff;
    align-items: center;
}

.approach-content {
    flex: 1.2;
}

.approach-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
}

.approach-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.approach-item h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #3498db;
}

.approach-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.approach-image {
    flex: 0.8;
}

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

/* Testimonial Scatter */
.testimonial-scatter {
    padding: 6rem 5%;
    background: #f8f9fa;
}

.testimonial-scatter h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-layout {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    flex: 1 1 300px;
    max-width: 350px;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-card.pos-1 {
    transform: translateY(-15px);
}

.testimonial-card.pos-2 {
    transform: translateY(10px);
}

.testimonial-card.pos-3 {
    transform: translateY(-5px);
}

.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: #2c3e50;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #3498db;
    font-weight: 600;
}

/* Form Section Asymmetric */
.form-section-asymmetric {
    display: flex;
    gap: 3rem;
    padding: 6rem 5%;
    background: #fff;
}

.form-intro {
    flex: 0.8;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.form-container-offset {
    flex: 1.2;
    margin-top: 2rem;
}

.service-form {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 10px;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(52, 152, 219, 0.3);
}

/* Final Push */
.final-push {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
    text-align: center;
}

.final-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-final {
    display: inline-block;
    padding: 1.1rem 3rem;
    background: #fff;
    color: #f5576c;
    font-weight: 700;
    border-radius: 6px;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-final:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4);
}

/* Footer Asymmetric */
.footer-asymmetric {
    background: #1a1a1a;
    color: #fff;
    padding: 3rem 5% 1rem;
}

.footer-main {
    display: flex;
    gap: 4rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-col p {
    color: #aaa;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul li a {
    color: #aaa;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #fff;
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background: #27ae60;
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 5px 25px rgba(39, 174, 96, 0.4);
    transition: all 0.3s;
}

.sticky-btn:hover {
    background: #229954;
    transform: scale(1.05);
    box-shadow: 0 7px 30px rgba(39, 174, 96, 0.5);
}

/* Thanks Page Styles */
.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5%;
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
}

.thanks-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #555;
}

.thanks-service {
    font-weight: 600;
    color: #3498db;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
    }

    .hero-offset {
        flex-direction: column;
        padding: 3rem 5%;
    }

    .hero-text-block {
        padding-right: 0;
        max-width: 100%;
    }

    .hero-text-block h1 {
        font-size: 2.5rem;
    }

    .hero-image-offset {
        margin-top: 2rem;
        width: 100%;
    }

    .intro-stagger {
        flex-direction: column;
        gap: 2rem;
        padding: 3rem 5%;
    }

    .intro-left h2 {
        font-size: 2rem;
        position: static;
    }

    .trust-stats {
        flex-direction: column;
        align-items: center;
    }

    .stat-card {
        transform: none !important;
    }

    .problem-amplify {
        flex-direction: column;
        padding: 3rem 5%;
    }

    .section-title-offset {
        margin-left: 0;
        font-size: 2rem;
    }

    .service-card {
        transform: none !important;
        flex: 1 1 100%;
    }

    .cta-box-offset {
        margin-left: 0;
    }

    .approach-section {
        flex-direction: column;
    }

    .testimonial-card {
        transform: none !important;
    }

    .form-section-asymmetric {
        flex-direction: column;
    }

    .form-container-offset {
        margin-top: 0;
    }

    .footer-main {
        flex-direction: column;
        gap: 2rem;
    }

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

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

    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-text-block h1 {
        font-size: 2rem;
    }

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

    .nav-asymmetric {
        flex-direction: column;
        gap: 1rem;
    }

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