/* Import the main styles from oldpage */
.real-world-solutions {
    padding: 120px 0;
    background: var(--gradient-primary);
    position: relative;
}

.real-world-solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(63, 126, 179, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(164, 98, 169, 0.08) 0%, transparent 50%);
}

.real-world-solutions .carousel-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: 24px;
    box-shadow: 0 20px 60px var(--shadow-dark);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.real-world-solutions .carousel-header {
    background: var(--gradient-secondary);
    color: white;
    padding: 40px;
    text-align: center;
}

.real-world-solutions .carousel-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.real-world-solutions .carousel-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.real-world-solutions .carousel-wrapper {
    position: relative;
    overflow: hidden;
    height: 500px;
}

.real-world-solutions .carousel-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    touch-action: pan-y;
}

.real-world-solutions .slide {
    flex: 0 0 100%;
    display: flex;
    height: 100%;
    user-select: none;
}

.real-world-solutions .slide-content {
    flex: 1;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.real-world-solutions .slide-visual {
    flex: 1;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-left: 1px solid var(--text-lightest);
}

.real-world-solutions .slide-visual img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 12px;
}

.real-world-solutions .slide h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 24px;
    line-height: 1.3;
}

.real-world-solutions .slide p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.real-world-solutions .carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--overlay-light);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.real-world-solutions .carousel-nav:hover {
    background: var(--bg-white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.real-world-solutions .carousel-nav.prev {
    left: 20px;
}

.real-world-solutions .carousel-nav.next {
    right: 20px;
}

.real-world-solutions .carousel-nav svg {
    width: 24px;
    height: 24px;
    fill: var(--primary-purple);
}

.real-world-solutions .carousel-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: translateY(-50%) scale(0.9);
}

.real-world-solutions .carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 32px;
    background: var(--bg-light);
}

.real-world-solutions .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-lighter);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.real-world-solutions .indicator.active {
    background: var(--accent-teal);
    transform: scale(1.2);
}

.real-world-solutions .slide-counter {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--overlay-light);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-purple);
    backdrop-filter: blur(10px);
    z-index: 5;
}

.hero {
    background: var(--gradient-primary);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(63, 126, 179, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(164, 98, 169, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(105, 94, 172, 0.15) 0%, transparent 50%);
    animation: gradientShift 6s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.05) rotate(2deg); }
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
    animation: float 8s ease-in-out infinite;
}

.floating-circle:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-circle:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.floating-circle:nth-child(3) {
    width: 80px;
    height: 80px;
    top: 80%;
    left: 60%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(90deg); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: white;
    letter-spacing: -0.02em;
    animation: slideInLeft 1s ease-out;
}

.hero-text .tagline {
    font-size: 1.5rem;
    margin-bottom: 32px;
    opacity: 0.95;
    font-weight: 300;
    animation: slideInLeft 1s ease-out 0.2s both;
}

.hero-text .description {
    font-size: 1.1rem;
    margin-bottom: 48px;
    opacity: 0.85;
    line-height: 1.7;
    animation: slideInLeft 1s ease-out 0.4s both;
}

.cta-buttons {
    display: flex;
    gap: 24px;
    animation: slideInLeft 1s ease-out 0.6s both;
}

.btn {
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--accent-teal);
    color: white;
    box-shadow: 0 8px 32px rgba(33, 173, 172, 0.25);
}

.btn-primary:hover {
    background: var(--primary-teal);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(33, 173, 172, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out 0.3s both;
}

.connection-hub {
    width: 400px;
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-node {
    width: 120px;
    height: 120px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 8px 32px rgba(33, 173, 172, 0.3);
    z-index: 3;
    position: relative;
}

.orbit-node {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    animation: orbit 12s linear infinite;
}

.orbit-node:nth-child(2) {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.orbit-node:nth-child(3) {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    animation-delay: -3s;
}

.orbit-node:nth-child(4) {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: -6s;
}

.orbit-node:nth-child(5) {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    animation-delay: -9s;
}

@keyframes orbit {
    from { transform: rotate(0deg) translateX(160px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(160px) rotate(-360deg); }
}

.features {
    padding: 120px 0;
    background: var(--gradient-light);
}

.features h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-purple);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.features-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 80px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    background: var(--bg-white);
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 4px 24px var(--shadow-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(226, 232, 240, 0.5);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-pink);
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px var(--shadow-medium);
}

.feature-icon {
    width: 72px;
    height: 72px;
    background: var(--primary-purple);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.8rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--primary-purple);
    font-weight: 700;
}

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

.process {
    padding: 120px 0;
    background: var(--gradient-primary);
    color: white;
    position: relative;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(63, 126, 179, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(164, 98, 169, 0.08) 0%, transparent 50%);
}

.process h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.process-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 80px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
}

.process-step:nth-child(even) .step-content {
    order: 1;
}

.process-step:nth-child(even) .step-number {
    order: 2;
}

.step-content {
    flex: 1;
    background: var(--overlay-glass);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0 40px;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--accent-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    box-shadow: 0 8px 32px rgba(33, 173, 172, 0.25);
    position: relative;
    z-index: 2;
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.step-content p {
    color: var(--text-lighter);
    line-height: 1.7;
}

.stats {
    padding: 80px 0;
    background: var(--gradient-secondary);
    color: white;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.contact {
    padding: 120px 0;
    background: var(--gradient-neutral);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 24px;
    color: var(--primary-purple);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.contact-info p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-medium);
    line-height: 1.7;
}

.contact-details {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 4px 24px var(--shadow-light);
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.contact-form {
    background: var(--bg-white);
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 4px 24px var(--shadow-light);
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--overlay-primary);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    color: white;
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-teal);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.why-choose {
    padding: 120px 0;
    background: var(--gradient-secondary);
    color: white;
    position: relative;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(164, 98, 169, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}

.why-choose h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.why-choose-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-lighter);
    margin-bottom: 80px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.why-choose-item {
    background: var(--overlay-glass);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.why-choose-item:hover {
    transform: translateY(-8px);
    background: var(--overlay-glass-hover);
    border-color: rgba(255, 255, 255, 0.2);
}

.why-choose-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.5rem;
}

.why-choose-item h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    font-weight: 700;
    color: white;
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Wizard styles */
.wizard { position: relative; }

.wizard-step { animation: fadeIn 0.3s ease; }
.wizard-step.hidden { display: none; }

.wizard-title { font-size: 1.4rem; margin-bottom: 20px; color: var(--primary-purple); }

.wizard input,
.wizard textarea { width: 100%; padding: 14px 16px; margin-bottom: 24px;
  border: 2px solid var(--text-lightest); border-radius: 10px; font-size: 1rem; }

.wizard button { padding: 14px 28px; border: none; border-radius: 10px;
  background: var(--accent-teal); color: #fff; font-weight: 600; cursor: pointer; }
.wizard button.secondary { background: rgba(0,0,0,0.05); color: var(--primary-purple); }

.wizard-summary { background: var(--bg-light); padding: 20px; border-radius: 12px;
  border: 1px solid var(--text-lightest); margin-bottom: 24px; }

@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
    }

    .step-content {
        margin: 20px 0;
    }

    .timeline-line {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .feature-card {
        padding: 32px 28px;
    }

    .real-world-solutions .carousel-wrapper {
        height: 640px;
    }

    .real-world-solutions .slide {
        flex-direction: column;
    }

    .real-world-solutions .slide-content {
        flex: 0 0 auto;
        padding: 32px 24px;
    }

    .real-world-solutions .slide-visual {
        flex: 1;
        border-left: none;
        border-top: 1px solid var(--text-lightest);
    }

    .real-world-solutions .carousel-nav {
        display: none;
    }
}

@media (max-width: 480px) {
    .container { 
        padding-left: 16px; 
        padding-right: 16px; 
    }

    .connection-hub { 
        width: clamp(240px, 85vw, 320px);
        height: clamp(240px, 85vw, 320px); 
    }
}