/* ============================================
   Work With Me page
   Conversion-focused styles
   ============================================ */

/* Hero */
.wm-hero {
    position: relative;
    padding: 120px 0 80px;
    text-align: center;
    overflow: hidden;
}

.wm-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.18), transparent 45%),
                radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.12), transparent 45%);
    pointer-events: none;
    z-index: 0;
}

.wm-hero .container {
    position: relative;
    z-index: 1;
}

.wm-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.wm-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wm-hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.65;
    max-width: 720px;
    margin: 0 auto 2.5rem;
    opacity: 0.85;
}

.wm-hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.wm-stat {
    text-align: center;
}

.wm-stat-num {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wm-stat-label {
    display: block;
    font-size: 0.875rem;
    opacity: 0.7;
    margin-top: 0.25rem;
}

.wm-hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Section helpers */
.wm-section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
}

.wm-section-subtitle {
    text-align: center;
    font-size: 1.05rem;
    opacity: 0.8;
    max-width: 720px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Target audience */
.wm-target-audience {
    padding: 80px 0;
}

.wm-audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.wm-audience-card {
    padding: 2rem 1.5rem;
    background: var(--card-bg, rgba(255, 255, 255, 0.04));
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
    border-radius: 16px;
    transition: transform 0.2s, border-color 0.2s;
}

.wm-audience-card:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.4);
}

.wm-audience-icon {
    font-size: 2.25rem;
    display: block;
    margin-bottom: 1rem;
}

.wm-audience-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.wm-audience-card p {
    font-size: 0.95rem;
    line-height: 1.55;
    opacity: 0.8;
}

/* Services */
.wm-services {
    padding: 80px 0;
    background: rgba(99, 102, 241, 0.03);
}

.wm-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.wm-service-card {
    position: relative;
    padding: 2rem;
    background: var(--card-bg, rgba(255, 255, 255, 0.04));
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.wm-service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.1);
}

.wm-service-card.highlight {
    border-color: rgba(236, 72, 153, 0.5);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.06), rgba(236, 72, 153, 0.06));
}

.wm-popular-banner {
    position: absolute;
    top: -12px;
    right: 24px;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    color: white;
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.wm-service-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.wm-service-icon {
    font-size: 2rem;
}

.wm-service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.wm-service-desc {
    font-size: 0.95rem;
    line-height: 1.55;
    opacity: 0.85;
    margin-bottom: 1.25rem;
}

.wm-service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.wm-service-features li {
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.9;
}

.wm-pricing {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
    margin-top: auto;
}

.wm-price-tier {
    position: relative;
    flex: 1;
    min-width: 120px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    text-align: center;
}

.wm-price-tier.featured {
    border-color: rgba(99, 102, 241, 0.5);
    background: rgba(99, 102, 241, 0.08);
}

.wm-popular-tag {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #6366f1;
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
}

.wm-price {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wm-price-duration {
    display: block;
    font-size: 0.8rem;
    opacity: 0.75;
    margin-top: 0.25rem;
}

.wm-service-cta {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    align-self: stretch;
}

.wm-service-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
}

.wm-free-call {
    margin-top: 2.5rem;
    padding: 1.75rem 2rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(99, 102, 241, 0.08));
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.wm-free-call-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.wm-free-call-text {
    flex: 1;
    min-width: 220px;
}

.wm-free-call-text h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 0.35rem;
}

.wm-free-call-text p {
    font-size: 0.95rem;
    line-height: 1.55;
    opacity: 0.85;
    margin: 0;
}

@media (max-width: 640px) {
    .wm-free-call {
        flex-direction: column;
        text-align: center;
    }
}

/* Why */
.wm-why {
    padding: 80px 0;
}

.wm-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.wm-why-card {
    padding: 2rem 1.5rem;
    background: var(--card-bg, rgba(255, 255, 255, 0.04));
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
    border-radius: 16px;
    text-align: left;
}

.wm-why-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.wm-why-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.wm-why-card p {
    font-size: 0.95rem;
    line-height: 1.55;
    opacity: 0.8;
}

/* Process */
.wm-process {
    padding: 80px 0;
    background: rgba(99, 102, 241, 0.03);
}

.wm-process-steps {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.wm-process-step {
    flex: 1;
    min-width: 180px;
    max-width: 240px;
    padding: 1.5rem 1.25rem;
    background: var(--card-bg, rgba(255, 255, 255, 0.04));
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
    border-radius: 16px;
    text-align: center;
}

.wm-step-num {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.wm-process-step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.wm-process-step p {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.8;
    margin: 0;
}

.wm-process-arrow {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    opacity: 0.4;
}

@media (max-width: 768px) {
    .wm-process-arrow {
        transform: rotate(90deg);
    }
}

/* FAQ */
.wm-faq {
    padding: 80px 0;
}

.wm-faq-list {
    max-width: 760px;
    margin: 2.5rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.wm-faq-item {
    background: var(--card-bg, rgba(255, 255, 255, 0.04));
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
    border-radius: 12px;
    padding: 1.1rem 1.25rem;
    transition: border-color 0.2s;
}

.wm-faq-item:hover {
    border-color: rgba(99, 102, 241, 0.3);
}

.wm-faq-item summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.wm-faq-item summary::-webkit-details-marker {
    display: none;
}

.wm-faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.2s;
    line-height: 1;
}

.wm-faq-item[open] summary::after {
    transform: rotate(45deg);
}

.wm-faq-item p {
    margin-top: 0.85rem;
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.85;
}

/* Booking */
.wm-booking {
    padding: 80px 0;
    background: rgba(99, 102, 241, 0.03);
}

.wm-booking-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0 2.5rem;
}

.wm-booking-note {
    font-size: 0.95rem;
    opacity: 0.7;
}

.wm-form-embed {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    max-width: 760px;
    margin: 0 auto;
}

.wm-form-embed iframe {
    display: block;
    background: white;
}

/* Direct contact */
.wm-direct-contact {
    padding: 80px 0;
}

.wm-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.wm-contact-card {
    display: block;
    padding: 2rem 1.5rem;
    background: var(--card-bg, rgba(255, 255, 255, 0.04));
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
    border-radius: 16px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, border-color 0.2s;
}

.wm-contact-card:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.4);
}

.wm-contact-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.75rem;
}

.wm-contact-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.wm-contact-card p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 0.85rem;
}

.wm-contact-action {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6366f1;
}

.wm-replace-note {
    margin-top: 2rem;
    padding: 1rem 1.25rem;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: 8px;
    font-size: 0.85rem;
    opacity: 0.85;
    text-align: center;
}

.wm-replace-note code {
    background: rgba(0, 0, 0, 0.2);
    padding: 0.1rem 0.35rem;
    border-radius: 4px;
    font-family: 'Fira Code', monospace;
    font-size: 0.85em;
}

/* Final CTA */
.wm-final-cta {
    padding: 80px 0;
}

.wm-final-card {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(236, 72, 153, 0.12));
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 20px;
    text-align: center;
}

.wm-final-card h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.wm-final-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile */
@media (max-width: 640px) {
    .wm-hero {
        padding: 80px 0 60px;
    }
    .wm-hero-stats {
        gap: 1.5rem;
    }
    .wm-services-grid {
        grid-template-columns: 1fr;
    }
    .wm-process-steps {
        flex-direction: column;
        align-items: stretch;
    }
    .wm-process-step {
        max-width: none;
    }
    .wm-final-card {
        padding: 2rem 1.25rem;
    }
}

/* CTA section on index.html (replaces LinkedIn section) */
.work-cta-section {
    padding: 80px 0;
}

.work-cta-card {
    position: relative;
    padding: 3rem 2.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(236, 72, 153, 0.12));
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    align-items: center;
}

.work-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.15), transparent 60%);
    pointer-events: none;
}

.work-cta-content {
    position: relative;
    z-index: 1;
}

.work-cta-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.9rem;
    background: rgba(236, 72, 153, 0.15);
    border: 1px solid rgba(236, 72, 153, 0.35);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.work-cta-card h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.work-cta-card p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.88;
    margin-bottom: 1.5rem;
}

.work-cta-services {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
}

.work-cta-services span {
    padding: 0.35rem 0.8rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 0.825rem;
    font-weight: 500;
}

.work-cta-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.work-cta-illustration {
    position: relative;
    z-index: 1;
    text-align: center;
    font-size: 7rem;
    line-height: 1;
}

.work-cta-illustration .pulse-ring {
    display: inline-block;
    animation: pulse-glow 2.5s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(99, 102, 241, 0.6)); }
    50% { transform: scale(1.06); filter: drop-shadow(0 0 30px rgba(99, 102, 241, 0.7)); }
}

@media (max-width: 768px) {
    .work-cta-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2.25rem 1.5rem;
    }
    .work-cta-services {
        justify-content: center;
    }
    .work-cta-buttons {
        justify-content: center;
    }
    .work-cta-illustration {
        font-size: 4.5rem;
    }
}

/* ============================================
   Vertical pricing (mock interview tiers)
   ============================================ */
.wm-pricing.vertical {
    flex-direction: column;
    gap: 0.6rem;
}

.wm-pricing.vertical .wm-price-tier {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: left;
    flex: none;
    width: 100%;
    min-width: 0;
}

.wm-pricing.vertical .wm-popular-tag {
    left: auto;
    right: 12px;
    transform: none;
}

.wm-tier-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.wm-tier-name {
    font-size: 0.92rem;
    font-weight: 700;
}

.wm-tier-detail {
    font-size: 0.78rem;
    opacity: 0.72;
    line-height: 1.35;
}

.wm-pricing.vertical .wm-price {
    font-size: 1.35rem;
    white-space: nowrap;
}

/* ============================================
   Mock interview deliverables section
   ============================================ */
.wm-deliverables {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.05), rgba(99, 102, 241, 0.05));
}

.wm-deliverables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.wm-deliverable-card {
    padding: 1.75rem;
    background: var(--card-bg, rgba(255, 255, 255, 0.04));
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
    border-radius: 16px;
    transition: transform 0.2s, border-color 0.2s;
}

.wm-deliverable-card:hover {
    transform: translateY(-4px);
    border-color: rgba(236, 72, 153, 0.4);
}

.wm-deliverable-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.wm-deliverable-icon {
    font-size: 1.75rem;
}

.wm-deliverable-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.wm-deliverable-card > p {
    font-size: 0.95rem;
    line-height: 1.55;
    opacity: 0.85;
    margin-bottom: 0.85rem;
}

.wm-score-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.wm-score-tags span {
    padding: 0.3rem 0.7rem;
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
}

.wm-deliverable-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.wm-deliverable-list li {
    font-size: 0.9rem;
    line-height: 1.45;
    opacity: 0.9;
}

.wm-verdict-quote {
    margin: 0;
    padding: 0.85rem 1rem;
    background: rgba(99, 102, 241, 0.06);
    border-left: 3px solid #6366f1;
    border-radius: 8px;
    font-size: 0.88rem;
    line-height: 1.55;
    font-style: italic;
    opacity: 0.9;
}

.wm-deliverables-cta {
    text-align: center;
    margin-top: 2.5rem;
}
