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

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

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

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

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

.hero-image-bg {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85) 0%, rgba(52, 152, 219, 0.65) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text-centered {
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-title-large {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    opacity: 0.95;
}

section {
    padding: 80px 0;
}

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

.story-lead {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.cta-inline-block {
    padding: 40px 0;
    text-align: center;
}

.btn-cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

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

.problem-amplification {
    background-color: var(--bg-light);
}

.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-left,
.split-right {
    flex: 1;
}

.split-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.section-text {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.bullet-list {
    list-style-position: inside;
    margin: 25px 0;
}

.bullet-list li {
    padding: 10px 0;
    font-size: 1.05rem;
    color: var(--text-light);
}

.insight-reveal {
    background-color: var(--primary-color);
    color: white;
}

.centered-title {
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.centered-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 50px;
    opacity: 0.9;
}

.insight-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 8px;
    margin-top: 30px;
}

.insight-text {
    font-size: 1.15rem;
    line-height: 1.9;
}

.storytelling-visual {
    background-color: var(--bg-white);
}

.story-grid {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.story-item {
    flex: 1;
}

.story-image {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin-bottom: 20px;
}

.story-caption h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.story-caption p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
}

.trust-builder {
    background-color: var(--bg-light);
}

.trust-text {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-light);
}

.stats-bar {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
}

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

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

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

.testimonials-inline {
    background-color: var(--bg-white);
}

.testimonial-card {
    background-color: var(--bg-light);
    padding: 35px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 4px solid var(--accent-color);
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.cta-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--accent-color);
    padding: 15px 0;
    z-index: 99;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15);
}

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

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

.btn-sticky {
    padding: 12px 30px;
    background-color: white;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-sticky:hover {
    background-color: var(--bg-light);
}

.benefits-reveal {
    background-color: var(--bg-white);
    padding-bottom: 100px;
}

.benefit-block {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.benefit-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--border-color);
    min-width: 80px;
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.benefit-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.pricing-reveal {
    background-color: var(--bg-light);
    padding-bottom: 100px;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.price-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

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

.price-card.premium .price-title,
.price-card.premium .price-description,
.price-card.premium .price-features,
.price-card.premium .price-amount {
    color: white;
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--secondary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.price-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.price-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--text-light);
    min-height: 60px;
}

.price-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.price-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
    color: var(--text-light);
}

.price-card.premium .price-features li {
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-align: center;
}

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

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

.price-card.premium .btn-select-service {
    background-color: white;
    color: #667eea;
}

.price-card.premium .btn-select-service:hover {
    background-color: var(--bg-light);
}

.urgency-block {
    background-color: var(--bg-white);
}

.urgency-card {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    color: white;
}

.urgency-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.urgency-text {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-urgency {
    display: inline-block;
    padding: 16px 45px;
    background-color: white;
    color: #f5576c;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s;
}

.btn-urgency:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.form-section {
    background-color: var(--bg-light);
    padding-bottom: 100px;
}

.form-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.form-subtitle {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-light);
}

.contact-form {
    background-color: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

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

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

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

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

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

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

.timeline {
    margin-top: 50px;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.timeline-marker {
    min-width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.timeline-content h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.timeline-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
}

.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-col a {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 0.95rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

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

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

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

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

.page-header {
    background-color: var(--bg-light);
    padding: 80px 0;
    text-align: center;
}

.page-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

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

.story-block {
    max-width: 800px;
    margin: 0 auto;
}

.story-block h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.story-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

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

.team-grid {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.team-member {
    flex: 1;
    text-align: center;
}

.member-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin: 0 auto 20px;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.member-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.member-role {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.member-bio {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
}

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

.value-item {
    margin-bottom: 40px;
}

.value-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.value-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
}

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

.cta-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    color: white;
}

.cta-box h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-cta-large {
    display: inline-block;
    padding: 18px 50px;
    background-color: white;
    color: var(--accent-color);
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s;
}

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

.services-intro {
    background-color: var(--bg-white);
    padding: 60px 0;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
    color: var(--text-light);
}

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

.faq-item {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

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

.contact-grid {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.contact-block {
    flex: 1;
    background-color: var(--bg-light);
    padding: 35px;
    border-radius: 8px;
}

.contact-block h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-block a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

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

.contact-note {
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 10px;
    opacity: 0.8;
}

.contact-cta {
    background-color: var(--bg-light);
}

.thanks-section {
    background-color: var(--bg-light);
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: #27ae60;
    color: white;
    font-size: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: var(--text-light);
}

.thanks-info {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: var(--text-dark);
}

.thanks-steps {
    list-style-position: inside;
}

.thanks-steps li {
    padding: 12px 0;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-light);
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

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

.legal-page {
    background-color: var(--bg-white);
    padding: 60px 0 100px;
}

.legal-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.legal-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-light);
}

.legal-content ul {
    margin: 20px 0 20px 30px;
}

.legal-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 10px;
    color: var(--text-light);
}

.legal-content a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

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

.legal-content strong {
    color: var(--text-dark);
    font-weight: 700;
}

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

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

.cookies-table th {
    background-color: var(--bg-light);
    font-weight: 700;
    color: var(--text-dark);
}

.cookies-table td {
    color: var(--text-light);
}

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

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-title-large {
        font-size: 2.2rem;
    }

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

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

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

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

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

    .price-card {
        min-width: 100%;
    }

    .sticky-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

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

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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