
      /* ================================================================ */
      /* V3 DESIGN — Editorial / Magazine Layout                          */
      /* ================================================================ */
      .factories-v3 {
        padding: 0px 0 80px;
      }

      /* Labels & Titles */
      .fv-label {
        font-size: 0.68rem;
        font-weight: 800;
        letter-spacing: 0.22em;
        color: #4361ee;
        margin: 0 0 14px;
        text-transform: uppercase;
      }

      .fv-subtitle {
        font-size: 0.88rem;
        color: #f0f0f0;
        margin: 0;
        line-height: 1.6;
      }

      /* ================================================================ */
      /* FEATURE — Self-Owned Factory                                      */
      /* ================================================================ */
      .fv-feature {
        margin-bottom: 72px;
      }

      .fv-feature__header {
        margin-bottom: 36px;
        max-width: 640px;
      }

      .fv-title {
        font-size: 2.25rem;
        font-weight: 900;
        color: #0f172a;
        letter-spacing: -0.03em;
        line-height: 1.15;
        margin: 0 0 8px;
      }

      .fv-feature__showcase {
        display: flex;
        gap: 0;
        background: #fff;
        border-radius: 28px;
        overflow: hidden;
        box-shadow:
          0 1px 3px rgba(0, 0, 0, 0.04),
          0 16px 48px rgba(0, 0, 0, 0.08);
      }

      /* -- Image -- */
      .fv-showcase__img {
        flex: 1;
        position: relative;
        min-height: 480px;
        background: #003f74;
        overflow: hidden;
      }

      .fv-showcase__img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        opacity: 0.88;
      }

      .fv-showcase__overlay {
        position: absolute;
        inset: 0;
        background:
          linear-gradient(
            180deg,
            rgba(0, 63, 116, 0.15) 0%,
            rgba(0, 63, 116, 0) 40%
          ),
          linear-gradient(
            0deg,
            rgba(0, 63, 116, 0.45) 0%,
            rgba(0, 63, 116, 0) 50%
          );
        z-index: 1;
      }

      .fv-showcase__location {
        position: absolute;
        bottom: 24px;
        left: 24px;
        z-index: 2;
        display: flex;
        align-items: center;
        gap: 8px;
        background: rgba(0, 0, 0, 0.55);
        backdrop-filter: blur(16px);
        color: #fff;
        font-size: 0.78rem;
        font-weight: 600;
        padding: 10px 20px;
        border-radius: 40px;
        letter-spacing: 0.03em;
      }

      .fv-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #60a5fa;
        box-shadow: 0 0 6px rgba(96, 165, 250, 0.6);
      }

      /* -- Side Panel -- */
      .fv-showcase__panel {
        flex: 0 0 180px;
        display: flex;
        flex-direction: column;
        border-left: 1px solid #f1f5f9;
      }

      .fv-panel-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 16px 12px;
        border-bottom: 1px solid #f1f5f9;
        transition: background 0.2s;
      }

      .fv-panel-item:last-child {
        border-bottom: none;
      }

      .fv-panel-item:hover {
        background: #f8fafc;
      }

      .fv-panel-item__num {
        font-size: 1.25rem;
        font-weight: 900;
        color: #0f172a;
        letter-spacing: -0.02em;
        line-height: 1.1;
        margin-bottom: 4px;
      }

      .fv-panel-item__num small {
        font-size: 0.7rem;
        font-weight: 700;
        color: #64748b;
      }

      .fv-panel-item__desc {
        font-size: 0.66rem;
        color: #9e9e9e;
        text-align: center;
        line-height: 1.4;
        letter-spacing: 0.02em;
      }

      /* -- Footer -- */
      .fv-feature__footer {
        display: flex;
        gap: 36px;
        margin-top: 28px;
        align-items: flex-start;
      }

      .fv-feature__desc {
        flex: 1;
        font-size: 0.88rem;
        color: #475569;
        line-height: 1.78;
        margin: 0;
      }

      .fv-feature__badges {
        flex: 0 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        padding-top: 4px;
      }

      .fv-feature__badges span {
        display: inline-block;
        padding: 7px 18px;
        border-radius: 8px;
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.03em;
        background: #003f74;
        color: #fff;
        white-space: nowrap;
        transition: transform 0.15s;
      }

      .fv-feature__badges span:hover {
        transform: translateY(-1px);
      }

      .fv-feature__badges span:nth-child(4) {
        background: #4361ee;
      }

      .fv-feature__badges span:nth-child(5) {
        background: #0f766e;
      }

      /* ================================================================ */
      /* CONTRACTS GRID                                                    */
      /* ================================================================ */
      .fv-contracts {
        /*  */
      }

      .fv-contracts__header {
        text-align: center;
        margin-bottom: 36px;
      }

      .fv-contracts__title {
        font-size: 1.6rem;
        font-weight: 800;
        color: #0f172a;
        letter-spacing: -0.02em;
        margin: 0 0 6px;
      }

      .fv-contracts__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 28px;
      }

      /* -- Card -- */
      .fv-card {
        background: #fff;
        border-radius: 24px;
        overflow: hidden;
        box-shadow:
          0 1px 3px rgba(0, 0, 0, 0.03),
          0 8px 28px rgba(0, 0, 0, 0.05);
        transition:
          box-shadow 0.35s,
          transform 0.35s;
      }

      .fv-card:hover {
        box-shadow: 0 4px 36px rgba(0, 0, 0, 0.1);
        transform: translateY(-3px);
      }

      .fv-card__media {
        position: relative;
        aspect-ratio: 16 / 10;
        overflow: hidden;
        background: #f1f5f9;
      }

      .fv-card__media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      }

      .fv-card:hover .fv-card__media img {
        transform: scale(1.06);
      }

      .fv-card__years {
        position: absolute;
        top: 16px;
        right: 16px;
        z-index: 2;
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(12px);
        border-radius: 14px;
        padding: 8px 16px;
        text-align: center;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        line-height: 1.1;
      }

      .fv-card__years strong {
        display: block;
        font-size: 1.15rem;
        font-weight: 900;
        color: #0f766e;
        letter-spacing: -0.03em;
      }

      .fv-card__years span {
        font-size: 0.6rem;
        font-weight: 700;
        color: #64748b;
        letter-spacing: 0.08em;
      }

      .fv-card__body {
        padding: 24px 28px 28px;
      }

      .fv-card__body h4 {
        font-size: 1.1rem;
        font-weight: 800;
        color: #0f172a;
        margin: 0 0 2px;
        letter-spacing: -0.01em;
      }

      .fv-card__loc {
        font-size: 0.78rem;
        color: #9e9e9e;
        margin-bottom: 10px;
      }

      .fv-card__desc {
        font-size: 0.84rem;
        color: #475569;
        line-height: 1.7;
        margin-bottom: 16px;
      }

      .fv-card__metrics {
        display: flex;
        gap: 24px;
        padding-top: 16px;
        border-top: 1px solid #f1f5f9;
      }

      .fv-metric__value {
        display: block;
        font-size: 1.05rem;
        font-weight: 900;
        color: #0f172a;
        line-height: 1.2;
      }

      .fv-metric__value small {
        font-size: 0.65rem;
        font-weight: 700;
        color: hsl(0, 0%, 94%);
      }

      .fv-metric__label {
        font-size: 0.68rem;
        color: #9e9e9e;
        letter-spacing: 0.02em;
      }