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

:root {
    --primary-color: #2D3FE7;
    --secondary-color: #00D4AA;
    --dark-bg: #0A0E27;
    --light-bg: #F8F9FB;
    --text-dark: #1A1D2E;
    --text-light: #6B7280;
    --white: #FFFFFF;
    --accent-purple: #8B5CF6;
    --accent-orange: #F59E0B;
    --border-color: #E5E7EB;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

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

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

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

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

.btn-accept:hover {
    background: #2332C4;
}

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

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.main-nav {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-dark);
}

.hero-split {
    display: flex;
    min-height: 90vh;
    align-items: stretch;
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-left {
    background: var(--light-bg);
    padding: 80px 60px;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--dark-bg);
    font-weight: 800;
}

.hero-lead {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 36px;
}

.cta-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s;
    box-shadow: 0 4px 14px rgba(45, 63, 231, 0.3);
}

.cta-primary:hover {
    background: #2332C4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 63, 231, 0.4);
}

.hero-right {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-purple));
    position: relative;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    position: relative;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.attention-hook {
    padding: 100px 60px;
    background: var(--dark-bg);
    color: var(--white);
}

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

.hook-content h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 24px;
    font-weight: 700;
}

.hook-content p {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.split-reverse,
.split-normal {
    display: flex;
    min-height: 600px;
}

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

.split-content,
.split-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-content {
    background: var(--white);
    padding: 80px 60px;
}

.content-block {
    max-width: 550px;
}

.content-block h3 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--dark-bg);
    font-weight: 700;
}

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

.cta-inline {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    margin-top: 12px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 2px;
    transition: all 0.3s;
}

.cta-inline:hover {
    color: #2332C4;
    border-bottom-color: #2332C4;
}

.split-visual {
    background: var(--light-bg);
}

.ar-concept {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.neural-pattern {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-purple));
}

.testimonial-visual {
    background: linear-gradient(135deg, var(--dark-bg), var(--primary-color));
}

.insight-reveal {
    padding: 120px 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-purple));
    color: var(--white);
}

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

.insight-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.insight-wrapper h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 28px;
    font-weight: 800;
}

.insight-text {
    font-size: 22px;
    line-height: 1.7;
    opacity: 0.95;
}

.trust-signals {
    padding: 80px 60px;
    background: var(--light-bg);
}

.trust-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

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

.trust-number {
    font-size: 52px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.trust-item p {
    font-size: 18px;
    color: var(--text-light);
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 550px;
}

.testimonial-text {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 20px;
}

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

.benefit-deep-dive {
    padding: 100px 60px;
    background: var(--white);
}

.benefit-container {
    max-width: 1400px;
    margin: 0 auto;
}

.benefit-container h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 80px;
    color: var(--dark-bg);
    font-weight: 700;
}

.benefit-split {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    gap: 60px;
}

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

.benefit-left,
.benefit-right {
    flex: 1;
}

.benefit-left h4 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark-bg);
    font-weight: 700;
}

.benefit-left p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

.benefit-right .image-placeholder {
    min-height: 300px;
    border-radius: 12px;
}

.vr-benefit {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.ar-benefit {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-purple));
}

.ai-benefit {
    background: linear-gradient(135deg, var(--accent-orange), var(--primary-color));
}

.cta-midpoint {
    padding: 100px 60px;
    background: var(--light-bg);
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.cta-box h3 {
    font-size: 38px;
    margin-bottom: 16px;
    color: var(--dark-bg);
    font-weight: 700;
}

.cta-box p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.btn-cta-large {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 18px 48px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(45, 63, 231, 0.3);
}

.btn-cta-large:hover {
    background: #2332C4;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(45, 63, 231, 0.4);
}

.services-reveal {
    padding: 100px 60px;
    background: var(--white);
}

.services-intro {
    max-width: 900px;
    margin: 0 auto 80px;
    text-align: center;
}

.services-intro h2 {
    font-size: 48px;
    margin-bottom: 24px;
    color: var(--dark-bg);
    font-weight: 800;
}

.services-lead {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-light);
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    flex: 1 1 calc(33.333% - 30px);
    min-width: 320px;
    max-width: 420px;
    transition: all 0.3s;
    position: relative;
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(45, 63, 231, 0.15);
    transform: translateY(-5px);
}

.service-card.featured {
    border-color: var(--primary-color);
    border-width: 3px;
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 30px;
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-purple));
    border-radius: 12px;
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--dark-bg);
    font-weight: 700;
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 24px;
}

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

.service-details li {
    font-size: 15px;
    color: var(--text-light);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

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

.service-price {
    margin: 24px 0;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 8px;
}

.price-label {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-amount {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
}

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

.btn-select-service:hover {
    background: #2332C4;
}

.urgency-element {
    padding: 80px 60px;
    background: linear-gradient(135deg, var(--dark-bg), var(--primary-color));
    color: var(--white);
}

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

.urgency-label {
    display: inline-block;
    background: var(--accent-orange);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.urgency-content h3 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.urgency-content p {
    font-size: 18px;
    opacity: 0.9;
}

.split-form {
    display: flex;
    min-height: 600px;
}

.form-left,
.form-right {
    flex: 1;
    padding: 80px 60px;
}

.form-left {
    background: var(--dark-bg);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.form-left p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-benefit-item {
    font-size: 17px;
    padding-left: 8px;
}

.form-right {
    background: var(--light-bg);
    display: flex;
    align-items: center;
}

.contact-form {
    width: 100%;
    max-width: 500px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 63, 231, 0.1);
}

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

.btn-submit:hover {
    background: #2332C4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 63, 231, 0.3);
}

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

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

.final-content h2 {
    font-size: 44px;
    margin-bottom: 24px;
    color: var(--dark-bg);
    font-weight: 800;
}

.final-content p {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 40px;
}

.cta-final {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 18px 48px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(45, 63, 231, 0.3);
}

.cta-final:hover {
    background: #2332C4;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(45, 63, 231, 0.4);
}

.main-footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 60px 60px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-section p {
    font-size: 15px;
    opacity: 0.8;
}

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

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

.footer-section a {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

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

.sticky-btn {
    display: block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 8px 24px rgba(0, 212, 170, 0.4);
    transition: all 0.3s;
}

.sticky-btn:hover {
    background: #00BF9A;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 212, 170, 0.5);
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-purple));
    padding: 120px 60px 80px;
    text-align: center;
    color: var(--white);
}

.page-hero-content h1 {
    font-size: 56px;
    margin-bottom: 16px;
    font-weight: 800;
}

.page-hero-content p {
    font-size: 22px;
    opacity: 0.95;
}

.mission-section {
    padding: 100px 60px;
    background: var(--light-bg);
}

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

.mission-content h2 {
    font-size: 44px;
    margin-bottom: 28px;
    color: var(--dark-bg);
    font-weight: 700;
}

.mission-text {
    font-size: 22px;
    line-height: 1.8;
    color: var(--text-light);
}

.values-grid {
    padding: 100px 60px;
    background: var(--white);
}

.values-grid h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-bg);
    font-weight: 700;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    background: var(--light-bg);
    padding: 40px;
    border-radius: 12px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--dark-bg);
    font-weight: 700;
}

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

.expertise-list {
    list-style: none;
    margin-top: 24px;
}

.expertise-list li {
    font-size: 17px;
    color: var(--text-light);
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
}

.expertise-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 24px;
    line-height: 1;
}

.approach-section {
    padding: 100px 60px;
    background: var(--white);
}

.approach-content {
    max-width: 1200px;
    margin: 0 auto;
}

.approach-content h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 80px;
    color: var(--dark-bg);
    font-weight: 700;
}

.approach-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.approach-step {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 250px;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 12px;
}

.approach-step h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: var(--dark-bg);
    font-weight: 700;
}

.approach-step p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.cta-section {
    padding: 100px 60px;
    background: var(--dark-bg);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 44px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 36px;
    opacity: 0.9;
}

.services-detail {
    padding: 60px 60px 100px;
}

.services-intro-text {
    max-width: 900px;
    margin: 0 auto 80px;
    text-align: center;
}

.services-intro-text h2 {
    font-size: 44px;
    margin-bottom: 20px;
    color: var(--dark-bg);
    font-weight: 700;
}

.services-intro-text p {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-light);
}

.service-detail-card {
    max-width: 1400px;
    margin: 0 auto 60px;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-detail-split {
    display: flex;
}

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

.service-detail-left,
.service-detail-right {
    flex: 1;
}

.service-detail-left {
    padding: 60px;
}

.service-icon-large {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-purple));
    border-radius: 16px;
    margin-bottom: 28px;
}

.service-detail-left h2 {
    font-size: 38px;
    margin-bottom: 12px;
    color: var(--dark-bg);
    font-weight: 700;
}

.service-tagline {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 28px;
}

.service-description h4 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 16px;
    color: var(--dark-bg);
    font-weight: 700;
}

.service-description p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.service-description li {
    font-size: 16px;
    color: var(--text-light);
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
}

.service-description li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.service-pricing-info {
    margin-top: 36px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.price-display {
    background: var(--light-bg);
    padding: 20px 28px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}

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

.btn-service-cta {
    padding: 14px 32px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-service-cta:hover {
    background: #2332C4;
}

.service-detail-right .image-placeholder {
    min-height: 100%;
    border-radius: 0;
}

.vr-detail {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-purple));
}

.ar-detail {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.ai-detail {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-purple));
}

.hybrid-detail {
    background: linear-gradient(135deg, var(--dark-bg), var(--primary-color));
}

.training-detail {
    background: linear-gradient(135deg, var(--accent-purple), var(--secondary-color));
}

.consulting-detail {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-orange));
}

.contact-section {
    display: flex;
}

.contact-info-side,
.contact-visual-side {
    flex: 1;
}

.contact-info-side {
    padding: 80px 60px;
    background: var(--light-bg);
}

.contact-info-content {
    max-width: 550px;
}

.contact-info-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--dark-bg);
    font-weight: 700;
}

.contact-info-content > p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 48px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--dark-bg);
    font-weight: 700;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

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

.contact-item a:hover {
    text-decoration: underline;
}

.contact-note {
    margin-top: 48px;
    padding: 20px;
    background: var(--white);
    border-left: 4px solid var(--primary-color);
    border-radius: 6px;
}

.contact-note p {
    font-size: 16px;
    color: var(--text-dark);
    margin: 0;
}

.contact-visual-side {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-purple));
}

.contact-visual {
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
}

.thanks-section {
    padding: 120px 60px;
    background: var(--light-bg);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: var(--white);
    margin: 0 auto 32px;
}

.thanks-container h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--dark-bg);
    font-weight: 800;
}

.thanks-lead {
    font-size: 22px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.thanks-details {
    margin-bottom: 48px;
}

.thanks-details p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

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

.btn-primary:hover {
    background: #2332C4;
}

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

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

.legal-page {
    padding: 60px 60px 100px;
    background: var(--white);
}

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

.legal-container h1 {
    font-size: 44px;
    margin-bottom: 12px;
    color: var(--dark-bg);
    font-weight: 800;
}

.legal-updated {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 48px;
}

.legal-container h2 {
    font-size: 32px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--dark-bg);
    font-weight: 700;
}

.legal-container h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--dark-bg);
    font-weight: 700;
}

.legal-container h4 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--dark-bg);
    font-weight: 700;
}

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

.legal-container ul,
.legal-container ol {
    margin-bottom: 24px;
    padding-left: 28px;
}

.legal-container li {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 10px;
}

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

.legal-container a:hover {
    color: #2332C4;
}

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

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

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

.cookie-table td {
    font-size: 16px;
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 44px;
    }

    .services-grid {
        justify-content: center;
    }

    .service-card {
        flex: 1 1 calc(50% - 20px);
    }
}

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

    .nav-toggle {
        display: block;
    }

    .hero-split,
    .split-normal,
    .split-reverse,
    .split-form,
    .contact-section {
        flex-direction: column;
    }

    .hero-left,
    .hero-right,
    .split-content,
    .split-visual,
    .form-left,
    .form-right,
    .contact-info-side,
    .contact-visual-side {
        padding: 60px 30px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-lead {
        font-size: 18px;
    }

    .hook-content h2,
    .page-hero-content h1 {
        font-size: 32px;
    }

    .content-block h3 {
        font-size: 28px;
    }

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

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

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

    .sticky-btn {
        padding: 14px 24px;
        font-size: 14px;
    }

    .service-pricing-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-container,
    .hero-left,
    .hero-right,
    .attention-hook,
    .split-content,
    .split-visual,
    .services-reveal,
    .form-left,
    .form-right,
    .main-footer {
        padding: 40px 20px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .services-intro h2,
    .mission-content h2 {
        font-size: 32px;
    }

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