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

:root {
    --primary-color: #1a2942;
    --secondary-color: #2d4a6f;
    --accent-color: #e67e22;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #ddd;
    --success-color: #27ae60;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.15);
}

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

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

a:hover {
    color: #d35400;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

ul {
    margin-bottom: 1rem;
}

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background-color: var(--accent-color);
    color: white;
}

.btn-cookie-accept:hover {
    background-color: #d35400;
}

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

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

.nav-minimal {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo:hover {
    color: var(--secondary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: all 0.3s ease;
}

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

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

.nav-menu a:hover {
    color: var(--accent-color);
}

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

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    z-index: 1;
}

.hero-image-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%231a2942" width="1200" height="600"/><path fill="%232d4a6f" opacity="0.3" d="M0 300 L400 150 L800 250 L1200 100 L1200 600 L0 600 Z"/></svg>');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

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

.hero-text-overlay h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-lead {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-hero {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background-color: var(--accent-color);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.cta-hero:hover {
    background-color: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.story-intro {
    padding: 4rem 2rem;
    background-color: var(--bg-white);
}

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

.opening-line {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.emphasize-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-top: 2rem;
}

.problem-amplification {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.content-wrapper h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
}

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

.problem-card {
    flex: 1;
    min-width: 280px;
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.story-scenario {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

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

.split-image {
    flex: 1;
    min-width: 300px;
}

.scenario-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><rect fill="%23667eea" width="400" height="400"/><circle cx="200" cy="200" r="150" fill="%23764ba2" opacity="0.5"/></svg>');
    background-size: cover;
    background-position: center;
}

.split-text {
    flex: 1;
    min-width: 300px;
}

.scenario-twist {
    font-weight: 600;
    color: var(--accent-color);
    margin-top: 1.5rem;
}

.scenario-cost {
    font-size: 1.3rem;
    margin-top: 1rem;
    color: var(--primary-color);
}

.insight-reveal {
    padding: 5rem 2rem;
    background-color: var(--secondary-color);
    color: white;
}

.insight-reveal h2 {
    color: white;
}

.insight-list {
    margin: 2rem 0;
    padding-left: 1.5rem;
}

.insight-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.insight-conclusion {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 2rem;
    color: var(--accent-color);
}

.trust-building {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.trust-intro {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
}

.trust-explanation {
    max-width: 800px;
    margin: 2rem auto 0;
    text-align: center;
    font-size: 1.1rem;
}

.testimonials-inline {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.testimonial-card {
    background-color: white;
    padding: 2rem;
    border-left: 4px solid var(--accent-color);
    margin-bottom: 2rem;
    border-radius: 4px;
    box-shadow: var(--shadow);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

.benefits-reveal {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.benefits-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
}

.service-detailed {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-header {
    background-color: var(--primary-color);
    color: white;
    padding: 2rem;
}

.service-header h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.service-tagline {
    font-size: 1.1rem;
    opacity: 0.9;
}

.service-body {
    padding: 2rem;
}

.service-body h4 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.service-body ul {
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.service-body li {
    margin-bottom: 0.75rem;
}

.service-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.btn-select-service {
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.urgency-block {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, #d35400 100%);
    color: white;
}

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

.urgency-content h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.urgency-stat {
    font-size: 1.2rem;
    margin: 2rem 0;
}

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

.cta-urgency:hover {
    background-color: var(--bg-light);
    transform: scale(1.05);
}

.guarantee-section {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.guarantee-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.guarantee-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.guarantee-item h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.final-cta-section {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.cta-form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.cta-form-container h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.form-lead {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.service-form,
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.btn-submit:hover {
    background-color: #d35400;
    transform: translateY(-2px);
}

.form-privacy {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
}

.sticky-cta.show {
    opacity: 1;
    transform: translateY(0);
}

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

.sticky-cta a:hover {
    background-color: #d35400;
    transform: scale(1.05);
}

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

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

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
}

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

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

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

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

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

.page-hero-simple {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 5rem 2rem 3rem;
    text-align: center;
}

.page-hero-content h1 {
    color: white;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-story {
    padding: 4rem 2rem;
    background-color: var(--bg-white);
}

.team-section {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.team-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.team-member {
    flex: 1;
    min-width: 280px;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color) 0%, #d35400 100%);
    margin: 0 auto 1.5rem;
}

.team-role {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.values-section {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.values-list {
    margin-top: 3rem;
}

.value-item {
    margin-bottom: 2rem;
}

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

.cta-section-simple {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, #d35400 100%);
    text-align: center;
}

.cta-simple-content h2 {
    color: white;
    margin-bottom: 2rem;
}

.btn-cta-primary {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background-color: white;
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    background-color: var(--bg-light);
    transform: scale(1.05);
}

.services-overview {
    padding: 4rem 2rem;
    background-color: var(--bg-white);
}

.contact-section {
    padding: 4rem 2rem;
    background-color: var(--bg-white);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-item {
    margin-bottom: 2rem;
}

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

.contact-note {
    margin-top: 2rem;
    font-style: italic;
    color: var(--text-light);
}

.contact-form-wrapper {
    flex: 1;
    min-width: 300px;
}

.thanks-section {
    padding: 6rem 2rem;
    background-color: var(--bg-white);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--success-color);
    color: white;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.service-confirmation {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

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

.btn-primary:hover {
    background-color: #d35400;
}

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

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

.legal-page {
    padding: 4rem 2rem;
    background-color: var(--bg-white);
}

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

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content ul {
    padding-left: 2rem;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

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

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 600;
}

@media (max-width: 992px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

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

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

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

    .trust-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

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

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        padding: 1rem 2rem;
        border-bottom: 1px solid var(--border-color);
    }

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

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

    .cta-form-container {
        padding: 2rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

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

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

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

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

    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.75rem;
    }

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

    .opening-line {
        font-size: 1.2rem;
    }

    .service-pricing {
        flex-direction: column;
        align-items: flex-start;
    }

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