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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --border-color: #bdc3c7;
    --success-color: #27ae60;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

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

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

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

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

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

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

.nav-floating {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

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

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

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-cta {
    background: var(--secondary-color);
    color: white;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.hero-story {
    min-height: 90vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 3rem 1.5rem;
}

.hero-overlay {
    width: 100%;
}

.hero-content-narrow {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

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

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

.hero-scroll-indicator {
    font-size: 2rem;
    margin-top: 3rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.container-narrow {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-medium {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.container-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 5rem 0;
}

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

.text-large {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.section-story-intro p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
}

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

.section-problem h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.problem-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

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

.problem-item p {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.cta-inline {
    text-align: center;
    padding: 3rem 0;
    background: var(--bg-white);
}

.btn-primary {
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.section-insight {
    background: var(--primary-color);
    color: white;
    padding: 5rem 0;
}

.section-insight h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.section-insight p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.text-highlight {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 2rem;
}

.section-transformation {
    background: var(--bg-white);
    padding: 5rem 0;
}

.section-transformation h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3.5rem;
}

.transformation-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.transform-block {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 5px solid var(--secondary-color);
}

.transform-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.transform-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.transform-block p {
    font-size: 1.1rem;
    color: var(--text-dark);
}

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

.testimonial-item {
    background: white;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

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

.cta-section-large {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 5rem 1.5rem;
}

.cta-section-large h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.btn-cta-large {
    background: white;
    color: var(--primary-color);
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 4px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.section-method {
    background: var(--bg-white);
    padding: 5rem 0;
}

.section-method h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.section-method > .container-narrow > p {
    font-size: 1.15rem;
    margin-bottom: 3rem;
}

.method-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.method-step {
    padding-left: 2rem;
    border-left: 3px solid var(--secondary-color);
}

.method-step h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.method-step p {
    font-size: 1.1rem;
}

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

.section-proof h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.proof-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.stat-item {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    flex: 1;
    min-width: 200px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.stat-item p {
    font-size: 1rem;
    color: var(--text-dark);
}

.section-comparison {
    background: var(--bg-white);
    padding: 5rem 0;
}

.section-comparison h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.comparison-table {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.comparison-col {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
}

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

.comparison-col h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.comparison-col ul {
    list-style: none;
}

.comparison-col ul li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-size: 1.05rem;
}

.comparison-highlight ul li {
    border-bottom-color: rgba(255,255,255,0.2);
}

.section-urgency {
    background: var(--accent-color);
    color: white;
    padding: 5rem 0;
}

.section-urgency h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.section-urgency p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

.section-services-reveal {
    background: var(--bg-light);
    padding: 5rem 0;
}

.section-services-reveal h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
}

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

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    position: relative;
}

.service-featured {
    border: 3px solid var(--secondary-color);
    transform: scale(1.02);
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.service-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.service-features li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.05rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

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

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

.section-form-intro {
    background: var(--bg-white);
    padding: 4rem 0 2rem;
    text-align: center;
}

.section-form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.main-form {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
}

.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 select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

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

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

.cta-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 999;
    display: none;
}

.cta-sticky.show {
    display: flex;
}

.cta-sticky-text {
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-sticky {
    background: var(--accent-color);
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #c0392b;
}

.section-guarantee {
    background: var(--bg-light);
    padding: 4rem 0;
    text-align: center;
}

.section-guarantee h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.section-guarantee p {
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.section-faq {
    background: var(--bg-white);
    padding: 5rem 0;
}

.section-faq h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 1.05rem;
    color: var(--text-dark);
}

.section-final-cta {
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 5rem 1.5rem;
}

.section-final-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.section-final-cta p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.btn-final-cta {
    background: var(--accent-color);
    color: white;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 4px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-final-cta:hover {
    background: #c0392b;
    transform: translateY(-3px);
}

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

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

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

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

.footer-col p {
    font-size: 0.95rem;
    opacity: 0.9;
}

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

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

.footer-col ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
}

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

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 5rem 1.5rem 4rem;
}

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

.section-story {
    padding: 5rem 0;
}

.section-story h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.section-story p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

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

.section-mission h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.mission-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.mission-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
}

.mission-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.section-approach {
    padding: 5rem 0;
}

.section-approach h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.section-approach p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

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

.section-results h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.results-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.result-stat {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.section-team {
    padding: 5rem 0;
}

.section-team h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.section-team p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

.team-list {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 2rem;
}

.team-list li {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

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

.section-difference h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.difference-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.difference-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
}

.difference-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.difference-item p {
    font-size: 1.05rem;
}

.section-cta-about {
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 5rem 1.5rem;
}

.section-cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.section-cta-about p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.section-services-detail {
    padding: 3rem 0;
}

.service-card-detail {
    background: white;
    padding: 3rem;
    margin-bottom: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    position: relative;
}

.service-featured-detail {
    border: 3px solid var(--secondary-color);
}

.service-badge-large {
    position: absolute;
    top: -15px;
    right: 3rem;
    background: var(--secondary-color);
    color: white;
    padding: 0.7rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
}

.service-header-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header-detail h2 {
    font-size: 2rem;
    color: var(--primary-color);
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.service-description-detail {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.service-card-detail h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.service-features-detail li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--bg-light);
}

.service-features-detail li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.service-target {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 2rem;
}

.service-target li {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.btn-service-select-large {
    background: var(--secondary-color);
    color: white;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 4px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.btn-service-select-large:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.section-comparison-services {
    background: var(--bg-light);
    padding: 5rem 0;
}

.section-comparison-services h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.comparison-table-services {
    overflow-x: auto;
}

.comparison-table-services table {
    width: 100%;
    background: white;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
}

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

.comparison-table-services th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.comparison-table-services tbody tr:hover {
    background: var(--bg-light);
}

.section-cta-services {
    padding: 5rem 0;
    text-align: center;
}

.section-cta-services h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.section-cta-services p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.section-contact-info {
    padding: 5rem 0;
}

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

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

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.contact-item p {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: var(--secondary-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

.reasons-list {
    list-style: none;
}

.reasons-list li {
    margin-bottom: 2rem;
}

.reasons-list h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.reasons-list p {
    font-size: 1.05rem;
    color: var(--text-dark);
}

.section-contact-faq {
    background: var(--bg-light);
    padding: 5rem 0;
}

.section-contact-faq h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-contact-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.section-contact-cta {
    padding: 5rem 0;
    text-align: center;
}

.section-contact-cta h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.section-contact-cta p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.thanks-hero {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white;
    text-align: center;
    padding: 5rem 1.5rem;
}

.thanks-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

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

.thanks-lead {
    font-size: 1.3rem;
}

.section-thanks-info {
    padding: 5rem 0;
}

.thanks-box {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
}

.thanks-box h2 {
    font-size: 2.3rem;
    margin-bottom: 2.5rem;
}

.thanks-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.thanks-step-number {
    background: var(--secondary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.thanks-step-content {
    flex: 1;
}

.thanks-step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.thanks-step-content p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.thanks-step-content ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.thanks-step-content ul li {
    margin-bottom: 0.5rem;
}

.thanks-note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

.section-thanks-program-info {
    background: var(--bg-light);
    padding: 4rem 0;
}

.section-thanks-program-info h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 2rem;
}

.program-info-box {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
}

.program-info-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.program-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.program-info-box p {
    font-size: 1.1rem;
}

.section-thanks-tips {
    padding: 5rem 0;
}

.section-thanks-tips h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

.tip-item {
    flex: 1;
    min-width: 250px;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.tip-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.tip-item p {
    font-size: 1.05rem;
}

.section-thanks-guarantee {
    background: var(--bg-light);
    padding: 4rem 0;
    text-align: center;
}

.section-thanks-guarantee h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.section-thanks-guarantee p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.section-thanks-support {
    padding: 4rem 0;
    text-align: center;
}

.section-thanks-support h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.section-thanks-support p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.section-thanks-support a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.section-thanks-support a:hover {
    text-decoration: underline;
}

.section-thanks-final {
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 5rem 1.5rem;
}

.section-thanks-final h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.section-thanks-final p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.legal-page {
    padding: 5rem 0;
}

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

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

.legal-page h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.legal-page h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-page p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

.legal-page ul li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.legal-page a {
    color: var(--secondary-color);
    text-decoration: none;
}

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

.legal-page strong {
    color: var(--primary-color);
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: var(--bg-light);
}

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

.cookies-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

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

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-content-narrow h1 {
        font-size: 2.2rem;
    }

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

    section {
        padding: 3rem 0;
    }

    h2 {
        font-size: 2rem !important;
    }

    .transformation-blocks,
    .proof-stats,
    .tips-grid {
        flex-direction: column;
    }

    .comparison-table {
        flex-direction: column;
    }

    .cta-sticky {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

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

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

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

    .comparison-table-services {
        font-size: 0.9rem;
    }

    .comparison-table-services th,
    .comparison-table-services td {
        padding: 0.8rem;
    }
}