@charset "utf-8";

/* =========================================================================
   [SUB PAGE] Development Request Landing
   ========================================================================= */

/* Hero Section */
.request-hero {
    padding: 180px 0 140px;
    background-color: #000;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}
#heroCanvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}
.request-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}
.request-hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -2px;
}
.request-hero-desc {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
    line-height: 1.6;
}
.request-hero-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
}
.request-hero-btns .zzan-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 260px !important;
    height: 76px !important;
    padding: 0 50px !important;
    border-radius: 50px !important;
    font-size: 22px !important;
    font-weight: 800 !important;
    cursor: pointer !important;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    position: relative !important;
    letter-spacing: -1px !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    z-index: 1 !important;
    line-height: 1 !important;
}

.request-hero-btns .zzan-btn-primary {
    background: linear-gradient(135deg, var(--point-color) 0%, #ff5e3a 100%) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 10px 40px rgba(var(--point-color-rgb), 0.4), 0 0 20px rgba(var(--point-color-rgb), 0.2) !important;
}

.request-hero-btns .zzan-btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #ff5e3a 0%, var(--point-color) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.request-hero-btns .zzan-btn-outline {
    border: 2px solid rgba(var(--point-color-rgb), 0.6) !important;
    color: #fff !important;
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(15px) !important;
    box-shadow: 0 0 0 0 rgba(var(--point-color-rgb), 0) !important;
}

.request-hero-btns .zzan-btn:hover {
    transform: translateY(-8px) scale(1.03) !important;
}

.request-hero-btns .zzan-btn-primary:hover {
    box-shadow: 0 20px 50px rgba(var(--point-color-rgb), 0.6), 0 0 30px rgba(var(--point-color-rgb), 0.3) !important;
    color: #fff !important;
}

.request-hero-btns .zzan-btn-primary:hover::before {
    opacity: 1;
}

.request-hero-btns .zzan-btn-outline:hover {
    border-color: var(--point-color) !important;
    background: rgba(var(--point-color-rgb), 0.1) !important;
    box-shadow: 0 0 30px rgba(var(--point-color-rgb), 0.4) !important;
    color: var(--point-color) !important;
}

/* Shining effect */
.request-hero-btns .zzan-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(30deg);
    transition: none;
    pointer-events: none;
    filter: blur(5px);
}

.request-hero-btns .zzan-btn:hover::after {
    left: 150%;
    transition: left 0.8s ease-in-out;
}

/* Process Section */
.request-process {
    padding: 100px 0;
    background-color: var(--white);
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}
.process-item {
    padding: 40px;
    background: var(--gray-50);
    border-radius: var(--round-xl);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-100);
}
.process-item:hover {
    transform: translateY(-10px);
    border-color: var(--point-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.process-num {
    font-size: 14px;
    font-weight: 700;
    color: var(--point-color);
    margin-bottom: 15px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.process-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 10px;
}
.process-eng {
    font-size: 15px;
    color: var(--gray-500);
    font-family: 'Lexend', sans-serif;
}

/* Review Section */
.request-reviews {
    padding: 100px 0;
    background-color: var(--gray-50);
}
.review-list {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.review-item {
    background: var(--white);
    padding: 30px;
    border-radius: var(--round-lg);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.review-stars {
    color: #ffb800;
    font-size: 18px;
}
.review-author {
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 600;
}
.review-content {
    font-size: 17px;
    color: var(--gray-800);
    line-height: 1.6;
    font-weight: 500;
}
.review-meta {
    font-size: 13px;
    color: var(--gray-500);
}

@media screen and (max-width: 1024px) {
    .request-hero { padding: 140px 0 70px; }
    .request-hero-title { font-size: 32px; letter-spacing: -1px; }
    .request-hero-desc { font-size: 16px; }
    .request-hero-btns { flex-direction: column; align-items: center; }
    .request-hero-btns .btn { width: 100%; max-width: 300px; height: 54px; font-size: 16px; }
    
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .process-item { padding: 30px 20px; }
    .process-title { font-size: 18px; }
    
    .request-process, .request-reviews { padding: 60px 0; }
}

@media screen and (max-width: 640px) {
    .process-grid { grid-template-columns: 1fr; }
}

/* Modal Styling */
.zzan-modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.zzan-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.zzan-modal-content {
    background: #1a1a1a;
    width: 90%;
    max-width: 480px;
    padding: 60px 40px 50px;
    border-radius: 30px;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    text-align: center;
}
.zzan-modal-overlay.active .zzan-modal-content {
    transform: translateY(0) scale(1);
}
.btn-modal-close {
    position: absolute;
    top: 25px; right: 25px;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}
.btn-modal-close:hover {
    color: #fff;
    transform: rotate(90deg);
}
.modal-icon {
    color: #fee500; /* Kakao Yellow */
    margin-bottom: 25px;
    display: inline-flex;
}
.modal-title {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.modal-desc {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 35px;
}
.modal-desc strong {
    color: #fff;
    font-weight: 700;
}
.modal-btns .btn-kakao {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 64px !important;
    background: #fee500 !important;
    color: #3c1e1e !important;
    border-radius: 16px !important;
    font-size: 19px !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 10px 20px rgba(254, 229, 0, 0.2) !important;
}
.modal-btns .btn-kakao:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 15px 30px rgba(254, 229, 0, 0.3) !important;
    background: #ffeb33 !important;
}
.modal-sub-desc {
    margin-top: 25px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

@media screen and (max-width: 480px) {
    .zzan-modal-content {
        padding: 50px 25px 40px;
        border-radius: 24px;
    }
    .modal-title { font-size: 24px; }
    .modal-desc { font-size: 15px; }
}
