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

:root {
    --primary-color: #1a4d2e;
    --secondary-color: #2d6a4f;
    --accent-color: #52b788;
    --dark-color: #081c15;
    --light-color: #d8f3dc;
    --text-dark: #1b1b1b;
    --text-light: #f8f9fa;
    --gray-100: #f7f7f7;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-600: #6c757d;
    --warning-color: #ff6b35;
    --success-color: #40916c;
}

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

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

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

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

.nav-floating {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

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

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

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

.hero-visual {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 4rem 2rem;
}

.hero-content-offset {
    max-width: 800px;
    margin-left: 8%;
    color: var(--text-light);
}

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

.hero-subtext {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-hero {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent-color);
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.cta-hero:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    color: var(--text-light);
}

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

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

.intro-narrow {
    padding: 5rem 0;
    background: var(--gray-100);
}

.intro-narrow .content-wrapper {
    max-width: 720px;
}

.intro-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.intro-narrow p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.problem-amplify {
    padding: 6rem 0;
}

.split-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.split-container.reverse {
    flex-direction: row-reverse;
}

.split-text {
    flex: 1;
}

.split-image {
    flex: 1;
}

.split-image img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.split-text h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.split-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.problem-list {
    list-style: none;
    margin: 2rem 0;
}

.problem-list li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--gray-300);
}

.problem-list li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-size: 1.5rem;
    font-weight: bold;
}

.highlight-text {
    display: block;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--light-color);
    border-left: 4px solid var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
}

.story-flow {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.story-flow p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.revelation-box {
    background: white;
    padding: 2.5rem;
    margin: 2.5rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.revelation-box ul {
    list-style: none;
}

.revelation-box li {
    padding: 1rem 0;
    font-size: 1.15rem;
    border-bottom: 1px solid var(--gray-200);
}

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

.cta-inline {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--text-light);
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    background: var(--dark-color);
    color: var(--text-light);
    transform: translateX(5px);
}

.insight-section {
    padding: 6rem 0;
    background: var(--dark-color);
    color: var(--text-light);
}

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

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

.comparison-blocks {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.comparison-item {
    flex: 1;
    padding: 2.5rem;
    border-radius: 8px;
    position: relative;
}

.comparison-item.wrong {
    background: rgba(255, 107, 53, 0.15);
    border: 2px solid var(--warning-color);
}

.comparison-item.right {
    background: rgba(82, 183, 136, 0.15);
    border: 2px solid var(--accent-color);
}

.comparison-item h4 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.comparison-item p {
    font-size: 1.1rem;
    margin: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.comparison-item.wrong p:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.comparison-item.right p:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.result {
    display: block;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    font-size: 1.15rem;
}

.trust-builder {
    padding: 5rem 0;
}

.trust-builder h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.trust-builder p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-inline {
    padding: 5rem 0;
    background: var(--gray-100);
}

.testimonial-card {
    max-width: 900px;
    margin: 0 auto 2.5rem;
    padding: 2.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.testimonial-author {
    text-align: right;
    color: var(--gray-600);
    font-size: 1.1rem;
}

.benefits-reveal {
    padding: 6rem 0;
}

.benefits-reveal h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.benefit-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background: var(--light-color);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

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

.benefit-item p {
    font-size: 1.05rem;
    line-height: 1.6;
}

.method-explanation {
    padding: 6rem 0;
    background: var(--gray-100);
}

.method-steps {
    list-style: none;
    counter-reset: step-counter;
}

.method-steps li {
    counter-increment: step-counter;
    margin-bottom: 2rem;
    padding-left: 4rem;
    position: relative;
}

.method-steps li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.method-steps strong {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.method-steps p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.social-proof {
    padding: 5rem 0;
}

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

.testimonials-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-short {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background: white;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.testimonial-short p {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-short span {
    display: block;
    color: var(--gray-600);
    font-size: 0.95rem;
}

.services-pricing {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.services-pricing h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--dark-color);
}

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

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 320px;
    padding: 2.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.service-header {
    margin-bottom: 1.5rem;
}

.service-header h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

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

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

.service-features li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    border-bottom: 1px solid var(--gray-200);
    font-size: 1.05rem;
}

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

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

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

.urgency-section {
    padding: 5rem 0;
    background: var(--dark-color);
    color: var(--text-light);
}

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

.urgency-section p {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 2rem;
}

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

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

.calc-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--warning-color);
    margin-bottom: 0.5rem;
}

.calc-label {
    display: block;
    font-size: 1.1rem;
    opacity: 0.9;
}

.urgency-text {
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    margin-top: 2rem;
}

.form-section {
    padding: 6rem 0;
    background: var(--gray-100);
}

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

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-container > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.main-form {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.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: 2px solid var(--gray-300);
    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(--primary-color);
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

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

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

.final-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--text-light);
}

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

.final-cta p {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.cta-final {
    display: inline-block;
    margin: 2rem auto 0;
    padding: 1.3rem 3rem;
    background: white;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.final-cta {
    text-align: center;
}

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

.footer {
    background: var(--dark-color);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

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

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

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

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

.footer-column a {
    color: var(--text-light);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
    color: var(--accent-color);
}

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

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    padding: 1rem;
    text-align: center;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.sticky-cta-btn {
    padding: 0.9rem 2.5rem;
    background: var(--accent-color);
    color: white;
    font-weight: 700;
    border-radius: 6px;
    transition: background 0.3s ease;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(8, 28, 21, 0.98);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

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

.btn-primary,
.btn-secondary {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

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

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

.lead {
    font-size: 1.3rem;
    opacity: 0.95;
}

.about-story,
.about-mission,
.values-section,
.cta-section {
    padding: 4rem 0;
}

.about-story h2,
.about-mission h3,
.values-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.about-story p,
.about-mission p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

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

.value-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background: var(--light-color);
    border-radius: 8px;
}

.value-item h4 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.cta-section {
    text-align: center;
    background: var(--gray-100);
}

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

.services-detail {
    padding: 4rem 0;
}

.service-detail-card {
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 3rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

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

.service-detail-header {
    margin-bottom: 2rem;
}

.service-detail-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.price-large {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.service-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--gray-600);
}

.service-detail-list {
    list-style: none;
    margin: 1.5rem 0 2rem;
}

.service-detail-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    border-bottom: 1px solid var(--gray-200);
    font-size: 1.05rem;
}

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

.service-ideal {
    background: var(--light-color);
    padding: 1.25rem;
    border-radius: 6px;
    font-style: italic;
    margin: 1.5rem 0;
}

.services-cta {
    padding: 4rem 0;
    background: var(--gray-100);
    text-align: center;
}

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

.contact-section {
    padding: 4rem 0;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-info h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
}

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

.contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-note {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 6px;
    margin-top: 2rem;
}

.contact-cta {
    padding: 4rem 0;
    background: var(--gray-100);
    text-align: center;
}

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

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.thanks-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-confirmation {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem 0;
    font-size: 1.1rem;
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.next-steps ol {
    max-width: 600px;
    margin: 0 auto;
}

.next-steps li {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

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

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

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.last-updated {
    color: var(--gray-600);
    margin-bottom: 3rem;
    font-style: italic;
}

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

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

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

.legal-container ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-container li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

@media (max-width: 968px) {
    .split-container {
        flex-direction: column;
        gap: 2rem;
    }

    .split-container.reverse {
        flex-direction: column;
    }

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

    .service-cards {
        flex-direction: column;
    }

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

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

    .benefit-item {
        flex: 1 1 100%;
    }

    .urgency-calc {
        flex-direction: column;
        gap: 1.5rem;
    }

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

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

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

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 2rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-content-offset h1 {
        font-size: 2.5rem;
    }

    .hero-subtext {
        font-size: 1.2rem;
    }

    .intro-narrow h2,
    .story-flow h2,
    .trust-builder h2,
    .benefits-reveal h2,
    .social-proof h2 {
        font-size: 2rem;
    }

    .insight-section h2,
    .services-pricing h2,
    .final-cta h2 {
        font-size: 2.2rem;
    }

    .main-form {
        padding: 2rem;
    }

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