/* Website Service Page Styles */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");

* {
    box-sizing: border-box;
}

body {
    font-family: "Pretendard", sans-serif;
    color: #ffffff;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.website-hero {
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.website-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(closest-side, rgba(0, 212, 255, 0.18), transparent 60%),
                radial-gradient(closest-side, rgba(0, 153, 204, 0.16), transparent 65%);
    opacity: 0.9;
    pointer-events: none;
}

.website-hero .hero-content {
    position: relative;
    z-index: 1;
}

.website-hero .hero-title {
    margin: 0 0 18px;
    font-size: 3.2rem;
    font-weight: 900;
    letter-spacing: -0.6px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.website-hero .hero-subtitle {
    margin: 0 auto 26px;
    max-width: 760px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 0 0 26px;
}

.hero-points .point {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.86);
    font-weight: 700;
}

.hero-points .point i {
    color: #00d4ff;
}

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    padding: 14px 26px;
    font-weight: 800;
}

.btn-ghost {
    background: transparent;
    border: 2px solid rgba(0, 212, 255, 0.45);
    color: #00d4ff;
}

.website-section {
    padding: 90px 0;
}

.website-section-accent {
    background: rgba(0, 212, 255, 0.08);
    border-top: 1px solid rgba(0, 212, 255, 0.22);
    border-bottom: 1px solid rgba(0, 212, 255, 0.22);
    backdrop-filter: blur(10px);
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header h2 {
    margin: 0 0 14px;
    font-size: 2.4rem;
    font-weight: 900;
    letter-spacing: -0.4px;
    color: #ffffff;
}

.section-header p {
    margin: 0 auto;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
    font-size: 1.05rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 26px 22px;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 212, 255, 0.35);
    box-shadow: 0 12px 30px rgba(0, 212, 255, 0.10);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.10);
    border: 1px solid rgba(0, 212, 255, 0.25);
    margin-bottom: 14px;
    font-size: 1.3rem;
    color: #00d4ff;
}

.feature-card h3 {
    margin: 0 0 10px;
    font-size: 1.25rem;
    font-weight: 900;
    color: #ffffff;
}

.feature-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.75;
}

.website-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.website-process-step {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 26px 22px;
}

.website-step-no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(0, 212, 255, 0.12);
    border: 1px solid rgba(0, 212, 255, 0.28);
    color: #00d4ff;
    font-weight: 900;
    margin-bottom: 12px;
}

.website-process-step h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 900;
}

.website-process-step p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.75;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 32px 26px;
    text-align: left;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.pricing-card.featured {
    border-color: rgba(0, 212, 255, 0.40);
    box-shadow: 0 14px 40px rgba(0, 212, 255, 0.10);
    background: rgba(0, 212, 255, 0.08);
}

.plan-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(0, 212, 255, 0.12);
    border: 1px solid rgba(0, 212, 255, 0.28);
    color: #00d4ff;
    font-weight: 900;
    letter-spacing: 0.4px;
    font-size: 0.85rem;
    margin-bottom: 12px;
    width: fit-content;
}

.pricing-card h3 {
    margin: 0 0 8px;
    font-size: 1.35rem;
    font-weight: 900;
    color: #ffffff;
}

.plan-price {
    margin: 8px 0 10px;
    font-size: 2.1rem;
    font-weight: 900;
    color: #00d4ff;
}

.plan-desc {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
}

.plan-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.plan-list li {
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    position: relative;
    padding-left: 22px;
}

.plan-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: 900;
}

.plan-list li:last-child {
    border-bottom: none;
}

.btn-plan {
    margin-top: auto;
    width: 100%;
    text-align: center;
    padding: 12px 18px;
    font-weight: 900;
}

.pricing-note {
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.20);
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.7;
    text-align: center;
}

.website-cta {
    padding: 90px 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 153, 204, 0.1) 100%);
}

.cta-card {
    max-width: 980px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.22);
    border-radius: 20px;
    padding: 46px 34px;
    text-align: center;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.cta-card h2 {
    margin: 0 0 14px;
    color: white;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.3px;
}

.cta-card p {
    margin: 0 auto 22px;
    max-width: 820px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .website-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .website-hero {
        padding: 100px 0 60px;
    }

    .website-hero .hero-title {
        font-size: 2.4rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .feature-grid,
    .website-process-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .cta-card {
        padding: 34px 18px;
    }
}

