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

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

ul {
    list-style: none;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a202c;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    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-content a {
    color: #63b3ed;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-accept {
    background: #48bb78;
    color: #ffffff;
}

.btn-accept:hover {
    background: #38a169;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2d3748;
    transition: all 0.3s;
}

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

.nav-menu a {
    color: #2d3748;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #2b6cb0;
}

.hero-split {
    margin-top: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-left,
.hero-right {
    flex: 1;
    padding: 3rem;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
    margin-left: auto;
    padding-right: 4rem;
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-right {
    background: #f7fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2b6cb0;
    color: #ffffff;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

.btn-primary:hover {
    background: #2c5282;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(43, 108, 176, 0.3);
}

.problem-amplify {
    padding: 6rem 2rem;
    background: #1a202c;
    color: #ffffff;
}

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

.split-content,
.split-visual {
    flex: 1;
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: #63b3ed;
    margin-bottom: 1rem;
}

.insight-section {
    padding: 6rem 2rem;
}

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

.insight-image,
.insight-text {
    flex: 1;
}

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

.insight-text h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.insight-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
    line-height: 1.8;
}

.inline-cta {
    margin-top: 2rem;
}

.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: transparent;
    color: #2b6cb0;
    border: 2px solid #2b6cb0;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #2b6cb0;
    color: #ffffff;
}

.trust-building {
    padding: 6rem 2rem;
    background: #f7fafc;
}

.trust-building h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: #1a202c;
}

.process-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.process-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.process-icon {
    font-size: 3rem;
    font-weight: 800;
    color: #2b6cb0;
    margin-bottom: 1.5rem;
}

.process-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.process-card p {
    color: #4a5568;
    line-height: 1.7;
}

.testimonials-inline {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.testimonial-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.testimonial-left,
.testimonial-right {
    flex: 1;
}

blockquote {
    font-size: 1.3rem;
    line-height: 1.8;
    font-style: italic;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-weight: 600;
    font-size: 1rem;
}

.services-section {
    padding: 6rem 2rem;
}

.services-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.services-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.services-intro p {
    font-size: 1.2rem;
    color: #4a5568;
}

.services-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #2b6cb0;
}

.service-card.featured {
    border-color: #2b6cb0;
    border-width: 3px;
    background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
}

.service-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #48bb78;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.service-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.service-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2b6cb0;
    margin-bottom: 2rem;
}

.service-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #718096;
}

.service-features {
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4a5568;
    line-height: 1.6;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: 700;
}

.btn-select {
    width: 100%;
    padding: 1rem;
    background: #2b6cb0;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select:hover {
    background: #2c5282;
}

.urgency-section {
    padding: 4rem 2rem;
    background: #fed7d7;
}

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

.urgency-container h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #742a2a;
}

.urgency-container p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #c53030;
}

.urgency-counter {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    display: inline-block;
}

.spots-left {
    font-size: 1.3rem;
    font-weight: 700;
    color: #c53030;
}

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

.form-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: stretch;
}

.form-left,
.form-right {
    flex: 1;
}

.form-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.form-left p {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.check-icon {
    background: #48bb78;
    color: #ffffff;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
}

.form-right {
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-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: #2d3748;
}

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

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

.btn-submit {
    padding: 1.2rem;
    background: #2b6cb0;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
}

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

.form-privacy {
    font-size: 0.9rem;
    color: #718096;
    text-align: center;
}

.form-privacy a {
    color: #2b6cb0;
    text-decoration: underline;
}

.final-cta {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: #ffffff;
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #cbd5e0;
}

.btn-primary-large {
    display: inline-block;
    padding: 1.3rem 3rem;
    background: #48bb78;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-primary-large:hover {
    background: #38a169;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(72, 187, 120, 0.4);
}

.footer {
    background: #1a202c;
    color: #cbd5e0;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col a {
    color: #cbd5e0;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #63b3ed;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #2d3748;
    text-align: center;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 900;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background: #e53e3e;
    color: #ffffff;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(229, 62, 62, 0.4);
    transition: all 0.3s;
}

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

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-left {
        max-width: 100%;
        padding-right: 3rem;
    }

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

    .split-container,
    .insight-wrapper,
    .testimonial-split,
    .form-container {
        flex-direction: column;
    }

    .services-layout {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-left h1 {
        font-size: 2rem;
    }

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

    .split-content h2 {
        font-size: 2rem;
    }

    .insight-text h3 {
        font-size: 1.8rem;
    }

    .process-grid {
        flex-direction: column;
    }

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