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

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    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;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: 0.3s;
}

.hero-immersive {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
}

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

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

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

.cta-hero {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #e74c3c;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.4);
}

.story-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

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

.story-lead {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #34495e;
}

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

.insight-block {
    padding: 6rem 2rem;
    background: #2c3e50;
    color: white;
}

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

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.insight-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.insight-visual {
    flex: 1;
}

.visual-placeholder svg {
    width: 100%;
    height: auto;
}

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

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

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

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

.trust-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.trust-icon {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

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

.trust-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

.testimonial-flow {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, #ecf0f1 0%, white 100%);
}

.testimonial-inline {
    background: white;
    padding: 2.5rem;
    border-left: 4px solid #e74c3c;
    margin: 3rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.testimonial-inline p {
    font-size: 1.2rem;
    font-style: italic;
    color: #34495e;
    margin-bottom: 1rem;
}

.testimonial-inline cite {
    display: block;
    text-align: right;
    font-style: normal;
    color: #7f8c8d;
    font-weight: 600;
}

.story-transition {
    text-align: center;
    font-size: 1.3rem;
    margin: 3rem 0;
    color: #2c3e50;
    font-weight: 600;
}

.problem-amplify {
    padding: 6rem 2rem;
    background: #34495e;
    color: white;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
}

.problem-amplify h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.problem-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.problem-number {
    font-size: 3rem;
    font-weight: 800;
    color: #e74c3c;
    flex-shrink: 0;
}

.problem-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.problem-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.solution-reveal {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

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

.solution-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255,255,255,0.2);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.solution-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.solution-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.reveal-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.reveal-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #7f8c8d;
    margin-bottom: 4rem;
}

.services-stack {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    padding: 2.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s;
    position: relative;
}

.service-card:hover {
    border-color: #e74c3c;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

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

.service-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: #e74c3c;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

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

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

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

.service-card.featured .service-price {
    color: white;
}

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

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

.service-card.featured .btn-select {
    background: white;
    color: #667eea;
}

.service-card.featured .btn-select:hover {
    background: #ecf0f1;
}

.urgency-block {
    padding: 5rem 2rem;
    background: #e74c3c;
    color: white;
    text-align: center;
}

.urgency-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.urgency-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
}

.cta-urgency {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: white;
    color: #e74c3c;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s;
}

.cta-urgency:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.guarantee-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
    text-align: center;
}

.guarantee-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.guarantee-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #34495e;
}

.form-section {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, white 0%, #ecf0f1 100%);
}

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

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

.form-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.main-form {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    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 {
    width: 100%;
    padding: 1.2rem;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
}

.contact-info {
    padding: 5rem 2rem;
    background: #2c3e50;
    color: white;
}

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

.contact-details {
    max-width: 600px;
    margin: 0 auto;
}

.contact-details p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

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

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #e74c3c;
}

.footer-copy {
    color: #7f8c8d;
}

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

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
}

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

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

.btn-accept {
    background: #2ecc71;
    color: white;
}

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

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

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

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

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transform: translateX(-100%);
        transition: transform 0.3s;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        transform: translateX(0);
    }

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

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

    .insight-container {
        flex-direction: column;
    }

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

    .problem-item {
        flex-direction: column;
        gap: 1rem;
    }

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

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

    .sticky-btn {
        text-align: center;
    }
}
