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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1e40af;
}

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

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

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    color: #475569;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2563eb;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #1e293b;
    margin: 3px 0;
    transition: 0.3s;
}

.hero-funnel {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 40px 20px;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 400;
}

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

.btn-primary {
    display: inline-block;
    background: #f59e0b;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.btn-primary:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
    color: #ffffff;
}

.btn-primary-large {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    padding: 20px 48px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

.btn-primary-large:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
    color: #ffffff;
}

.btn-secondary {
    display: inline-block;
    background: #64748b;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #475569;
    color: #ffffff;
}

.intro-story {
    padding: 100px 0;
    background: #f8fafc;
}

.intro-story h2 {
    font-size: 2.25rem;
    line-height: 1.3;
    margin-bottom: 32px;
    color: #1e293b;
}

.intro-story p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #475569;
}

.problem-section {
    padding: 120px 0;
    background: #ffffff;
}

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

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

.split-text h2 {
    font-size: 2rem;
    margin-bottom: 28px;
    color: #1e293b;
}

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

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

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

.check-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 1.0625rem;
}

.check-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: bold;
    font-size: 1.25rem;
}

.highlight-text {
    background: #fef3c7;
    padding: 20px;
    border-left: 4px solid #f59e0b;
    margin: 28px 0;
    font-weight: 600;
    font-size: 1.125rem;
}

.insight-reveal {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #ffffff;
}

.insight-reveal h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    text-align: center;
}

.insight-reveal p {
    font-size: 1.25rem;
    margin-bottom: 20px;
    text-align: center;
    opacity: 0.95;
}

.stat-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #f59e0b;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    margin-top: 8px;
    opacity: 0.9;
}

.story-continuation {
    padding: 80px 0;
    background: #f8fafc;
}

.testimonial-inline {
    display: flex;
    gap: 32px;
    align-items: center;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-content p {
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #334155;
}

.testimonial-content cite {
    font-style: normal;
    color: #64748b;
    font-weight: 600;
}

.trust-builder {
    padding: 100px 0;
    background: #ffffff;
}

.trust-builder h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 20px;
}

.trust-builder > p {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 60px;
    color: #64748b;
}

.steps-flow {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 250px;
    padding: 32px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    border-color: #2563eb;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 1.375rem;
    margin-bottom: 12px;
    color: #1e293b;
}

.step-card p {
    color: #64748b;
    line-height: 1.6;
}

.social-proof {
    padding: 100px 0;
    background: #f8fafc;
}

.social-proof h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.testimonial-box {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 32px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.testimonial-box p {
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #334155;
}

.testimonial-box cite {
    font-style: normal;
    color: #64748b;
    font-weight: 600;
    font-size: 0.9375rem;
}

.benefit-reveal {
    padding: 100px 0;
    background: #ffffff;
}

.benefit-reveal h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 800px;
    margin: 0 auto;
}

.benefit-item h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #1e293b;
}

.benefit-item p {
    font-size: 1.0625rem;
    color: #64748b;
    line-height: 1.7;
}

.urgency-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: #ffffff;
}

.urgency-box {
    text-align: center;
}

.urgency-box h2 {
    font-size: 2.25rem;
    margin-bottom: 24px;
}

.urgency-box p {
    font-size: 1.125rem;
    margin-bottom: 20px;
    opacity: 0.95;
}

.urgency-highlight {
    font-size: 1.375rem;
    font-weight: 700;
    margin-top: 32px;
}

.pricing-reveal {
    padding: 120px 0;
    background: #f8fafc;
}

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

.pricing-intro {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 60px;
    color: #64748b;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 60px;
}

.service-card {
    flex: 1 1 calc(33.333% - 32px);
    min-width: 300px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: #2563eb;
}

.service-card.featured {
    border-color: #2563eb;
    border-width: 3px;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
}

.badge-popular {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #2563eb;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #1e293b;
}

.service-desc {
    font-size: 0.9375rem;
    color: #64748b;
    margin-bottom: 24px;
}

.service-pricing {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 2px solid #e2e8f0;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
}

.price-note {
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 4px;
}

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

.service-features li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 0.9375rem;
    color: #475569;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.125rem;
}

.btn-select {
    width: 100%;
    background: #2563eb;
    color: #ffffff;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: #1e40af;
    transform: translateY(-2px);
}

.form-section {
    padding: 100px 0;
    background: #ffffff;
}

.form-section h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 16px;
}

.form-section > div > p {
    text-align: center;
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 48px;
}

.main-form {
    max-width: 600px;
    margin: 0 auto;
    background: #f8fafc;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #334155;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    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: #2563eb;
}

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

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    flex-shrink: 0;
}

.btn-submit {
    width: 100%;
    background: #10b981;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-submit:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.final-push {
    padding: 100px 0;
    background: #f8fafc;
    text-align: center;
}

.final-push h2 {
    font-size: 2.25rem;
    margin-bottom: 24px;
}

.final-push p {
    font-size: 1.125rem;
    margin-bottom: 20px;
    color: #475569;
}

.final-push strong {
    color: #dc2626;
}

.final-push a {
    margin-top: 32px;
    display: inline-block;
}

.main-footer {
    background: #1e293b;
    color: #e2e8f0;
    padding: 60px 0 20px;
}

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

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

.footer-column h4 {
    font-size: 1.125rem;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-column p {
    color: #cbd5e1;
    font-size: 0.9375rem;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #cbd5e1;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 0;
    border-top: 1px solid #334155;
    text-align: center;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 0.875rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e293b;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.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;
    font-size: 0.9375rem;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
}

.btn-cookie-accept {
    background: #10b981;
    color: #ffffff;
}

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

.btn-cookie-reject {
    background: #64748b;
    color: #ffffff;
}

.btn-cookie-reject:hover {
    background: #475569;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.sticky-btn {
    display: inline-block;
    background: #f59e0b;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.5);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #d97706;
    transform: scale(1.05);
    color: #ffffff;
}

.page-hero {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

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

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

.content-section {
    padding: 80px 0;
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: #1e293b;
}

.content-section p {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #475569;
}

.content-image {
    margin: 40px 0;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.values-section {
    padding: 80px 0;
    background: #f8fafc;
}

.values-section h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 60px;
}

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

.value-card {
    flex: 1 1 calc(50% - 32px);
    min-width: 280px;
    background: #ffffff;
    padding: 32px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 1.375rem;
    margin-bottom: 12px;
    color: #1e293b;
}

.value-card p {
    color: #64748b;
    line-height: 1.7;
}

.styled-list {
    list-style: none;
    margin: 24px 0;
}

.styled-list li {
    padding: 10px 0 10px 32px;
    position: relative;
    font-size: 1.0625rem;
}

.styled-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.team-section {
    padding: 80px 0;
    background: #ffffff;
}

.team-section h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 60px;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

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

.team-member img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto 20px;
    object-fit: cover;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.team-member h3 {
    font-size: 1.25rem;
    margin-bottom: 6px;
    color: #1e293b;
}

.team-role {
    font-size: 0.9375rem;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 12px;
}

.team-member p {
    color: #64748b;
    line-height: 1.6;
}

.stats-section {
    padding: 80px 0;
    background: #1e293b;
    color: #ffffff;
}

.stats-section h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 60px;
}

.stats-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.stat-box {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.stat-big {
    font-size: 4rem;
    font-weight: 800;
    color: #f59e0b;
    line-height: 1;
}

.stat-label-big {
    font-size: 1.125rem;
    margin-top: 12px;
    opacity: 0.9;
}

.cta-section {
    padding: 100px 0;
    background: #f8fafc;
}

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

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

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 40px;
    color: #64748b;
}

.services-detail-section {
    padding: 80px 0;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
    min-width: 320px;
}

.service-tagline {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 24px;
}

.service-price-large {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 32px;
}

.currency {
    font-size: 1.5rem;
    color: #64748b;
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    color: #1e293b;
}

.period {
    font-size: 1.125rem;
    color: #64748b;
}

.service-description h3 {
    font-size: 1.375rem;
    margin: 28px 0 16px;
    color: #1e293b;
}

.service-description ul {
    list-style: none;
    margin-bottom: 24px;
}

.service-description ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 1.0625rem;
    color: #475569;
}

.service-description ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.service-description p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #64748b;
}

.service-detail-image {
    flex: 1;
    min-width: 320px;
}

.service-detail-image img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.badge-popular-small {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.faq-section {
    padding: 80px 0;
    background: #f8fafc;
}

.faq-section h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 60px;
}

.faq-item {
    background: #ffffff;
    padding: 28px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #1e293b;
}

.faq-item p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #64748b;
}

.contact-section {
    padding: 80px 0;
}

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

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

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #1e293b;
}

.contact-item p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #475569;
}

.small-note {
    font-size: 0.875rem;
    color: #94a3b8;
    margin-top: 8px;
}

.map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 41, 59, 0.9);
    color: #ffffff;
    padding: 16px;
}

.map-overlay p {
    margin: 0;
    font-weight: 600;
}

.map-note {
    margin-top: 20px;
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.6;
}

.support-section {
    padding: 80px 0;
    background: #f8fafc;
}

.support-section h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 60px;
}

.support-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.support-card {
    flex: 1 1 calc(50% - 32px);
    min-width: 280px;
    background: #ffffff;
    padding: 32px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.support-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #1e293b;
}

.support-card p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 12px;
}

.quick-questions {
    padding: 80px 0;
}

.quick-questions h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 60px;
}

.questions-list {
    max-width: 800px;
    margin: 0 auto;
}

.question-item {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e2e8f0;
}

.question-item:last-child {
    border-bottom: none;
}

.question-item h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #1e293b;
}

.question-item p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #64748b;
}

.thanks-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
}

.success-icon {
    margin: 0 auto 32px;
    width: 80px;
    height: 80px;
}

.thanks-details {
    padding: 80px 0;
    background: #f8fafc;
}

.info-box {
    background: #ffffff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.info-box h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
}

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

.timeline-item {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.timeline-number {
    width: 48px;
    height: 48px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: #1e293b;
}

.timeline-content p {
    font-size: 1.0625rem;
    color: #64748b;
    line-height: 1.6;
}

.service-confirmation {
    background: #f0f9ff;
    padding: 32px;
    border-radius: 10px;
    border-left: 4px solid #2563eb;
}

.service-confirmation h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    color: #1e293b;
}

.service-name-display {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 12px;
}

.confirmation-note {
    font-size: 0.9375rem;
    color: #64748b;
}

.next-steps {
    padding: 80px 0;
}

.next-steps h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 60px;
}

.action-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.action-card {
    flex: 1;
    min-width: 280px;
    background: #f8fafc;
    padding: 32px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.action-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #1e293b;
}

.action-card p {
    font-size: 1.0625rem;
    margin-bottom: 24px;
    color: #64748b;
    line-height: 1.6;
}

.testimonial-thanks {
    padding: 80px 0;
    background: #1e293b;
}

.quote-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.quote-text {
    font-size: 1.375rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 24px;
}

.quote-box cite {
    font-style: normal;
    color: #cbd5e1;
    font-weight: 600;
}

.contact-info-thanks {
    padding: 80px 0;
}

.contact-info-thanks h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-info-thanks p {
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.note-small {
    font-size: 0.9375rem;
    color: #94a3b8;
}

.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: #1e293b;
}

.last-updated {
    font-size: 0.9375rem;
    color: #94a3b8;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 1.75rem;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #1e293b;
}

.legal-page h3 {
    font-size: 1.375rem;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #334155;
}

.legal-page p {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #475569;
}

.legal-page ul {
    margin: 20px 0 20px 24px;
}

.legal-page ul li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #475569;
}

.legal-page a {
    color: #2563eb;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #1e40af;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #e2e8f0;
}

.cookie-table th {
    background: #f8fafc;
    font-weight: 600;
    color: #1e293b;
}

.cookie-table td {
    color: #475569;
}

.signature {
    margin-top: 48px;
    font-style: italic;
    color: #64748b;
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-links.active {
        max-height: 300px;
    }

    .nav-links li {
        border-bottom: 1px solid #f1f5f9;
    }

    .nav-links a {
        display: block;
        padding: 16px 20px;
    }

    .nav-toggle {
        display: flex;
    }

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

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

    .intro-story h2 {
        font-size: 1.75rem;
    }

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

    .stat-row {
        gap: 40px;
    }

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

    .testimonial-inline {
        flex-direction: column;
        text-align: center;
    }

    .steps-flow {
        flex-direction: column;
    }

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

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

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

    .main-form {
        padding: 32px 24px;
    }

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

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

    .team-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

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

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

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

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
        left: 10px;
    }

    .sticky-btn {
        width: 100%;
        text-align: center;
    }

    .amount {
        font-size: 3rem;
    }
}