* {
    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;
}

.ad-disclosure {
    background: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.nav-floating {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    gap: 32px;
}

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

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

.hero-visual {
    position: relative;
    height: 85vh;
    overflow: hidden;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #1a1a1a;
}

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

.hero-overlay {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #ffffff;
    width: 100%;
    padding: 0 20px;
}

.hero-overlay h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}

.hero-overlay p {
    font-size: 24px;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 40px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.container-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-text {
    flex: 1;
}

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

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

.intro-story {
    background: #f8f9fa;
}

.intro-story h2 {
    font-size: 42px;
    margin-bottom: 32px;
    font-weight: 700;
}

.intro-story p {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.visual-break {
    padding: 0;
    position: relative;
}

.image-with-caption {
    position: relative;
    background-color: #2c3e50;
}

.image-with-caption img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    opacity: 0.7;
}

.caption-box {
    position: absolute;
    bottom: 60px;
    left: 60px;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    max-width: 500px;
}

.caption-box h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.caption-box p {
    font-size: 18px;
    color: #555;
}

.problem-amplify {
    background: #ffffff;
}

.problem-list {
    list-style: none;
    margin-top: 24px;
}

.problem-list li {
    padding: 12px 0 12px 28px;
    position: relative;
    font-size: 18px;
}

.problem-list li:before {
    content: "×";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-size: 24px;
}

.insight-reveal {
    background: #ecf0f1;
}

.insight-reveal h2 {
    font-size: 38px;
    margin-bottom: 28px;
}

.insight-reveal p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.citation {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.trust-elements {
    background: #ffffff;
}

.trust-grid {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.trust-card {
    flex: 1;
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
}

.trust-icon {
    font-size: 48px;
    color: #27ae60;
    margin-bottom: 20px;
}

.trust-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.trust-card p {
    font-size: 16px;
    color: #555;
}

.testimonials-inline {
    background: #2c3e50;
    color: #ffffff;
}

.testimonial {
    margin-bottom: 40px;
}

.testimonial:last-child {
    margin-bottom: 0;
}

.testimonial-text {
    font-size: 22px;
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 16px;
    color: #bdc3c7;
}

.products-showcase {
    background: #f8f9fa;
}

.products-showcase h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

.products-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.product-card {
    flex: 1 1 calc(33.333% - 24px);
    background: #ffffff;
    padding: 0;
    min-width: 320px;
    display: flex;
    flex-direction: column;
}

.product-image-wrapper {
    width: 100%;
    height: 320px;
    overflow: hidden;
    background-color: #e0e0e0;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.05);
}

.product-card h3 {
    font-size: 22px;
    margin: 24px 24px 12px;
}

.product-card p {
    font-size: 16px;
    color: #555;
    margin: 0 24px 16px;
    flex-grow: 1;
}

.product-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 16px 24px !important;
}

.cta-select {
    background: #3498db;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin: 0 24px 24px;
}

.cta-select:hover {
    background: #2980b9;
}

.form-section {
    background: #ffffff;
    padding: 80px 40px;
}

.form-section h2 {
    font-size: 38px;
    margin-bottom: 24px;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;
}

.order-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 16px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 2px solid #ddd;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
}

.cta-submit {
    width: 100%;
    background: #27ae60;
    color: #ffffff;
    border: none;
    padding: 18px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-submit:hover {
    background: #229954;
}

.final-cta {
    background: #ecf0f1;
    text-align: center;
}

.final-cta h2 {
    font-size: 38px;
    margin-bottom: 16px;
}

.final-cta p {
    font-size: 20px;
    color: #555;
}

.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 20px;
}

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

.footer-section {
    flex: 1;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-section a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s;
}

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

.footer-references {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding-top: 40px;
    border-top: 1px solid #34495e;
}

.footer-references h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-references p {
    font-size: 14px;
    color: #bdc3c7;
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-references a {
    color: #3498db;
    text-decoration: none;
}

.footer-references a:hover {
    text-decoration: underline;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 30px;
    background: rgba(52, 73, 94, 0.3);
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    font-size: 14px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 24px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

.cookie-reject {
    background: #e74c3c;
    color: #ffffff;
}

.cookie-reject:hover {
    background: #c0392b;
}

.page-hero {
    position: relative;
    height: 50vh;
    overflow: hidden;
}

.page-hero-simple {
    padding: 100px 40px 60px;
    background: #f8f9fa;
}

.about-content {
    background: #ffffff;
}

.about-content h2 {
    font-size: 38px;
    margin-bottom: 28px;
}

.about-content p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-values {
    background: #f8f9fa;
}

.about-values h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
}

.values-grid {
    display: flex;
    gap: 40px;
}

.value-item {
    flex: 1;
    text-align: center;
    padding: 30px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.value-item p {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
}

.about-process {
    background: #ffffff;
}

.about-mission {
    background: #ecf0f1;
}

.about-mission h2 {
    font-size: 38px;
    margin-bottom: 28px;
}

.about-mission p {
    font-size: 20px;
    line-height: 1.8;
}

.services-intro {
    background: #ffffff;
}

.services-intro h2 {
    font-size: 38px;
    margin-bottom: 24px;
}

.services-intro p {
    font-size: 19px;
    line-height: 1.7;
}

.services-list {
    background: #f8f9fa;
}

.service-detailed {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    background: #ffffff;
    padding: 40px;
}

.service-detailed:last-child {
    margin-bottom: 0;
}

.service-detailed.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background-color: #e0e0e0;
}

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

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.service-info p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.service-features {
    list-style: none;
    margin: 24px 0;
}

.service-features li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 17px;
}

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

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin: 24px 0 !important;
}

.services-guarantee {
    background: #ffffff;
    text-align: center;
}

.services-guarantee h2 {
    font-size: 38px;
    margin-bottom: 24px;
}

.services-guarantee p {
    font-size: 20px;
    color: #555;
}

.contact-layout {
    display: flex;
    gap: 80px;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 38px;
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 36px;
}

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.contact-map {
    flex: 1;
    background: #ecf0f1;
    padding: 40px;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-placeholder p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.contact-extra {
    background: #f8f9fa;
}

.contact-extra h2 {
    font-size: 38px;
    margin-bottom: 24px;
}

.contact-extra p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.thanks-page {
    background: #f8f9fa;
    min-height: 60vh;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    color: #27ae60;
    margin-bottom: 24px;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 40px;
    color: #555;
}

.order-confirmation {
    background: #ffffff;
    padding: 30px;
    margin: 40px 0;
    text-align: left;
}

.order-confirmation h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.order-confirmation p {
    font-size: 17px;
    margin-bottom: 12px;
}

.next-steps {
    background: #ffffff;
    padding: 30px;
    margin: 40px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.next-steps ul {
    list-style: none;
}

.next-steps li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 17px;
}

.next-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.thanks-actions {
    margin-top: 40px;
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-primary {
    background: #3498db;
    color: #ffffff;
}

.btn-primary:hover {
    background: #2980b9;
}

.btn-secondary {
    background: #95a5a6;
    color: #ffffff;
}

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

.legal-page {
    background: #ffffff;
}

.legal-page h1 {
    font-size: 44px;
    margin-bottom: 32px;
    color: #2c3e50;
}

.legal-page h2 {
    font-size: 30px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #34495e;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-page p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #555;
}

.legal-page ul {
    margin: 16px 0 24px 24px;
}

.legal-page li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 8px;
    color: #555;
}

.legal-page a {
    color: #3498db;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    margin: 24px 0;
    border-collapse: collapse;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}

.cookies-table th {
    background: #f8f9fa;
    font-weight: 600;
}

.contact-info {
    background: #ffffff;
}

@media (max-width: 1024px) {
    .container-split,
    .trust-grid,
    .values-grid,
    .contact-layout {
        flex-direction: column;
    }

    .service-detailed.reverse {
        flex-direction: column;
    }

    .hero-overlay h1 {
        font-size: 42px;
    }

    .product-card {
        flex: 1 1 calc(50% - 16px);
    }

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

@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        gap: 16px;
    }

    .hero-overlay h1 {
        font-size: 32px;
    }

    .hero-overlay p {
        font-size: 18px;
    }

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

    .container-narrow,
    .container-wide {
        padding: 50px 20px;
    }

    .thanks-actions {
        flex-direction: column;
    }
}
