/* hire-page.css — nav/footer rules stripped (36 blocks).
   The shared Layout supplies the nav and footer, styled by
   home.css. This file's originals collided with them. */

/* hire-page.css — extracted verbatim from src/templates/hire-page.php (lines 34-197) */

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
        --dark: #0A0A0A; --dark-2: #0D0D0D; --dark-3: #111111;
        --light: #FFFFFF; --amber: #D97706; --amber-hover: #B45309;
        --muted: #666666; --border: rgba(255,255,255,0.08);
        --max-w: 1200px; --gutter: 2.5rem;
    }
    html { scroll-behavior: smooth; }
    body { font-family: 'DM Sans', sans-serif; background: var(--dark); color: #fff; line-height: 1.75; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
    .wrap { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
    h1, h2, h3, h4 { font-family: 'Sora', sans-serif; font-weight: 800; letter-spacing: -0.03em; line-height: 1.08; }
    p { line-height: 1.75; }
    .eyebrow { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber); margin-bottom: 1.25rem; }
    /* Fade-up defaults to visible so the page works even if JS never fires. */
    .fade-up { opacity: 1; transform: translateY(0); transition: opacity 0.7s ease, transform 0.7s ease; }

    /* ── HERO ── */
    #hire-hero { padding: 10rem var(--gutter) 6rem; border-bottom: 1px solid var(--border); }
    .hire-hero-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
    #hire-hero h1 { font-size: clamp(2.8rem, 6vw, 5rem); margin-bottom: 1.5rem; }
    .hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.5); max-width: 480px; line-height: 1.7; margin-bottom: 2.5rem; }
    .hero-badge { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; background: rgba(217,119,6,0.12); color: var(--amber); border: 1px solid rgba(217,119,6,0.28); padding: 0.35rem 0.85rem; border-radius: 100px; margin-bottom: 1.75rem; }
    .hero-badge-dot { width: 6px; height: 6px; background: var(--amber); border-radius: 50%; animation: pulse-dot 2s ease-in-out infinite; }@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
    .hero-btns { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
    .btn-primary { display: inline-flex; align-items: center; padding: 0.85rem 2rem; background: var(--amber); color: white; border: none; border-radius: 100px; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 700; cursor: pointer; text-decoration: none; transition: all 0.2s; }
    .btn-primary:hover { background: var(--amber-hover); transform: translateY(-1px); }
    .btn-ghost { display: inline-flex; align-items: center; padding: 0.85rem 1.75rem; background: transparent; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.15); border-radius: 100px; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 600; cursor: pointer; text-decoration: none; transition: all 0.2s; }
    .btn-ghost:hover { border-color: rgba(255,255,255,0.4); color: white; }
    .hero-stats { display: flex; flex-direction: column; gap: 1.25rem; }
    .hero-stat-card { background: #111; border: 1px solid rgba(255,255,255,0.07); border-radius: 8px; padding: 1.5rem 2rem; }
    .stat-num { font-family: 'Sora', sans-serif; font-size: 2.5rem; font-weight: 800; letter-spacing: -0.04em; color: var(--amber); line-height: 1; }
    .stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.45); margin-top: 0.35rem; }
    .starting-from { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 0.25rem; }

    /* ── PRICING TIERS ── */
    #hire-pricing { padding: 6rem var(--gutter); }
    .section-header { text-align: center; margin-bottom: 4rem; }
    .section-header h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
    .section-header p { font-size: 1rem; color: rgba(255,255,255,0.45); max-width: 520px; margin: 0 auto; }
    .tiers-grid { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; align-items: start; }
    .tier-card { background: #111; border: 1px solid rgba(255,255,255,0.07); border-radius: 8px; padding: 2rem; position: relative; transition: border-color 0.2s, transform 0.2s; }
    .tier-card:hover { border-color: rgba(255,255,255,0.15); transform: translateY(-2px); }
    .tier-card.featured { border-color: var(--amber); }
    .tier-card.featured:hover { border-color: var(--amber-hover); }
    .tier-badge { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: var(--amber); color: white; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.25rem 0.9rem; border-radius: 0 0 4px 4px; white-space: nowrap; }
    .tier-name { font-family: 'Sora', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #555; margin-bottom: 1rem; display: block; }
    .tier-card.featured .tier-name { color: var(--amber); }
    .tier-rate { font-family: 'Sora', sans-serif; font-size: 2.25rem; font-weight: 800; letter-spacing: -0.04em; color: white; line-height: 1; margin-bottom: 0.4rem; }
    .tier-rate span { font-size: 0.9rem; font-weight: 400; color: rgba(255,255,255,0.4); letter-spacing: 0; }
    .tier-desc { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin-bottom: 1.5rem; line-height: 1.55; }
    .tier-divider { border: none; border-top: 1px solid rgba(255,255,255,0.06); margin-bottom: 1.5rem; }
    .tier-features { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 2rem; }
    .tier-features li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.85rem; color: rgba(255,255,255,0.7); line-height: 1.4; }
    .tier-features li::before { content: ''; display: block; width: 15px; height: 15px; min-width: 15px; margin-top: 2px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Ccircle cx='8' cy='8' r='7.5' stroke='%23D97706' stroke-opacity='0.4'/%3E%3Cpath d='M5 8l2 2 4-4' stroke='%23D97706' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-size: contain; background-repeat: no-repeat; }
    .tier-cta { display: block; width: 100%; text-align: center; padding: 0.8rem 1rem; border-radius: 100px; font-family: 'DM Sans', sans-serif; font-size: 0.88rem; font-weight: 700; cursor: pointer; border: none; transition: all 0.2s; text-decoration: none; }
    .tier-cta-outline { background: transparent; border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.65); }
    .tier-cta-outline:hover { border-color: rgba(255,255,255,0.4); color: white; }
    .tier-cta-filled { background: var(--amber); color: white; }
    .tier-cta-filled:hover { background: var(--amber-hover); transform: translateY(-1px); }

    /* specialist row */
    .specialist-row { max-width: var(--max-w); margin: 1.5rem auto 0; background: #111; border: 1px solid rgba(255,255,255,0.07); border-radius: 8px; padding: 2rem 2.5rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
    .specialist-left { display: flex; flex-direction: column; gap: 0.4rem; }
    .specialist-tag { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber); }
    .specialist-name { font-family: 'Sora', sans-serif; font-size: 1.35rem; font-weight: 800; letter-spacing: -0.03em; }
    .specialist-desc { font-size: 0.88rem; color: rgba(255,255,255,0.45); max-width: 560px; }
    .specialist-rate-block { text-align: right; flex-shrink: 0; }
    .specialist-rate { font-family: 'Sora', sans-serif; font-size: 1.6rem; font-weight: 800; letter-spacing: -0.04em; color: white; }
    .specialist-rate-sub { font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-top: 0.2rem; }

    /* ── WHAT'S INCLUDED ── */
    #hire-includes { padding: 6rem var(--gutter); border-top: 1px solid var(--border); }
    .includes-grid { max-width: var(--max-w); margin: 3rem auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
    .include-card { background: #111; border: 1px solid rgba(255,255,255,0.06); border-radius: 8px; padding: 1.75rem; }
    .include-card h3 { font-size: 0.95rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 0.65rem; color: white; }
    .include-card p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.65; }

    /* ── FAQ ── */
    #hire-faq { padding: 6rem var(--gutter); border-top: 1px solid var(--border); }
    .faq-list { max-width: 760px; margin: 3rem auto 0; display: flex; flex-direction: column; gap: 0; }
    .faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
    .faq-q { width: 100%; background: none; border: none; color: white; font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 600; text-align: left; padding: 1.5rem 0; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
    .faq-q svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--amber); transition: transform 0.25s; }
    .faq-item.open .faq-q svg { transform: rotate(45deg); }
    .faq-a { overflow: hidden; max-height: 0; transition: max-height 0.3s ease, padding 0.3s; }
    .faq-item.open .faq-a { max-height: 400px; }
    .faq-a-inner { padding-bottom: 1.5rem; font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.8; }

    /* ── CTA ── */
    #hire-cta { padding: 8rem var(--gutter); text-align: center; border-top: 1px solid var(--border); }
    #hire-cta h2 { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 1.25rem; }
    .cta-sub { font-size: 1rem; color: rgba(255,255,255,0.4); max-width: 500px; margin: 0 auto 2.5rem; }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
        :root { --gutter: 1.75rem; }
        .hire-hero-inner { grid-template-columns: 1fr; gap: 3rem; }
        .tiers-grid { grid-template-columns: repeat(2, 1fr); }
        .includes-grid { grid-template-columns: repeat(2, 1fr); }
        .footer-top { grid-template-columns: 1fr; }
    }@media (max-width: 600px) {
        :root { --gutter: 1.25rem; }
        .tiers-grid { grid-template-columns: 1fr; }
        .includes-grid { grid-template-columns: 1fr; }
        .specialist-row { flex-direction: column; align-items: flex-start; }
        .specialist-rate-block { text-align: left; }
    }
