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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #e8914b;
    --accent-color: #47a992;
    --dark: #1a1a2e;
    --light: #f8f9fa;
    --text: #333;
    --text-light: #666;
    --border: #ddd;
    --success: #28a745;
}

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

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

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

.nav-floating {
    position: fixed;
    top: 20px;
    right: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

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

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

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    opacity: 0.9;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1559526324-4b87b5e36e44?w=1600') center/cover;
    opacity: 0.2;
}

.hero-text {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-sub {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-hero {
    display: inline-block;
    padding: 18px 45px;
    background: var(--secondary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.story-hook {
    padding: 100px 20px;
    background: var(--light);
}

.story-hook h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--dark);
    line-height: 1.3;
}

.story-hook p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.problem-amplify {
    padding: 100px 20px;
    background: #fff;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--dark);
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.check-list {
    list-style: none;
    margin: 30px 0;
}

.check-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 1.1rem;
    color: var(--text);
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.split-image {
    flex: 1;
}

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

.insight-reveal {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--dark));
    color: #fff;
}

.insight-reveal h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.insight-reveal p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.cta-inline {
    margin-top: 40px;
}

.btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 2px solid #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.trust-builder {
    padding: 100px 20px;
    background: var(--light);
}

.trust-builder h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark);
}

.stats-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-card {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

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

.testimonials-inline {
    padding: 100px 20px;
    background: #fff;
}

.testimonial {
    padding: 40px;
    margin: 40px 0;
    background: var(--light);
    border-left: 5px solid var(--accent-color);
    border-radius: 10px;
}

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

.testimonial cite {
    font-size: 1rem;
    color: var(--text-light);
    font-style: normal;
}

.method-breakdown {
    padding: 100px 20px;
    background: var(--light);
}

.method-breakdown h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark);
}

.method-steps {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.method-card {
    flex: 1;
    min-width: 250px;
    padding: 40px 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.method-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.method-card p {
    color: var(--text-light);
    line-height: 1.7;
}

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

.btn-primary {
    display: inline-block;
    padding: 18px 45px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(44, 95, 124, 0.3);
}

.benefits-cascade {
    padding: 100px 20px;
    background: #fff;
}

.benefit-row {
    display: flex;
    gap: 60px;
    align-items: center;
    margin: 80px 0;
}

.benefit-row.reverse {
    flex-direction: row-reverse;
}

.benefit-image {
    flex: 1;
}

.benefit-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.benefit-text {
    flex: 1;
}

.benefit-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.benefit-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.urgency-layer {
    padding: 100px 20px;
    background: var(--secondary-color);
    color: #fff;
}

.urgency-layer h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.urgency-layer p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

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

.pricing-reveal h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark);
}

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

.pricing-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.price-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    padding: 40px 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s;
}

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

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

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.price-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 20px 0;
}

.price-desc {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 25px;
    min-height: 60px;
}

.features {
    list-style: none;
    margin: 30px 0;
}

.features li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text);
}

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

.btn-select {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select:hover {
    background: var(--dark);
}

.form-section {
    padding: 100px 20px;
    background: #fff;
}

.form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
    color: var(--dark);
}

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border);
    border-radius: 8px;
    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(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

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

.final-push {
    padding: 100px 20px;
    background: var(--light);
}

.final-push h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--dark);
}

.final-push p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--text-light);
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-btn {
    display: block;
    padding: 18px 35px;
    background: var(--secondary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.sticky-btn:hover {
    transform: scale(1.05);
}

.footer {
    background: var(--dark);
    color: #fff;
    padding: 60px 20px 30px;
}

.footer-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #fff;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #fff;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: #fff;
    padding: 20px;
    z-index: 10000;
    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: 20px;
    flex-wrap: wrap;
}

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

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

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

.btn-accept {
    background: var(--success);
    color: #fff;
}

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

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.8;
}

.page-hero {
    padding: 150px 20px 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #fff;
    text-align: center;
}

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

.legal-header {
    padding: 150px 20px 60px;
    background: var(--light);
    text-align: center;
}

.legal-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--dark);
}

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

.legal-content {
    padding: 80px 20px;
    background: #fff;
}

.legal-content h2 {
    font-size: 2rem;
    margin: 40px 0 20px;
    color: var(--dark);
}

.legal-content h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: var(--text);
}

.legal-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-light);
}

.legal-content ul {
    margin: 20px 0 20px 40px;
    line-height: 1.8;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

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

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

.about-story {
    padding: 100px 20px;
    background: #fff;
}

.lead-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.mission-vision {
    padding: 100px 20px;
    background: var(--light);
}

.values {
    padding: 100px 20px;
    background: #fff;
}

.values h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark);
}

.values-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 40px 30px;
    background: var(--light);
    border-radius: 15px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.team-approach {
    padding: 100px 20px;
    background: var(--light);
}

.team-approach h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--dark);
}

.impact-numbers {
    padding: 100px 20px;
    background: #fff;
}

.impact-numbers h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark);
}

.cta-section {
    padding: 100px 20px;
    background: var(--light);
}

.cta-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark);
}

.cta-section p {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.cta-section .cta-center {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.services-intro {
    padding: 80px 20px;
    background: #fff;
}

.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--dark);
}

.services-detailed {
    padding: 60px 20px 100px;
    background: var(--light);
}

.service-block {
    display: flex;
    gap: 60px;
    align-items: center;
    margin: 80px 0;
    padding: 60px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.service-block.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
    position: relative;
}

.service-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 20px 0;
}

.popular-badge {
    display: inline-block;
    background: var(--accent-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text);
}

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

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.service-form-section {
    padding: 100px 20px;
    background: #fff;
}

.guarantee {
    padding: 100px 20px;
    background: var(--light);
}

.guarantee h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    text-align: center;
    color: var(--dark);
}

.guarantee p {
    font-size: 1.2rem;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 20px;
}

.contact-info {
    padding: 80px 20px;
    background: #fff;
}

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

.contact-card {
    flex: 1;
    min-width: 280px;
    padding: 40px 30px;
    background: var(--light);
    border-radius: 15px;
}

.contact-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.contact-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.contact-detail {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.contact-detail a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.contact-cta {
    padding: 80px 20px;
    background: var(--light);
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.faq-preview {
    padding: 100px 20px;
    background: #fff;
}

.faq-preview h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--dark);
}

.faq-item {
    margin: 30px 0;
    padding: 30px;
    background: var(--light);
    border-radius: 10px;
}

.faq-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.faq-item a {
    color: var(--primary-color);
    text-decoration: underline;
}

.map-placeholder {
    padding: 80px 20px;
    background: var(--light);
}

.map-placeholder h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--dark);
}

.map-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
    background: #fff;
    border-radius: 15px;
    text-align: center;
}

.map-box p {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 15px;
}

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

.thanks-hero {
    padding: 150px 20px 80px;
    background: var(--light);
    text-align: center;
}

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

.thanks-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--dark);
}

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

.thanks-details {
    padding: 80px 20px;
    background: #fff;
}

.thanks-details h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--dark);
}

.timeline {
    max-width: 700px;
    margin: 0 auto;
}

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

.timeline-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.8;
}

.thanks-service {
    padding: 80px 20px;
    background: var(--light);
}

.thanks-service h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
    color: var(--dark);
}

.service-name {
    font-size: 1.5rem;
    text-align: center;
    color: var(--primary-color);
    font-weight: 600;
}

.thanks-resources {
    padding: 80px 20px;
    background: #fff;
}

.thanks-resources h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
    color: var(--dark);
}

.thanks-resources > p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.resource-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.resource-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    padding: 40px 30px;
    background: var(--light);
    border-radius: 15px;
    text-align: center;
}

.resource-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.resource-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.btn-link:hover {
    color: var(--dark);
}

.thanks-testimonial {
    padding: 80px 20px;
    background: var(--light);
}

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

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

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

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

    .split-content,
    .benefit-row,
    .service-block {
        flex-direction: column;
    }

    .benefit-row.reverse {
        flex-direction: column;
    }

    .stats-grid,
    .method-steps,
    .pricing-grid,
    .values-grid {
        flex-direction: column;
    }

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

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

    .service-block {
        padding: 30px 20px;
    }

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

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

    .page-hero h1,
    .legal-header h1 {
        font-size: 2rem;
    }
}