/* Up Lancer Brand Colors */
:root {
    --uplancer-orange: #f7931e;
    --uplancer-purple: #5d3991;
    --uplancer-dark: #1A1A2E;
    --uplancer-light: #F8F9FA;
    --uplancer-white: #FFFFFF;
    --uplancer-gray: #6C757D;
    --uplancer-text: #2C3E50;
    --uplancer-border: #E1E8ED;
    
    /* Gradients */
    --uplancer-gradient: linear-gradient(135deg, var(--uplancer-orange) 0%, var(--uplancer-purple) 100%);
    --uplancer-gradient-subtle: linear-gradient(135deg, rgba(247, 147, 30, 0.1) 0%, rgba(93, 57, 145, 0.1) 100%);
    
    /* Shadows */
    --uplancer-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --uplancer-shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --uplancer-shadow-light: 0 1px 4px rgba(0, 0, 0, 0.05);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.9) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 100px 0 80px;
    color: var(--uplancer-text);
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(247, 147, 30, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(93, 57, 145, 0.08) 0%, transparent 50%);
    opacity: 0.6;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--uplancer-purple);
    animation: fadeInUp 0.8s ease-out;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.hero-badge i {
    color: var(--uplancer-orange);
    margin-right: 12px;
    font-size: 1.1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--uplancer-text);
    animation: fadeInUp 0.8s ease-out 0.2s both;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.hero-description {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 40px;
    color: var(--uplancer-gray);
    animation: fadeInUp 0.8s ease-out 0.4s both;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    gap: 24px;
    margin-top: 40px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stat-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    min-width: 160px;
    gap: 8px;
}

.hero-stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--uplancer-purple);
}

.hero-stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #F7931E;
    margin-right: 16px;
    transition: all 0.3s ease;
    border: 2px solid #F7931E;
    flex-shrink: 0;
}

.hero-stat-item:hover .hero-stat-icon {
    transform: scale(1.1);
    background: #F7931E;
    color: white;
}

.hero-stat-content h4 {
    font-weight: 800;
    color: var(--uplancer-purple);
    margin: 0 0 4px 0;
    font-size: 1.5rem;
    line-height: 1;
}

.hero-stat-content p {
    color: var(--uplancer-gray);
    margin: 0;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-elements {
    position: relative;
    width: 300px;
    height: 300px;
}

.floating-element {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #F7931E;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid #F7931E;
    animation: float 6s ease-in-out infinite;
    animation-delay: var(--delay);
}

.floating-element:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.floating-element:nth-child(2) {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.floating-element:nth-child(3) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.floating-element:nth-child(4) {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(-50%);
    }
    50% {
        transform: translateY(-20px) translateX(-50%);
    }
}

.floating-element:nth-child(2) {
    animation-name: floatRight;
}

@keyframes floatRight {
    0%, 100% {
        transform: translateY(-50%) translateX(0px);
    }
    50% {
        transform: translateY(-50%) translateX(-20px);
    }
}

.floating-element:nth-child(3) {
    animation-name: floatBottom;
}

@keyframes floatBottom {
    0%, 100% {
        transform: translateY(0px) translateX(-50%);
    }
    50% {
        transform: translateY(20px) translateX(-50%);
    }
}

.floating-element:nth-child(4) {
    animation-name: floatLeft;
}

@keyframes floatLeft {
    0%, 100% {
        transform: translateY(-50%) translateX(0px);
    }
    50% {
        transform: translateY(-50%) translateX(20px);
    }
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.9) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 80px 0;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(247, 147, 30, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(93, 57, 145, 0.03) 0%, transparent 50%);
    opacity: 0.5;
}

.about-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--uplancer-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: var(--uplancer-purple);
}

.about-card:hover::before {
    opacity: 1;
}

.about-card-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #F7931E;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
    border: 2px solid #F7931E;
    position: relative;
}

.about-card:hover .about-card-icon {
    transform: scale(1.1);
    background: #F7931E;
    color: white;
    box-shadow: 0 8px 20px rgba(247, 147, 30, 0.3);
}

.about-card h3 {
    font-weight: 700;
    color: var(--uplancer-text);
    margin-bottom: 20px;
    font-size: 1.5rem;
    line-height: 1.3;
}

.about-card p {
    color: var(--uplancer-gray);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Timeline Responsive */
@media (max-width: 768px) {
    .timeline-section {
        padding: 48px 0;
    }

    .timeline-content {
        padding: 20px;
    }

    .timeline-content h3 {
        font-size: 18px;
    }

    .timeline-content p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .timeline-section {
        padding: 40px 0;
    }

    .timeline-content {
        padding: 16px;
    }

    .timeline-content h3 {
        font-size: 16px;
    }

    .timeline-content p {
        font-size: 13px;
    }
}

/* Process Flow Section */
.process-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.9) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 80px 0;
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(247, 147, 30, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(93, 57, 145, 0.03) 0%, transparent 50%);
    opacity: 0.5;
}

.process-content {
    position: relative;
    z-index: 2;
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.process-phase {
    display: flex;
    align-items: center;
    flex: 1;
    width: 220px;
    height: 280px;
}

.process-step {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    width: 80%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.process-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-color: var(--uplancer-purple);
}

.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #F7931E;
    font-size: 1.2rem;
    margin: 0 10px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.process-phase:hover .process-arrow {
    opacity: 1;
    transform: scale(1.1);
}

.process-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #F7931E;
    transition: all 0.3s ease;
    border: 2px solid #F7931E;
}

.process-step:hover .process-icon {
    transform: scale(1.1);
    background: #F7931E;
    color: white;
}

.process-step h4 {
    font-weight: 700;
    color: var(--uplancer-text);
    margin-bottom: 15px;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.process-step p {
    color: var(--uplancer-gray);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
    flex-grow: 1;
}

/* Why Us Section */
.why-us-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.9) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 80px 0;
    position: relative;
}

.why-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(247, 147, 30, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(93, 57, 145, 0.03) 0%, transparent 50%);
    opacity: 0.5;
}

.why-us-content {
    position: relative;
    z-index: 2;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.why-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--uplancer-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: var(--uplancer-purple);
}

.why-card:hover::before {
    opacity: 1;
}

.why-card-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #F7931E;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    border: 2px solid #F7931E;
    position: relative;
}

.why-card:hover .why-card-icon {
    transform: scale(1.1);
    background: #F7931E;
    color: white;
    box-shadow: 0 8px 20px rgba(247, 147, 30, 0.3);
}

.why-card-content h4 {
    font-weight: 700;
    color: var(--uplancer-text);
    margin-bottom: 16px;
    font-size: 1.3rem;
    line-height: 1.3;
}

.why-card-content p {
    color: var(--uplancer-gray);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.why-highlight-card {
    background: linear-gradient(135deg, rgba(93, 57, 145, 0.05) 0%, rgba(247, 147, 30, 0.05) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    position: relative;
    height: fit-content;
}

.why-highlight-icon {
    width: 80px;
    height: 80px;
    background: var(--uplancer-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 24px;
    box-shadow: 0 8px 25px rgba(93, 57, 145, 0.3);
}

.why-highlight-card h3 {
    font-weight: 700;
    color: var(--uplancer-text);
    margin-bottom: 16px;
    font-size: 1.5rem;
    line-height: 1.3;
}

.why-highlight-card p {
    color: var(--uplancer-gray);
    line-height: 1.6;
    margin-bottom: 32px;
    font-size: 1rem;
}

.why-highlight-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 32px;
    gap: 20px;
}

.why-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.why-stat-number {
    font-weight: 800;
    color: #F7931E;
    font-size: 1.8rem;
    line-height: 1;
}

.why-stat-label {
    color: var(--uplancer-gray);
    font-size: 0.9rem;
    font-weight: 500;
}

.why-get-started-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(93, 57, 145, 0.2);
}

.why-get-started-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.why-get-started-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(93, 57, 145, 0.4);
    background: linear-gradient(135deg, #5d3991 0%, #7a4db8 100%);
    border-color: #7a4db8;
}

.why-get-started-btn:hover::before {
    left: 100%;
}

.why-get-started-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(93, 57, 145, 0.3);
}

/* Section Headings */
.section-heading {
    font-weight: 800;
    color: var(--uplancer-text);
    margin-bottom: 1.2rem;
    position: relative;
    text-align: center;
    font-size: 2.5rem;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 3px;
    background: var(--uplancer-gradient);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--uplancer-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-stat-item {
        justify-content: center;
        padding: 16px 20px;
        min-width: 140px;
    }
    
    .hero-stat-icon {
        margin-right: 12px;
    }

    .hero-badge i {
        margin-right: 10px;
        font-size: 1rem;
    }

    .hero-visual {
        height: 300px;
    }

    .floating-elements {
        width: 250px;
        height: 250px;
    }

    .floating-element {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
    
    .about-card {
        padding: 32px 24px;
    }

    .about-card-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .about-card h3 {
        font-size: 1.3rem;
        margin-bottom: 16px;
    }

    .about-card p {
        font-size: 0.95rem;
    }
    
    .process-flow {
        flex-direction: column;
        gap: 30px;
    }

    .process-phase {
        flex-direction: column;
        width: 100%;
        height: auto;
        min-height: 200px;
    }

    .process-arrow {
        transform: rotate(-90deg);
        margin: 10px 0;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .why-highlight-card {
        padding: 32px 24px;
    }

    .why-card {
        padding: 28px;
    }

    .why-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }

    .why-card-content h4 {
        font-size: 1.2rem;
        margin-bottom: 14px;
    }

    .why-card-content p {
        font-size: 0.9rem;
    }

    .why-highlight-card {
        padding: 32px 24px;
    }

    .why-highlight-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .why-highlight-stats {
        gap: 16px;
    }

    .why-stat-number {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        gap: 30px;
    }

    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 15px;
    }
    
    .hero-stat-item {
        padding: 12px 16px;
        min-width: 120px;
    }
    
    .hero-stat-icon {
        margin-right: 8px;
    }

    .hero-badge i {
        margin-right: 8px;
        font-size: 0.9rem;
    }

    .hero-visual {
        height: 250px;
    }

    .floating-elements {
        width: 200px;
        height: 200px;
    }

    .floating-element {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .hero-stat-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .hero-stat-content h4 {
        font-size: 1.5rem;
    }
    
    .hero-stat-content p {
        font-size: 0.8rem;
    }
    
    .about-card {
        padding: 28px 20px;
    }

    .about-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }

    .about-card h3 {
        font-size: 1.2rem;
        margin-bottom: 14px;
    }

    .about-card p {
        font-size: 0.9rem;
    }
    
    .process-flow {
        gap: 20px;
    }

    .process-phase {
        width: 100%;
        height: auto;
        min-height: 180px;
    }

    .process-step {
        padding: 20px 15px;
    }
    
    .process-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .process-number {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why-card {
        padding: 24px;
    }

    .why-card-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .why-card-content h4 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .why-card-content p {
        font-size: 0.85rem;
    }

    .why-highlight-card {
        padding: 28px 20px;
    }

    .why-highlight-icon {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
    }

    .why-highlight-stats {
        gap: 12px;
    }

    .why-stat-number {
        font-size: 1.4rem;
    }

    .why-stat-label {
        font-size: 0.8rem;
    }
} 