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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #10b981;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}

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

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(--primary-dark);
}

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 1rem 0;
}

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

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

.menu-toggle {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

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

.nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    list-style: none;
    padding: 1rem 0;
}

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

.nav-menu li {
    padding: 0.75rem 1.5rem;
}

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

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0.9;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    text-align: center;
}

.hero-text-block {
    color: var(--bg-white);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-hero {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
    color: var(--bg-white);
}

.curiosity-section {
    padding: 4rem 1.5rem;
    background-color: var(--bg-light);
}

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

.intro-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

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

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.story-image-left {
    width: 100%;
}

.image-placeholder img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

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

.story-text-right p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.problem-amplification {
    padding: 5rem 1.5rem;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.contained-width {
    max-width: 1100px;
    margin: 0 auto;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.problem-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.problem-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-color);
}

.problem-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.problem-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

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

.btn-inline {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-inline:hover {
    background-color: var(--primary-dark);
    color: var(--bg-white);
}

.insight-reveal {
    padding: 5rem 1.5rem;
    background-color: var(--text-dark);
    color: var(--bg-white);
}

.insight-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.insight-label {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.insight-text-block h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.insight-text-block p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.visual-benefits {
    padding: 5rem 1.5rem;
    background-color: var(--bg-light);
}

.benefits-header {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
}

.benefits-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-large {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.benefit-image img {
    width: 100%;
    height: auto;
}

.benefit-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.3));
    color: var(--bg-white);
    padding: 2rem;
}

.benefit-overlay-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.benefit-overlay-text p {
    font-size: 1rem;
    line-height: 1.6;
}

.benefit-small-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-card-compact {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.benefit-card-compact h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.benefit-card-compact p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.trust-building {
    padding: 5rem 1.5rem;
    background-color: var(--bg-white);
}

.trust-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.trust-heading {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.trust-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

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

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

.testimonials-inline {
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--bg-white);
}

.testimonial-flow {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.testimonial-block {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
}

.testimonial-block blockquote {
    font-size: 1.125rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-block cite {
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    opacity: 0.9;
}

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

.btn-secondary {
    display: inline-block;
    background-color: var(--bg-white);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: transform 0.3s ease;
}

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

.how-it-works {
    padding: 5rem 1.5rem;
    background-color: var(--bg-light);
}

.how-container {
    max-width: 1000px;
    margin: 0 auto;
}

.how-container h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.step-item {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
}

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

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

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

.services-showcase {
    padding: 5rem 1.5rem;
    background-color: var(--bg-white);
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.services-intro h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.services-lead {
    font-size: 1.125rem;
    color: var(--text-light);
}

.services-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card.featured {
    border-color: var(--primary-color);
    position: relative;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(118, 75, 162, 0.05));
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.service-tagline {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9375rem;
    color: var(--text-light);
}

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

.service-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

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

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

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

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

.additional-services {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 4rem;
}

.additional-services h3 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.additional-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.additional-item {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

.additional-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.additional-item p {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.additional-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.urgency-section {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, #f59e0b 0%, #dc2626 100%);
    color: var(--bg-white);
}

.urgency-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.urgency-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.urgency-content p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.urgency-value {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.cta-urgency {
    display: inline-block;
    background-color: var(--bg-white);
    color: #dc2626;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: transform 0.3s ease;
}

.cta-urgency:hover {
    transform: scale(1.05);
    color: #dc2626;
}

.final-trust {
    padding: 4rem 1.5rem;
    background-color: var(--bg-light);
}

.trust-badges {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.badge-item {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.badge-item h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

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

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

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

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.form-intro p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.contact-form {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 16px;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

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

.form-consent {
    margin-bottom: 1.5rem;
}

.form-consent label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-light);
}

.form-consent input[type="checkbox"] {
    margin-top: 0.25rem;
}

.btn-submit {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

.sticky-btn {
    display: block;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    transition: transform 0.3s ease;
}

.sticky-btn:hover {
    transform: scale(1.05);
    color: var(--bg-white);
}

.site-footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 3rem 1.5rem 1.5rem;
}

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

.footer-column h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-column p,
.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    line-height: 1.7;
}

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

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

.footer-column a:hover {
    color: var(--bg-white);
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 9999;
    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;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cookie-content p {
    font-size: 0.9375rem;
    line-height: 1.6;
    text-align: center;
}

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

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

.btn-cookie {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.btn-accept {
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

.btn-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.btn-cookie:hover {
    opacity: 0.9;
}

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

.page-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.25rem;
    opacity: 0.95;
}

.about-story {
    padding: 5rem 1.5rem;
    background-color: var(--bg-white);
}

.story-layout {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.story-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.story-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

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

.mission-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.mission-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.mission-lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.mission-values {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.value-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.team-approach {
    padding: 5rem 1.5rem;
    background-color: var(--bg-white);
}

.approach-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.approach-wrapper h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

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

.approach-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}

.approach-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.approach-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.achievements {
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--bg-white);
}

.achievements-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.achievements-container h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
}

.achievements-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.achievement-box {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
}

.achievement-number {
    font-size: 3rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
}

.achievement-box p {
    font-size: 1.125rem;
}

.why-us {
    padding: 5rem 1.5rem;
    background-color: var(--bg-white);
}

.why-content {
    max-width: 1000px;
    margin: 0 auto;
}

.why-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.why-reasons {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.reason-block {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}

.reason-block h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.cta-about {
    padding: 4rem 1.5rem;
    background-color: var(--bg-light);
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--bg-white);
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.cta-box h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.cta-box p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: background-color 0.3s ease;
}

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

.services-main {
    padding: 5rem 1.5rem;
    background-color: var(--bg-white);
}

.services-intro-text {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-intro-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.services-intro-text p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-detail-card {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

.featured-service {
    border-color: var(--primary-color);
    position: relative;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(118, 75, 162, 0.05));
}

.featured-badge-large {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
}

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

.service-detail-header h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

.service-detail-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-detail-features h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-detail-features ul {
    list-style: none;
}

.service-detail-features li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    font-size: 1rem;
    color: var(--text-light);
}

.service-detail-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.service-detail-info {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}

.service-detail-price {
    text-align: center;
    margin-bottom: 1.5rem;
}

.price-main {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.price-details {
    font-size: 0.9375rem;
    color: var(--text-light);
}

.service-detail-time,
.service-detail-ideal {
    margin-bottom: 1rem;
    font-size: 0.9375rem;
    color: var(--text-light);
}

.btn-service-select {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.additional-services-section {
    padding: 5rem 1.5rem;
    background-color: var(--bg-light);
}

.additional-container {
    max-width: 1100px;
    margin: 0 auto;
}

.additional-container h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

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

.additional-service-box {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.additional-service-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.additional-service-box p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.additional-price-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.additional-price-box .price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.additional-price-box .price-note {
    font-size: 0.875rem;
    color: var(--text-light);
}

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

.comparison-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.comparison-wrapper h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-white);
}

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

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

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

.services-cta {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--bg-white);
}

.services-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.services-cta-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.services-cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.contact-main {
    padding: 5rem 1.5rem;
    background-color: var(--bg-white);
}

.contact-layout {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-side h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.contact-info-block {
    margin-bottom: 2rem;
}

.contact-info-block h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

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

.contact-map-section {
    padding: 4rem 1.5rem;
    background-color: var(--bg-light);
}

.map-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.map-wrapper h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.map-wrapper p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.map-placeholder {
    background-color: var(--bg-white);
    padding: 4rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 2px dashed var(--border-color);
}

.map-placeholder p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.contact-faq {
    padding: 5rem 1.5rem;
    background-color: var(--bg-white);
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-container h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

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

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

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

.contact-cta-final {
    padding: 4rem 1.5rem;
    background-color: var(--bg-light);
}

.cta-final-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--bg-white);
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.cta-final-box h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.cta-final-box p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.btn-primary-large {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1.25rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.25rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary-large:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    color: var(--bg-white);
}

.thanks-hero {
    padding: 8rem 1.5rem 4rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--bg-white);
    text-align: center;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
}

.thanks-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.thanks-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

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

.thanks-details {
    padding: 5rem 1.5rem;
    background-color: var(--bg-white);
}

.thanks-info-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.thanks-info-wrapper h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.thanks-step {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

.step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.thanks-step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.thanks-step p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.thanks-additional {
    padding: 4rem 1.5rem;
    background-color: var(--bg-light);
}

.thanks-additional-content {
    max-width: 1000px;
    margin: 0 auto;
}

.thanks-additional-content h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.thanks-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.thanks-link-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.thanks-link-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.thanks-link-card p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.link-arrow {
    font-weight: 600;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    display: inline-block;
}

.link-arrow:hover {
    transform: translateX(5px);
}

.thanks-contact-info {
    padding: 4rem 1.5rem;
    background-color: var(--bg-white);
}

.thanks-contact-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--bg-light);
    padding: 3rem 2rem;
    border-radius: 12px;
}

.thanks-contact-box h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.thanks-contact-box p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.thanks-email {
    margin-top: 1rem;
}

.thanks-email a {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.legal-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.legal-hero-content p {
    font-size: 1.125rem;
    opacity: 0.95;
}

.legal-content {
    padding: 5rem 1.5rem;
    background-color: var(--bg-white);
}

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

.legal-article h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.legal-article h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-article h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.legal-article p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.legal-article ul {
    margin: 1rem 0 1.5rem 2rem;
    color: var(--text-light);
}

.legal-article li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

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

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        box-shadow: none;
        padding: 0;
        gap: 2rem;
    }

    .menu-toggle {
        display: none;
    }

    .nav-menu li {
        padding: 0;
    }

    .hero-title {
        font-size: 3.5rem;
    }

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

    .story-container {
        flex-direction: row;
        align-items: center;
    }

    .story-image-left {
        width: 45%;
    }

    .story-text-right {
        width: 50%;
    }

    .problem-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .problem-card {
        width: calc(33.333% - 1.333rem);
    }

    .benefits-asymmetric {
        flex-direction: row;
    }

    .benefit-large {
        width: 55%;
    }

    .benefit-small-stack {
        width: 42%;
    }

    .trust-stats {
        flex-direction: row;
        justify-content: space-around;
    }

    .testimonial-flow {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial-block {
        width: calc(50% - 1.25rem);
    }

    .testimonial-block:last-child {
        width: 100%;
    }

    .steps-flow {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .step-item {
        width: calc(33.333% - 1.333rem);
    }

    .services-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        width: calc(33.333% - 1.333rem);
    }

    .additional-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .additional-item {
        width: calc(50% - 0.75rem);
    }

    .trust-badges {
        flex-direction: row;
    }

    .badge-item {
        width: calc(33.333% - 1.333rem);
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-column {
        width: 23%;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
        max-width: 70%;
    }

    .story-layout {
        flex-direction: row;
        align-items: center;
    }

    .story-text {
        width: 55%;
    }

    .story-image {
        width: 42%;
    }

    .mission-values {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-item {
        width: calc(33.333% - 1.333rem);
    }

    .approach-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .approach-card {
        width: calc(50% - 1rem);
    }

    .achievements-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .achievement-box {
        width: calc(25% - 1.5rem);
    }

    .why-reasons {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .reason-block {
        width: calc(33.333% - 1.333rem);
    }

    .service-detail-content {
        flex-direction: row;
    }

    .service-detail-features {
        width: 60%;
    }

    .service-detail-info {
        width: 37%;
    }

    .additional-services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .additional-service-box {
        width: calc(50% - 1rem);
    }

    .faq-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .faq-item {
        width: calc(50% - 1rem);
    }

    .thanks-links {
        flex-direction: row;
    }

    .thanks-link-card {
        width: calc(33.333% - 1.333rem);
    }
}
