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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #fff;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Navigation */
.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #c0392b;
    letter-spacing: 1px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

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

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

.nav-menu a {
    color: #2c3e50;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.nav-menu a:hover {
    background: #f8f9fa;
    color: #c0392b;
}

/* Hero Section */
.hero-overlay {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 60px;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0.9;
}

.hero-image-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="rgba(255,255,255,0.05)"/><path d="M0 50 L50 0 L100 50 L50 100 Z" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 200px 200px;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
}

.cta-hero {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #fff;
    color: #667eea;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Story Intro Section */
.story-intro {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

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

.story-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    line-height: 1.3;
}

.story-intro p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.story-intro em {
    font-style: italic;
    color: #c0392b;
    font-weight: 600;
}

/* Visual Break Section */
.visual-break {
    display: flex;
    flex-wrap: wrap;
    min-height: 500px;
}

.image-panel {
    flex: 1 1 50%;
    min-height: 500px;
    background: #34495e;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #3498db, #2ecc71);
    position: relative;
}

.image-placeholder::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M21 3H3C2 3 1 4 1 5v14c0 1.1 1 2 2 2h18c1 0 2-1 2-2V5c0-1-1-2-2-2zm0 15.92c-.02.03-.06.06-.08.08H3V5.08L3.08 5h17.83c.03.02.06.06.08.08v13.84zm-10-3.41L8.5 12.5 5 17h14l-4.5-6z"/></svg>');
    background-size: contain;
    opacity: 0.3;
}

.text-panel {
    flex: 1 1 50%;
    padding: 4rem;
    background: #2c3e50;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-panel h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.text-panel p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Insight Section */
.insight-section {
    padding: 6rem 2rem;
    background: #fff;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
}

.insight-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #2c3e50;
}

.insight-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.insight-card {
    flex: 1 1 calc(50% - 1rem);
    padding: 2.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.insight-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.insight-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.insight-card p {
    color: #555;
    line-height: 1.7;
}

/* Testimonial Flow */
.testimonial-flow {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 3rem;
    background: #fff;
    border-left: 5px solid #c0392b;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-card blockquote {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #2c3e50;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-card cite {
    font-style: normal;
    color: #7f8c8d;
    font-weight: 600;
}

/* CTA Inline */
.cta-inline {
    padding: 5rem 2rem;
    background: #c0392b;
    text-align: center;
}

.cta-box {
    max-width: 600px;
    margin: 0 auto;
    color: #fff;
}

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

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

.btn-cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #fff;
    color: #c0392b;
    font-weight: 700;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

/* Benefits Reveal */
.benefits-reveal {
    padding: 6rem 2rem;
    background: #fff;
}

.benefits-reveal .narrow-content {
    text-align: center;
    margin-bottom: 4rem;
}

.benefits-reveal h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.benefits-reveal .narrow-content p {
    font-size: 1.2rem;
    color: #555;
}

/* Services Funnel */
.services-funnel {
    max-width: 900px;
    margin: 0 auto;
}

.service-block {
    position: relative;
    margin-bottom: 4rem;
    padding: 3rem;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    gap: 2rem;
    transition: box-shadow 0.3s;
}

.service-block:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-block.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: #f39c12;
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.service-number {
    font-size: 4rem;
    font-weight: 800;
    color: #c0392b;
    opacity: 0.2;
    line-height: 1;
    flex-shrink: 0;
}

.service-block.featured .service-number {
    color: #fff;
    opacity: 0.3;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-block.featured .service-content h3 {
    color: #fff;
}

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

.service-block.featured .service-content > p {
    color: rgba(255, 255, 255, 0.95);
}

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

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

.service-block.featured .service-features li {
    color: rgba(255, 255, 255, 0.95);
}

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

.service-block.featured .service-features li::before {
    color: #f39c12;
}

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

.service-block.featured .service-price {
    color: #fff;
}

.btn-select-service {
    padding: 1rem 2.5rem;
    background: #c0392b;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select-service:hover {
    background: #a93226;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(192, 57, 43, 0.4);
}

.service-block.featured .btn-select-service {
    background: #fff;
    color: #764ba2;
}

.service-block.featured .btn-select-service:hover {
    background: #f8f9fa;
}

/* Urgency Section */
.urgency-section {
    padding: 4rem 2rem;
    background: #fff3cd;
    border-top: 3px solid #f39c12;
    border-bottom: 3px solid #f39c12;
}

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

.urgency-container h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.urgency-container p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.urgency-note {
    font-size: 1.15rem;
    font-weight: 700;
    color: #c0392b;
}

/* Form Section */
.form-section {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, #f8f9fa, #fff);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.form-intro {
    text-align: center;
    color: #555;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    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: #667eea;
}

.form-privacy {
    margin-top: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.3rem;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

.checkbox-label a {
    color: #667eea;
    text-decoration: underline;
}

.btn-submit {
    padding: 1.2rem;
    background: #c0392b;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: #a93226;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(192, 57, 43, 0.4);
}

/* Final Trust Section */
.final-trust {
    padding: 5rem 2rem;
    background: #2c3e50;
    color: #fff;
}

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

.trust-item {
    flex: 1 1 300px;
    text-align: center;
}

.trust-item h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #f39c12;
}

.trust-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.site-footer {
    background: #1a252f;
    color: #fff;
    padding: 3rem 2rem 2rem;
}

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

.footer-col {
    flex: 1 1 250px;
}

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

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

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

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background: #c0392b;
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(192, 57, 43, 0.4);
    transition: all 0.3s;
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(192, 57, 43, 0.5);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: #fff;
    padding: 1.5rem 2rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}

.cookie-content p {
    flex: 1 1 300px;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.btn-cookie {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

.btn-cookie.reject {
    background: #95a5a6;
    color: #fff;
}

.btn-cookie.reject:hover {
    background: #7f8c8d;
}

.cookie-link {
    color: #f39c12;
    text-decoration: underline;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .insight-card {
        flex: 1 1 100%;
    }

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

    .service-number {
        font-size: 3rem;
    }

    .visual-break {
        flex-direction: column;
    }

    .image-panel,
    .text-panel {
        min-height: 400px;
    }

    .text-panel {
        padding: 2rem;
    }
}

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

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        max-height: 400px;
        padding: 1rem 0;
    }

    .nav-menu li {
        padding: 0.5rem 2rem;
    }

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

    .form-container {
        padding: 2rem 1.5rem;
    }

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

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

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

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

    .story-intro h2,
    .benefits-reveal h2 {
        font-size: 1.8rem;
    }

    .service-content h3 {
        font-size: 1.5rem;
    }

    .service-price {
        font-size: 2rem;
    }
}
