/* Responsibility: pricing page sections, pricing cards, value framing, and FAQ styling. */

/* ===== 05G. PAGE SECTIONS / PRICING ===== */
      .pricing-hero {
        padding: calc(var(--nav-h) + 80px) 48px 60px;
        position: relative;
        overflow: hidden;
      }
      .pricing-hero-bg {
        position: absolute;
        inset: 0;
        background: radial-gradient(
          ellipse 70% 50% at 50% 0%,
          rgba(200, 255, 0, 0.06) 0%,
          transparent 70%
        );
        pointer-events: none;
      }
      .pricing-hero-inner {
        max-width: 860px;
        margin: 0 auto;
        text-align: center;
        position: relative;
        z-index: 1;
      }
      .pricing-hero h1 {
        font-family: var(--font-display);
        font-size: clamp(52px, 8vw, 120px);
        line-height: 0.9;
        margin-bottom: 20px;
      }
      .pricing-hero h1 span {
        color: var(--lime);
      }
      .pricing-hero p {
        font-size: 15px;
        color: var(--muted);
        max-width: 500px;
        margin: 0 auto;
        line-height: 1.75;
      }

      .pricing-section {
        padding: 60px 48px 100px;
      }
      .pricing-inner {
        max-width: 1200px;
        margin: 0 auto;
      }
      .pricing-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2px;
        margin-bottom: 80px;
      }

      .price-card {
        background: var(--panel);
        border: 1px solid var(--border);
        padding: 40px 36px;
        position: relative;
      }
      .price-card.recommended {
        background: var(--lime);
        border-color: var(--lime);
      }
      .price-badge {
        position: absolute;
        top: -1px;
        right: 24px;
        font-family: var(--font-mono);
        font-size: 9px;
        letter-spacing: 2px;
        text-transform: uppercase;
        background: var(--lime);
        color: var(--black);
        padding: 5px 12px;
      }
      .price-card.recommended .price-badge {
        background: var(--black);
        color: var(--lime);
      }
      .price-tier {
        font-family: var(--font-mono);
        font-size: 10px;
        letter-spacing: 3px;
        text-transform: uppercase;
        margin-bottom: 18px;
        color: var(--muted);
      }
      .price-card.recommended .price-tier {
        color: rgba(0, 0, 0, 0.55);
      }
      .price-name {
        font-family: var(--font-display);
        font-size: 36px;
        margin-bottom: 6px;
        line-height: 1;
      }
      .price-card.recommended .price-name {
        color: var(--black);
      }
      .price-amount {
        font-family: var(--font-display);
        font-size: 64px;
        line-height: 1;
        margin-bottom: 4px;
      }
      .price-card.recommended .price-amount {
        color: var(--black);
      }
      .price-period {
        font-family: var(--font-mono);
        font-size: 10px;
        letter-spacing: 1px;
        color: var(--muted);
        margin-bottom: 6px;
      }
      .price-card.recommended .price-period {
        color: rgba(0, 0, 0, 0.5);
      }
      .price-retainer {
        font-family: var(--font-mono);
        font-size: 10px;
        letter-spacing: 1px;
        padding: 10px 0;
        border-top: 1px solid var(--border);
        margin-bottom: 24px;
        color: var(--lime);
      }
      .price-card.recommended .price-retainer {
        color: var(--black);
        border-color: rgba(0, 0, 0, 0.2);
      }
      .price-features {
        list-style: none;
        margin-bottom: 28px;
      }
      .price-features li {
        font-size: 13px;
        padding: 9px 0;
        border-bottom: 1px solid var(--border);
        display: flex;
        align-items: flex-start;
        gap: 10px;
        color: var(--white);
      }
      .price-card.recommended .price-features li {
        color: var(--black);
        border-color: rgba(0, 0, 0, 0.12);
      }
      .price-check {
        width: 15px;
        height: 15px;
        flex-shrink: 0;
        margin-top: 1px;
        color: var(--lime);
      }
      .price-card.recommended .price-check {
        color: var(--black);
      }
      .price-cta {
        display: block;
        text-align: center;
        font-family: var(--font-mono);
        font-size: 10px;
        letter-spacing: 2px;
        text-transform: uppercase;
        padding: 14px;
        transition: all 0.2s;
        text-decoration: none;
      }
      .price-card:not(.recommended) .price-cta {
        color: var(--lime);
        border: 1px solid var(--lime);
      }
      .price-card:not(.recommended) .price-cta:hover {
        background: var(--lime);
        color: var(--black);
      }
      .price-card.recommended .price-cta {
        background: var(--black);
        color: var(--lime);
        border: 1px solid var(--black);
      }
      .price-card.recommended .price-cta:hover {
        opacity: 0.85;
      }

      .mkt-pricing {
        margin-top: 0;
      }
      .mkt-pricing-title {
        font-family: var(--font-display);
        font-size: 44px;
        margin-bottom: 6px;
      }
      .mkt-pricing-sub {
        font-size: 14px;
        color: var(--muted);
        margin-bottom: 36px;
      }
      .mkt-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2px;
      }
      .mkt-card {
        background: var(--off-black);
        border: 1px solid var(--border);
        padding: 32px;
      }
      .mkt-name {
        font-family: var(--font-display);
        font-size: 24px;
        margin-bottom: 8px;
      }
      .mkt-price {
        font-family: var(--font-mono);
        font-size: 12px;
        color: var(--lime);
        margin-bottom: 12px;
        letter-spacing: 1px;
      }
      .mkt-desc {
        font-size: 13px;
        color: var(--muted);
        line-height: 1.7;
      }

      /* ----- 05H. Pricing Value Reframe ----- */
      .value-section {
        padding: 60px 48px 80px;
      }
      .value-inner {
        max-width: 1200px;
        margin: 0 auto;
      }
      .value-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2px;
      }
      .value-card {
        background: var(--panel);
        border: 1px solid var(--border);
        padding: 28px;
        text-align: center;
      }
      .value-trade {
        font-family: var(--font-display);
        font-size: 16px;
        color: var(--muted);
        margin-bottom: 4px;
      }
      .value-job {
        font-family: var(--font-display);
        font-size: 40px;
        color: var(--lime);
        margin-bottom: 6px;
        line-height: 1;
      }
      .value-label {
        font-family: var(--font-mono);
        font-size: 9px;
        color: var(--muted);
        letter-spacing: 2px;
        text-transform: uppercase;
      }

      /* ----- 05I. FAQ ----- */
      .faq-section {
        padding: 80px 48px;
        background: var(--off-black);
      }
      .faq-inner {
        max-width: 760px;
        margin: 0 auto;
      }
      .faq-item {
        border-bottom: 1px solid var(--border);
      }
      .faq-q {
        width: 100%;
        text-align: left;
        background: transparent;
        border: none;
        padding: 22px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        cursor: pointer;
      }
      .faq-q-text {
        font-size: 15px;
        font-family: var(--font-body);
        font-weight: 400;
        color: var(--white);
        text-align: left;
        flex: 1;
      }
      .faq-icon {
        font-family: var(--font-mono);
        font-size: 18px;
        color: var(--lime);
        flex-shrink: 0;
        transition: transform 0.3s;
        line-height: 1;
      }
      .faq-item.open .faq-icon {
        transform: rotate(45deg);
      }
      .faq-a {
        font-size: 13px;
        color: var(--muted);
        line-height: 1.8;
        max-height: 0;
        overflow: hidden;
        transition:
          max-height 0.4s ease,
          padding 0.3s;
      }
      .faq-item.open .faq-a {
        max-height: 220px;
        padding-bottom: 22px;
      }

/* ===== 07G. PRODUCTION REFINEMENT LAYER / PRICING + INDUSTRY + CONTACT ===== */
      /* ----- 07G-1. Pricing Hero ----- */
      .pricing-hero,
      .contact-hero {
        padding-top: calc(var(--nav-h) + 78px);
        padding-bottom: 64px;
      }
      .pricing-hero-inner,
      .contact-hero-inner {
        max-width: 1180px;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
      }
      .pricing-hero h1,
      .contact-hero h1 {
        font-size: clamp(58px, 8vw, 124px);
        line-height: 0.9;
        margin-bottom: 16px;
      }
      .pricing-hero p,
      .contact-hero-inner p {
        max-width: 620px;
        margin-left: auto;
        margin-right: auto;
        font-size: 18px;
        line-height: 1.82;
        color: var(--text-secondary);
      }

/* ----- 07G-3. Pricing Cards / Value / Add-ons ----- */
      .pricing-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        margin-bottom: 82px;
      }
      .price-card {
        display: flex;
        flex-direction: column;
        padding: 34px;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: var(--shadow-sm);
        background: linear-gradient(
          180deg,
          rgba(26, 31, 40, 0.96) 0%,
          rgba(15, 17, 21, 0.98) 100%
        );
        transition:
          transform var(--transition-base),
          border-color var(--transition-base),
          box-shadow var(--transition-base);
      }
      .price-card:hover {
        transform: translateY(-4px);
        border-color: rgba(200, 255, 0, 0.24);
        box-shadow: var(--shadow-md);
      }
      .price-card.recommended {
        background: linear-gradient(180deg, #d4ff37 0%, #bce700 100%);
        border-color: rgba(200, 255, 0, 0.82);
        box-shadow: 0 30px 90px rgba(200, 255, 0, 0.16);
      }
      .price-badge {
        top: 20px;
        right: 20px;
        padding: 8px 12px;
        border-radius: var(--radius-pill);
        font-size: 10px;
        letter-spacing: 1.6px;
        background: rgba(8, 10, 12, 0.88);
        color: var(--lime);
      }
      .price-tier,
      .price-period,
      .price-retainer,
      .price-cta {
        font-size: 11px;
      }
      .price-tier,
      .price-period {
        letter-spacing: 1.4px;
      }
      .price-tier {
        margin-bottom: 16px;
        color: var(--text-soft);
      }
      .price-name {
        font-size: 42px;
        line-height: 0.94;
        margin-bottom: 10px;
      }
      .price-summary {
        min-height: 72px;
        margin-bottom: 20px;
        font-size: 14px;
        line-height: 1.7;
        color: var(--text-muted);
      }
      .price-card.recommended .price-summary {
        color: rgba(8, 10, 12, 0.66);
      }
      .price-amount {
        font-size: clamp(58px, 6vw, 78px);
        line-height: 0.9;
        margin-bottom: 6px;
      }
      .price-period {
        margin-bottom: 10px;
        color: var(--text-soft);
        text-transform: uppercase;
      }
      .price-retainer {
        padding: 14px 0 18px;
        margin-bottom: 22px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        letter-spacing: 1.4px;
        text-transform: uppercase;
      }
      .price-features li {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        font-size: 14px;
        line-height: 1.6;
        color: var(--text-secondary);
      }
      .price-check {
        width: 16px;
        height: 16px;
        margin-top: 3px;
      }
      .price-cta {
        width: 100%;
        margin-top: auto;
      }
      .price-card.recommended .price-cta {
        background: rgba(8, 10, 12, 0.92);
        border: 1px solid rgba(8, 10, 12, 0.92);
        color: var(--lime);
      }

      .mkt-pricing-title {
        font-size: clamp(40px, 5vw, 58px);
        line-height: 0.95;
        margin-bottom: 10px;
      }
      .mkt-pricing-sub {
        max-width: 580px;
        margin-bottom: 34px;
        font-size: 16px;
        line-height: 1.75;
        color: var(--text-muted);
      }
      .mkt-card {
        padding: 28px;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: linear-gradient(
          180deg,
          rgba(15, 17, 21, 0.92) 0%,
          rgba(10, 12, 16, 0.98) 100%
        );
      }
      .mkt-name {
        font-size: 30px;
        line-height: 0.95;
        margin-bottom: 10px;
      }
      .mkt-price {
        font-size: 11px;
        letter-spacing: 1.4px;
        text-transform: uppercase;
        margin-bottom: 14px;
      }
      .mkt-desc {
        font-size: 14px;
        line-height: 1.75;
        color: var(--text-muted);
      }

/* ----- 07G-4. FAQ Component ----- */
      #faq-list {
        display: grid;
        gap: 14px;
      }
      .faq-item {
        padding: 0 24px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: var(--radius-md);
        background: linear-gradient(
          180deg,
          rgba(20, 24, 32, 0.94) 0%,
          rgba(15, 17, 21, 0.98) 100%
        );
        box-shadow: var(--shadow-sm);
      }
      .faq-q {
        padding: 24px 0;
        align-items: flex-start;
      }
      .faq-q-text {
        font-size: 18px;
        line-height: 1.5;
      }
      .faq-icon {
        width: 38px;
        height: 38px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: 1px solid rgba(200, 255, 0, 0.18);
        background: rgba(200, 255, 0, 0.08);
      }
      .faq-item.open .faq-icon {
        background: rgba(200, 255, 0, 0.14);
        border-color: rgba(200, 255, 0, 0.3);
      }
      .faq-a {
        opacity: 0;
        padding-bottom: 0;
        font-size: 15px;
        line-height: 1.82;
        color: var(--text-muted);
        transition:
          max-height var(--transition-base),
          opacity var(--transition-fast),
          padding-bottom var(--transition-fast);
      }
      .faq-item.open .faq-a {
        opacity: 1;
        padding-bottom: 24px;
      }
