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

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

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

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

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #718096;
    padding: 0.25rem 0.75rem;
    background: #e2e8f0;
    border-radius: 4px;
}

.hero-visual {
    margin-top: 70px;
    height: 85vh;
    position: relative;
    overflow: hidden;
}

.hero-image-overlay {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 82, 130, 0.7), rgba(113, 128, 150, 0.5));
}

.hero-text-layer {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 900px;
}

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

.hero-text-layer p {
    font-size: 1.4rem;
    font-weight: 300;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}

.page-hero {
    margin-top: 70px;
    height: 50vh;
    position: relative;
}

.story-hook {
    padding: 5rem 2rem;
    background: white;
}

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

.narrow-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a365d;
    font-weight: 700;
}

.narrow-content p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.narrow-content img {
    width: 100%;
    margin: 2rem 0;
    border-radius: 8px;
}

.problem-amplify {
    padding: 5rem 2rem;
    background: #f7fafc;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a365d;
    font-weight: 700;
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.insight-list {
    list-style: none;
    margin-top: 2rem;
}

.insight-list li {
    padding: 1rem 0 1rem 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #2d3748;
}

.insight-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2c5282;
    font-weight: bold;
}

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

.centered-insight {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.centered-insight h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a365d;
    font-weight: 700;
}

.centered-insight p {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.science-card {
    background: #edf2f7;
    padding: 2rem;
    border-radius: 10px;
    margin: 2.5rem 0;
    border-left: 5px solid #2c5282;
}

.science-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
}

.trust-layer {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

.testimonial {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.testimonial .quote {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #2d3748;
    margin-bottom: 1rem;
    font-style: italic;
}

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

.solution-intro {
    padding: 5rem 2rem;
    background: #f7fafc;
}

.asymmetric-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.content-block-offset {
    flex: 1.2;
}

.content-block-offset h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a365d;
    font-weight: 700;
}

.content-block-offset p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.content-block-offset img {
    width: 100%;
    border-radius: 10px;
    margin-top: 2rem;
}

.benefit-stack {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #2c5282;
    font-weight: 700;
}

.benefit-item p {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
}

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

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

.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a365d;
    font-weight: 700;
}

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

.service-cards {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    flex: 0 1 calc(50% - 1rem);
    background: #f7fafc;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

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

.service-card img {
    width: 100%;
    height: 250px;
    background-color: #cbd5e0;
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #1a365d;
    font-weight: 700;
}

.service-card p {
    margin: 0 1.5rem 1rem;
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: #2c5282;
    margin: 1rem 1.5rem;
}

.btn-select {
    display: block;
    margin: 1.5rem;
    padding: 1rem 2rem;
    background: #2c5282;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.form-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-section.hidden {
    display: none;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

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

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: #2c5282;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #2a4365;
}

.final-assurance {
    padding: 4rem 2rem;
    background: #f7fafc;
}

.assurance-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.assurance-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a365d;
    font-weight: 700;
}

.assurance-content p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
}

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

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

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.footer-section a:hover {
    color: white;
}

.references {
    list-style: decimal;
    padding-left: 1.5rem;
}

.references li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(45, 55, 72, 0.98);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #90cdf4;
    text-decoration: underline;
}

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

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

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

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

.btn-reject {
    background: #718096;
    color: white;
}

.btn-reject:hover {
    background: #4a5568;
}

.legal-page {
    margin-top: 70px;
    padding: 4rem 2rem;
    background: white;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a365d;
    font-weight: 700;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: #2c5282;
    font-weight: 700;
}

.legal-container h3 {
    font-size: 1.4rem;
    margin: 2rem 0 0.75rem;
    color: #2d3748;
    font-weight: 600;
}

.legal-container p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #4a5568;
}

.legal-container ul,
.legal-container ol {
    margin: 1rem 0 1rem 2rem;
    line-height: 1.8;
    color: #4a5568;
}

.legal-container li {
    margin-bottom: 0.5rem;
}

.legal-container a {
    color: #2c5282;
    text-decoration: underline;
}

.about-story {
    padding: 5rem 2rem;
    background: white;
}

.mission-values {
    padding: 5rem 2rem;
    background: #f7fafc;
}

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

.value-block {
    flex: 0 1 calc(50% - 1rem);
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.value-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5282;
    font-weight: 700;
}

.value-block p {
    color: #4a5568;
    line-height: 1.7;
}

.team-approach {
    padding: 5rem 2rem;
    background: white;
}

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

.approach-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a365d;
    font-weight: 700;
}

.approach-content p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.services-detail {
    padding: 4rem 2rem;
    background: white;
}

.service-detail-card {
    max-width: 1200px;
    margin: 3rem auto;
    display: flex;
    gap: 3rem;
    align-items: center;
    background: #f7fafc;
    padding: 2rem;
    border-radius: 12px;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    border-radius: 10px;
    background-color: #cbd5e0;
}

.service-detail-text {
    flex: 1;
}

.service-detail-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a365d;
    font-weight: 700;
}

.service-detail-text h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.75rem;
    color: #2c5282;
    font-weight: 700;
}

.service-detail-text p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-detail-text ul {
    margin: 1rem 0 1.5rem 1.5rem;
    color: #4a5568;
}

.service-detail-text li {
    margin-bottom: 0.5rem;
}

.price-highlight {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2c5282;
    margin: 1rem 0;
}

.btn-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background: #2c5282;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-cta:hover {
    background: #2a4365;
}

.services-guarantee {
    padding: 4rem 2rem;
    background: #f7fafc;
}

.guarantee-box {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.guarantee-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a365d;
    font-weight: 700;
}

.guarantee-box p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
}

.contact-page {
    margin-top: 70px;
    padding: 5rem 2rem;
    background: white;
}

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

.contact-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a365d;
    font-weight: 700;
}

.contact-container > p {
    font-size: 1.2rem;
    color: #718096;
    margin-bottom: 3rem;
}

.contact-info-grid {
    display: flex;
    gap: 2rem;
    margin: 3rem 0;
}

.contact-info-block {
    flex: 1;
    background: #f7fafc;
    padding: 2rem;
    border-radius: 10px;
}

.contact-info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c5282;
    font-weight: 700;
}

.contact-info-block p {
    color: #4a5568;
    line-height: 1.7;
}

.contact-note {
    margin-top: 3rem;
    padding: 2rem;
    background: #edf2f7;
    border-radius: 10px;
}

.contact-note p {
    color: #2d3748;
    line-height: 1.7;
}

.contact-note a {
    color: #2c5282;
    text-decoration: underline;
}

.thanks-page {
    margin-top: 70px;
    padding: 5rem 2rem;
    background: white;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #48bb78;
    color: white;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a365d;
    font-weight: 700;
}

.thanks-message {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.thanks-container p {
    color: #718096;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.thanks-next-steps {
    margin: 3rem 0;
    background: #f7fafc;
    padding: 2rem;
    border-radius: 10px;
    text-align: left;
}

.thanks-next-steps h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5282;
    font-weight: 700;
}

.thanks-next-steps ol {
    margin-left: 1.5rem;
    color: #4a5568;
    line-height: 1.8;
}

.thanks-next-steps li {
    margin-bottom: 0.75rem;
}

.btn-return {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: #2c5282;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-return:hover {
    background: #2a4365;
}

@media (max-width: 768px) {
    .floating-nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

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

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

    .hero-text-layer p {
        font-size: 1rem;
    }

    .split-visual,
    .asymmetric-layout,
    .testimonial-cards,
    .contact-info-grid {
        flex-direction: column;
    }

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

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

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

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

    .value-block {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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