/* Hero Section Styles */
.hero-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.8) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 120px 0 100px;
    color: var(--uplancer-text);
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    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(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(93, 57, 145, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    opacity: 0.8;
}

.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.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 35px;
    color: var(--uplancer-purple);
    animation: fadeInUp 0.8s ease-out;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

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

.hero-features {
    margin-bottom: 40px;
    padding: 30px 0;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 25px;
    padding-right: 25px;
}

.hero-feature {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px 20px;
    color: var(--uplancer-text);
    font-size: 1.1rem;
    font-weight: 500;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.hero-feature:last-child {
    margin-bottom: 0;
}

.hero-feature:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-feature i {
    color: #F7931E;
    margin-right: 18px;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    min-width: 20px;
    text-align: center;
}

.hero-feature:hover i {
    transform: scale(1.1);
    color: var(--uplancer-purple);
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.hero-btn.primary {
    background: linear-gradient(135deg, #5d3991, #F7931E);
    color: white;
    box-shadow: 0 8px 25px rgba(93, 57, 145, 0.3);
    position: relative;
    overflow: hidden;
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-btn.secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--uplancer-text);
    border: 2px solid var(--uplancer-purple);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.hero-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;
}

.hero-btn:hover {
    transform: translateY(-3px);
    color: rgba(93, 57, 145, 0.4);
    text-decoration: none;
}

.hero-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(93, 57, 145, 0.4);
    color: white;
    text-decoration: none;
    background: linear-gradient(135deg, #F7931E, #5d3991);
}

.hero-btn.secondary:hover {
    background: var(--uplancer-gradient);
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(93, 57, 145, 0.4);
}

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

.hero-btn i {
    transition: transform 0.3s ease;
}

.hero-btn:hover i {
    transform: translateX(5px);
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-floating-elements {
    position: relative;
    width: 400px;
    height: 400px;
}

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

.hero-floating-element:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.hero-floating-element:nth-child(2) {
    top: 20%;
    right: 0;
}

.hero-floating-element:nth-child(3) {
    top: 40%;
    left: 0;
}

.hero-floating-element:nth-child(4) {
    top: 60%;
    right: 0;
}

.hero-floating-element:nth-child(5) {
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
}

.hero-floating-element:nth-child(6) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(93, 57, 145, 0.3);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(93, 57, 145, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(93, 57, 145, 0.3);
    }
}

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

/* Facts Section Styles */
.facts-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;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.facts-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;
}

.facts-content {
    position: relative;
    z-index: 2;
}

.fact-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.fact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--uplancer-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--uplancer-purple);
}

.fact-card:hover::before {
    opacity: 1;
}

.fact-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(247, 147, 30, 0.1) 0%, rgba(93, 57, 145, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #F7931E;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    border: 2px solid rgba(247, 147, 30, 0.3);
    box-shadow: 0 8px 25px rgba(247, 147, 30, 0.2);
}

.fact-card:hover .fact-icon {
    transform: scale(1.1);
    background: var(--uplancer-gradient);
    color: #F7931E;
    box-shadow: 0 12px 30px rgba(247, 147, 30, 0.4);
    border-color: transparent;
}

.fact-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--uplancer-text);
    margin-bottom: 15px;
    line-height: 1;
    transition: all 0.3s ease;
}

.fact-card:hover .fact-number {
    color: var(--uplancer-purple);
    transform: scale(1.05);
}

.fact-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--uplancer-gray);
    margin: 0;
    transition: all 0.3s ease;
}

.fact-card:hover .fact-label {
    color: var(--uplancer-text);
}

/* Facts Responsive */
@media (max-width: 768px) {
    .facts-section {
        padding: 60px 0;
    }

    .fact-card {
        padding: 30px 25px;
        margin-bottom: 20px;
    }

    .fact-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .fact-number {
        font-size: 2.5rem;
    }

    .fact-label {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .facts-section {
        padding: 50px 0;
    }

    .fact-card {
        padding: 25px 20px;
    }

    .fact-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 18px;
    }

    .fact-number {
        font-size: 2rem;
    }

    .fact-label {
        font-size: 0.95rem;
    }
}

/* 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-visual {
        height: 300px;
    }

    .hero-floating-elements {
        width: 250px;
        height: 250px;
    }

    .hero-floating-element {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        gap: 30px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-visual {
        height: 250px;
    }

    .hero-floating-elements {
        width: 200px;
        height: 200px;
    }

    .hero-floating-element {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Modal Styles */
.modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, rgba(247, 147, 30, 0.05) 0%, rgba(93, 57, 145, 0.05) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px 40px 20px;
    position: relative;
}

.modal-header-content {
    flex: 1;
}

.modal-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--uplancer-purple);
}

.modal-badge i {
    color: var(--uplancer-orange);
    margin-right: 8px;
    font-size: 0.9rem;
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--uplancer-text);
    margin-bottom: 8px;
}

.modal-subtitle {
    color: var(--uplancer-gray);
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--uplancer-gray);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    color: var(--uplancer-text);
    transform: scale(1.1);
}

.modal-body {
    padding: 30px 40px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

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

.form-label {
    display: block;
    font-weight: 600;
    color: var(--uplancer-text);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.required::after {
    content: ' *';
    color: #dc3545;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(247, 147, 30, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.form-control:focus {
    outline: none;
    border-color: #F7931E;
    box-shadow: 0 0 0 0.2rem rgba(247, 147, 30, 0.25);
    background: rgba(255, 255, 255, 0.95);
}

.form-control::placeholder {
    color: var(--uplancer-gray);
    opacity: 0.7;
}

.form-section {
    margin-bottom: 30px;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-item {
    position: relative;
}

.radio-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-label {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid rgba(247, 147, 30, 0.2);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.radio-label i {
    color: #F7931E;
    margin-right: 12px;
    font-size: 1.1rem;
    min-width: 20px;
}

.radio-label span {
    color: var(--uplancer-text);
    font-weight: 500;
}

.radio-input:checked + .radio-label {
    background: rgba(247, 147, 30, 0.1);
    border-color: #F7931E;
    box-shadow: 0 4px 15px rgba(247, 147, 30, 0.2);
}

.radio-input:checked + .radio-label i {
    color: #F7931E;
}

.budget-range {
    font-weight: 600;
    color: var(--uplancer-purple);
    display: block;
    margin-bottom: 4px;
}

.budget-label {
    font-size: 0.9rem;
    color: var(--uplancer-gray);
}

.error-message {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
}

.modal-footer {
    background: linear-gradient(135deg, rgba(247, 147, 30, 0.05) 0%, rgba(93, 57, 145, 0.05) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 25px 40px;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 2px solid var(--uplancer-gray);
    border-radius: 25px;
    background: transparent;
    color: var(--uplancer-gray);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: var(--uplancer-text);
    color: var(--uplancer-text);
    background: rgba(255, 255, 255, 0.1);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: var(--uplancer-gradient);
    border: none;
    border-radius: 25px;
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(93, 57, 145, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(93, 57, 145, 0.4);
}

.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(5px);
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-dialog {
        margin: 20px;
    }

    .modal-header {
        padding: 25px 30px 15px;
    }

    .modal-body {
        padding: 25px 30px;
    }

    .modal-footer {
        padding: 20px 30px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .modal-subtitle {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .modal-dialog {
        margin: 10px;
    }

    .modal-header {
        padding: 20px 25px 15px;
    }

    .modal-body {
        padding: 20px 25px;
    }

    .modal-footer {
        padding: 15px 25px;
        flex-direction: column;
    }

    .btn-secondary,
    .btn-primary {
        width: 100%;
        justify-content: center;
    }
}

/* About Section Styles */
.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: 100px 0;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.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-content {
    position: relative;
    z-index: 2;
}

.about-header {
    text-align: center;
    margin-bottom: 80px;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--uplancer-purple);
    animation: fadeInUp 0.8s ease-out;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.about-badge i {
    color: var(--uplancer-orange);
    margin-right: 12px;
    font-size: 1.1rem;
}

.about-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    color: var(--uplancer-text);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.about-title .highlight {
    background: linear-gradient(135deg, #F7931E 0%, #5d3991 50%, #F7931E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
    position: relative;
    display: inline-block;
    font-weight: 900;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 0 8px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.about-title .highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
    z-index: 1;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes flowLine {
    0%, 100% {
        opacity: 0.3;
        transform: translateY(-50%) scaleX(0.8);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-50%) scaleX(1.2);
    }
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes techPulse {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(247, 147, 30, 0.2);
    }
    50% {
        box-shadow: 0 6px 20px rgba(247, 147, 30, 0.4), 0 0 20px rgba(247, 147, 30, 0.2);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

@keyframes dataFlow {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes techGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(247, 147, 30, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(247, 147, 30, 0.4), 0 0 40px rgba(93, 57, 145, 0.2);
    }
}

.about-description {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--uplancer-gray);
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.about-feature {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--uplancer-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--uplancer-purple);
}

.about-feature:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(247, 147, 30, 0.1) 0%, rgba(93, 57, 145, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #F7931E;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    border: 2px solid rgba(247, 147, 30, 0.3);
    box-shadow: 0 6px 20px rgba(247, 147, 30, 0.2);
}

.about-feature:hover .feature-icon {
    transform: scale(1.1);
    background: var(--uplancer-gradient);
    color: #F7931E;
    box-shadow: 0 10px 25px rgba(247, 147, 30, 0.4);
    border-color: transparent;
}

.feature-content h4 {
    font-weight: 700;
    color: var(--uplancer-text);
    margin-bottom: 12px;
    font-size: 1.3rem;
    line-height: 1.3;
}

.feature-content p {
    color: var(--uplancer-gray);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.about-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px 35px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.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 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--uplancer-purple);
}

.about-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(247, 147, 30, 0.1) 0%, rgba(93, 57, 145, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #F7931E;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    border: 2px solid rgba(247, 147, 30, 0.3);
    box-shadow: 0 6px 20px rgba(247, 147, 30, 0.2);
}

.about-card:hover .card-icon {
    transform: scale(1.1);
    background: var(--uplancer-gradient);
    color: white;
    box-shadow: 0 10px 25px rgba(247, 147, 30, 0.4);
    border-color: transparent;
}

.about-card h3 {
    font-weight: 700;
    color: var(--uplancer-text);
    margin-bottom: 20px;
    font-size: 1.8rem;
    line-height: 1.3;
}

.about-card p {
    color: var(--uplancer-gray);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* About Responsive */
@media (max-width: 768px) {
    .about-section {
        padding: 80px 0;
    }

    .about-title {
        font-size: 2.5rem;
    }

    .about-description {
        font-size: 1.1rem;
    }

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

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

    .about-feature {
        padding: 25px 20px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .about-card {
        padding: 30px 25px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 60px 0;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-description {
        font-size: 1rem;
    }

    .about-feature {
        padding: 20px 15px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }

    .about-card {
        padding: 25px 20px;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
}

/* Services Section Styles */
.services-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;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.services-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;
}

.services-content {
    position: relative;
    z-index: 2;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--uplancer-purple);
    animation: fadeInUp 0.8s ease-out;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.services-badge i {
    color: var(--uplancer-orange);
    margin-right: 12px;
    font-size: 1.1rem;
}

.services-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    color: var(--uplancer-text);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.services-description {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--uplancer-gray);
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px 35px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--uplancer-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--uplancer-purple);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(247, 147, 30, 0.1) 0%, rgba(93, 57, 145, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #F7931E;
    margin: 0 auto 30px;
    transition: all 0.3s ease;
    border: 2px solid rgba(247, 147, 30, 0.3);
    box-shadow: 0 8px 25px rgba(247, 147, 30, 0.2);
}

.service-card:hover .service-card-icon {
    transform: scale(1.1);
    background: var(--uplancer-gradient);
    color: #F7931E;
    box-shadow: 0 12px 30px rgba(247, 147, 30, 0.4);
    border-color: transparent;
}

.service-card-content {
    flex: 1;
    text-align: center;
}

.service-card-content h3 {
    font-weight: 700;
    color: var(--uplancer-text);
    margin-bottom: 15px;
    font-size: 1.5rem;
    line-height: 1.3;
}

.service-card-content p {
    color: var(--uplancer-gray);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Services Responsive */
@media (max-width: 768px) {
    .services-section {
        padding: 80px 0;
    }

    .services-title {
        font-size: 2.5rem;
    }

    .services-description {
        font-size: 1.1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card {
        padding: 30px 25px;
    }

    .service-card-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 60px 0;
    }

    .services-title {
        font-size: 2rem;
    }

    .services-description {
        font-size: 1rem;
    }

    .service-card {
        padding: 25px 20px;
    }

    .service-card-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

/* Features Section Styles */
.features-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;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.features-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;
}

.features-content {
    position: relative;
    z-index: 2;
}

.features-header {
    text-align: center;
    margin-bottom: 80px;
}

.features-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--uplancer-purple);
    animation: fadeInUp 0.8s ease-out;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.features-badge i {
    color: var(--uplancer-orange);
    margin-right: 12px;
    font-size: 1.1rem;
}

.features-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    color: var(--uplancer-text);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.features-description {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--uplancer-gray);
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
    position: relative;
}

.features-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(247, 147, 30, 0.3), transparent);
    transform: translateY(-50%);
    z-index: 1;
    animation: flowLine 4s ease-in-out infinite;
}

.features-grid::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(180deg, transparent, rgba(93, 57, 145, 0.3), transparent);
    transform: translateX(-50%);
    z-index: 1;
    animation: flowLine 4s ease-in-out infinite reverse;
}

/* Advanced Tech Grid Lines */
.features-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(90deg, transparent 49%, rgba(247, 147, 30, 0.1) 50%, transparent 51%),
        linear-gradient(180deg, transparent 49%, rgba(93, 57, 145, 0.1) 50%, transparent 51%);
    background-size: 100px 100px;
    z-index: 1;
    animation: gridMove 20s linear infinite;
    opacity: 0.3;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px 35px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    text-align: center;
    z-index: 2;
    animation: cardFloat 6s ease-in-out infinite;
    animation-delay: var(--card-delay);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--uplancer-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -15px;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, rgba(247, 147, 30, 0.6), transparent);
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.feature-card:nth-child(3n)::after {
    right: auto;
    left: -15px;
    background: linear-gradient(90deg, transparent, rgba(93, 57, 145, 0.6));
}

/* Advanced Tech Effects */
.feature-card .tech-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(247, 147, 30, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(93, 57, 145, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    pointer-events: none;
}

.feature-card .tech-sweep {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.feature-card:nth-child(1) { --card-delay: 0s; }
.feature-card:nth-child(2) { --card-delay: 1s; }
.feature-card:nth-child(3) { --card-delay: 2s; }
.feature-card:nth-child(4) { --card-delay: 3s; }
.feature-card:nth-child(5) { --card-delay: 4s; }
.feature-card:nth-child(6) { --card-delay: 5s; }

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--uplancer-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -15px;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, rgba(247, 147, 30, 0.6), transparent);
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.feature-card:nth-child(3n)::after {
    right: auto;
    left: -15px;
    background: linear-gradient(90deg, transparent, rgba(93, 57, 145, 0.6));
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--uplancer-purple);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover .tech-bg {
    opacity: 1;
}

.feature-card:hover .tech-sweep {
    left: 100%;
}

.feature-card:hover::after {
    opacity: 1;
    width: 40px;
}

.feature-card:hover + .feature-card::after {
    opacity: 1;
    width: 40px;
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(247, 147, 30, 0.1) 0%, rgba(93, 57, 145, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #F7931E;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    border: 2px solid rgba(247, 147, 30, 0.3);
    box-shadow: 0 6px 20px rgba(247, 147, 30, 0.2);
    position: relative;
    animation: techPulse 3s ease-in-out infinite;
    animation-delay: var(--card-delay);
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #F7931E, #5d3991, #F7931E);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: rotate 4s linear infinite;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--uplancer-gradient);
    color: white;
    box-shadow: 0 10px 25px rgba(247, 147, 30, 0.4);
    border-color: transparent;
    animation: none;
}

.feature-card:hover .feature-icon::before {
    opacity: 1;
}

.feature-content h3 {
    font-weight: 700;
    color: var(--uplancer-text);
    margin-bottom: 15px;
    font-size: 1.4rem;
    line-height: 1.3;
}

.feature-content p {
    color: var(--uplancer-gray);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

.features-cta {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.features-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--uplancer-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.features-cta:hover::before {
    opacity: 1;
}

.cta-content h3 {
    font-weight: 700;
    color: var(--uplancer-text);
    margin-bottom: 15px;
    font-size: 2rem;
    line-height: 1.3;
}

.cta-content p {
    color: var(--uplancer-gray);
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--uplancer-gradient);
    color: #F7931E;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(93, 57, 145, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-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;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(93, 57, 145, 0.4);
    color: rgba(93, 57, 145, 0.4);
    text-decoration: none;
}

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

.cta-btn i {
    transition: transform 0.3s ease;
}

.cta-btn:hover i {
    transform: translateX(5px);
}

/* Features Responsive */
@media (max-width: 768px) {
    .features-section {
        padding: 80px 0;
    }

    .features-title {
        font-size: 2.5rem;
    }

    .features-description {
        font-size: 1.1rem;
    }

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

    .feature-card {
        padding: 30px 25px;
    }

    .feature-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .features-cta {
        padding: 40px 30px;
    }

    .cta-content h3 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .features-section {
        padding: 60px 0;
    }

    .features-title {
        font-size: 2rem;
    }

    .features-description {
        font-size: 1rem;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .features-cta {
        padding: 30px 25px;
    }

    .cta-content h3 {
        font-size: 1.6rem;
    }

    .cta-btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

/* Projects Section Styles */
.projects-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;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.projects-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;
}

.projects-content {
    position: relative;
    z-index: 2;
}

.projects-header {
    text-align: center;
    margin-bottom: 80px;
}

.projects-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--uplancer-purple);
    animation: fadeInUp 0.8s ease-out;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.projects-badge i {
    color: var(--uplancer-orange);
    margin-right: 12px;
    font-size: 1.1rem;
}

.projects-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    color: var(--uplancer-text);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.projects-description {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--uplancer-gray);
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.projects-cta {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.projects-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--uplancer-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.projects-cta:hover::before {
    opacity: 1;
}

.cta-content h3 {
    font-weight: 700;
    color: var(--uplancer-text);
    margin-bottom: 15px;
    font-size: 2rem;
    line-height: 1.3;
}

.cta-content p {
    color: var(--uplancer-gray);
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    border: none;
}

.cta-btn.primary {
    background: var(--uplancer-gradient);
    color: #F7931E;
    box-shadow: 0 6px 20px rgba(93, 57, 145, 0.3);
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--uplancer-text);
    border: 2px solid var(--uplancer-purple);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.cta-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;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(93, 57, 145, 0.4);
    color: rgba(93, 57, 145, 0.3);
    text-decoration: none;
}

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

.cta-btn i {
    transition: transform 0.3s ease;
}

.cta-btn:hover i {
    transform: translateX(5px);
}

.cta-btn.secondary:hover {
    background: var(--uplancer-gradient);
    border-color: transparent;
}

/* Projects Responsive */
@media (max-width: 768px) {
    .projects-section {
        padding: 80px 0;
    }

    .projects-title {
        font-size: 2.5rem;
    }

    .projects-description {
        font-size: 1.1rem;
    }

    .projects-cta {
        padding: 40px 30px;
    }

    .cta-content h3 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

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

    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .projects-section {
        padding: 60px 0;
    }

    .projects-title {
        font-size: 2rem;
    }

    .projects-description {
        font-size: 1rem;
    }

    .projects-cta {
        padding: 30px 25px;
    }

    .cta-content h3 {
        font-size: 1.6rem;
    }

    .cta-btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

/* For smaller screens */
@media (max-width: 767px) {
    .counter-item {
        padding: 3rem;
    }
}

/* تصميم البانر */
.banner-modern {
    position: relative;
    border-radius: 25px;
    padding: 20px;
    margin-top: 30px;
    overflow: hidden;
    z-index: 1;
}

/* إضافة خلفية متحركة */
.banner-modern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #5d3991, #9b59b6, #5d3991);
    background-size: 300% 300%;
    animation: gradientMove 6s infinite alternate;
    z-index: -1;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* تأثير الزجاج */
.banner-overlay {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 25px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
}

/* Service Packages Section */
.package-type-header {
    padding: 20px;
    text-align: center;
    color: #fff;
    border-radius: 15px 15px 0 0;
    margin-bottom: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.package-type-header:hover {
    transform: translateY(-3px);
}

.website-development {
    background: linear-gradient(45deg, #eee6f3, #f8f5e2);
}

.graphic-design {
    background: linear-gradient(45deg, #eee6f3, #f8f5e2);
}

.app-development {
    background: linear-gradient(45deg, #eee6f3, #f8f5e2);
}

/* Accordion Styles */
.accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
    margin-bottom: 0.5rem;
}

.accordion-header {
        font-size: 1.1rem;
}

.accordion-button-a {
    background-color: #a386ff;
    color: #212529;
    border: 0;
    padding: 1rem 1.25rem;
    width: 100%;
    text-align: left;
    border-radius: 0.25rem;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
}

.accordion-button-a:not(.collapsed) {
    color: #black;
    background-color: #6c63ff;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.accordion-button-a:focus {
    border-color: #8a18e4;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(138, 24, 228, 0.25);
}

.accordion-body {
    padding: 1rem 1.25rem;
}

/* Service Packages Section Styles */
.packages-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;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.packages-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;
}

.packages-content {
    position: relative;
    z-index: 2;
}

.packages-header {
    text-align: center;
    margin-bottom: 80px;
}

.packages-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--uplancer-purple);
    animation: fadeInUp 0.8s ease-out;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.packages-badge i {
    color: var(--uplancer-orange);
    margin-right: 12px;
    font-size: 1.1rem;
}

.packages-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    color: var(--uplancer-text);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.packages-description {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--uplancer-gray);
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

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

.package-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--uplancer-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--uplancer-purple);
}

.package-card:hover::before {
    opacity: 1;
}

.package-header {
    text-align: center;
    margin-bottom: 40px;
}

.package-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(247, 147, 30, 0.1) 0%, rgba(93, 57, 145, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #F7931E;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    border: 2px solid rgba(247, 147, 30, 0.3);
    box-shadow: 0 6px 20px rgba(247, 147, 30, 0.2);
}

.package-card:hover .package-icon {
    transform: scale(1.1);
    background: var(--uplancer-gradient);
    color: white;
    box-shadow: 0 10px 25px rgba(247, 147, 30, 0.4);
    border-color: transparent;
}

.package-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--uplancer-text);
    margin-bottom: 10px;
}

.package-header p {
    color: var(--uplancer-gray);
    font-size: 1rem;
    margin: 0;
}

.packages-accordion {
    margin-top: 40px;
    position: relative;
}

.packages-accordion::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #5d3991, #7c4db8);
    border-radius: 2px;
    opacity: 0.6;
}

.packages-accordion {
    margin-top: 40px;
    position: relative;
}

.packages-accordion::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(93, 57, 145, 0.2), transparent);
}

.accordion {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.accordion-item {
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(93, 57, 145, 0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    /* min-height: 140px; */
    display: flex;
    flex-direction: column;
}

.accordion-item:hover {
    box-shadow: 0 12px 35px rgba(93, 57, 145, 0.15);
    transform: translateY(-3px);
    border-color: rgba(93, 57, 145, 0.2);
}

.accordion-header {
    border: none;
    padding: 0;
}

.accordion-button-a {
    width: 100%;
    background: transparent;
    border: none;
    padding: 0;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.accordion-button-a:not(.collapsed) {
    background: linear-gradient(135deg, rgba(93, 57, 145, 0.05), rgba(247, 147, 30, 0.05));
}

.accordion-button-a:hover {
    background: linear-gradient(135deg, rgba(93, 57, 145, 0.03), rgba(247, 147, 30, 0.03));
}

.accordion-content {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    position: relative;
    flex: 1;
}

.accordion-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #5d3991, #7c4db8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(93, 57, 145, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.accordion-icon i {
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.accordion-button-a:hover .accordion-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(93, 57, 145, 0.4);
}

.accordion-text {
    flex: 1;
}

.accordion-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--uplancer-text);
    margin: 0;
    transition: all 0.3s ease;
    text-align: initial;
    line-height: 1.2;
}

.accordion-arrow {
    width: 35px;
    height: 35px;
    background: rgba(93, 57, 145, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(93, 57, 145, 0.1);
}

.accordion-arrow i {
    font-size: 0.9rem;
    color: #5d3991;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.accordion-button-a:hover .accordion-arrow {
    background: rgba(93, 57, 145, 0.15);
    transform: scale(1.05);
}

.accordion-button-a:not(.collapsed) .accordion-arrow {
    background: linear-gradient(135deg, #5d3991, #7c4db8);
    transform: rotate(180deg);
    box-shadow: 0 6px 20px rgba(93, 57, 145, 0.3);
}

.accordion-button-a:not(.collapsed) .accordion-arrow i {
    color: white;
}

.accordion-collapse {
    border-top: 1px solid rgba(93, 57, 145, 0.1);
    position: relative;
}

.accordion-body {
    padding: 25px;
    background: white;
    position: relative;
}

.package-tiers {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tier-item {
    background: white;
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(93, 57, 145, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 10px;
}

.tier-item:last-child {
    margin-bottom: 0;
}

.tier-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(93, 57, 145, 0.12);
    border-color: rgba(93, 57, 145, 0.2);
}

.tier-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(93, 57, 145, 0.1);
    position: relative;
}

.tier-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--uplancer-text);
    margin: 0;
    position: relative;
}

.tier-price {
    font-size: 1rem;
    font-weight: 700;
    color: #5d3991;
    background: linear-gradient(135deg, rgba(93, 57, 145, 0.08), rgba(124, 77, 184, 0.08));
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(93, 57, 145, 0.2);
}

.tier-features {
    margin-bottom: 20px;
}

.tier-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tier-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--uplancer-gray);
    line-height: 1.4;
    padding: 5px 0;
    transition: all 0.3s ease;
}

.tier-features li:hover {
    color: var(--uplancer-text);
    transform: translateX(3px);
}

.tier-features li i {
    color: #F7931E;
    font-size: 0.8rem;
    margin-top: 2px;
    flex-shrink: 0;
    background: rgba(247, 147, 30, 0.1);
    padding: 3px;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tier-action {
    text-align: center;
}

.tier-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #5d3991, #7c4db8);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(93, 57, 145, 0.25);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.tier-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(93, 57, 145, 0.35);
    color: white;
    text-decoration: none;
    background: linear-gradient(135deg, #7c4db8, #5d3991);
}

.tier-btn i {
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.tier-btn:hover i {
    transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .accordion {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .accordion-content {
        padding: 20px 25px;
    }

    .accordion-icon {
        width: 50px;
        height: 50px;
    }

    .accordion-icon i {
        font-size: 1.3rem;
    }

    .accordion-text h3 {
        font-size: 1.2rem;
    }

    .accordion-arrow {
        width: 30px;
        height: 30px;
    }

    .accordion-arrow i {
        font-size: 0.8rem;
    }

    .accordion-body {
        padding: 20px;
    }

    .tier-item {
        padding: 15px;
    }

    .tier-header h4 {
        font-size: 1rem;
    }

    .tier-price {
        font-size: 0.9rem;
        padding: 5px 10px;
    }

    .tier-features li {
        font-size: 0.9rem;
    }

    .tier-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .accordion-content {
        padding: 15px 20px;
        gap: 15px;
    }

    .accordion-icon {
        width: 45px;
        height: 45px;
    }

    .accordion-icon i {
        font-size: 1.1rem;
    }

    .accordion-text h3 {
        font-size: 1.1rem;
    }

    .accordion-arrow {
        width: 28px;
        height: 28px;
    }

    .accordion-arrow i {
        font-size: 0.7rem;
    }

    .accordion-body {
        padding: 15px;
    }

    .tier-item {
        padding: 12px;
    }

    .tier-header {
        margin-bottom: 12px;
        padding-bottom: 10px;
    }

    .tier-header h4 {
        font-size: 0.95rem;
    }

    .tier-price {
        font-size: 0.85rem;
        padding: 4px 8px;
    }

    .tier-features li {
        font-size: 0.85rem;
        gap: 8px;
    }

    .tier-features li i {
        font-size: 0.75rem;
    }

    .tier-btn {
        padding: 7px 14px;
        font-size: 0.8rem;
    }
}

.packages-cta {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.packages-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--uplancer-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.packages-cta:hover::before {
    opacity: 1;
}

.cta-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--uplancer-text);
    margin-bottom: 15px;
    animation: fadeInUp 0.6s ease-out;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--uplancer-gray);
    margin-bottom: 35px;
    line-height: 1.6;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #5d3991, #F7931E);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(93, 57, 145, 0.3);
    border: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(93, 57, 145, 0.4);
    color: white;
    text-decoration: none;
    background: linear-gradient(135deg, #F7931E, #5d3991);
}

.cta-btn i {
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-btn:hover i {
    transform: translateX(3px);
}

.cta-btn-secondary {
    background: transparent;
    color: #5d3991;
    border: 2px solid #5d3991;
    box-shadow: 0 4px 15px rgba(93, 57, 145, 0.1);
}

.cta-btn-secondary:hover {
    background: linear-gradient(135deg, #5d3991, #7c4db8);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(93, 57, 145, 0.3);
}

/* Packages Responsive */
@media (max-width: 768px) {
    .packages-section {
        padding: 80px 0;
    }

    .packages-title {
        font-size: 2.5rem;
    }

    .packages-description {
        font-size: 1.1rem;
    }

    .accordion-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .accordion-content {
        padding: 25px 20px;
        gap: 15px;
    }

    .accordion-icon {
        width: 60px;
        height: 60px;
    }

    .accordion-icon i {
        font-size: 1.6rem;
    }

    .accordion-text h3 {
        font-size: 1.4rem;
    }

    .tier-item {
        padding: 20px;
    }

    .tier-header h4 {
        font-size: 1.2rem;
    }

    .tier-price {
        font-size: 1.1rem;
        padding: 8px 15px;
    }

    .packages-cta {
        padding: 40px 30px;
    }

    .cta-content h3 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

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

    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 14px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .packages-section {
        padding: 60px 0;
    }

    .packages-title {
        font-size: 2rem;
    }

    .packages-description {
        font-size: 1rem;
    }

    .accordion-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .accordion-content {
        padding: 20px 18px;
        gap: 12px;
    }

    .accordion-icon {
        width: 50px;
        height: 50px;
    }

    .accordion-icon i {
        font-size: 1.4rem;
    }

    .accordion-text h3 {
        font-size: 1.2rem;
    }

    .accordion-text p {
        font-size: 0.9rem;
    }

    .accordion-arrow {
        width: 35px;
        height: 35px;
    }

    .accordion-arrow i {
        font-size: 1rem;
    }

    .tier-item {
        padding: 18px;
    }

    .tier-header h4 {
        font-size: 1.1rem;
    }

    .tier-price {
        font-size: 1rem;
        padding: 6px 12px;
    }

    .tier-features li {
        font-size: 0.9rem;
    }

    .packages-cta {
        padding: 30px 25px;
    }

    .cta-content h3 {
        font-size: 1.6rem;
    }

    .tier-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* Start: Up Lancer Process 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: 100px 0;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.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-header {
    text-align: center;
    margin-bottom: 80px;
}

.process-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--uplancer-purple);
    animation: fadeInUp 0.8s ease-out;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.process-badge i {
    color: var(--uplancer-orange);
    margin-right: 12px;
    font-size: 1.1rem;
}

.process-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    color: var(--uplancer-text);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.process-description {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--uplancer-gray);
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.process-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--uplancer-text);
    background: linear-gradient(135deg, rgba(93, 57, 145, 0.1), rgba(247, 147, 30, 0.1));
    padding: 6px 12px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(247, 147, 30, 0.1), rgba(93, 57, 145, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #F7931E;
    box-shadow: 0 6px 20px rgba(247, 147, 30, 0.2);
}

.step-content {
    flex: 1;
}

.step-content h4 {
    font-weight: 700;
    color: var(--uplancer-text);
    margin-bottom: 10px;
    font-size: 1.5rem;
    line-height: 1.3;
}

.step-content p {
    color: var(--uplancer-gray);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

.step-arrow {
    font-size: 2rem;
    color: var(--uplancer-text);
    transition: all 0.3s ease;
}

.process-cta {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.process-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--uplancer-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-cta:hover::before {
    opacity: 1;
}

.cta-content h3 {
    font-weight: 700;
    color: var(--uplancer-text);
    margin-bottom: 15px;
    font-size: 2rem;
    line-height: 1.3;
}

.cta-content p {
    color: var(--uplancer-gray);
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--uplancer-gradient);
    color: #F7931E;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(93, 57, 145, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-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;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(93, 57, 145, 0.4);
    color: rgba(93, 57, 145, 0.4);
    text-decoration: none;
}

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

.cta-btn i {
    transition: transform 0.3s ease;
}

.cta-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .process-flow {
        flex-direction: column;
        gap: 40px;
    }

    .process-steps {
        gap: 20px;
    }

    .process-step {
        padding: 15px 20px;
    }

    .step-number {
        font-size: 1.5rem;
    }

    .step-icon {
        width: 50px;
        height: 50px;
    }

    .step-content h4 {
        font-size: 1.2rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }

    .step-arrow {
        font-size: 1.5rem;
    }

    .process-cta {
        padding: 40px 30px;
    }

    .cta-content h3 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

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

    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .process-flow {
        gap: 30px;
    }

    .process-steps {
        gap: 15px;
    }

    .process-step {
        padding: 12px 18px;
    }

    .step-number {
        font-size: 1.2rem;
    }

    .step-icon {
        width: 45px;
        height: 45px;
    }

    .step-content h4 {
        font-size: 1rem;
    }

    .step-content p {
        font-size: 0.8rem;
    }

    .step-arrow {
        font-size: 1.2rem;
    }

    .process-cta {
        padding: 30px 25px;
    }

    .cta-content h3 {
        font-size: 1.6rem;
    }

    .cta-btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
}

/* Testimonial Styles */
.testimonial-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--uplancer-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--uplancer-purple);
}

.testimonial-item:hover::before {
    opacity: 1;
}

.testimonial-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(247, 147, 30, 0.1), rgba(93, 57, 145, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #F7931E;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    border: 2px solid rgba(247, 147, 30, 0.3);
    box-shadow: 0 6px 20px rgba(247, 147, 30, 0.2);
}

.testimonial-item:hover .testimonial-icon {
    transform: scale(1.1);
    background: var(--uplancer-gradient);
    color: white;
    box-shadow: 0 10px 25px rgba(247, 147, 30, 0.4);
    border-color: transparent;
}

.testimonial-text {
    flex: 1;
    text-align: center;
}

.testimonial-text h5 {
    font-weight: 700;
    color: var(--uplancer-text);
    margin-bottom: 10px;
    font-size: 1.5rem;
    line-height: 1.3;
}

.testimonial-text p {
    color: var(--uplancer-gray);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.author-image {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(247, 147, 30, 0.1), rgba(93, 57, 145, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #F7931E;
    margin-right: 15px;
    transition: all 0.3s ease;
    border: 2px solid rgba(247, 147, 30, 0.3);
    box-shadow: 0 6px 20px rgba(247, 147, 30, 0.2);
}

.author-name {
    font-weight: 600;
    color: var(--uplancer-text);
    font-size: 1.2rem;
    line-height: 1.3;
}

.author-position {
    color: var(--uplancer-gray);
    font-size: 1rem;
    line-height: 1.5;
}

/* Testimonial Responsive */
@media (max-width: 768px) {
    .testimonial-item {
        padding: 30px 25px;
    }

    .testimonial-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .testimonial-text h5 {
        font-size: 1.2rem;
    }

    .testimonial-text p {
        font-size: 0.9rem;
    }

    .author-image {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }

    .author-name {
        font-size: 1rem;
    }

    .author-position {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .testimonial-item {
        padding: 25px 20px;
    }

    .testimonial-icon {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }

    .testimonial-text h5 {
        font-size: 1rem;
    }

    .testimonial-text p {
        font-size: 0.8rem;
    }

    .author-image {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
    }

    .author-name {
        font-size: 0.9rem;
    }

    .author-position {
        font-size: 0.8rem;
    }
}

/* Horizontal Timeline Process Flow */
.process-timeline-horizontal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-step-horizontal {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.step-card-horizontal {
    flex: 1;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    width: 100%;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-card-horizontal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #5d3991, #F7931E);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-card-horizontal:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(93, 57, 145, 0.15);
    border-color: rgba(93, 57, 145, 0.2);
}

.step-card-horizontal:hover::before {
    opacity: 1;
}

.step-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(247, 147, 30, 0.1), rgba(93, 57, 145, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #F7931E;
    box-shadow: 0 6px 20px rgba(247, 147, 30, 0.2);
}

.step-content {
    text-align: center;
}

.step-content h4 {
    font-weight: 700;
    color: var(--uplancer-text);
    margin-bottom: 12px;
    font-size: 1.3rem;
    line-height: 1.3;
}

.step-content p {
    color: var(--uplancer-gray);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.step-arrow {
    font-size: 1.8rem;
    color: #F7931E;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.timeline-step-horizontal:last-child .step-arrow {
    display: none;
}

.timeline-step-horizontal:hover .step-arrow {
    opacity: 1;
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .process-timeline-horizontal {
        flex-direction: column;
        gap: 25px;
    }

    .timeline-step-horizontal {
        min-width: 100%;
        max-width: 100%;
        flex-direction: column;
        gap: 15px;
    }

    .step-card-horizontal {
        padding: 20px;
        height: 250px;
    }

    .step-header {
        margin-bottom: 15px;
    }

    .step-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .step-content h4 {
        font-size: 1.2rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }

    .step-arrow {
        font-size: 1.5rem;
        transform: rotate(-90deg);
        text-align: center;
    }

    .timeline-step-horizontal:hover .step-arrow {
        transform: rotate(-90deg) translateY(-3px);
    }
}

/* Plug in Up Lancer Section */
.plug-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.plug-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23f0f0f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.plug-content-wrapper {
    position: relative;
    z-index: 2;
}

.plug-content {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.plug-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(93, 57, 145, 0.1), rgba(247, 147, 30, 0.1));
    color: var(--uplancer-text);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(93, 57, 145, 0.2);
}

.plug-badge i {
    color: #F7931E;
    margin-right: 8px;
}

.plug-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    color: var(--uplancer-text);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.plug-title .highlight {
    background: linear-gradient(135deg, #F7931E 0%, #5d3991 50%, #F7931E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
    position: relative;
    display: inline-block;
    font-weight: 900;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 0 8px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.plug-title .highlight::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
    z-index: 1;
}

.plug-description {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--uplancer-text);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.plug-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--uplancer-gray);
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.plug-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.plug-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(93, 57, 145, 0.1);
    transition: all 0.3s ease;
}

.plug-feature:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(93, 57, 145, 0.2);
}

.plug-feature i {
    color: #F7931E;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.plug-feature span {
    font-weight: 600;
    color: var(--uplancer-text);
    font-size: 1rem;
}

.plug-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 1.2s both;
}

.plug-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.plug-btn.primary {
    background: linear-gradient(135deg, #5d3991, #F7931E);
    color: white;
    box-shadow: 0 8px 25px rgba(93, 57, 145, 0.3);
    position: relative;
    overflow: hidden;
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
}

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

.plug-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(93, 57, 145, 0.4);
    color: white;
    text-decoration: none;
    background: linear-gradient(135deg, #F7931E, #5d3991);
}

.plug-btn.primary:hover::before {
    left: 100%;
}

.plug-btn.primary i {
    transition: transform 0.3s ease;
}

.plug-btn.primary:hover i {
    transform: translateX(5px);
}

.plug-btn.secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--uplancer-text);
    border: 2px solid rgba(93, 57, 145, 0.2);
}

.plug-btn.secondary:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 1);
    border-color: rgba(93, 57, 145, 0.4);
    color: var(--uplancer-text);
    text-decoration: none;
}

.plug-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.plug-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.plug-floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #F7931E;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
    animation-delay: var(--delay);
}

.plug-floating-element:nth-child(1) { top: 10%; left: 10%; }
.plug-floating-element:nth-child(2) { top: 20%; right: 15%; }
.plug-floating-element:nth-child(3) { top: 60%; left: 5%; }
.plug-floating-element:nth-child(4) { bottom: 30%; right: 10%; }
.plug-floating-element:nth-child(5) { bottom: 20%; left: 20%; }
.plug-floating-element:nth-child(6) { top: 40%; right: 5%; }

.plug-main-image {
    position: relative;
    z-index: 2;
    max-width: 80%;
}

.plug-main-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

@media (max-width: 768px) {
    .plug-section {
        padding: 60px 0;
    }

    .plug-title {
        font-size: 2.5rem;
    }

    .plug-description {
        font-size: 1.2rem;
    }

    .plug-text {
        font-size: 1rem;
    }

    .plug-features {
        gap: 12px;
    }

    .plug-feature {
        padding: 10px 16px;
    }

    .plug-actions {
        flex-direction: column;
    }

    .plug-btn {
        width: 100%;
        justify-content: center;
    }

    .plug-visual {
        height: 400px;
        margin-top: 40px;
    }

    .plug-floating-element {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .plug-section {
        padding: 40px 0;
    }

    .plug-title {
        font-size: 2rem;
    }

    .plug-description {
        font-size: 1.1rem;
    }

    .plug-text {
        font-size: 0.95rem;
    }

    .plug-feature {
        padding: 8px 12px;
    }

    .plug-feature span {
        font-size: 0.9rem;
    }

    .plug-visual {
        height: 300px;
    }

    .plug-floating-element {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .process-timeline-horizontal {
        gap: 20px;
    }

    .timeline-step-horizontal {
        gap: 12px;
    }

    .step-card-horizontal {
        padding: 15px;
        height: 200px;
    }

    .step-header {
        margin-bottom: 12px;
    }

    .step-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .step-content h4 {
        font-size: 1.1rem;
    }

    .step-content p {
        font-size: 0.85rem;
    }

    .step-arrow {
        font-size: 1.3rem;
        transform: rotate(-90deg);
    }

    .timeline-step-horizontal:hover .step-arrow {
        transform: rotate(-90deg) translateY(-3px);
    }
}


