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

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

a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #004499;
}

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

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

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

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

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

.container-split {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 80px 20px;
}

.container-split-reverse {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 80px 20px;
}

.container-asymmetric {
    padding: 60px 20px;
}

.content-block {
    flex: 1;
}

.visual-block {
    flex: 1;
}

.content-wide {
    max-width: 900px;
    margin: 0 auto;
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    transition: all 0.3s ease;
}

.nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    background: #ffffff;
    width: 250px;
    height: calc(100vh - 70px);
    padding: 30px;
    list-style: none;
    transition: right 0.3s ease;
    box-shadow: -2px 0 20px rgba(0, 0, 0, 0.1);
}

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

.nav-menu li {
    margin-bottom: 20px;
}

.nav-menu a {
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 500;
    display: block;
    padding: 10px 0;
}

.nav-menu a.active {
    color: #0066cc;
    border-left: 3px solid #0066cc;
    padding-left: 15px;
}

.hero-immersive {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 20px 60px;
    margin-top: 60px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1617802690658-1173a812650d?w=1600') center/cover;
    opacity: 0.15;
}

.hero-content-center {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.headline-massive {
    font-size: 42px;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
}

.btn-hero-primary {
    display: inline-block;
    background: #ffffff;
    color: #667eea;
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.hook-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.hook-text {
    font-size: 26px;
    line-height: 1.6;
    color: #333;
    text-align: center;
    font-weight: 400;
}

.story-intro {
    background: #ffffff;
}

.story-img,
.trust-img,
.about-img,
.service-img,
.tech-img,
.map-img,
.insight-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.problem-amplify {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #1a1a1a, #2d2d2d);
    color: #ffffff;
}

.section-title-center {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    font-weight: 700;
}

.problem-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
}

.problem-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 35px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.problem-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ffffff;
}

.problem-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
}

.curiosity-driver {
    padding: 100px 20px;
    background: #fafafa;
}

.curiosity-question {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    line-height: 1.3;
}

.link-inline {
    font-size: 18px;
    color: #0066cc;
    font-weight: 600;
}

.insight-reveal {
    padding: 80px 20px;
    background: #ffffff;
}

.title-offset {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    padding-left: 20px;
    border-left: 6px solid #667eea;
}

.insight-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.insight-text {
    font-size: 18px;
    line-height: 1.8;
}

.insight-text strong {
    color: #667eea;
    font-weight: 700;
}

.scenario-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.scenario-story {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 50px;
}

.scenario-item {
    position: relative;
    padding-left: 80px;
}

.scenario-number {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 48px;
    font-weight: 800;
    color: #667eea;
    opacity: 0.3;
}

.scenario-item h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.scenario-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
}

.trust-builder {
    background: #ffffff;
}

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

.trust-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 17px;
    color: #333;
}

.trust-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
    font-size: 20px;
}

.testimonial-inline {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    border-left: 4px solid #ffffff;
}

.testimonial p {
    font-size: 19px;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial cite {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-style: normal;
}

.benefit-reveal {
    padding: 80px 20px;
    background: #ffffff;
}

.benefit-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.urgency-section {
    padding: 80px 20px;
    background: #1a1a1a;
    color: #ffffff;
}

.urgency-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.urgency-box h2 {
    font-size: 34px;
    margin-bottom: 25px;
}

.urgency-box p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.btn-urgency {
    display: inline-block;
    background: #667eea;
    color: #ffffff;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-urgency:hover {
    background: #5568d3;
    transform: scale(1.05);
}

.services-pricing {
    padding: 80px 20px;
    background: #f8f9fa;
}

.section-subtitle-center {
    text-align: center;
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 60px;
}

.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
}

.pricing-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
    border: 3px solid #667eea;
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #667eea;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.pricing-title {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.pricing-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

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

.pricing-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 15px;
    color: #444;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
}

.pricing-price {
    font-size: 38px;
    font-weight: 800;
    color: #667eea;
    margin: 25px 0 5px;
}

.pricing-note {
    font-size: 14px;
    color: #999;
    margin-bottom: 25px;
}

.how-it-works {
    padding: 80px 20px;
    background: #ffffff;
}

.steps-vertical {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
}

.step-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #667eea;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.step-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.cta-multiple {
    padding: 80px 20px;
    background: #f8f9fa;
    text-align: center;
}

.cta-question {
    font-size: 22px;
    line-height: 1.7;
    color: #333;
    margin: 30px 0 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary-large {
    display: inline-block;
    background: #667eea;
    color: #ffffff;
    padding: 20px 50px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    background: #5568d3;
    transform: scale(1.05);
}

.form-section {
    padding: 80px 20px;
    background: #ffffff;
}

.container-form {
    max-width: 650px;
    margin: 0 auto;
}

.form-title {
    font-size: 32px;
    margin-bottom: 15px;
    text-align: center;
    color: #1a1a1a;
}

.form-subtitle {
    font-size: 17px;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}

.order-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 6px;
    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: #667eea;
}

.form-group-checkbox {
    margin: 25px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-group-checkbox input {
    margin-top: 4px;
    flex-shrink: 0;
}

.form-group-checkbox label {
    font-size: 14px;
    color: #555;
}

.btn-submit {
    width: 100%;
    background: #667eea;
    color: #ffffff;
    padding: 16px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #5568d3;
}

.final-cta {
    padding: 60px 20px;
    background: #f8f9fa;
    text-align: center;
}

.final-message {
    font-size: 20px;
    color: #333;
    margin-bottom: 30px;
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #667eea;
    color: #ffffff;
}

.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 20px 20px;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-col p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

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

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

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #ffffff;
}

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

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

.sticky-cta {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    text-align: center;
    z-index: 999;
    transition: bottom 0.3s ease;
}

.sticky-cta.visible {
    bottom: 0;
}

.btn-sticky {
    display: inline-block;
    background: #667eea;
    color: #ffffff;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #5568d3;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.cookie-content p {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
}

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

.btn-cookie {
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-cookie.accept {
    background: #667eea;
    color: #ffffff;
}

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

.btn-cookie.reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-cookie.reject:hover {
    border-color: #ffffff;
}

.btn-primary {
    display: inline-block;
    background: #667eea;
    color: #ffffff;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #5568d3;
}

.btn-secondary {
    display: inline-block;
    background: #f8f9fa;
    color: #1a1a1a;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #e9ecef;
}

.page-header {
    padding: 120px 20px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
    margin-top: 60px;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.about-story,
.mission-section,
.values-section,
.team-section,
.achievements-section,
.technology-section {
    padding: 80px 20px;
}

.about-story {
    background: #ffffff;
}

.mission-section {
    background: #f8f9fa;
}

.mission-text {
    font-size: 20px;
    line-height: 1.8;
    color: #333;
    text-align: center;
}

.values-section {
    background: #ffffff;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 12px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.team-section {
    background: #f8f9fa;
}

.team-intro {
    text-align: center;
    font-size: 17px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.7;
}

.team-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 16px;
    color: #555;
}

.achievements-section {
    background: #ffffff;
}

.achievements-list {
    list-style: none;
    margin-top: 30px;
}

.achievements-list li {
    padding: 15px 0 15px 40px;
    position: relative;
    font-size: 17px;
    color: #333;
    border-bottom: 1px solid #eee;
}

.achievements-list li::before {
    content: '🏆';
    position: absolute;
    left: 0;
    font-size: 24px;
}

.technology-section {
    background: #f8f9fa;
}

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

.tech-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 16px;
    color: #444;
}

.tech-list li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    font-size: 20px;
}

.cta-section {
    padding: 80px 20px;
    background: #ffffff;
}

.cta-text-center {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin: 20px auto 40px;
    max-width: 700px;
    line-height: 1.7;
}

.cta-buttons-center {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.services-intro {
    padding: 40px 20px;
    background: #f8f9fa;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    text-align: center;
}

.services-detailed {
    padding: 60px 20px;
    background: #ffffff;
}

.service-detail {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 2px solid #eee;
}

.service-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-lead {
    font-size: 19px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-detail-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #1a1a1a;
}

.feature-list {
    list-style: none;
    margin: 20px 0;
}

.feature-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
    color: #444;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
}

.service-pricing-box {
    margin-top: 30px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    text-align: center;
    position: relative;
}

.service-pricing-box.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.featured-badge {
    display: inline-block;
    background: #ffffff;
    color: #667eea;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.price-large {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: #667eea;
    margin: 15px 0 5px;
}

.service-pricing-box.featured .price-large {
    color: #ffffff;
}

.price-note {
    display: block;
    font-size: 14px;
    color: #999;
    margin-bottom: 25px;
}

.service-pricing-box.featured .price-note {
    color: rgba(255, 255, 255, 0.9);
}

.comparison-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background: #667eea;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
}

.comparison-table td {
    font-size: 14px;
    color: #555;
}

.faq-section {
    padding: 80px 20px;
    background: #ffffff;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

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

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.cta-services {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: #ffffff;
}

.cta-services .section-title-center {
    color: #ffffff;
}

.cta-services .cta-text-center {
    color: rgba(255, 255, 255, 0.9);
}

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

.contact-details h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #667eea;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.contact-note {
    font-size: 14px;
    color: #999;
    margin-top: 8px;
}

.contact-map {
    margin-top: 40px;
}

.map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 8px;
}

.map-overlay p {
    color: #ffffff;
    font-size: 16px;
    margin: 0;
}

.contact-cta {
    padding: 60px 20px;
    background: #f8f9fa;
    text-align: center;
}

.contact-faq {
    padding: 80px 20px;
    background: #ffffff;
}

.partners-section {
    padding: 60px 20px;
    background: #f8f9fa;
    text-align: center;
}

.partners-intro {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

.partners-list {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

.thanks-section {
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
    margin-top: 60px;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-title {
    font-size: 38px;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
}

.thanks-details {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-details p {
    margin: 8px 0;
    font-size: 16px;
}

.thanks-next {
    text-align: left;
    margin: 40px 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 12px;
}

.thanks-next h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.thanks-steps {
    padding-left: 20px;
}

.thanks-steps li {
    margin: 12px 0;
    font-size: 16px;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 40px 0;
}

.thanks-contact {
    margin-top: 40px;
}

.thanks-contact p {
    margin: 5px 0;
    font-size: 15px;
}

.thanks-contact a {
    color: #ffffff;
    text-decoration: underline;
}

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

.resources-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
}

.resource-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.resource-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.resource-card p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
}

.resource-card a {
    color: #667eea;
    font-weight: 600;
}

.legal-content {
    padding: 60px 20px;
    background: #ffffff;
}

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #333;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

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

.legal-content li {
    margin: 8px 0;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

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

    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        padding: 0;
        display: flex;
        flex-direction: row;
        gap: 30px;
        background: transparent;
        box-shadow: none;
    }

    .nav-menu li {
        margin-bottom: 0;
    }

    .nav-menu a {
        font-size: 16px;
    }

    .headline-massive {
        font-size: 64px;
    }

    .hero-subtitle {
        font-size: 26px;
    }

    .container-split,
    .container-split-reverse {
        flex-direction: row;
        align-items: center;
    }

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

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

    .problem-card {
        flex: 1 1 calc(33.333% - 20px);
        min-width: 250px;
    }

    .insight-content {
        flex-direction: row;
    }

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

    .benefit-card {
        flex: 1 1 calc(50% - 15px);
        min-width: 280px;
    }

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

    .pricing-card {
        flex: 1 1 calc(50% - 20px);
        min-width: 320px;
    }

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

    .value-card {
        flex: 1 1 calc(50% - 15px);
    }

    .team-stats {
        flex-direction: row;
    }

    .stat-item {
        flex: 1;
    }

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

    .service-detail {
        flex-direction: row;
        align-items: center;
    }

    .service-detail-content,
    .service-detail-image {
        flex: 1;
    }

    .resources-grid {
        flex-direction: row;
    }

    .resource-card {
        flex: 1;
    }

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

    .footer-col {
        flex: 1;
    }

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

    .cookie-content p {
        text-align: left;
        flex: 1;
    }

    .cta-buttons-center {
        flex-direction: row;
        justify-content: center;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .benefit-card {
        flex: 1 1 calc(33.333% - 20px);
    }

    .pricing-card {
        flex: 1 1 calc(33.333% - 27px);
    }
}
