/* ========================================
   PRODUCT: CONTACT CENTER — Styles
   ======================================== */

/* ---- Hero ---- */
.pcc-hero {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0 90px;
    overflow: hidden;
}

.pcc-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 60% 20%, rgba(0, 108, 53, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 80%, rgba(0, 108, 53, 0.06) 0%, transparent 45%),
        linear-gradient(180deg, #0A0A0F 0%, #0F0F18 100%);
    z-index: 0;
}

.pcc-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 32px 32px;
}

.pcc-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}

.pcc-hero__badge {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-text-white);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 20px;
    border-radius: var(--border-radius-pill);
    margin-bottom: 28px;
    letter-spacing: 0.5px;
    animation: fadeInUp 0.6s ease both;
}

.pcc-hero__title {
    font-size: clamp(2.4rem, 6vw, 3.8rem);
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: 16px;
    line-height: 1.2;
    animation: fadeInUp 0.7s ease 0.1s both;
}

.pcc-hero__tagline {
    font-size: clamp(1.15rem, 2.8vw, 1.6rem);
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 20px;
    animation: fadeInUp 0.7s ease 0.2s both;
}

.pcc-hero__desc {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: var(--color-text-gray);
    line-height: 1.8;
    margin-bottom: 36px;
    animation: fadeInUp 0.7s ease 0.3s both;
}

.pcc-hero__ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.7s ease 0.4s both;
}

.pcc-hero__btn {
    border-radius: var(--border-radius-pill);
}

/* ---- Features ---- */
.pcc-features {
    background: var(--color-bg-section);
    padding: 100px 0 120px;
}

.pcc-features__title {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: 56px;
}

.pcc-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pcc-feat {
    background: var(--color-card-bg);
    border-radius: var(--border-radius);
    padding: 36px 28px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-top: 3px solid transparent;
    transition: all var(--transition-base);
    position: relative;
}

.pcc-feat::before {
    content: '';
    position: absolute;
    top: -1px;
    right: 0;
    left: 0;
    height: 3px;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    background: attr(data-accent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.pcc-feat[data-accent="#006C35"] {
    border-top-color: #006C35;
}

.pcc-feat[data-accent="#D4AF37"] {
    border-top-color: #D4AF37;
}

.pcc-feat[data-accent="#8B5CF6"] {
    border-top-color: #8B5CF6;
}

.pcc-feat[data-accent="#F97316"] {
    border-top-color: #F97316;
}

.pcc-feat[data-accent="#14B8A6"] {
    border-top-color: #14B8A6;
}

.pcc-feat[data-accent="#3B82F6"] {
    border-top-color: #3B82F6;
}

.pcc-feat:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.08);
}

.pcc-feat__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-sm);
    margin-bottom: 20px;
}

.pcc-feat__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: 8px;
}

.pcc-feat__text {
    font-size: 0.9rem;
    color: var(--color-text-gray);
    line-height: 1.6;
}

/* ---- How It Works ---- */
.pcc-how {
    background: var(--color-bg-dark);
    padding: 100px 0 120px;
}

.pcc-how__title {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: 64px;
}

.pcc-how__flow {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.pcc-step {
    flex: 1;
    max-width: 220px;
    text-align: center;
    position: relative;
}

.pcc-step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 108, 53, 0.15);
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    font-family: var(--font-en);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.pcc-step__icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-card-bg);
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.pcc-step__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: 6px;
}

.pcc-step__text {
    font-size: 0.85rem;
    color: var(--color-text-gray);
    line-height: 1.5;
}

.pcc-how__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    flex-shrink: 0;
    width: 44px;
    opacity: 0.5;
    animation: arrowPulseH 2s ease-in-out infinite;
}

@keyframes arrowPulseH {

    0%,
    100% {
        opacity: 0.4;
        transform: translateX(0);
    }

    50% {
        opacity: 0.9;
        transform: translateX(4px);
    }
}

/* ---- Modes ---- */
.pcc-modes {
    background: var(--color-bg-section);
    padding: 100px 0 120px;
}

.pcc-modes__title {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: 12px;
}

.pcc-modes__subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-text-gray);
    margin-bottom: 56px;
}

.pcc-modes__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.pcc-mode {
    background: var(--color-card-bg);
    border-radius: var(--border-radius);
    padding: 40px 28px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.pcc-mode::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    border-radius: 0 4px 4px 0;
}

.pcc-mode[data-accent="#006C35"]::before {
    background: #006C35;
}

.pcc-mode[data-accent="#D4AF37"]::before {
    background: #D4AF37;
}

.pcc-mode[data-accent="#14B8A6"]::before {
    background: #14B8A6;
}

.pcc-mode:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.08);
}

.pcc-mode__emoji {
    font-size: 2.4rem;
    display: block;
    margin-bottom: 16px;
}

.pcc-mode__title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.pcc-mode__sub {
    display: block;
    font-family: var(--font-en);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.pcc-mode__list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.pcc-mode__list li {
    position: relative;
    padding-right: 24px;
    padding-bottom: 12px;
    font-size: 0.92rem;
    color: var(--color-text-gray);
    line-height: 1.5;
}

.pcc-mode__list li::before {
    content: '✓';
    position: absolute;
    right: 0;
    top: 0;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.85rem;
}

.pcc-mode__best {
    display: block;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.82rem;
    color: var(--color-text-muted);
    font-style: italic;
}

/* ---- Pricing ---- */
.pcc-pricing {
    background: var(--color-bg-dark);
    padding: 100px 0 120px;
}

.pcc-pricing__title {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: 56px;
}

.pcc-pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

.pcc-tier {
    background: var(--color-card-bg);
    border-radius: var(--border-radius);
    padding: 44px 32px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all var(--transition-base);
    position: relative;
}

.pcc-tier:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.pcc-tier--featured {
    border-color: var(--color-primary);
    transform: scale(1.04);
    box-shadow: 0 12px 40px rgba(0, 108, 53, 0.15);
}

.pcc-tier--featured:hover {
    transform: scale(1.04) translateY(-4px);
}

.pcc-tier__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: var(--color-text-white);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 5px 20px;
    border-radius: var(--border-radius-pill);
    white-space: nowrap;
}

.pcc-tier__name {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: 6px;
}

.pcc-tier__sub {
    font-size: 0.88rem;
    color: var(--color-text-gray);
    margin-bottom: 28px;
}

.pcc-tier__price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 28px;
}

.pcc-tier__btn {
    width: 100%;
    border-radius: var(--border-radius-pill);
}

/* ---- CTA ---- */
.pcc-cta {
    background: linear-gradient(135deg, #006C35 0%, #004d28 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.pcc-cta::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.pcc-cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    border-radius: 50%;
}

.pcc-cta__inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.pcc-cta__title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: 12px;
}

.pcc-cta__subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 36px;
}

.pcc-cta__btn {
    background: var(--color-text-white);
    color: #006C35;
    border-color: var(--color-text-white);
    border-radius: var(--border-radius-pill);
    font-size: 1.05rem;
}

.pcc-cta__btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .pcc-features__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pcc-how__flow {
        flex-wrap: wrap;
        gap: 24px;
    }

    .pcc-how__arrow {
        display: none;
    }

    .pcc-step {
        max-width: none;
        width: calc(50% - 12px);
    }

    .pcc-modes__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .pcc-pricing__grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .pcc-tier--featured {
        transform: none;
    }

    .pcc-tier--featured:hover {
        transform: translateY(-4px);
    }
}

@media (max-width: 768px) {
    .pcc-hero {
        padding: 120px 0 60px;
        min-height: 50vh;
    }

    .pcc-features {
        padding: 70px 0 80px;
    }

    .pcc-features__grid {
        grid-template-columns: 1fr;
    }

    .pcc-how {
        padding: 70px 0 80px;
    }

    .pcc-step {
        width: 100%;
    }

    .pcc-modes {
        padding: 70px 0 80px;
    }

    .pcc-pricing {
        padding: 70px 0 80px;
    }

    .pcc-cta {
        padding: 60px 0;
    }

    .pcc-hero__ctas {
        flex-direction: column;
        align-items: center;
    }

    .pcc-hero__btn {
        width: 100%;
        max-width: 320px;
    }
}