/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --error-color: #ef4444;
}

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

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);
}

/* Navigation - Split Style */
.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.nav-right {
    display: flex;
    gap: 2rem;
}

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

.nav-right a:hover,
.nav-right a.active {
    color: var(--primary-color);
}

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 4rem 5%;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-visual {
    flex: 1;
    height: 85vh;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Buttons */
.cta-primary,
.cta-secondary,
.cta-primary-large {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-primary,
.cta-primary-large {
    background: var(--primary-color);
    color: white;
}

.cta-primary:hover,
.cta-primary-large:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.cta-primary-large {
    font-size: 1.125rem;
    padding: 1.25rem 2.5rem;
}

.cta-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

/* Insight Section - Split Layout */
.insight-section {
    display: flex;
    align-items: center;
}

.insight-visual {
    flex: 1;
    height: 600px;
    overflow: hidden;
}

.insight-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insight-content {
    flex: 1;
    padding: 4rem 5%;
}

.insight-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.insight-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.link-arrow {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.125rem;
}

/* Problem Amplify Section */
.problem-amplify {
    display: flex;
    background: var(--bg-light);
}

.problem-content {
    flex: 1;
    padding: 4rem 5%;
}

.problem-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.problem-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.point .icon {
    font-size: 2rem;
    flex-shrink: 0;
}

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

.problem-visual {
    flex: 1;
    height: 600px;
    overflow: hidden;
}

.problem-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Solution Reveal Section */
.solution-reveal {
    padding: 5rem 5%;
    background: var(--bg-white);
}

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

.solution-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.solution-header p {
    font-size: 1.25rem;
    color: var(--text-light);
}

/* Services Grid */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
}

.service-card .badge,
.badge-popular {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    min-height: 80px;
}

.price {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

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

/* Testimonials Flow */
.testimonials-flow {
    display: flex;
    background: var(--bg-light);
}

.testimonial-content {
    flex: 1;
    padding: 4rem 5%;
}

.testimonial-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.testimonial {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
}

.quote {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.author {
    font-weight: 600;
    color: var(--text-light);
}

.testimonial-visual {
    flex: 1;
    height: 600px;
    overflow: hidden;
}

.testimonial-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
}

.indicator-visual {
    flex: 1;
    height: 500px;
    overflow: hidden;
}

.indicator-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.indicator-content {
    flex: 1;
    padding: 4rem 5%;
}

.indicator-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

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

.stat {
    display: flex;
    flex-direction: column;
}

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

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

/* Process Section */
.process-section {
    padding: 5rem 5%;
    background: var(--bg-white);
}

.process-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
}

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

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

.step-visual {
    flex: 1;
}

.step-visual img {
    border-radius: 12px;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

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

/* Form Section */
.cta-section {
    display: flex;
    padding: 5rem 5%;
    background: var(--bg-light);
    gap: 4rem;
}

.cta-content {
    flex: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

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

.form-container {
    flex: 1;
}

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

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

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

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

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

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

/* Final Trust Section */
.final-trust {
    display: flex;
    padding: 4rem 0;
}

.final-content {
    flex: 1;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.final-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

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

.guarantees {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.guarantee {
    font-size: 1.125rem;
    color: var(--success-color);
    font-weight: 600;
}

.final-visual {
    flex: 1;
    height: 500px;
    overflow: hidden;
}

.final-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-column {
    flex: 1;
}

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

.footer-column p {
    color: #9ca3af;
    line-height: 1.7;
}

.footer-column a {
    display: block;
    color: #9ca3af;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #374151;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 1.5rem 5%;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    display: none;
}

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

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

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

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

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

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

.cookie-btn.accept {
    background: var(--success-color);
    color: white;
}

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

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

.cookie-btn.reject:hover {
    background: white;
    color: var(--text-dark);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-cta a {
    display: block;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

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

/* Page Hero for Subpages */
.page-hero {
    display: flex;
    min-height: 60vh;
    align-items: center;
}

.page-hero .hero-content {
    flex: 1;
    padding: 4rem 5%;
}

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

.page-hero .hero-visual {
    flex: 1;
    height: 60vh;
}

/* Story Section */
.story-section,
.mission-section,
.team-intro,
.expertise-section {
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.story-section:nth-child(even),
.mission-section:nth-child(even),
.expertise-section:nth-child(even) {
    background: var(--bg-light);
}

.story-visual,
.mission-visual,
.team-visual,
.expertise-visual {
    flex: 1;
    height: 500px;
    overflow: hidden;
}

.story-visual img,
.mission-visual img,
.team-visual img,
.expertise-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content,
.mission-content,
.team-content,
.expertise-content {
    flex: 1;
    padding: 0 5%;
}

.story-content h2,
.mission-content h2,
.team-content h2,
.expertise-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.story-content p,
.mission-content p,
.team-content p,
.expertise-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.expertise-list {
    list-style: none;
    padding: 0;
}

.expertise-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.125rem;
    color: var(--text-light);
}

.expertise-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

/* Values Section */
.values-section {
    padding: 5rem 5%;
    background: var(--bg-white);
}

.values-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.value-icon {
    height: 200px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.value-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

/* Approach Section */
.approach-section {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.approach-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
}

.approach-comparison {
    display: flex;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-side {
    flex: 1;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
}

.comparison-side.highlight {
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
    border: 2px solid var(--primary-color);
}

.comparison-side h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    text-align: center;
}

.comparison-list {
    list-style: none;
    padding: 0;
}

.comparison-list li {
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
    font-size: 1.0625rem;
}

.comparison-list.negative li:before {
    content: "✗";
    color: var(--error-color);
    position: absolute;
    left: 0;
    font-weight: 700;
}

.comparison-list.positive li:before {
    content: "✓";
    color: var(--success-color);
    position: absolute;
    left: 0;
    font-weight: 700;
}

/* Numbers Section */
.numbers-section {
    padding: 5rem 5%;
}

.numbers-content h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
}

.numbers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.number-item {
    flex: 1 1 calc(50% - 1.5rem);
    text-align: center;
    min-width: 200px;
}

.big-number {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

/* CTA Section About */
.cta-section-about {
    display: flex;
    background: var(--bg-light);
    align-items: center;
}

.cta-section-about .cta-content {
    flex: 1;
    padding: 4rem 5%;
}

.cta-section-about .cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-section-about .cta-visual {
    flex: 1;
    height: 500px;
    overflow: hidden;
}

.cta-section-about .cta-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Services Detail */
.services-detail {
    padding: 3rem 0;
}

.service-detail-item {
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.service-detail-item:nth-child(even) {
    background: var(--bg-light);
}

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

.service-detail-visual {
    flex: 1;
    height: 500px;
    overflow: hidden;
    padding: 0 2rem;
}

.service-detail-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.service-detail-content {
    flex: 1;
    padding: 0 5%;
}

.service-detail-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.service-intro {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.service-detail-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

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

.service-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
}

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

.pricing-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.pricing-box.featured {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid var(--primary-color);
}

.price-label {
    display: block;
    font-size: 0.875rem;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.price-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.price-note {
    display: block;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Packages Comparison */
.packages-comparison {
    padding: 5rem 5%;
    background: var(--bg-white);
}

.packages-comparison h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
}

.comparison-table {
    display: flex;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-column {
    flex: 1;
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-column.highlight {
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
    border: 2px solid var(--primary-color);
}

.comparison-column h3 {
    background: var(--text-dark);
    color: white;
    padding: 1.5rem;
    text-align: center;
    font-size: 1.125rem;
}

.comparison-column.highlight h3 {
    background: var(--primary-color);
}

.price-small {
    display: block;
    font-size: 0.875rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 0.25rem;
}

.feature-row {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.feature-row:last-child {
    border-bottom: none;
}

/* Custom Solution */
.custom-solution {
    display: flex;
    padding: 4rem 0;
    background: var(--bg-light);
    align-items: center;
}

.custom-content {
    flex: 1;
    padding: 0 5%;
}

.custom-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.custom-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.custom-visual {
    flex: 1;
    height: 500px;
    overflow: hidden;
}

.custom-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 5%;
}

.faq-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}

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

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

/* Guarantee Section */
.guarantee-section {
    display: flex;
    align-items: center;
}

.guarantee-visual {
    flex: 1;
    height: 500px;
    overflow: hidden;
}

.guarantee-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.guarantee-content {
    flex: 1;
    padding: 0 5%;
}

.guarantee-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.guarantee-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* CTA Services */
.cta-services {
    padding: 5rem 5%;
    background: var(--bg-light);
    text-align: center;
}

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

.cta-services p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

/* Contact Info Section */
.contact-info-section {
    padding: 5rem 5%;
}

.contact-details {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.contact-item {
    flex: 1;
    display: flex;
    gap: 2rem;
}

.contact-icon {
    flex-shrink: 0;
    width: 200px;
    height: 150px;
    overflow: hidden;
    border-radius: 12px;
}

.contact-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-text h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

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

.contact-text a {
    color: var(--primary-color);
    font-weight: 600;
}

.note {
    font-size: 0.9375rem;
    font-style: italic;
    margin-top: 0.5rem;
}

/* Contact Hours */
.contact-hours {
    display: flex;
    gap: 3rem;
    background: var(--bg-light);
    padding: 4rem 5%;
    align-items: center;
}

.hours-visual {
    flex: 1;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
}

.hours-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hours-content {
    flex: 1;
}

.hours-content h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
}

.hours-list {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.day-hours {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.day-hours:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
}

.time {
    color: var(--text-light);
}

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

/* How to Reach */
.how-to-reach {
    display: flex;
    padding: 4rem 5%;
    align-items: center;
}

.reach-content {
    flex: 1;
}

.reach-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

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

.transport-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.transport h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.transport p {
    color: var(--text-light);
}

.reach-visual {
    flex: 1;
    height: 500px;
    overflow: hidden;
    border-radius: 12px;
    margin-left: 3rem;
}

.reach-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Meeting Info */
.meeting-info {
    display: flex;
    background: var(--bg-light);
    align-items: center;
}

.meeting-visual {
    flex: 1;
    height: 500px;
    overflow: hidden;
}

.meeting-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.meeting-content {
    flex: 1;
    padding: 0 5%;
}

.meeting-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.meeting-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Online Consultation */
.online-consultation {
    display: flex;
    padding: 4rem 5%;
    align-items: center;
}

.online-content {
    flex: 1;
}

.online-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

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

.online-visual {
    flex: 1;
    height: 500px;
    overflow: hidden;
    border-radius: 12px;
    margin-left: 3rem;
}

.online-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* FAQ Contact */
.faq-contact {
    padding: 5rem 5%;
    background: var(--bg-light);
}

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

/* CTA Contact */
.cta-contact {
    padding: 5rem 5%;
    text-align: center;
}

.cta-contact h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-contact p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.alternative-cta {
    margin-top: 1.5rem;
    color: var(--text-light);
}

/* Thanks Page */
.thanks-hero {
    text-align: center;
    padding: 5rem 5%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    margin-bottom: 2rem;
    display: inline-block;
}

.thanks-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.service-confirmation {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
}

/* Next Steps */
.next-steps {
    display: flex;
    padding: 4rem 0;
    background: var(--bg-light);
}

.steps-visual {
    flex: 1;
    height: 600px;
    overflow: hidden;
}

.steps-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.steps-content {
    flex: 1;
    padding: 0 5%;
}

.steps-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.timeline-item {
    display: flex;
    gap: 2rem;
}

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

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

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

/* While Waiting */
.while-waiting {
    padding: 5rem 5%;
}

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

.suggestions {
    display: flex;
    gap: 2rem;
}

.suggestion-card {
    flex: 1;
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
}

.suggestion-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.suggestion-card h3 {
    font-size: 1.25rem;
    margin: 1.5rem;
    margin-bottom: 1rem;
}

.suggestion-card p {
    color: var(--text-light);
    margin: 0 1.5rem 1.5rem;
}

.suggestion-card a {
    display: inline-block;
    margin: 0 1.5rem 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* Contact Info Thanks */
.contact-info-thanks {
    display: flex;
    background: var(--bg-light);
    align-items: center;
}

.info-visual {
    flex: 1;
    height: 500px;
    overflow: hidden;
}

.info-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-content {
    flex: 1;
    padding: 0 5%;
}

.info-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

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

.quick-contact {
    background: white;
    padding: 2rem;
    border-radius: 12px;
}

.contact-method {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
}

.contact-method strong {
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

.contact-method a {
    color: var(--primary-color);
    font-weight: 600;
}

/* Social Section */
.social-section {
    padding: 5rem 5%;
    text-align: center;
}

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

.social-section p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.social-icon {
    font-size: 3rem;
}

/* Legal Pages */
.legal-hero {
    text-align: center;
    padding: 4rem 5%;
    background: var(--bg-light);
}

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

.last-updated {
    color: var(--text-light);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 5%;
}

.legal-text h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-text h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

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

.legal-text ul,
.legal-text ol {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.legal-text li {
    margin-bottom: 0.75rem;
    color: var(--text-light);
    line-height: 1.7;
}

.legal-text a {
    color: var(--primary-color);
    font-weight: 600;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split,
    .insight-section,
    .problem-amplify,
    .testimonials-flow,
    .trust-indicators,
    .final-trust,
    .story-section,
    .mission-section,
    .team-intro,
    .expertise-section,
    .guarantee-section,
    .cta-section-about,
    .service-detail-item,
    .custom-solution,
    .contact-hours,
    .how-to-reach,
    .meeting-info,
    .online-consultation,
    .contact-info-thanks,
    .next-steps,
    .cta-section {
        flex-direction: column;
    }

    .step.reverse {
        flex-direction: column;
    }

    .hero-visual,
    .insight-visual,
    .problem-visual,
    .testimonial-visual,
    .indicator-visual,
    .final-visual,
    .story-visual,
    .mission-visual,
    .team-visual,
    .expertise-visual,
    .guarantee-visual,
    .cta-visual,
    .service-detail-visual,
    .custom-visual,
    .hours-visual,
    .reach-visual,
    .meeting-visual,
    .online-visual,
    .info-visual,
    .steps-visual {
        width: 100%;
        height: 400px;
    }

    .page-hero .hero-visual {
        height: 400px;
    }

    .reach-visual,
    .online-visual {
        margin-left: 0;
        margin-top: 2rem;
    }

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

    .approach-comparison,
    .contact-details,
    .suggestions {
        flex-direction: column;
    }

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

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

@media (max-width: 768px) {
    .nav-split {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-right {
        gap: 1rem;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

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

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

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

    .numbers-grid {
        gap: 2rem;
    }

    .social-links {
        flex-direction: column;
        gap: 1.5rem;
    }

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

    .contact-icon {
        width: 100%;
    }
}
