* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --accent-color: #e74c3c;
    --text-dark: #1a1a1a;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dee2e6;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-large: 0 8px 24px rgba(0, 0, 0, 0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #c0392b;
}

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
}

.sticky-btn {
    background: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-large);
    transition: all 0.3s ease;
    display: inline-block;
}

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

.hero-visual {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

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

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
}

.content-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.content-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.centered {
    text-align: center;
}

section {
    padding: 5rem 0;
}

section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

section p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.curiosity-hook {
    background: var(--bg-light);
}

.curiosity-hook h2 {
    font-size: 2.2rem;
    line-height: 1.4;
}

.story-section {
    background: var(--bg-white);
}

.split-layout {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-layout > * {
    flex: 1;
}

.split-reverse {
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-direction: row-reverse;
}

.split-reverse > * {
    flex: 1;
}

.story-text h3 {
    margin-bottom: 1.5rem;
}

.story-text p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.story-image img {
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

.problem-amplify h2 {
    color: white;
}

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

.problem-card {
    flex: 1 1 calc(50% - 2rem);
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.problem-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
}

.problem-card p {
    color: rgba(255, 255, 255, 0.9);
}

.insight-reveal {
    background: var(--bg-light);
}

.insight-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
}

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

.full-bleed-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 4rem 5%;
}

.overlay-text h3 {
    color: white;
    font-size: 2.5rem;
}

.trust-building {
    background: var(--bg-white);
}

.trust-elements {
    display: flex;
    gap: 3rem;
}

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

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

.trust-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.testimonial-inline {
    background: var(--primary-color);
    padding: 4rem 0;
}

.testimonial-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
}

.testimonial-text {
    font-size: 1.8rem;
    font-style: italic;
    color: white;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.benefits-reveal {
    background: var(--bg-light);
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 1.2rem 0 1.2rem 3rem;
    position: relative;
    font-size: 1.15rem;
    color: var(--text-dark);
}

.benefits-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.5rem;
}

.transformation {
    background: var(--bg-white);
}

.transform-image img,
.transform-image img {
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.social-proof {
    background: var(--bg-light);
}

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

.testimonial-short {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.testimonial-short p {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.testimonial-short span {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.95rem;
}

.urgency-element {
    background: var(--accent-color);
    color: white;
}

.urgency-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.urgency-box h3 {
    color: white;
    font-size: 2rem;
}

.urgency-box p {
    color: white;
}

.urgency-note {
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 1rem;
}

.cta-button-large {
    display: inline-block;
    background: white;
    color: var(--accent-color);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.pricing-reveal {
    background: var(--bg-white);
}

.pricing-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

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

.pricing-card {
    flex: 1 1 calc(33.333% - 2rem);
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
    border-color: var(--accent-color);
}

.pricing-card.featured {
    border-color: var(--accent-color);
    border-width: 3px;
    box-shadow: var(--shadow);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

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

.features li {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
}

.features li:last-child {
    border-bottom: none;
}

.select-service {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: var(--accent-color);
}

.final-push {
    background: var(--bg-light);
}

.form-section {
    background: var(--bg-white);
}

.form-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group input[readonly] {
    background: var(--bg-light);
}

.form-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin-bottom: 2rem;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 0.3rem;
    width: 18px;
    height: 18px;
}

.form-checkbox label {
    font-size: 0.95rem;
    color: var(--text-light);
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.guarantee {
    background: var(--bg-light);
    padding: 3rem 0;
}

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

.footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

.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);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
    backdrop-filter: blur(10px);
}

.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 {
    margin: 0;
    font-size: 0.95rem;
}

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

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

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

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

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

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

.page-hero {
    margin-top: 70px;
    padding: 5rem 2rem 3rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    color: white;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
}

.about-story,
.services-intro {
    background: var(--bg-white);
}

.values-section {
    background: var(--bg-light);
}

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

.value-card {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.value-card h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.team-philosophy {
    background: var(--bg-white);
}

.cta-simple {
    background: var(--bg-light);
    padding: 4rem 0;
}

.cta-button {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

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

.products-detailed {
    background: var(--bg-white);
}

.product-detail-card {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 16px;
}

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

.product-image {
    flex: 1;
}

.product-image img {
    border-radius: 12px;
    box-shadow: var(--shadow);
    width: 100%;
}

.product-info {
    flex: 1;
}

.product-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
    margin: 1rem 0;
}

.product-features {
    list-style: none;
    margin: 1.5rem 0;
}

.product-features li {
    padding: 0.6rem 0 0.6rem 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.product-features li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.warranty {
    font-size: 0.95rem;
    color: #27ae60;
    font-weight: 600;
    margin: 1rem 0;
}

.btn-product {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

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

.guarantee-section {
    background: var(--bg-light);
    padding: 3rem 0;
}

.contact-info {
    background: var(--bg-white);
}

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

.contact-card {
    flex: 1;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}

.contact-card h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.contact-card p {
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.contact-details,
.visit-us {
    background: var(--bg-light);
}

.thanks-section {
    margin-top: 70px;
    padding: 5rem 2rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-icon {
    font-size: 5rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-details {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: left;
}

.thanks-details h3 {
    margin-bottom: 1rem;
}

.thanks-list {
    list-style: none;
    padding: 0;
}

.thanks-list li {
    padding: 0.7rem 0 0.7rem 2rem;
    position: relative;
}

.thanks-list li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.selected-service-display {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border: 2px solid var(--accent-color);
}

.service-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 2rem 0;
}

.link-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.link-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.thanks-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 2rem;
}

.legal-page {
    margin-top: 70px;
    background: var(--bg-white);
}

.legal-page h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-page ul,
.legal-page ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-page li {
    margin-bottom: 0.7rem;
    color: var(--text-dark);
}

.update-date {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.data-retention-table,
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.data-retention-table th,
.data-retention-table td,
.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.data-retention-table th,
.cookies-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
}

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

    .nav-links {
        gap: 1rem;
    }

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

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

    section h2 {
        font-size: 1.8rem;
    }

    .split-layout,
    .split-reverse {
        flex-direction: column;
        gap: 2rem;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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