.pc-phone-page {
    background: #f8fbff;
}

.pc-phone-hero {
    padding: 42px 0 26px;
}

.pc-phone-hero-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #eef6ff 100%);
    border: 1px solid rgba(0, 93, 200, 0.14);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.pc-phone-hero-content {
    padding: 46px;
}

.pc-phone-breadcrumb {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 24px;
}

.pc-phone-kicker {
    display: inline-block;
    color: #005dcc;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.82rem;
    margin-bottom: 12px;
}

.pc-phone-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4.6rem);
    line-height: 0.95;
    margin: 0 0 22px;
    color: #08152f;
}

.pc-phone-hero h1 span {
    color: #005dcc;
    display: block;
}

.pc-phone-hero p {
    color: #334155;
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 620px;
}

.pc-phone-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

.pc-phone-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 10px;
    font-weight: 800;
    text-decoration: none;
    border: 1px solid #005dcc;
}

.pc-phone-btn.primary {
    background: #005dcc;
    color: #ffffff;
}

.pc-phone-btn.secondary {
    background: #ffffff;
    color: #005dcc;
}

.pc-phone-hero-image {
    height: 100%;
    min-height: 430px;
    background: #dbeafe;
}

.pc-phone-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pc-phone-section {
    padding: 34px 0;
}

.pc-phone-section-head {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 32px;
}

.pc-phone-section-head h2 {
    color: #08152f;
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 0 0 14px;
}

.pc-phone-section-head p {
    color: #334155;
    line-height: 1.7;
}

.pc-phone-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.pc-phone-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.07);
}

.pc-phone-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: #eaf4ff;
    color: #005dcc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 18px;
}

.pc-phone-card h2 {
    color: #08152f;
    font-size: 1.35rem;
    margin: 0 0 12px;
}

.pc-phone-card p,
.pc-phone-card li {
    color: #334155;
    line-height: 1.6;
}

.pc-phone-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

.pc-phone-list li {
    position: relative;
    padding-left: 26px;
    margin: 9px 0;
    color: #334155;
}

.pc-phone-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #005dcc;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 900;
    text-align: center;
    line-height: 18px;
}

.pc-phone-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    align-items: stretch;
}

.pc-phone-panel {
    background: linear-gradient(135deg, #ffffff 0%, #edf7ff 100%);
    border: 1px solid rgba(0, 93, 200, 0.12);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.pc-phone-panel h2 {
    color: #08152f;
    margin-top: 0;
}

.pc-phone-panel p,
.pc-phone-panel li {
    color: #334155;
    line-height: 1.7;
}

.pc-phone-price {
    color: #005dcc;
    font-weight: 900;
    font-size: 3rem;
    line-height: 1;
    margin: 16px 0 8px;
}

.pc-phone-steps {
    counter-reset: phonestep;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pc-phone-steps li {
    counter-increment: phonestep;
    position: relative;
    padding-left: 42px;
    margin: 14px 0;
    color: #334155;
    line-height: 1.6;
}

.pc-phone-steps li::before {
    content: counter(phonestep);
    position: absolute;
    left: 0;
    top: 1px;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: #005dcc;
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 900;
    text-align: center;
    line-height: 26px;
}

.pc-phone-cta {
    background: #08152f;
    color: #ffffff;
    border-radius: 22px;
    padding: 38px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
}

.pc-phone-cta h2 {
    color: #ffffff;
    margin: 0 0 10px;
}

.pc-phone-cta p {
    color: #dbeafe;
    line-height: 1.7;
    margin: 0;
}

.pc-phone-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pc-phone-cta .pc-phone-btn.primary {
    background: #ffffff;
    color: #005dcc;
    border-color: #ffffff;
}

.pc-phone-cta .pc-phone-btn.secondary {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 1100px) {
    .pc-phone-hero-card,
    .pc-phone-highlight,
    .pc-phone-cta {
        grid-template-columns: 1fr;
    }

    .pc-phone-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pc-phone-hero-image {
        min-height: 320px;
    }
}

@media (max-width: 640px) {
    .pc-phone-grid {
        grid-template-columns: 1fr;
    }

    .pc-phone-hero-content,
    .pc-phone-card,
    .pc-phone-panel,
    .pc-phone-cta {
        padding: 24px;
    }

    .pc-phone-actions,
    .pc-phone-cta-actions {
        flex-direction: column;
    }

    .pc-phone-btn {
        width: 100%;
    }

    .pc-phone-price {
        font-size: 2.4rem;
    }
}
