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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #191f27 0%, #2a3441 100%);
    color: #eaddc8;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.content {
    text-align: center;
    max-width: 600px;
    z-index: 10;
    position: relative;
}

.logo-container {
    margin-bottom: 40px;
}

.logo {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(234, 221, 200, 0.3));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #eaddc8, #f5f0e8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.construction-icon {
    margin: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.gear {
    font-size: 2rem;
    animation: spin 3s linear infinite;
    color: #eaddc8;
    opacity: 0.7;
}

.gear2 {
    animation-delay: -1s;
    animation-direction: reverse;
}

.gear3 {
    animation-delay: -2s;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.progress-bar {
    width: 100%;
    max-width: 400px;
    height: 8px;
    background: rgba(234, 221, 200, 0.2);
    border-radius: 4px;
    margin: 30px auto;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #eaddc8, #f5f0e8);
    border-radius: 4px;
    width: 0%;
    animation: progress 4s ease-in-out infinite;
}

@keyframes progress {
    0%, 100% { width: 0%; }
    50% { width: 75%; }
}

.progress-text {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 40px;
    font-weight: 500;
}

.automation-journey {
    margin: 30px 0;
    padding: 25px 30px;
    background: rgba(234, 221, 200, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(234, 221, 200, 0.2);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.journey-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    color: #eaddc8;
}

.journey-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 4px;
    margin-bottom: 20px;
}

.journey-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 8px 4px;
    background: rgba(234, 221, 200, 0.1);
    border-radius: 6px;
    border: 1px solid rgba(234, 221, 200, 0.3);
    transition: all 0.3s ease;
    min-width: 65px;
    flex: 1;
    max-width: 75px;
}

.journey-step:hover {
    transform: translateY(-2px);
    background: rgba(234, 221, 200, 0.15);
    box-shadow: 0 4px 15px rgba(234, 221, 200, 0.2);
}

.step-icon {
    font-size: 1.1rem;
    margin-bottom: 2px;
    animation: pulse 2s ease-in-out infinite;
}

.approval-icon {
    color: #7eb3d3;
    background: rgba(126, 179, 211, 0.2);
    border-radius: 50%;
    width: 1.8rem;
    height: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    border: 2px solid rgba(126, 179, 211, 0.4);
}

.step-title {
    font-weight: 600;
    font-size: 0.65rem;
    margin-bottom: 1px;
    color: #eaddc8;
}

.step-desc {
    font-size: 0.5rem;
    opacity: 0.8;
    line-height: 1.0;
}

.journey-arrow {
    font-size: 0.9rem;
    color: #eaddc8;
    opacity: 0.6;
    animation: slideRight 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes slideRight {
    0%, 100% { transform: translateX(0); opacity: 0.6; }
    50% { transform: translateX(3px); opacity: 1; }
}

.journey-benefits {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(234, 221, 200, 0.2);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #eaddc8;
}

.benefit-icon {
    font-size: 1.2rem;
}

.footer {
    margin-top: 60px;
    opacity: 0.6;
    font-size: 0.9rem;
}

.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    background: rgba(234, 221, 200, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: -2s;
}

.shape3 {
    width: 100px;
    height: 100px;
    top: 80%;
    left: 20%;
    animation-delay: -4s;
}

.shape4 {
    width: 40px;
    height: 40px;
    top: 30%;
    right: 30%;
    animation-delay: -1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.3;
    }
}

/* Responsive Design */

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
    .automation-journey {
        max-width: 900px;
        padding: 30px 40px;
    }
    
    .journey-flow {
        gap: 10px;
    }
    
    .journey-step {
        min-width: 80px;
        max-width: 95px;
        padding: 12px 8px;
    }
    
    .step-icon {
        font-size: 1.3rem;
    }
    
    .approval-icon {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }
    
    .step-title {
        font-size: 0.75rem;
    }
    
    .step-desc {
        font-size: 0.6rem;
    }
    
    .journey-arrow {
        font-size: 1.2rem;
    }
}

/* Desktop/Laptop (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .content {
        max-width: 800px;
    }
    
    .automation-journey {
        max-width: 750px;
    }
}

/* Tablet Landscape (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
    
    .automation-journey {
        max-width: 650px;
        padding: 20px 25px;
    }
    
    .journey-flow {
        gap: 5px;
    }
    
    .journey-step {
        min-width: 80px;
        max-width: 95px;
        padding: 12px 8px;
    }
    
    .step-icon {
        font-size: 1.2rem;
    }
    
    .step-title {
        font-size: 0.7rem;
    }
    
    .step-desc {
        font-size: 0.55rem;
    }
    
    .journey-arrow {
        font-size: 0.9rem;
    }
}

/* Tablet Portrait (576px - 767px) */
@media (max-width: 767px) and (min-width: 576px) {
    .title {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .logo {
        max-width: 160px;
    }
    
    .automation-journey {
        max-width: 550px;
        padding: 18px 15px;
        margin: 25px 0;
    }
    
    .journey-title {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .journey-flow {
        gap: 4px;
        margin-bottom: 15px;
    }
    
    .journey-step {
        min-width: 65px;
        max-width: 80px;
        padding: 10px 5px;
    }
    
    .step-icon {
        font-size: 1.1rem;
        margin-bottom: 2px;
    }
    
    .step-title {
        font-size: 0.65rem;
    }
    
    .step-desc {
        font-size: 0.5rem;
    }
    
    .journey-arrow {
        font-size: 0.8rem;
    }
    
    .journey-benefits {
        gap: 15px;
        margin-top: 12px;
        padding-top: 12px;
    }
    
    .benefit-item {
        font-size: 0.8rem;
    }
    
    .gear {
        font-size: 1.5rem;
    }
}

/* Mobile Large (480px - 575px) */
@media (max-width: 575px) and (min-width: 480px) {
    .title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .logo {
        max-width: 140px;
    }
    
    .automation-journey {
        padding: 18px 12px;
        margin: 25px 0;
    }
    
    .journey-title {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .journey-flow {
        gap: 4px;
        margin-bottom: 12px;
    }
    
    .journey-step {
        min-width: 60px;
        max-width: 75px;
        padding: 8px 4px;
    }
    
    .step-icon {
        font-size: 1.2rem;
        margin-bottom: 2px;
    }
    
    .step-title {
        font-size: 0.7rem;
    }
    
    .step-desc {
        font-size: 0.55rem;
    }
    
    .journey-arrow {
        font-size: 0.9rem;
    }
    
    .journey-benefits {
        gap: 12px;
        margin-top: 10px;
        padding-top: 10px;
    }
    
    .benefit-item {
        font-size: 0.75rem;
    }
    
    .gear {
        font-size: 1.4rem;
    }
    
    .construction-icon {
        gap: 15px;
    }
}

/* Mobile Small (320px - 479px) */
@media (max-width: 479px) {
    .container {
        padding: 15px 10px;
    }
    
    .title {
        font-size: 1.8rem;
        line-height: 1.1;
    }
    
    .subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    .logo {
        max-width: 120px;
    }
    
    .automation-journey {
        padding: 15px 8px;
        margin: 20px 0;
    }
    
    .journey-title {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .journey-flow {
        gap: 3px;
        margin-bottom: 10px;
    }
    
    .journey-arrow {
        font-size: 0.8rem;
    }
    
    .journey-step {
        min-width: 50px;
        max-width: 65px;
        padding: 6px 3px;
    }
    
    .step-icon {
        font-size: 1rem;
        margin-bottom: 1px;
    }
    
    .step-title {
        font-size: 0.6rem;
    }
    
    .step-desc {
        font-size: 0.5rem;
    }
    
    .journey-benefits {
        gap: 10px;
        margin-top: 8px;
        padding-top: 8px;
    }
    
    .benefit-item {
        font-size: 0.85rem;
    }
    
    .gear {
        font-size: 1.3rem;
    }
    
    .construction-icon {
        gap: 12px;
        margin: 30px 0;
    }
    
    .progress-bar {
        max-width: 300px;
    }
    
    .footer {
        margin-top: 40px;
        font-size: 0.8rem;
    }
}

/* Extra Small Mobile (< 320px) */
@media (max-width: 319px) {
    .title {
        font-size: 1.6rem;
    }
    
    .logo {
        max-width: 100px;
    }
    
    .journey-step {
        max-width: 240px;
        padding: 14px 10px;
    }
    
    .step-icon {
        font-size: 1.6rem;
    }
    
    .step-title {
        font-size: 0.8rem;
    }
    
    .step-desc {
        font-size: 0.65rem;
    }
}