/* Secondary pages — shared upgrades (services, about, resources, contact) */

/* ── Photo heroes ── */
.page-hero {
    position: relative;
    padding: 9rem 0 5rem;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(7, 11, 20, 0.9) 0%, rgba(7, 11, 20, 0.72) 45%, rgba(15, 23, 42, 0.55) 100%),
        linear-gradient(180deg, transparent 55%, rgba(7, 11, 20, 0.95) 100%);
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero-kicker {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fbbf24;
    margin-bottom: 1rem;
}

.page-hero h1 {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    color: #fff;
}

.page-hero-lead {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    line-height: 1.65;
    color: #cbd5e1;
    max-width: 42rem;
    margin: 0 auto 1.75rem;
}

.page-hero-actions {
    display: flex;
    gap: 0.85rem;
    justify-content: center;
    flex-wrap: wrap;
}

.page-hero .btn-premium {
    background: var(--accent-color);
    color: #0f172a;
    border-color: var(--accent-gold);
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.28);
    font-weight: 600;
}

.page-hero .btn-premium:hover {
    background: #f59e0b;
    color: #0f172a;
    border-color: #d97706;
}

.page-hero .btn-outline {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.75);
}

.page-hero .btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #ffffff;
    color: #ffffff;
}

.services-hero-v2 {
    background: url('images/service-ai-consulting.jpg') center / cover no-repeat;
}

.about-hero-v2 {
    background: url('images/hero-atelier.jpg') center / cover no-repeat;
}

.resources-hero-v2 {
    background: url('images/hero-partnership.jpg') center / cover no-repeat;
}

.contact-hero-v2 {
    background: url('images/contact-bg.jpg') center / cover no-repeat;
}

/* ── Trust strip (matches homepage) ── */
.page-trust-bar {
    background: #0f172a;
    border-top: 1px solid rgba(251, 191, 36, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 2.25rem 0;
}

.page-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    text-align: center;
}

.page-trust-value {
    display: block;
    font-size: 1.85rem;
    font-weight: 700;
    color: #fbbf24;
    letter-spacing: -0.03em;
}

.page-trust-label {
    display: block;
    font-size: 0.8rem;
    color: #94a3b8;
    line-height: 1.4;
    margin-top: 0.2rem;
}

/* ── Section headers ── */
.page-section {
    padding: 4.5rem 0;
}

.page-section--alt {
    background: #f8fafc;
}

.page-section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.5rem;
}

.page-section-kicker {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f59e0b;
    margin-bottom: 0.65rem;
}

.page-section-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    color: #0f172a;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.page-section-header p {
    color: #64748b;
    line-height: 1.65;
    font-size: 1.02rem;
}

/* ── Services overview cards ── */
.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.services-overview-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.35rem 1.25rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.services-overview-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
    border-color: #cbd5e1;
}

.services-overview-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 8px;
    background: #0f172a;
    color: #fbbf24;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 0.85rem;
}

.services-overview-card h3 {
    font-size: 1.05rem;
    color: #0f172a;
    margin-bottom: 0.45rem;
}

.services-overview-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.55;
}

.service-detail-card {
    border-radius: 12px;
    overflow: hidden;
    padding: 0 0 2rem;
}

.service-detail-card .service-icon-large {
    margin: 1.5rem 1.5rem 1.25rem;
}

.service-detail-card h2,
.service-detail-intro,
.service-detail-content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.service-detail-card h2 {
    font-size: 1.65rem;
}

.service-detail-card::before {
    content: '';
    display: block;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b, rgba(245, 158, 11, 0));
}

/* ── About ── */
.about-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
    margin: 2rem 0 2.5rem;
}

.about-proof-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem 1.35rem;
}

.about-proof-card h3 {
    font-size: 1.05rem;
    color: #0f172a;
    margin-bottom: 0.45rem;
}

.about-proof-card p {
    font-size: 0.92rem;
    color: #64748b;
    line-height: 1.55;
    margin: 0;
}

.approach-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.approach-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.about-main-content h2:first-child {
    margin-top: 0;
}

/* ── Resources ── */
.resources-featured {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
    margin-bottom: 2rem;
}

.resource-card--featured {
    background: #0f172a;
    color: #fff;
    border-color: #1e293b;
}

.resource-card--featured .resource-category {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
}

.resource-card--featured h2 {
    color: #fff;
}

.resource-card--featured .resource-excerpt {
    color: #cbd5e1;
}

.resource-card--featured .resource-meta span {
    background: rgba(255, 255, 255, 0.08);
    color: #e2e8f0;
}

.resource-card--featured .resource-link {
    color: #fbbf24;
    border-bottom-color: #fbbf24;
}

.resource-card {
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.resource-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #f59e0b;
}

.resource-link {
    font-weight: 600;
    color: #0f172a;
    text-decoration: none;
    border-bottom: 1.5px solid #f59e0b;
    padding-bottom: 0.1rem;
}

.resource-link:hover {
    color: #92400e;
}

/* ── Contact ── */
.contact-page-v2 .contact-detail {
    background: #f8fafc;
    padding: 4rem 0 5rem;
}

.contact-page-v2 .contact-info {
    border-radius: 12px;
}

.contact-page-v2 .contact-form {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem 1.75rem;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.contact-benefits-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-benefits-list li {
    position: relative;
    padding: 0.55rem 0 0.55rem 1.5rem;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-benefits-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: #fbbf24;
}

.contact-page-v2 .contact-urgency {
    border-radius: 12px;
}

/* ── Process on services page ── */
.process-section {
    background: #f8fafc;
    padding: 4.5rem 0;
}

.process-section .section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
    gap: 1rem;
}

.process-step {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem 1.25rem;
}

.step-number {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #f59e0b;
    margin-bottom: 0.5rem;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .page-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .resources-featured {
        grid-template-columns: 1fr;
    }

    .about-proof-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 7.5rem 0 3.5rem;
    }

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

    .page-hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .page-trust-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-trust-grid {
        grid-template-columns: 1fr;
    }
}
