* {
    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.7;
    color: #1a1a1a;
    background: #ffffff;
}

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 1200px;
}

.nav-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0052cc;
}

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

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

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

.ad-label {
    font-size: 0.75rem;
    color: #666;
    background: #f0f0f0;
    padding: 4px 12px;
    border-radius: 15px;
}

.hero-immersive {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.85), rgba(0, 20, 50, 0.75));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.6;
}

.story-opener {
    padding: 120px 20px;
    background: #f8f9fa;
}

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

.narrow-content p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.problem-visual {
    padding: 100px 20px;
    background: #ffffff;
}

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

.split-image {
    flex: 1;
    background: #e8eef5;
}

.split-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #0052cc;
}

.split-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #444;
}

.insight-block {
    padding: 120px 20px;
    background: #0a1628;
    color: #ffffff;
}

.insight-block h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.insight-block p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.insight-block img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 40px 0;
    background: #1a2942;
}

.trust-signals {
    padding: 100px 20px;
    background: #f0f4f8;
}

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

.container-wide h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #0052cc;
}

.process-cards {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

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

.process-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.process-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.testimonial-inline {
    padding: 80px 20px;
    background: #0052cc;
    color: #ffffff;
}

.testimonial-inline blockquote {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-inline cite {
    font-style: normal;
    font-size: 1rem;
    opacity: 0.9;
}

.services-reveal {
    padding: 120px 20px;
    background: #ffffff;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 60px;
    color: #555;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    width: 340px;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #e0e0e0;
}

.service-card h3 {
    font-size: 1.4rem;
    margin: 20px 20px 10px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 0.95rem;
    margin: 0 20px 15px;
    color: #666;
    line-height: 1.5;
}

.service-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0052cc;
    margin: 15px 20px;
}

.cta-service {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 14px;
    background: #0052cc;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-service:hover {
    background: #003d99;
}

.form-section {
    padding: 100px 20px;
    background: #f0f4f8;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #0052cc;
}

.form-container p {
    margin-bottom: 30px;
    color: #555;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0052cc;
}

.form-group input[readonly] {
    background: #f5f5f5;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #0052cc;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #003d99;
}

.final-reassurance {
    padding: 100px 20px;
    background: #ffffff;
}

.final-reassurance h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #0052cc;
    text-align: center;
}

.final-reassurance p {
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 20px;
}

.site-footer {
    background: #0a1628;
    color: #ffffff;
    padding: 60px 20px 20px;
}

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

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #b8c5d6;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #b8c5d6;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #7a8a9e;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 25px;
    display: none;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: #4a9eff;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-accept {
    background: #0052cc;
    color: #ffffff;
}

.btn-accept:hover {
    background: #003d99;
}

.btn-reject {
    background: #444;
    color: #ffffff;
}

.btn-reject:hover {
    background: #555;
}

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

    .hero-content p {
        font-size: 1.1rem;
    }

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

    .nav-links {
        display: none;
    }

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

    .service-grid {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
    }
}